@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  --black-primary: #121212;
  --accent-color: #235BA8;
  --gray-color: #757575;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
}

body._lock {
  overflow: hidden;
}

a {
  text-decoration: none !important;
}

.container {
  max-width: 1332px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

.button-custom {
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  /* border: 1px solid var(--Border-border-default-hover, #BBBBBB); */
  border-radius: 32px;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Manrope", sans-serif;
  height: 56px;
}

.button-custom svg,
.button-custom img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.button-custom:hover {
  background-color: #f6f6f6;
}

.button-custom.blue {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--accent-color);
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .button-custom.blue:hover {
    background: var(--Bakground-bg-accent-primary-hover, #1C4A8A);
  }
}

.burger-btn {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.burger-btn span {
  width: 18px;
  height: 1px;
  background-color: var(--black-primary);
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
}

.burger-btn::before {
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--black-primary);
  position: absolute;
  top: 13px;
  left: calc(50% - 9px);
}

.burger-btn::after {
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--black-primary);
  position: absolute;
  bottom: 13px;
  left: calc(50% - 9px);
}

.burger-btn:hover {
  background-color: #f6f6f6;
}

@media (max-width: 920px) {
  .for-desk {
    display: none;
  }
}

.for-mobile {
  display: none;
}

@media (max-width: 920px) {
  .for-mobile {
    display: block;
  }
}

.header {
  padding: 12px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--black-primary);
  position: fixed;
  width: 100%;
  background: white;
  transition: all 0.3s ease 0s;
  z-index: 10;
}

/* Класс для скрытия шапки */
.header.hidden {
  transform: translateY(-100%);
}

/* Класс для показа шапки */
.header.visible {
  transform: translateY(0);
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  max-width: 214px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
}

.header__logo a {
  text-decoration: none;
  color: inherit;
}

.header__logo svg {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header__nav {
  margin-right: auto;
}

.header__nav .social {
  display: none;
}

.header__close {
  display: none;
}



.header__nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 8px;
}

