:root {
  --white: #fff;
  --blue-main-text: #001965;
  --blue-bttn-text: #0b57bc;
  --blue-bg-1: #ccdef6;
  --blue-bg-2: #e7f0fc;
  --green-text: #07736d;
  --green-bttn: #298a85;
  --green-bg-1: #cfe5e4;
  --green-bg-2: #f0f7f7;
  --pink-1: #d42a64;
  --pink-2: #f6d4e0;
  --pink-3: #fff2f7;
  --grey-text: #666d80;
  --grey-bg: #f1f1f3;
  --font-family: "Noto Sans", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 68px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.container2 {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .container2 {
    width: 100%;
    padding: 0 68px;
  }
}
@media (max-width: 767px) {
  .container2 {
    padding: 0 16px;
  }
}

strong {
  font-weight: 700;
}

.title {
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-main-text);
}
@media (max-width: 992px) {
  .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 16px;
  }
}

.ctablock {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 20px;
  background: var(--blue-bttn-text);
  border-radius: 24px;
  min-width: 478px;
  max-width: 478px;
  z-index: 50;
}
.ctablock__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.ctablock__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  max-width: 245px;
  margin-bottom: 8px;
}
.ctablock p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}
.ctablock__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .ctablock {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    border-radius: 48px 48px 0 0;
    padding: 16px 16px 16px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .ctablock__top img {
    display: none;
  }
  .ctablock__top {
    min-width: auto;
  }
  .ctablock__title {
    font-size: 20px;
    margin-bottom: 2px;
    max-width: 100%;
  }
  .ctablock p {
    font-size: 14px;
  }
  .ctablock__nav {
    gap: 12px;
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .ctablock {
    gap: 12px;
    border-radius: 40px 40px 0 0;
    padding: 16px 16px 16px 48px;
  }
  .ctablock__title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ctablock {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    border-radius: 32px 32px 0 0;
    padding: 16px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .ctablock__title {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
  }
  .ctablock p {
    font-size: 12px;
    text-align: center;
  }
  .ctablock__nav {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 420px) {
  .ctablock__title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .ctablock p {
    font-size: 12px;
  }
}

.btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  text-align: center;
  padding: 19px 16px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          gap: 4px;
  text-align: center;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
@media (max-width: 1200px) {
  .btn {
    padding: 19px 32px;
  }
}
@media (max-width: 992px) {
  .btn {
    padding: 7px 20px;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 15px 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 420px) {
  .btn {
    padding: 7px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.btn_v1 {
  color: var(--blue-main-text);
  background: #99bded;
}
.btn_v1:hover {
  background: #a7ccfb;
}
@media (max-width: 992px) {
  .btn_v1 {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .btn_v1 {
    width: auto;
  }
}

.btn_v2 {
  color: var(--blue-main-text);
  background: #a0cbc9;
}
.btn_v2:hover {
  background: #bee6e4;
}
@media (max-width: 992px) {
  .btn_v2 {
    width: 132px;
  }
}
@media (max-width: 767px) {
  .btn_v2 {
    width: auto;
  }
}

.hero {
  padding: 0 37px;
  padding-top: 32px;
}
@media (max-width: 992px) {
  .hero .container {
    padding: 0 48px;
  }
}
.hero__wrap {
  background: var(--blue-bg-1);
  border-radius: 40px;
  padding: 64px 0;
}
@media (max-width: 1200px) {
  .hero__wrap {
    overflow: hidden;
  }
}
.hero__box {
  position: relative;
}
.hero .hero-image {
  position: absolute;
  bottom: -10px;
  left: 700px;
  width: 100%;
  max-width: 704px;
}
@media (max-width: 1800px) {
  .hero .hero-image {
    left: 600px;
  }
}
@media (max-width: 1380px) {
  .hero .hero-image {
    left: 530px;
  }
}
@media (max-width: 1200px) {
  .hero .hero-image {
    left: auto;
    right: -390px;
  }
}
.hero .hero-title {
  font-weight: 700;
  font-size: 52px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
.hero .hero-title span {
  color: var(--blue-main-text);
}
.hero .hero-pretitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--blue-main-text);
  margin-top: 40px;
  max-width: 584px;
}
.hero .hero-pretitle span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.hero .hero-info {
  margin-top: 40px;
}
.hero .hero-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.hero .hero-info ul {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.hero .hero-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.hero .hero-info ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  border-radius: 100px;
  background-color: var(--blue-bg-2);
}
.hero .hero-info ul li {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-bttn-text);
}
.hero .hero-text {
  margin-top: 40px;
  max-width: 594px;
  background: rgba(11, 87, 188, 0.1);
  border-left: 2px solid var(--blue-bttn-text);
  border-radius: 0 8px 8px 0;
  padding: 16px 26px 16px 24px;
}
.hero .hero-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.hero .hero-image-2 {
  display: none;
}
.hero .hero-image-3 {
  display: none;
}
@media (max-width: 992px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  .hero__wrap {
    border-radius: 32px;
    padding: 48px 0;
  }
  .hero .hero-image-1 {
    display: none;
  }
  .hero .hero-image-2 {
    display: block;
    width: 304px;
    right: -48px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hero .hero-title {
    font-size: 40px;
    max-width: 490px;
  }
  .hero .hero-title br {
    display: none;
  }
  .hero .hero-pretitle {
    font-size: 20px;
    margin-top: 48px;
    max-width: 429px;
  }
  .hero .hero-pretitle span {
    font-size: 12px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .hero .hero-info {
    margin-top: 48px;
  }
  .hero .hero-info p {
    font-size: 16px;
  }
  .hero .hero-info ul li {
    font-size: 16px;
  }
  .hero .hero-text {
    margin-top: 48px;
    max-width: 100%;
    padding: 16px 24px 16px 24px;
  }
  .hero .hero-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 16px;
    padding-bottom: 0;
  }
  .hero__wrap {
    border-radius: 20px;
    overflow: visible;
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .hero .container {
    padding: 0 24px;
  }
  .hero .hero-image-1 {
    display: none;
  }
  .hero .hero-image-2 {
    display: none;
  }
  .hero .hero-image-3 {
    display: block;
    width: 108px;
    right: -47px;
    top: 50%;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
}
@media (max-width: 767px) and (max-width: 370px) {
  .hero .hero-image-3 {
    -webkit-transform: translateY(-38%);
            transform: translateY(-38%);
  }
}
@media (max-width: 767px) {
  .hero .hero-title {
    font-size: 24px;
    max-width: 490px;
    padding-right: 20px;
  }
  .hero .hero-title br {
    display: none;
  }
  .hero .hero-pretitle {
    font-size: 16px;
    margin-top: 24px;
    max-width: 429px;
    padding-right: 20px;
  }
  .hero .hero-pretitle span {
    font-size: 10px;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .hero .hero-info {
    margin-top: 24px;
    padding-right: 38px;
  }
  .hero .hero-info p {
    font-size: 14px;
    padding-right: 27px;
  }
  .hero .hero-info ul {
    gap: 8px;
    margin-top: 8px;
  }
  .hero .hero-info ul li span {
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    padding: 5px;
  }
  .hero .hero-info ul li span img {
    width: 100%;
  }
  .hero .hero-info ul li {
    font-size: 14px;
  }
  .hero .hero-text {
    margin-top: 24px;
    padding: 16px 9px 16px 16px;
  }
  .hero .hero-text p {
    font-size: 14px;
  }
}

.stats {
  padding-top: 120px;
}
.stats__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.stats__main {
  width: 100%;
  max-width: 673px;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .stats__main {
    max-width: 500px;
  }
}
.stats .title {
  margin-bottom: 16px;
}
.stats .title span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  font-size: 14px;
  font-weight: 700;
}
.stats__pretitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.stats__pretitle span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  font-size: 10px;
  font-weight: 700;
}
.stats .stats-list {
  margin-top: 32px;
  display: -ms-grid;
  display: grid;
  gap: 32px;
}
.stats .stats-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stats .stats-list .stats-lbl {
  width: 104px;
  margin-right: 24px;
}
.stats .stats-list .stats-lbl span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue-main-text);
}
@media (max-width: 1024px) {
  .stats .stats-list .stats-lbl {
    width: 90px;
    margin-right: 10px;
  }
}
.stats .stats-list .stats-item {
  margin-right: 40px;
}
.stats .stats-list .stats-item div {
  font-weight: 400;
  font-size: 52px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
.stats .stats-list .stats-item div span {
  font-size: 40px;
}
.stats .stats-list .stats-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue-bttn-text);
}
.stats .stats-list .stats-item p span {
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
@media (max-width: 1200px) {
  .stats .stats-list .stats-item {
    margin-right: 20px;
  }
  .stats .stats-list .stats-item div {
    font-size: 46px;
  }
  .stats .stats-list .stats-item div span {
    font-size: 36px;
  }
}
.stats__itmlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stats__media {
  min-width: 52%;
  max-width: 52%;
}
.stats__media img {
  width: 100%;
}
.stats__mediamobile {
  display: none;
}
@media (max-width: 1400px) {
  .stats .container2 {
    padding: 0 37px;
  }
  .stats__main {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .stats {
    padding-top: 80px;
  }
  .stats .container2 {
    padding: 0 20px;
  }
  .stats .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .stats__pretitle {
    font-size: 18px;
  }
  .stats__box {
    width: 100%;
  }
  .stats__main {
    min-width: 100%;
    max-width: 100%;
  }
  .stats__media {
    display: none;
  }
  .stats__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-top: 32px;
  }
  .stats__mediamobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    width: calc(50% + 48px);
    min-width: calc(50% + 48px);
    max-width: calc(50% + 48px);
  }
  .stats__mediamobile img {
    width: 100%;
  }
  .stats .stats-list {
    margin-top: 0;
  }
  .stats__itmlist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 0px;
  }
  .stats .stats-lbl {
    min-width: 104px;
  }
  .stats .stats-item {
    margin-right: 0;
  }
  .stats .stats-item div {
    font-size: 40px;
  }
  .stats .stats-item div span {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .stats {
    padding-top: 40px;
  }
  .stats .container2 {
    padding: 0 16px;
  }
  .stats .title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .stats__pretitle {
    font-size: 16px;
  }
  .stats__main {
    padding-left: 0;
  }
  .stats__wrap {
    margin-top: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stats__mediamobile {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-top: 24px;
  }
  .stats__mediamobile img {
    width: 99vw;
    margin-left: -30px;
  }
  .stats .stats-list {
    gap: 8px;
  }
  .stats .stats-list .stats-lbl {
    width: 72px;
    min-width: 72px;
    margin-right: 24px;
  }
  .stats .stats-list .stats-lbl span {
    font-size: 12px;
  }
  .stats .stats-list .stats-item {
    margin-right: 24px;
  }
  .stats .stats-list .stats-item:last-child {
    margin-right: 0;
  }
  .stats .stats-list .stats-item div {
    font-size: 32px;
  }
  .stats .stats-list .stats-item div span {
    font-size: 28px;
  }
  .stats .stats-list .stats-item p {
    font-size: 12px;
  }
  .stats .stats-list .stats-item p span {
    font-size: 8px;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@media (max-width: 576px) {
  .stats__mediamobile img {
    width: 99vw;
    margin-left: -25px;
  }
}
@media (max-width: 450px) {
  .stats__mediamobile img {
    width: 99vw;
    margin-left: -23px;
  }
}

.reason {
  padding: 120px 0px;
}
.reason__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reason__media {
  height: 236px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 700px;
}
.reason__media img {
  position: absolute;
  right: 0;
  width: 100%;
}
.reason__content {
  width: 100%;
  max-width: 579px;
}
.reason__content p {
  margin-top: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.reason__content p span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.reason__top {
  position: relative;
  padding: 24px 40px;
}
.reason__top::before {
  content: "";
  display: block;
  background: var(--blue-bg-2);
  border-radius: 80px 0 0 80px;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
  left: 0;
}
.reason__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
@media (max-width: 992px) {
  .reason {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .reason .container {
    padding: 0 20px;
  }
  .reason__top {
    padding: 20px 40px;
  }
  .reason__title {
    font-size: 24px;
  }
  .reason__media {
    height: 150px;
  }
  .reason__media img {
    width: 50vw;
  }
  .reason__content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .reason {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .reason .container {
    padding: 0 16px;
  }
  .reason__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reason__media {
    height: auto;
    min-width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
  }
  .reason__media img {
    position: relative;
    width: 100%;
  }
  .reason__content {
    max-width: 100%;
  }
  .reason__content p {
    font-size: 14px;
  }
  .reason__content p span {
    font-size: 8px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .reason__top {
    padding: 16px 24px;
  }
  .reason__title {
    font-size: 20px;
  }
}

.remember {
  padding: 0 37px;
}
@media (max-width: 992px) {
  .remember .container {
    padding: 0 48px;
  }
}
.remember__wrap {
  background: var(--green-bg-2);
  border-radius: 40px;
  padding: 64px 0;
}
.remember__title {
  max-width: 830px;
  font-weight: 600;
  font-size: 36px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-main-text);
  margin-bottom: 24px;
}
.remember__pretitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.remember__pretitle span {
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.remember__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.remember .remember-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 10px;
  gap: 16px;
}
.remember .remember-item__image {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background-color: var(--green-bg-1);
}
.remember .remember-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
@media (max-width: 1024px) {
  .remember__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .remember {
    padding: 0px 20px;
  }
  .remember__title {
    font-size: 32px;
  }
  .remember__pretitle {
    font-size: 18px;
  }
  .remember__list {
    gap: 20px 24px;
  }
  .remember .remember-item__image {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
  }
  .remember .remember-item__image img {
    width: 50px;
  }
  .remember .remember-item p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .remember {
    padding: 0;
    border-radius: 0 0 16px 16px;
  }
  .remember .container {
    padding: 0 16px;
  }
  .remember__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .remember__pretitle {
    font-size: 16px;
  }
  .remember__list {
    gap: 8px;
    margin-top: 16px;
  }
  .remember .remember-item {
    padding: 8px 22px 8px 8px;
  }
  .remember .remember-item__image {
    min-width: 64px;
    max-width: 64px;
    height: 64px;
  }
  .remember .remember-item__image img {
    width: 40px;
  }
  .remember .remember-item p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .remember__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.when {
  padding: 120px 0;
}
.when__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.when__media {
  width: 50%;
}
.when__media img {
  width: 100%;
}
.when__content {
  width: 50%;
}
.when__content p {
  margin-top: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.when__content p span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.when__top {
  position: relative;
  padding: 24px 40px;
}
.when__top::before {
  content: "";
  display: block;
  background: var(--blue-bg-2);
  border-radius: 80px 0 0 80px;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
  left: 0;
}
.when__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
@media (max-width: 992px) {
  .when {
    padding: 80px 0;
  }
  .when .container {
    padding: 0px 20px;
  }
  .when__box {
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .when__title {
    font-size: 24px;
  }
  .when__top {
    padding: 20px 40px;
  }
  .when__content p span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@media (max-width: 767px) {
  .when {
    padding: 40px 0;
  }
  .when .container {
    padding: 0px 16px;
  }
  .when__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
  .when__media {
    width: 100%;
  }
  .when__content {
    width: 100%;
  }
  .when__content p {
    font-size: 14px;
    margin-top: 16px;
  }
  .when__content p span {
    font-size: 8px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  .when__top {
    padding: 16px 24px;
  }
  .when__title {
    font-size: 20px;
  }
}

.imt .imt-main {
  padding: 0 37px;
}
@media (max-width: 992px) {
  .imt .imt-main .container {
    padding: 0 48px;
  }
}
.imt .imt-main__wrap {
  background: var(--green-bg-2);
  border-radius: 40px;
  padding: 64px 0;
  overflow: hidden;
}
.imt .imt-main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.imt .imt-main__content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.imt .imt-main__content p {
  margin-top: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.imt .imt-main__content p span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.imt .imt-main__top {
  position: relative;
  padding: 24px 40px;
  padding-left: 0px;
}
.imt .imt-main__top::before {
  content: "";
  display: block;
  background: var(--green-bg-1);
  border-radius: 0px 80px 80px 0;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  right: 0;
}
.imt .imt-main__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--green-text);
  position: relative;
  z-index: 2;
}
.imt .imt-main .imt-calculator {
  background: var(--green-bg-1);
  border-radius: 20px;
  padding: 24px;
  width: 50%;
}
.imt .imt-main .imt-calculator__pretitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.imt .imt-main .imt-calculator__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-main-text);
  margin-top: 30px;
}
.imt .imt-main .imt-calculator__title span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.imt .imt-main .imt-calculator__form {
  margin-top: 32px;
}
.imt .imt-main .imt-calculator__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.imt .imt-main .imt-calculator__group {
  width: 50%;
}
.imt .imt-main .imt-calculator__group label {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.imt .imt-main .imt-calculator__group input {
  width: 100%;
  background: var(--white);
  border-radius: 40px;
  padding: 14px 38px;
  text-align: right;
  border: none;
}
.imt .imt-main .imt-calculator__group .input {
  position: relative;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.imt .imt-main .imt-calculator__group .input span {
  position: absolute;
  right: 16px;
}
.imt .imt-main .imt-calculator__bottom {
  margin-top: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.imt .imt-main .imt-calculator__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  background: var(--green-bttn);
  border-radius: 100px;
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  width: calc(50% - 16px);
}
.imt .imt-main .imt-calculator__submit:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .imt .imt-main {
    padding: 0px 20px;
  }
  .imt .imt-main__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .imt .imt-main__content {
    width: 100%;
  }
  .imt .imt-main__content p {
    font-size: 16px;
  }
  .imt .imt-main__content p span {
    font-size: 10px;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  .imt .imt-main__title {
    font-size: 24px;
  }
  .imt .imt-main__top {
    padding: 20px 40px 20px 0px;
  }
  .imt .imt-main .imt-calculator {
    width: 100%;
    padding: 32px 40px;
  }
  .imt .imt-main .imt-calculator__pretitle {
    font-size: 12px;
  }
  .imt .imt-main .imt-calculator__title {
    font-size: 32px;
  }
  .imt .imt-main .imt-calculator__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 63px;
  }
  .imt .imt-main .imt-calculator__box {
    gap: 24px;
  }
  .imt .imt-main .imt-calculator input {
    height: 48px;
  }
  .imt .imt-main .imt-calculator__submit {
    height: 48px;
    width: 100%;
  }
  .imt .imt-main .imt-calculator__bottom {
    min-width: 186px;
    max-width: 186px;
  }
}
@media (max-width: 767px) {
  .imt .imt-main {
    padding: 0;
    border-radius: 0 0 16px 16px;
  }
  .imt .imt-main__wrap {
    border-radius: 0px;
    padding: 40px 0px;
  }
  .imt .imt-main .container {
    padding: 0 16px;
  }
  .imt .imt-main__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .imt .imt-main__content {
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .imt .imt-main__content p {
    font-size: 16px;
    margin-top: 16px;
  }
  .imt .imt-main__content p span {
    font-size: 10px;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .imt .imt-main__title {
    font-size: 20px;
  }
  .imt .imt-main__top {
    padding-top: 16px;
    padding-right: 0;
    padding-bottom: 16px;
    padding-left: 24px;
    width: 100%;
  }
  .imt .imt-main__top::before {
    border-radius: 100px 0 0 100px;
    left: 0;
    right: auto;
  }
  .imt .imt-main .imt-calculator {
    width: 100%;
    border-radius: 20px;
    padding: 16px 24px 40px 24px;
  }
  .imt .imt-main .imt-calculator__pretitle {
    font-size: 10px;
  }
  .imt .imt-main .imt-calculator__title {
    font-size: 20px;
    margin-top: 16px;
  }
  .imt .imt-main .imt-calculator__title span {
    font-size: 12px;
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .imt .imt-main .imt-calculator__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
  .imt .imt-main .imt-calculator__box {
    gap: 20px;
    min-width: 100%;
    max-width: 100%;
  }
  .imt .imt-main .imt-calculator input {
    height: 48px;
  }
  .imt .imt-main .imt-calculator__submit {
    height: 48px;
    width: 100%;
  }
  .imt .imt-main .imt-calculator__bottom {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .imt .imt-main .imt-calculator__title {
    max-width: 178px;
  }
  .imt .imt-main .imt-calculator__pretitle {
    max-width: 178px;
  }
  .imt .imt-main .imt-calculator__group .input {
    margin-top: 4px;
  }
  .imt .imt-main .imt-calculator__group .input span {
    font-size: 14px;
  }
  .imt .imt-main .imt-calculator__group input {
    font-size: 14px;
  }
}

.imt-res {
  padding-top: 64px;
  display: none;
}
.imt-res.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .imt-res {
    padding-top: 20px;
  }
}
@media (max-width: 1300px) {
  .imt-res .container {
    padding-left: 37px;
    padding-right: 37px;
  }
}
@media (max-width: 1200px) {
  .imt-res .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .imt-res .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.imt-res__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1200px) {
  .imt-res__wrap {
    width: 100%;
  }
}
.imt-res__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 36px 24px;
}
@media (max-width: 1300px) {
  .imt-res__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 48px;
    padding-right: 48px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .imt-res__main {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .imt-res__main {
    padding-left: 0;
    padding-right: 0;
    gap: 32px;
  }
}
@media (max-width: 1300px) {
  .imt-res__box {
    max-width: 788px;
  }
}
@media (max-width: 1200px) {
  .imt-res__box {
    max-width: 100%;
  }
}
.imt-res .imt-res-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.imt-res .imt-res-item--2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .imt-res .imt-res-item--2 {
    margin-top: 16px;
  }
}
@media (max-width: 576px) {
  .imt-res .imt-res-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
.imt-res .imt-res-lb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.imt-res .imt-res-lb__icon {
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  background-color: var(--blue-bg-2);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.imt-res .imt-res-lb__txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--blue-main-text);
}
@media (max-width: 576px) {
  .imt-res .imt-res-lb__txt {
    font-weight: 700;
  }
}
.imt-res .imt-res-valuebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.imt-res .imt-res-valuebox i {
  font-size: 28px;
  line-height: 145%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
  font-weight: 500;
}
.imt-res .imt-res-value {
  font-weight: 500;
  font-size: 32px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
.imt-res .imt-res-value span {
  font-size: 28px;
}
.imt-res .imt-res-value__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 124%;
  letter-spacing: -0.02em;
  color: var(--blue-bttn-text);
}
@media (max-width: 576px) {
  .imt-res .imt-res-value__text {
    font-size: 20px;
    font-weight: 400;
  }
}
.imt-res .res-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .imt-res .res-table {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .imt-res .res-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.imt-res .res-table .res-table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 992px) {
  .imt-res .res-table .res-table-box:nth-child(1) {
    width: 22%;
  }
  .imt-res .res-table .res-table-box:nth-child(2) {
    width: 21.75%;
  }
  .imt-res .res-table .res-table-box:nth-child(3) {
    width: 19.75%;
  }
  .imt-res .res-table .res-table-box:nth-child(4) {
    width: 18.75%;
  }
  .imt-res .res-table .res-table-box:nth-child(5) {
    width: 17.75%;
  }
}
@media (max-width: 767px) {
  .imt-res .res-table .res-table-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-top: -1px;
  }
}
.imt-res .res-table .res-table-box:nth-child(1) .res-table-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  background: #4484d9;
}
.imt-res .res-table .res-table-box:nth-child(1) .res-table-item:nth-child(1) {
  border-radius: 20px 0 0 0;
}
.imt-res .res-table .res-table-box:nth-child(1) .res-table-item:nth-child(2) {
  border-radius: 0 0 0 20px;
}
@media (max-width: 992px) {
  .imt-res .res-table .res-table-box:nth-child(1) .res-table-item {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .imt-res .res-table .res-table-box:nth-child(1) .res-table-item:nth-child(1) {
    border-radius: 0 20px 0 0;
  }
  .imt-res .res-table .res-table-box:nth-child(1) .res-table-item:nth-child(2) {
    border-radius: 20px 0 0 0;
  }
  .imt-res .res-table .res-table-box:nth-child(1) .res-table-item {
    padding: 10px 20px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .imt-res .res-table .res-table-box:nth-child(1) .res-table-item {
    padding: 10px 13px;
  }
}
.imt-res .res-table .res-table-box:last-child .res-table-item:nth-child(1) {
  border-radius: 0 20px 0 0;
}
.imt-res .res-table .res-table-box:last-child .res-table-item:nth-child(2) {
  border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
  .imt-res .res-table .res-table-box:last-child .res-table-item:nth-child(1) {
    border-radius: 0 0 20px 0;
  }
  .imt-res .res-table .res-table-box:last-child .res-table-item:nth-child(2) {
    border-radius: 0 0 0 20px;
  }
}
.imt-res .res-table .res-table-item {
  padding: 14px 22px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--blue-main-text);
  background: var(--blue-bg-2);
  border: 1px solid #fff;
  height: 48px;
  border-right: none;
}
.imt-res .res-table .res-table-item span {
  font-size: 16px;
}
@media (max-width: 992px) {
  .imt-res .res-table .res-table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    padding: 14px 12px;
  }
  .imt-res .res-table .res-table-item span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .imt-res .res-table .res-table-item {
    width: 50%;
    height: 40px;
    padding: 10px 16px;
  }
  .imt-res .res-table .res-table-item span {
    font-size: 14px;
  }
}
.imt-res .res-table .res-opt-1.active {
  position: relative;
}
.imt-res .res-table .res-opt-1.active::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: var(--grey-text);
}
.imt-res .res-table .res-opt-1.active::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  position: absolute;
  background-color: var(--grey-text);
}
.imt-res .res-table .res-opt-1.active .res-table-item {
  background: #e9eaec;
}
.imt-res .res-table .res-opt-1.active .res-table-item:nth-child(1) {
  font-weight: 600;
  border-top: 1px solid var(--grey-text);
}
.imt-res .res-table .res-opt-1.active .res-table-item:nth-child(2) {
  font-weight: 600;
  border-bottom: 1px solid var(--grey-text);
}
@media (max-width: 767px) {
  .imt-res .res-table .res-opt-1.active::before {
    width: 100%;
    height: 1px;
    top: 0;
  }
  .imt-res .res-table .res-opt-1.active::after {
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .imt-res .res-table .res-opt-1.active .res-table-item:nth-child(1) {
    border-top: none;
    border-right: 1px solid var(--grey-text);
  }
  .imt-res .res-table .res-opt-1.active .res-table-item:nth-child(2) {
    border-bottom: none;
    border-left: 1px solid var(--grey-text);
  }
}
.imt-res .res-table .res-opt-2.active {
  position: relative;
}
.imt-res .res-table .res-opt-2.active::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: var(--green-bttn);
}
.imt-res .res-table .res-opt-2.active::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  position: absolute;
  background-color: var(--green-bttn);
}
.imt-res .res-table .res-opt-2.active .res-table-item {
  background: var(--green-bg-1);
}
.imt-res .res-table .res-opt-2.active .res-table-item:nth-child(1) {
  font-weight: 600;
  border-top: 1px solid var(--green-bttn);
}
.imt-res .res-table .res-opt-2.active .res-table-item:nth-child(2) {
  font-weight: 600;
  border-bottom: 1px solid var(--green-bttn);
}
@media (max-width: 767px) {
  .imt-res .res-table .res-opt-2.active::before {
    width: 100%;
    height: 1px;
    top: 0;
  }
  .imt-res .res-table .res-opt-2.active::after {
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .imt-res .res-table .res-opt-2.active .res-table-item:nth-child(1) {
    border-top: none;
    border-right: 1px solid var(--green-bttn);
  }
  .imt-res .res-table .res-opt-2.active .res-table-item:nth-child(2) {
    border-bottom: none;
    border-left: 1px solid var(--green-bttn);
  }
}
.imt-res .res-table .res-opt-3.active {
  position: relative;
}
.imt-res .res-table .res-opt-3.active::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: var(--pink-1);
}
.imt-res .res-table .res-opt-3.active::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  position: absolute;
  background-color: var(--pink-1);
}
.imt-res .res-table .res-opt-3.active .res-table-item {
  background: var(--pink-2);
}
.imt-res .res-table .res-opt-3.active .res-table-item:nth-child(1) {
  font-weight: 600;
  border-top: 1px solid var(--pink-1);
}
.imt-res .res-table .res-opt-3.active .res-table-item:nth-child(2) {
  font-weight: 600;
  border-bottom: 1px solid var(--pink-1);
}
@media (max-width: 767px) {
  .imt-res .res-table .res-opt-3.active::before {
    width: 100%;
    height: 1px;
    top: 0;
  }
  .imt-res .res-table .res-opt-3.active::after {
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .imt-res .res-table .res-opt-3.active .res-table-item:nth-child(1) {
    border-top: none;
    border-right: 1px solid var(--pink-1);
  }
  .imt-res .res-table .res-opt-3.active .res-table-item:nth-child(2) {
    border-bottom: none;
    border-left: 1px solid var(--pink-1);
  }
}
.imt-res .res-table .res-opt-4.active {
  position: relative;
}
.imt-res .res-table .res-opt-4.active::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: var(--pink-1);
}
.imt-res .res-table .res-opt-4.active::after {
  display: block;
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  background-color: var(--pink-1);
}
.imt-res .res-table .res-opt-4.active .res-table-item {
  background: var(--pink-2);
}
.imt-res .res-table .res-opt-4.active .res-table-item:nth-child(1) {
  font-weight: 600;
  border-top: 1px solid var(--pink-1);
  border-right: 1px solid var(--pink-1);
}
.imt-res .res-table .res-opt-4.active .res-table-item:nth-child(2) {
  font-weight: 600;
  border-bottom: 1px solid var(--pink-1);
  border-right: 1px solid var(--pink-1);
}
@media (max-width: 767px) {
  .imt-res .res-table .res-opt-4.active::before {
    width: 100%;
    height: 1px;
    top: 0;
  }
  .imt-res .res-table .res-opt-4.active::after {
    width: 50px;
    left: calc(50% - 25px);
    height: 1px;
    top: auto;
    bottom: 0;
  }
  .imt-res .res-table .res-opt-4.active .res-table-item:nth-child(1) {
    border-top: none;
    border-right: 1px solid var(--pink-1);
    border-left: 1px solid #fff !important;
    border-bottom: 1px solid var(--pink-1);
  }
  .imt-res .res-table .res-opt-4.active .res-table-item:nth-child(2) {
    border-bottom: none;
    border-left: 1px solid var(--pink-1);
    border-right: none;
    border-bottom: 1px solid var(--pink-1);
  }
}
.imt-res .icc22 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 6px;
}
.imt-res__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1300px) {
  .imt-res__bottom {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 1200px) {
  .imt-res__bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .imt-res__bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
.imt-res .imt-res-note {
  width: 100%;
  max-width: 788px;
  border-left: 2px solid var(--blue-bttn-text);
  border-radius: 0 8px 8px 0;
  padding: 16px 24px;
  background: rgba(11, 87, 188, 0.1);
  margin-top: 36px;
  display: none;
}
.imt-res .imt-res-note.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.imt-res .imt-res-note p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.imt-res .imt-res-note p span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 992px) {
  .imt-res .imt-res-note {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .imt-res .imt-res-note {
    margin-top: 32px;
    font-size: 14px;
    padding: 16px;
  }
  .imt-res .imt-res-note span {
    font-size: 10px;
  }
}

.add-resources {
  padding: 120px 0;
}
.add-resources__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.add-resources .add-resources-item {
  background: var(--blue-bg-2);
  border-radius: 32px;
  padding: 16px 32px 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  position: relative;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.add-resources .add-resources-item::after {
  position: absolute;
  content: "";
  background-image: url(../img/icons/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 48px;
  height: 48px;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.add-resources .add-resources-item__image {
  min-width: 50%;
  max-width: 50%;
  height: 154px;
  overflow: hidden;
  border-radius: 24px;
}
.add-resources .add-resources-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.55s;
  transition: 0.55s;
}
.add-resources .add-resources-item__content {
  padding-top: 32px;
}
.add-resources .add-resources-item__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue-main-text);
}
.add-resources .add-resources-item:hover {
  background-color: #dce8f7;
}
.add-resources .add-resources-item:hover::after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.add-resources .add-resources-item:hover .add-resources-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 992px) {
  .add-resources {
    padding: 64px 0;
  }
  .add-resources__list {
    gap: 24px;
  }
  .add-resources .add-resources-item {
    gap: 18px;
    border-radius: 16px;
    padding: 8px;
    padding-right: 32px;
  }
  .add-resources .add-resources-item::after {
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }
  .add-resources .add-resources-item__image {
    min-width: 96px;
    max-width: 96px;
    height: 76px;
    border-radius: 12px;
  }
  .add-resources .add-resources-item__content {
    padding-top: 0;
    max-width: 200px;
  }
  .add-resources .add-resources-item__content p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .add-resources {
    padding: 40px 0;
  }
  .add-resources__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-top: 12px;
  }
  .add-resources .add-resources-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .add-resources .add-resources-item__content {
    max-width: 300px;
  }
  .add-resources .add-resources-item__content p {
    font-size: 12px;
  }
}

.footer {
  background: var(--grey-bg);
  padding: 40px 0;
}
.footer__box {
  width: 100%;
  max-width: 892px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.footer__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  color: var(--grey-text);
}
.footer__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-text);
}
.footer__list {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  color: var(--grey-text);
  list-style-type: decimal;
  padding-left: 16px;
}
.footer__list a {
  text-decoration: underline;
  color: var(--grey-text);
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer__list a:hover {
  text-decoration: none;
}