@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
}
body.lock {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1288px;
  padding: 0 24px;
  margin: 0 auto;
}

.main-heading {
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.15%;
}
@media (max-width: 991px) {
  .main-heading {
    font-size: 32px;
    line-height: 36px;
  }
}

.heading {
  color: rgb(0, 41, 76);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.15%;
}
.heading_white {
  color: #fff;
}

.subheading {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.15%;
  display: block;
}
@media (max-width: 991px) {
  .subheading {
    font-size: 16px;
    line-height: 24px;
  }
}
.subheading_light {
  font-weight: 300;
}

.descr {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.descr_grey {
  color: rgba(0, 0, 0, 0.5);
}
.descr_bold {
  font-weight: 700;
}
.descr_black {
  color: #00294C;
}
.descr_small {
  font-size: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: unset;
  border: unset;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.btn span {
  color: #00294C;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15%;
}
.btn_primary {
  border: 1px solid transparent;
  background-color: #fff;
}
.btn_primary:hover {
  border: 1px solid #fff;
  background-color: transparent;
}
.btn_primary:hover span {
  color: #fff;
}
.btn_secondary {
  background-color: unset;
  border: 1px solid #fff;
}
.btn_secondary:hover {
  border: unset;
  background-color: #fff;
}
.btn_secondary:hover span {
  color: #00294C;
}
.btn_secondary span {
  color: #fff;
}
.btn_blue {
  border: 1px solid transparent;
  background-color: #B0DBFD;
}
.btn_blue:hover {
  background-color: unset;
  border: 1px solid #fff;
  transition: all 0.5s ease-out;
}
.btn_blue:hover span {
  color: #fff;
}
.btn_dark-blue {
  border: 1px solid transparent;
  background-color: #00294C;
}
.btn_dark-blue:hover {
  border: 1px solid #00294C;
  background-color: transparent;
}
.btn_dark-blue:hover span {
  color: #00294C;
}
.btn_dark-blue span {
  color: #fff;
}

.center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.center-wrap .heading {
  margin-bottom: 24px;
}

.sec_padding {
  padding: 96px 0;
}
@media (max-width: 991px) {
  .sec_padding {
    padding: 72px 0;
  }
}
.sec_bcg-blue {
  background-color: #F5FAFE;
}
.sec_bcg-dark-blue {
  background-color: #00294C;
}

.bcg-sea {
  background-image: url(../img/bg-1.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #00294C;
}
@media (max-width: 768px) {
  .bcg-sea {
    background-image: url(../img/sea_bcg_main_sec_mobile.png);
  }
}

header {
  padding: 26px 0;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  header {
    padding: 18px 0 22px;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: block;
}
.header .logo img {
  width: 200px;
  height: 43px;
}
@media (max-width: 768px) {
  .header .logo img {
    width: 113px;
    height: 24px;
  }
}
.header_right {
  display: flex;
  align-items: center;
  width: 65%;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .header_right {
    justify-content: flex-end;
  }
  .header_right .btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .header_right {
    display: none;
  }
}

.menu {
  padding-left: 0;
  display: flex;
  align-items: center;
}
.menu li {
  list-style: none;
  margin-right: 48px;
}
.menu li:last-of-type {
  margin-right: 0;
}
.menu li a {
  color: #fff;
  text-decoration: unset;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s ease;
}
.menu li a:hover {
  font-weight: 700;
}
.menu li a::before {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.main-section {
  padding: 24px 0 24px;
  height: calc(100vh - 100px);
  min-height: 520px;
}
.main-section .container {
  height: 100%;
}
.main-section .main-section_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  row-gap: 24px;
}
@media (max-width: 991px) {
  .main-section .main-section_wrap {
    row-gap: 206px;
  }
}
@media (max-width: 769px) {
  .main-section .main-section_wrap {
    row-gap: 88px;
  }
}
@media (max-width: 991px) {
  .main-section {
    padding: 160px 0 48px;
    height: fit-content;
  }
}
@media (max-width: 768px) {
  .main-section {
    padding: 120px 0 48px;
  }
}
.main-section__text {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1050px) {
  .main-section__text {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .main-section__text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .main-section__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
  }
}
.main-section__text .main-heading {
  margin-bottom: 24px;
}
.main-section__text .subheading {
  margin-bottom: 24px;
}
.main-section__text .subheading:last-of-type {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .main-section__text .subheading:last-of-type {
    margin-bottom: 24px;
  }
}
.main-section .slider-main-sec-mobile {
  display: none;
}
@media (max-width: 768px) {
  .main-section .slider-main-sec-mobile {
    display: flex;
  }
}
.main-section .statistics-wrap {
  display: flex;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 991px) {
  .main-section .statistics-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main-section .statistics-wrap.desktop {
    display: none;
  }
}
.main-section .statistics-wrap.mobile {
  display: none;
}
@media (max-width: 768px) {
  .main-section .statistics-wrap.mobile {
    display: flex;
    min-height: 48px;
  }
}
.main-section .statistics-wrap .statistics-row {
  width: calc(33.3333333333% - 48px);
  margin-right: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1300px) {
  .main-section .statistics-wrap .statistics-row {
    width: calc(33.3333333333% - 25px);
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  .main-section .statistics-wrap .statistics-row {
    width: calc(33.3333333333% - 20px);
    margin-right: 40px;
  }
}
@media (max-width: 1050px) {
  .main-section .statistics-wrap .statistics-row {
    width: calc(33.3333333333% - 15px);
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .main-section .statistics-wrap .statistics-row {
    /*width: calc(33.3333333333% - 10px);*/
    width: 372px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .main-section .statistics-wrap .statistics-row {
    width: 100%;
    margin-right: 0;
  }
}
.main-section .statistics-wrap .statistics-row:last-of-type {
  margin-right: 0;
}
.main-section .statistics-wrap .statistics-row__number {
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 700;
  line-height: 96px;
  letter-spacing: 0.15%;
  padding-right: 24px;
  position: relative;
}
.main-section .statistics-wrap .statistics-row__number:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 1px;
  height: 46px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1050px) {
  .main-section .statistics-wrap .statistics-row__number {
    padding-right: 11px;
  }
}
@media (max-width: 991px) {
  .main-section .statistics-wrap .statistics-row__number {
    font-size: 39.58px;
    line-height: 45px;
  }
}
@media (max-width: 768px) {
  .main-section .statistics-wrap .statistics-row__number {
    font-size: 42px;
    line-height: 48px;
  }
}
.main-section .statistics-wrap .statistics-row .descr {
  padding-left: 24px;
}
@media (max-width: 1050px) {
  .main-section .statistics-wrap .statistics-row .descr {
    padding-left: 11px;
  }
}
@media (max-width: 991px) {
  .main-section .statistics-wrap .statistics-row .descr {
    font-size: 14px;
  }
}

.services-sec .center-wrap {
  margin-bottom: 48px;
}
.services-sec .center-wrap .descr br {
  display: none;
}
@media (max-width: 991px) {
  .services-sec .center-wrap .descr br {
    display: block;
  }
}

.services-faq .services-tab {
  margin-bottom: 24px;
  transition: height 0.3s ease;
  position: relative;
}
.services-faq .services-tab .services-tab__content_wrap {
  display: none;
  position: relative;
  width: 100%;
  top: -143px;
  margin-bottom: -143px;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .services-faq .services-tab .services-tab__content_wrap {
    top: -193px;
    margin-bottom: -193px;
  }
}
.services-faq .services-tab.open .services-tab__head {
  opacity: 0;
}
.services-faq .services-tab.open .services-tab__content_wrap {
  position: relative;
}
.services-faq .services-tab:last-of-type {
  margin-bottom: 0;
}
.services-faq .services-tab__head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5FAFE;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 768px) {
  .services-faq .services-tab__head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.services-faq .services-tab__head-title {
  display: flex;
  text-decoration: unset;
  align-items: center;
  position: relative;
  width: calc(100% - 380px);
}
@media (max-width: 991px) {
  .services-faq .services-tab__head-title {
    width: calc(100% - 370px);
  }
}
@media (max-width: 768px) {
  .services-faq .services-tab__head-title {
    width: 100%;
  }
}
.services-faq .services-tab__head-title span {
  margin-right: 8px;
}
.services-faq .services-tab__head-title span .icon-mobile {
  margin-left: 8px;
}
@media (max-width: 768px) {
  .services-faq .services-tab__head-title span .icon-mobile {
    display: inline;
  }
}
@media (max-width: 768px) {
  .services-faq .services-tab__head-title .icon {
    display: none;
  }
}
.services-faq .services-tab__head-title br {
  display: none;
}
@media (max-width: 768px) {
  .services-faq .services-tab__head-title br {
    display: block;
  }
}
.services-faq .services-tab__head-img {
  width: 340px;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-faq .services-tab__head-img {
    width: 100%;
    height: 96px;
    margin-bottom: 24px;
  }
}
.services-faq .services-tab__head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-faq .services-tab__content {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background-color: #00294C;
  padding: 24px;
  align-items: stretch;
  cursor: pointer;
}
@media (max-width: 768px) {
  .services-faq .services-tab__content {
    flex-direction: column-reverse;
  }
}
.services-faq .services-tab__content-text {
  width: 40%;
}
@media (max-width: 991px) {
  .services-faq .services-tab__content-text {
    width: calc(100% - 368px);
    margin-right: 28px;
  }
}
@media (max-width: 768px) {
  .services-faq .services-tab__content-text {
    width: 100%;
    margin-right: 0;
  }
}
.services-faq .services-tab__content-text h3 {
  width: 60%;
  padding-bottom: 22px;
  border-bottom: 1px solid #fff;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .services-faq .services-tab__content-text h3 {
    padding-bottom: 24px;
    margin-bottom: 24px;
    width: 90%;
  }
}
.services-faq .services-tab__content-text p {
  margin-bottom: 24px;
}
.services-faq .services-tab__content-img {
  width: 340px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .services-faq .services-tab__content-img {
    width: 100%;
    margin-bottom: 24px;
  }
}
.services-faq .services-tab__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .services-faq .services-tab__content-img img {
    position: initial;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .benefits-sec .center-wrap .descr br {
    display: none;
  }
}

.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  row-gap: 24px;
  column-gap: 20px;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .benefits-wrap {
    column-gap: 24px;
  }
}
@media (max-width: 768px) {
  .benefits-wrap {
    margin-top: 72px;
    grid-template-columns: 1fr;
    column-gap: unset;
  }
}
.benefits-wrap .benefits-row {
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 24px 42px 24px 36px;
}
@media (max-width: 768px) {
  .benefits-wrap .benefits-row {
    flex-direction: column;
    padding: 24px;
    align-items: flex-start;
  }
}
.benefits-wrap .benefits-row__icon {
  margin-right: 36px;
}
@media (max-width: 991px) {
  .benefits-wrap .benefits-row__icon {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .benefits-wrap .benefits-row__icon {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.benefits-wrap .benefits-row__icon img {
  width: 60px;
}
@media (max-width: 991px) {
  .benefits-wrap .benefits-row__icon img {
    width: 48px;
  }
}
@media (max-width: 768px) {
  .benefits-wrap .benefits-row__icon img {
    width: 60px;
  }
}
.benefits-wrap .benefits-row__text {
  width: calc(100% - 96px);
}
@media (max-width: 991px) {
  .benefits-wrap .benefits-row__text {
    width: calc(100% - 72px);
  }
}
@media (max-width: 768px) {
  .benefits-wrap .benefits-row__text {
    width: 100%;
  }
}
.benefits-wrap .benefits-row__text-title {
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
}
.benefits-wrap .benefits-row__text-title:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #DEE4E8;
}

@media (max-width: 560px) {
  .delivery-sec .descr br {
    display: none;
  }
}
.delivery-sec__map {
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .delivery-sec__map {
    margin-top: 48px;
  }
}
.delivery-sec__map img {
  width: 100%;
}
.delivery-sec__map img.tablet_map {
  display: none;
}
@media (max-width: 1200px) {
  .delivery-sec__map img.tablet_map {
    display: block;
  }
}
@media (max-width: 560px) {
  .delivery-sec__map img.tablet_map {
    display: none;
  }
}
.delivery-sec__map img.mob_map {
  display: none;
}
@media (max-width: 560px) {
  .delivery-sec__map img.mob_map {
    display: block;
  }
}
.delivery-sec__map img.desktop_map {
  display: block;
}
@media (max-width: 1200px) {
  .delivery-sec__map img.desktop_map {
    display: none;
  }
}

.advantages-sec .heading {
  margin-bottom: 48px;
  text-align: center;
}

.advantages-wrap {
  display: flex;
}
@media (max-width: 1150px) {
  .advantages-wrap {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .advantages-wrap {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 48px;
  }
}
@media (max-width: 768px) {
  .advantages-wrap {
    flex-direction: column;
    flex-wrap: unset;
    align-items: center;
    row-gap: 24px;
  }
}
@media (max-width: 360px) {
  .advantages-wrap {
    padding: 0 24px;
  }
}
.advantages-wrap .advantages-step {
  width: calc(25% - 15.3px);
  margin-right: 46px;
}
@media (max-width: 1250px) {
  .advantages-wrap .advantages-step {
    width: calc(25% - 6.6px);
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .advantages-wrap .advantages-step {
    width: 270px;
    margin-right: 0;
  }
  .advantages-wrap .advantages-step:nth-of-type(odd) {
    margin-right: 130px;
  }
}
@media (max-width: 768px) {
  .advantages-wrap .advantages-step:nth-of-type(odd) {
    margin-right: 0;
  }
}
@media (max-width: 360px) {
  .advantages-wrap .advantages-step {
    width: 100%;
  }
}
.advantages-wrap .advantages-step:last-of-type {
  margin-right: 0;
}
.advantages-wrap .advantages-step__number {
  border-radius: 8px;
  background-color: #fff;
  padding: 36px 60px 97px;
  display: flex;
  justify-content: center;
}
.advantages-wrap .advantages-step__number span {
  color: rgb(0, 41, 76);
  font-size: 110px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0.15%;
}
.advantages-wrap .advantages-step__text {
  border-radius: 4px;
  background-color: #C9C9C9;
  padding: 29px 29px 30px;
  margin: -70px 17px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
}
.advantages-wrap .advantages-step__text span {
  color: #00294C;
}

.contact-form-sec {
  padding: 85px 0 86px;
  background-image: url(../img/bcg_sea_form.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1200px) {
  .contact-form-sec {
    padding: 72px 0;
    background-image: url(../img/bcg_sea_form_tablet.png);
  }
}
@media (max-width: 768px) {
  .contact-form-sec {
    padding: 96px 0 72px;
  }
}
.contact-form-sec__text {
  width: 45%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 991px) {
  .contact-form-sec__text {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .contact-form-sec__text {
    width: 100%;
  }
}
.contact-form-sec__text .heading {
  margin-bottom: 24px;
}
.contact-form-sec__text .descr {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .contact-form-sec__text .descr {
    margin-bottom: 42px;
  }
}
.contact-form-sec__text form {
  width: 100%;
}
.contact-form-sec__text .btn {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact-form-sec__text .btn {
    width: 100%;
    margin-bottom: 24px;
  }
}
.contact-form-sec__text .descr_small {
  display: block;
  margin-bottom: 0;
}
.contact-form-sec__text .descr_small a {
  color: #fff;
}
.contact-form-sec .inputs-flex {
  display: flex;
}
@media (max-width: 768px) {
  .contact-form-sec .inputs-flex {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.contact-form-sec .inputs-flex .input-row {
  width: calc(50% - 10px);
  text-align: start;
  margin-bottom: 24px;
  position: relative;
}
.contact-form-sec .inputs-flex .input-row:nth-of-type(odd) {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .contact-form-sec .inputs-flex .input-row {
    width: 100%;
    margin-bottom: 24px;
  }
  .contact-form-sec .inputs-flex .input-row:nth-of-type(odd) {
    margin-right: 0;
  }
}
.contact-form-sec .inputs-flex .input-row input {
  width: 100%;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  outline: none;
}
.contact-form-sec .inputs-flex .input-row input::placeholder {
  opacity: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer-top {
    padding: 72px 0 48px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .footer-top .menu {
    order: 3;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .footer-top .menu li {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .footer-top .menu li {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .footer-top .menu li:last-of-type {
    margin-bottom: 48px;
  }
}
.footer-top .soc-media-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-top .soc-media-wrap {
    order: 2;
    margin-bottom: 48px;
  }
}
.footer-top .soc-media-wrap .s-m-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: 0.2s ease;
}
.footer-top .soc-media-wrap .s-m-icon:last-of-type {
  margin-right: 0;
}
.footer-top .soc-media-wrap .s-m-icon:hover {
  background-color: #B0DBFD;
}
.footer-top .soc-media-wrap .s-m-icon svg {
  width: 12px;
  height: 12px;
}
.footer-top .logo {
  width: 200px;
  height: 43px;
}
@media (max-width: 768px) {
  .footer-top .logo {
    order: 1;
  }
}
.footer-top .logo img {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 24px;
}
@media (max-width: 768px) {
  .footer-bottom {
    padding: 24px 0;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .footer-bottom .descr {
    text-align: center;
  }
}
.footer-bottom .descr br {
  display: none;
}
@media (max-width: 560px) {
  .footer-bottom .descr br {
    display: block;
  }
}
.footer-bottom__links {
  display: flex;
  padding-left: 0;
}
@media (max-width: 768px) {
  .footer-bottom__links {
    margin-bottom: 24px;
  }
}
.footer-bottom__links li {
  list-style: none;
  margin-right: 24px;
}
.footer-bottom__links li:last-of-type {
  margin-right: 0;
}
.footer-bottom__links li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.error {
  font-size: 12px;
  color: red;
}

.suss {
  color: #fff;
  margin-bottom: 10px;
  margin-top: -5px;
  display: none;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.25);
}
.popup::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}
.popup .popup_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.popup .popup_container .popup_wrap {
  width: 610px;
  height: auto;
  padding: 48px 65px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .popup .popup_container .popup_wrap {
    width: 100%;
    padding: 48px 36px;
    max-width: 530px;
  }
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap {
    width: 100%;
    padding: 54px 24px 48px;
    margin: 0 24px;
  }
}
.popup .popup_container .popup_wrap .close_popup {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.popup .popup_container .popup_wrap .logo_popup {
  text-align: center;
  margin-bottom: 98px;
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap .logo_popup {
    margin-bottom: 102px;
  }
}
.popup .popup_container .popup_wrap .logo_popup img {
  width: 198px;
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap .logo_popup img {
    width: 137px;
  }
}
.popup .popup_container .popup_wrap .title_popup {
  color: rgb(0, 41, 76);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin-bottom: 36px;
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap .title_popup {
    margin-bottom: 17px;
  }
}
.popup .popup_container .popup_wrap .popup_form {
  display: flex;
  flex-direction: column;
}
.popup .popup_container .popup_wrap .popup_form .suss {
  color: rgb(0, 41, 76);
  text-align: center;
  margin-top: 10px;
}
.popup .popup_container .popup_wrap .popup_form label {
  color: rgb(0, 41, 76);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin-bottom: 12px;
}
.popup .popup_container .popup_wrap .popup_form label.error {
  font-size: 12px;
  color: red;
  font-weight: 400;
  margin-top: -25px;
}
.popup .popup_container .popup_wrap .popup_form label span {
  background: linear-gradient(0deg, #FFB138 0%, #FF257E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.popup .popup_container .popup_wrap .popup_form input {
  font-family: Inter;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  box-sizing: border-box;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 4px;
  margin-bottom: 24px;
  outline: none;
}
.popup .popup_container .popup_wrap .popup_form input.error {
  border: 1px solid red;
}
.popup .popup_container .popup_wrap .popup_form input::placeholder {
  color: rgb(224, 224, 224);
}
.popup .popup_container .popup_wrap .popup_form button {
  color: #fff;
  font-weight: 600;
  margin: 24px auto 0;
  font-size: 16px;
}
.popup .popup_container .popup_wrap .popup_form button:hover {
  color: #00294C;
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap .popup_form button:hover {
    color: #fff;
    background: #00294C;
  }
}
@media (max-width: 560px) {
  .popup .popup_container .popup_wrap .popup_form button {
    width: 202px;
  }
}