.header__nav nav ul li a {
  color: inherit;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  border: 1px solid var(--Border-border-default-hover, #BBBBBB);
  border-radius: 32px;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__nav nav ul li a:hover {
  background-color: #f6f6f6;
}

.header__nav nav ul li.active a {
  background-color: #f6f6f6;
}

.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header__action .header-lang button {
  background-color: transparent;
  border: 1px solid var(--Border-border-default-hover, #BBBBBB);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}

.header__action .header-lang button:hover {
  background-color: #f6f6f6;
}

.header__action button,
.header__action a {
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--Border-border-default-hover, #BBBBBB);
  color: inherit;
  font-size: 14px;
}

.header__burger {
  display: none;
}

@media (max-width: 920px) {

  .header__action {
    display: none;
  }

  .header__burger {
    display: block;
  }
}

.header__nav p {
  display: none;
}

@media (max-width: 920px) {
  .header__nav .social {
    display: block;
    margin-top: 0;
  }

  .header__nav .social ul li a {
    width: 40px;
    height: 40px;
  }

  .header__nav {
    display: block;
    position: fixed;
    left: 30%;
    right: 0;
    bottom: 0;
    top: 0;
    height: calc(100vh - 132px);
    background: white;
    padding: 12px 12px 132px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 16px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0s;
  }

  .header__nav nav ul {
    display: grid;
    grid-gap: 16px;
  }

  .header__nav nav ul li a {
    width: fit-content;
    padding: 0;
    border: 0px;
    font-size: 16px;
    font-weight: 600;
    height: fit-content;
    line-height: 150%;
  }

  .header__nav.open {
    visibility: visible;
    opacity: 1;
  }

  .header__nav p {
    display: block;
    margin-top: auto;
    font-size: 12px;
    margin-bottom: 0;
  }

  .header__nav._active {}

  .header__close {
    display: block;
    margin-left: auto;
  }

  .header__bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 110vh;
    background: rgba(18, 18, 18, 0.40);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0s;
  }

  .header__bg._active {
    visibility: visible;
    opacity: 1;
  }
}

.hero {
  padding: 128px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hero__top {
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E2E2;
}

.hero__top svg {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hero__mobile {
  display: none;
}

.hero__bottom {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E2E2;
}

.hero__info {
  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;
}

.hero__info span {
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.hero__info span:first-child {
  padding-left: 20px;
}

.hero__info span:first-child::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  left: 0;
  top: calc(50% - 6px);
  border-radius: 50%;
  position: absolute;
}

.hero__info span:last-child {
  padding-right: 20px;
}

.hero__info span:last-child::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  right: 0;
  top: calc(50% - 6px);
  border-radius: 50%;
  position: absolute;
}

.hero__info:first-child {
  margin-bottom: 32px;
}

.hero__info:last-child {
  margin-top: 32px;
}

.hero__form {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__form h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 116%;
  margin: 0;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.hero__form p {
  color: var(--gray-color);
  font-size: 16px;
  margin: 0;
  display: block;
  margin-bottom: 32px;
  max-width: 430px;
  text-align: center;
}

.hero__form .button-custom {
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: #fff;
  height: 56px;
}

.travel-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 550px;
  width: 100%;
}

.destination-selector {
  max-width: 360px;
  width: 100%;
  position: relative;
}

.destination-input {
  width: 100%;
  padding: 16px 50px 16px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background-color: #f6f6f6;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.destination-input.changed {
  background-color: #fff;
}

.destination-input:hover {
  border-color: #ccc;
}

.destination-input:focus,
.destination-input.active {
  outline: none;
  border-color: #4c7bd9;
  -webkit-box-shadow: 0 0 0 3px rgba(76, 123, 217, 0.1);
  box-shadow: 0 0 0 3px rgba(76, 123, 217, 0.1);
}

.destination-input::-webkit-input-placeholder {
  color: #999;
}

.destination-input::-moz-placeholder {
  color: #999;
}

.destination-input:-ms-input-placeholder {
  color: #999;
}

.destination-input::-ms-input-placeholder {
  color: #999;
}

.destination-input::placeholder {
  color: #999;
}

.globe-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.chevron-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.destination-input.active~.chevron-icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 8px;
  max-height: 350px;
  overflow-y: auto;
}

.dropdown.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.dropdown-section {
  padding: 12px 0;
}

.dropdown-section:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.section-title {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.dropdown-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.dropdown-option:hover {
  background-color: #f8f9fa;
}

.option-flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.option-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.option-name {
  font-weight: 500;
  font-size: 15px;
  color: #333;
  margin-bottom: 2px;
}

.option-desc {
  font-size: 13px;
  color: #666;
}

.select-button {
  background: #4c7bd9;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.select-button:hover {
  background: #4068c9;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.select-button:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Scrollbar */
.dropdown::-webkit-scrollbar {
  width: 4px;
}

.dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 600px) {
  .travel-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .select-button {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 96px;
  }

  .hero__top {
    padding-bottom: 32px;
  }

  .hero__mobile {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #E2E2E2;
  }

  .hero__mobile .hero__info span {
    font-size: 12px;
  }

  .hero__form h2 {
    font-size: 32px;
    max-width: 286px;
    line-height: 1.3;
  }

  .hero__form p {
    max-width: 294px;
    font-size: 16px;
  }
}

.land-content {
  padding: 60px 0 128px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.land-content .container {
  display: grid;
  grid-gap: 126px;
  grid-template-columns: 60% 1fr;
}

@media (max-width: 920px) {
  .land-content .container {
    grid-template-columns: 1fr;
  }
}

.land-content__static {
  /* max-width: 753px; */
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
}

.land-content__stick {
  position: sticky;
  top: 65px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 420px;
  width: 100%;
}

.land-content__stick .land-form {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
}

.land-content__stick .land-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.land-content__stick .land-form form::before {
  content: 'Your message has been send';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: white;
  font-weight: 600;
  padding: 20p;
  font-size: 20px;
  border-radius: 15px;
  background: #69c773;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.land-content__stick .land-form form.form-success::before {
  visibility: visible;
  opacity: 1;
}

.land-content__stick .land-form form .form-header {
  border-bottom: 1px solid #e2e2e2;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.land-content__stick .land-form form.form-su .land-content__stick .land-form form .form-header h3 {
  margin: 0;
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black-primary);
}

.land-content__stick .land-form form .form-content {
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.land-content__stick .land-form form .form-content>label {
  margin-bottom: 8px;
  border-radius: 8px;
}

.land-content__stick .land-form form .form-content>label.error input,
.land-content__stick .land-form form .form-content>label.error textarea {
  border: 1px solid var(--Border-border-danger, #E53935);
}

.land-content__stick .land-form form .form-content>label.error .error-message {
  color: var(--Text-text-danger, #E53935);
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.land-content__stick .land-form form .form-content>label input,
.land-content__stick .land-form form .form-content>label textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--black-primary);
  border: none;
  background-color: #F6F6F6;
  resize: none;
  padding: 15px;
  /* font-weight: 600; */
  font-family: Manrope;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
}

:focus-visible {
  outline: 0;
}

.land-content__stick .land-form form .form-content>label input::placeholder,
.land-content__stick .land-form form .form-content>label textarea::placeholder {
  color: #BBB;
}

.land-content__stick .land-form form .form-content>label textarea {
  min-height: 152px;
}

.land-content__stick .land-form form .form-content .checkbox {
  margin-bottom: 20px;
  cursor: pointer;
}

.land-content__stick .land-form form .form-content .checkbox:last-child {
  margin-bottom: 0;
}

.land-content__stick .land-form form .form-content .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  padding-left: 36px;
}

.land-content__stick .land-form form .form-content .checkbox label p {
  margin: 0;
}

.land-content__stick .land-form form .form-content .checkbox label input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.land-content__stick .land-form form .form-content .checkbox label input:checked+span {
  background-color: var(--accent-color);
  border-color: transparent;
}

.land-content__stick .land-form form .form-content .checkbox label input:checked+span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 8px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.land-content__stick .land-form form .form-content .checkbox label input:checked+span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 14px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.land-content__stick .land-form form .form-content .checkbox label input+span {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}

.land-content__stick .land-form form .form-content .checkbox label.error .form-decor {

  border-color: var(--Text-text-danger, #E53935);

}

.land-content__stick .land-form form .form-action {
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #E2E2E2;
}

.land-content__stick .land-form form .form-action button {

  border-color: transparent;
  cursor: pointer;
}

.land-content .section-title {
  padding: 0;
  margin-bottom: 30px;
}

.land-content .section-title .title-item {
  font-size: 48px;
  line-height: 1.2;
  color: var(--black-primary);
  margin: 0;
  margin-bottom: 14px;
  font-weight: 600;
}

@media (max-width: 920px) {
  .land-content .section-title .title-item {
    font-size: 32px;
  }
}

.land-content .section-title p {
  margin: 0;
  display: block;
  font-size: 16px;
  color: var(--gray-color);
  font-weight: 400;
}

@media (max-width: 920px) {
  .land-content .section-title p {
    font-size: 16px;
  }
}

.expert {
  padding-bottom: 60px;
}

.expert__mobile-btn {
  display: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 32px;
}

@media (max-width: 920px) {
  .expert__mobile-btn {
    background: white;
    border-top: 1px solid var(--Border-border-default, #E2E2E2);
    background: var(--Bakground-bg-contrast-primary, #FFF);
    display: flex;
    padding: var(--Space-Space-16px, 16px) var(--Space-Space-32px, 32px);
    align-items: center;
    gap: var(--Space-Space-16px, 16px);
    transition: all 0.3s ease 0s;
  }

  .expert__mobile-btn.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
  }

  .expert__mobile-btn.hidden {
    transform: translateY(100%);
  }
}

.expert__mobile-btn button {
  width: 100%;
}

@media (max-width: 920px) {
  .expert__mobile-btn {
    display: block;
  }
}

.expert__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 60px;
}

.expert__info-img {
  margin-right: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.expert__info-img img {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 200px;
}

.expert__info-text {
  max-width: 517px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.expert__info-text h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: var(--black-primary);
  line-height: 1.2;
  margin-top: -5px;
  margin-bottom: 20px;
}

.expert__info-text p {
  color: var(--gray-color);
  margin: 0;
  display: block;
  margin-bottom: 10px;
}

.expert__info-text p:last-child {
  margin-bottom: 0;
}

.mission {
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #E2E2E2;
}

.mission__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -7.5px;
}

.mission__item {
  margin: 0 7.5px 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E2E2E2;
  width: calc(50% - 15px);
}

.mission__item h3 {
  display: block;
  margin: 0;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: var(--black-primary);
}

.mission__item p {
  margin: 0;
  display: block;
  font-size: 16px;
  max-width: 260px;
  color: var(--gray-color);
}

.mission__img {
  display: block;
}

.mission__img img {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.consultant {
  padding: 60px 0 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.consultant__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0 16px;
}

@media (max-width: 620px) {
  .consultant__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 16px;
  }
}

.consultant__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #E2E2E2;
}

.consultant__item:nth-child(1) {
  border-top: 1px solid #E2E2E2;
}

.consultant__item:nth-child(2) {
  border-top: 1px solid #E2E2E2;
}

.consultant__item:nth-child(3) {
  border-top: 1px solid #E2E2E2;
}

.consultant__item:nth-child(4) {
  border-top: 1px solid #E2E2E2;
}

.consultant__item .img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.consultant__item .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultant__item .text p {
  margin: 0;
}

.down-notice {
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--black-primary);
  background-color: #EBF4FF;
  border-radius: 16px;
}

.down-notice h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 8px;
  font-weight: 600;
}

.down-notice p {
  margin: 0;
  display: block;
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 400;
}

.down-notice .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -7.5px;
  margin-top: 18px;
}

.down-notice .items .item {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 7.5px 8px;
}

.down-notice .items .item .ico {
  margin-right: 18px;
}

.down-notice .items .item .ico svg {
  display: block;
}

.down-notice .items .item p {
  color: var(--black-primary);
  margin: 0;
  display: block;
}

.reviews {
  background-color: var(--black-primary);
  color: #fff;
  padding: 128px 0;
}

.faq {
  padding: 128px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.faq__body {
  display: grid;
  grid-gap: 125px;
  grid-template-columns: 24% 1fr;
}

@media (max-width: 920px) {
  .faq__body {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}

.faq__body .col:first-child {

  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq__body .col .img {
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.faq__body .col .img img {
  display: block;
  width: 100%;
}

.faq__body .col:last-child {

  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 920px) {
  .faq__body .col:last-child {
    order: -1;
  }
}

.faq__action {
  margin-top: auto;
}

.faq__title {
  margin-bottom: 60px;
}

.faq__title h2 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--black-primary);
  margin: 0;
  display: block;
  font-weight: 600;
}

.faq__item {
  border-top: 1px solid #e2e2e2;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  padding-bottom: 0;
}

.faq__item.active {
  padding-bottom: 20px;
}

.faq__item:last-child {
  border-bottom: 1px solid #e2e2e2;
}

.faq__item button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  background-color: transparent;
  border: none;
  padding: 20px 0;
  padding-right: 60px;
  font-size: 24px;
  color: var(--black-primary);
  position: relative;
  cursor: pointer;
}

.faq__item button.active span {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq__item button span {
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  transition: all 0.3s ease 0s;
}

.faq__item button span:hover {
  background: var(--Bakground-bg-accent-primary-hover, #1C4A8A);
}

.faq__item button span::before {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 1px);
  width: 18px;
  background-color: #fff;
  height: 2px;
  border-radius: 1px;
}

.faq__item button span::after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 1px);
  width: 18px;
  background-color: #fff;
  height: 2px;
  border-radius: 1px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  visibility: hidden;
  opacity: 0;
  padding-bottom: 0;
}

.faq__answer.active {
  opacity: 1;
  visibility: visible;
}

.faq__answer p {
  margin: 0;
  display: block;
  color: var(--gray-color);
  padding-right: 80px;
}

.review {
  padding: 120px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.review__title {
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
}

.review__title .col {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.review__title .col:last-child p {
  font-size: 16px;
  color: var(--gray-color);
  max-width: 315px;
  display: block;
  margin-left: auto;
}

.review__title .col h2 {
  font-size: 48px;
  margin: 0;
  display: block;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 64px;
  font-weight: 600;
}

.review__title .col:first-child {
  border-bottom: 1px solid #393939;
  padding-bottom: 15px;
}

.review__slider .swiper-slide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #393939;
  border-radius: 15px;
}

.review__slider .swiper-slide .review-slide__head {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__slider .swiper-slide .review-slide__head .img {
  margin-right: 15px;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7A1EA2;
}



.review__slider .swiper-slide .review-slide__head .name-date {
  margin-right: auto;
}

.review__slider .swiper-slide .review-slide__head .name-date p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.review__slider .swiper-slide .review-slide__head .name-date span {
  color: var(--gray-color);
  font-size: 12px;
  line-height: 1.2;
}

.review__slider .swiper-slide .review-stars {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.review__slider .swiper-slide .review-stars::after {
  content: url(/assets/imgs/verif.svg);
  margin-left: 8px;
  margin-top: 4px;
}

.review__slider .swiper-slide .review-stars svg {
  margin-right: 4px;
  display: block;
}

.review__slider .swiper-slide .text p {
  height: 110px;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review__slider .swiper-slide .text p.expanded {
  height: 100%;
}

.review__slider .swiper-slide .text button {
  border: none;
  background-color: transparent;
  padding: 5px 0;
  color: var(--gray-color);
  font-size: 14px;
  cursor: pointer;
}

.reiview-title__info {
  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;
  gap: 15px;
}

.reiview-title__info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reiview-title__info .name svg {
  display: block;
  margin-right: 15px;
}

.reiview-title__info .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.reiview-title__info .rating span {
  font-size: 24px;
}

.reiview-title__info .rating .rate-count {
  font-size: 14px;
  color: var(--gray-color);
}

@media (max-width: 1200px) {
  .land-content__stick {
    max-width: 310px;
  }

  .land-content .land-form {
    margin-left: auto;
  }

  .expert__info-img img {
    height: 100%;
    width: 100%;
    min-width: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
  }

  /* .expert__info-text {
    max-width: 304px;
  } */

  .faq__body .col:first-child {
    margin-right: auto;
  }

  .faq__body .col:last-child {
    /* max-width: 635px; */
  }
}

@media (max-width: 1023px) {
  .review__slider {
    margin-right: -15px;
  }
}

@media (max-width: 920px) {
  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .faq__body .col:last-child {
    margin-left: 0;
  }

  .faq__body .col:first-child img {
    display: none;
  }

  .faq__title {
    margin-bottom: 30px;
  }

  .faq__title h2 {
    font-size: 32px;

  }

  .faq__item button {
    font-size: 16px;
  }

  .faq__answer {
    font-size: 14px;
  }

  .land-content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .land-content__stick {
    position: static;
    max-width: none;
    width: 100%;
    margin: 0 0 32px;
  }

  .land-content__static {
    max-width: none;
    margin: 0;
  }

  .review__title {
    -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;
  }

  .review__title .col:first-child {
    width: 100%;
    margin: 0;
  }

  .review__title .col h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .review__title .col p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.4;
    max-width: 450px;
    display: block;
    margin: 0;
    margin-bottom: 60px;
  }

  .consultant {
    padding-top: 32px;
  }

  .consultant__item {}



  .expert__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .expert__info-img {
    margin: 0 0 30px;
  }

  .expert__info-img img {
    width: 100%;
    height: 280px;
    -o-object-position: center;
    object-position: center;
    min-width: 0;
    max-width: none;
  }

  .expert__info-text {
    max-width: none;
    margin: 0;
  }

  .expert__info-text h2 {
    font-size: 32px;
    max-width: 240px;
  }
}

@media (max-width: 767px) {}

@media (max-width: 620px) {
  .consultant__item:nth-child(3) {
    border-top: none;
  }

  .consultant__item:nth-child(4) {
    border-top: none;
  }

  .reiview-title__info {
    -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;
  }

  .expert {
    padding-bottom: 32px;
  }

  .expert__info {
    padding-bottom: 32px;
  }

  .expert__info-img img {
    height: 140px;
  }

  .mission__item h3 {
    font-size: 16px;
  }

  .mission__item p {
    font-size: 14px;
  }

  .mission__img img {
    height: 140px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    border-radius: 15px;
  }
}

@media (max-width: 620px) {
  .down-notice .items {
    margin: 0;
    margin-top: 15px;
  }

  .down-notice .items .item {
    width: 100%;
    margin: 0 0 8px;
  }
}

.footer {
  background-color: var(--black-primary);
  color: #fff;
  padding: 64px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.footer__top {
  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;
  margin-bottom: 72px;
}

.footer__logo {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  max-width: 204px;
}

.footer__button-top .btn-top {
  display: block;
  border: none;
  background-color: #fff;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.footer__midlle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer__info {
  margin-right: 16px;
}

.social {
  margin-top: 16px;
}

.social ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.social ul li a {
  color: inherit;
  text-decoration: none;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gray-color);
  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: 50%;
}

.footer__info .info>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__info .info>ul li {
  max-width: 314px;
  margin-bottom: 32px;
}

.footer__info .info>ul li:last-child {
  margin-bottom: 0;
}

.footer__info .info>ul li span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--gray-color);
  margin-bottom: 8px;
}

.footer__info .info>ul li p,
.footer__info .info>ul li a {
  margin: 0;
  color: inherit;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  text-decoration: none !important;
}

.footer__nav {
  max-width: 432px;
  width: 100%;
}

.footer__nav p {
  margin: 0;
  display: block;
  color: var(--gray-color);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav ul li {
  margin-bottom: 14px;
}

.footer__nav ul li:last-child {
  margin-bottom: 0;
}

.footer__nav ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 16px;
  line-height: 1.2;
}

.footer__map {
  margin-bottom: 64px;
}

.footer__map iframe {
  width: 100%;
  border-radius: 16px;
  height: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-filter: grayscale(100%) invert(92%) contrast(83%);
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.footer__bot {
  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;
}

.footer__bot .links {
  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;
}

.footer__bot .links a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  color: var(--gray-color);
}

.footer__bot .links a:first-child {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #393939;
}

.footer__bot .copy {
  max-width: 174px;
  text-align: right;
  color: var(--gray-color);
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 920px) {
  .footer__nav {
    max-width: 240px;
  }
}

@media (max-width: 620px) {
  .footer__midlle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer__bot {
    -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;
  }

  .footer__bot .links {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__nav {
    margin: 0 0 32px;
    max-width: none;
    width: 100%;
  }

  .footer__nav ul {

    margin: 0 -10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .footer__nav ul li {
    /* width: calc(33.33% - 20px); */
    margin: 0 10px 20px;
  }
}

.form-content label>div {
  width: 100%;
}

.iti__selected-flag {
  border-radius: 16px;
}

.iti--separate-dial-code .iti__selected-flag {
  background: rgb(246, 246, 246);

}

.iti__country-list {
  border-radius: 8px 0 0 8px;
  width: fit-content;
  max-width: 388px;
  overflow-x: hidden;
  top: 50px;
  box-shadow: none;
  border: none;
  background: rgb(246, 246, 246);

}

@media (max-width: 991.98px) {
  .iti__country-list {
    max-width: 100%;
    left: 0;
  }
}


.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.4509803922);
  backdrop-filter: blur(6px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}

.popup.active {
  visibility: visible;
  overflow: auto;
}

.popup.active::before {
  opacity: 1;
}

.popup.active .popup__body {
  transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}

.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991.98px) {
  .popup__body {}
}

@media (max-width: 767.98px) {
  .popup__body {
    width: 300px;
    /* height: 310px; */
  }
}

.popup__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.popup__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .popup__bg {
    display: none;
  }
}

.popup__bg-mob {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.popup__bg-mob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .popup__bg-mob {
    display: block;
  }
}

.popup__close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 12px;
  cursor: pointer;
}

.popup__close svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .popup__close {
    background: url("../img/icons/close.svg") 0 0 no-repeat;
  }
}

.popup-succuess__body {
  color: var(--Text-text-default-primary, #121212);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.popup-succuess__wrapper {
  padding: 60px 16px 16px;
}

.popup-succuess__wrapper button {
  margin-left: auto;
  margin-right: auto;
  border: 0;
  padding: 16px 32px;
  margin-top: 23px;
}

@media (max-width: 767.98px) {
  .popup-succuess__body {
    max-width: 300px;
  }
}

.popup-succuess__ttl {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
  margin-top: 16px;
}

@media (max-width: 767.98px) {
  .popup-succuess__ttl {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.popup-succuess__txt {
  font-size: 16px;
  color: var(--Text-text-default-secondary, #757575);

}

@media (max-width: 767.98px) {
  .popup-succuess__txt {
    font-size: 16px;
  }
}

@media (max-width: 1440px) {
  .popup-success__subttl {
    font-size: 20px;
  }
}

.review-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 32px;
  margin-top: 35px;
}

.review-slider-nav__next,
.review-slider-nav__prev,
.review-slider-nav svg {
  height: 55px;
  width: 55px;
  cursor: pointer;
}

.review-slider-nav__bullets {
  width: fit-content !important;
  display: flex;
  gap: 8px;
}



.review-slider-nav__bullets .swiper-pagination-bullet {
  border: 1px solid #393939;
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background: transparent;
  opacity: 1;
}

.review-slider-nav__bullets .swiper-pagination-bullet-active {
  background: white;
}