@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lexend Deca";
  font-display: swap;
  src: url("../fonts/LexendDeca-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --bs-font-family: "Montserrat", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1;
  --bs-font-color: #222;
  --bs-transition: 0.3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #131313;
  --primary-hover-color: #2d2d2d;
  --secondary-color: #ff4040;
  --white-color: #fff;
  --black-color: #131313;
  --bs-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 8px 3px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.1), 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

/**
	Шаблоны (заготовки)
	@extend %имя шаблона;
*/
* {
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  touch-action: none;
  overflow: hidden;
}
html.lock .body-wrapper {
  margin-inline-end: var(--bh-scrollbar-width, 1rem);
}

html,
body {
  inline-size: 100%;
  block-size: 100%;
  min-inline-size: 320px;
}

.container {
  max-width: 1000px;
}

body {
  overscroll-behavior: none;
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  font-family: var(--bs-font-family) !important;
  font-size: var(--bs-font-size);
  font-weight: var(--bs-font-weight) !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body input,
body button,
body textarea {
  font-family: inherit;
}
body input::-ms-clear {
  display: none;
}
body input[type=number] {
  appearance: textfield;
}
body input[type=number]::-webkit-outer-spin-button, body input[type=number]::-webkit-inner-spin-button {
  appearance: none;
}
body button {
  cursor: pointer;
  user-select: none;
  background-color: transparent;
}
body button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
body a {
  user-select: none;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body a:focus, body a:active {
  outline: none;
}
body a:visited {
  text-decoration: none;
}
body ul {
  padding-left: 0;
}
body ul,
body li,
body a {
  list-style: none;
  color: #000;
  font-size: 16px;
}
body h2,
body h3,
body h4 {
  color: #000;
  font-weight: 500;
}
body h3 {
  font-size: 18px;
  font-weight: 500;
}
body p {
  color: #000;
  font-size: 16px;
  line-height: normal;
}
body span {
  display: inline-block;
  color: #000;
  font-size: 16px;
  line-height: normal;
}
@media (min-width: 768px) {
  body p, body span {
    font-size: 22px;
  }
  body h3 {
    font-size: 25px;
  }
}

*::-webkit-scrollbar {
  inline-size: 0.5rem;
  background-color: #fff;
}
*::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: #000;
}
@media (any-hover: hover) {
  *::-webkit-scrollbar-thumb:hover {
    background-color: #DAB541;
  }
}

@keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
@keyframes fade-up-big {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
ul,
li,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

.section-title-black {
  margin: 30px 0 35px;
}
.section-title-black span {
  color: #000;
  background-color: #fff;
  border: 3px solid #DAB541;
  border-radius: 15px;
  text-transform: uppercase;
  padding: 15px;
  font-size: 50px;
  font-weight: 700;
}

.box-section-title {
  color: #DAB541;
  font-weight: 700;
  margin-bottom: 20px;
}

.f-weight-500 {
  font-weight: 500;
}

.f-weight-600 {
  font-weight: 600;
}

.m-0 {
  padding: 0;
}

.text-center {
  text-align: center;
}

.btn-main {
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease-out;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  font-size: 25px;
}

.btn-yellow {
  background-color: #BD9714;
  border: 1px solid #DAB541;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  .section-title-black {
    width: 100%;
  }
  .section-title-black span {
    font-size: 25px;
    padding: 15px 30px;
    width: 100%;
  }
  .btn-main {
    font-size: 16px;
  }
}
.header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 200;
}
.header .header-logo {
  z-index: 201;
}
.header .header-logo img {
  width: 69px;
}
.header .header-menu {
  display: flex;
  align-items: center;
  width: 100%;
}
.header .header-menu .header-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.header .header-menu .menu-list {
  display: flex;
  gap: 10px;
  margin: 0;
}
@media (max-width: 1024px) {
  .header .header-menu .menu-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../../images/main-banner-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 40px 20px;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 3;
  }
  .header .header-menu .menu-list.open {
    transform: translateX(0);
  }
}
.header .header-menu .menu-item .menu-link {
  color: #DAB541;
  font-size: 18px;
  font-weight: 400;
}
.header .header-menu .menu-item .menu-link:hover {
  text-decoration: underline;
}
.header .header-menu .burger-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4;
}
.header .header-menu .burger-button .burger-line {
  height: 4px;
  border-radius: 4px;
  background: #DAB541;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.header .header-menu .burger-button.open .burger-line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}
.header .header-menu .burger-button.open .burger-line:nth-child(2) {
  opacity: 0;
}
.header .header-menu .burger-button.open .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}
@media (max-width: 1024px) {
  .header .header-menu .burger-button {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header .header-logo img {
    width: 100px;
  }
  .header .header-menu .menu-list {
    padding: 140px 40px 20px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .header .header-logo img {
    width: 95px;
  }
  .header .header-menu .menu-list {
    padding: 20px 0;
    gap: 15px;
  }
  .header .header-menu .menu-list {
    gap: 12px;
  }
}

.accordion {
  /** Установить свои значения */
}
.accordion__item {
  border: 1px solid rgba(0, 0, 0, 0.12);
  /** Установить свои значения */
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.accordion__item:not(:first-of-type) {
  border-block-start: 0;
}
.accordion__item:first-of-type {
  border-start-start-radius: 0.25rem;
  border-start-end-radius: 0.25rem;
}
.accordion__item:last-of-type {
  border-end-end-radius: 0.25rem;
  border-end-start-radius: 0.25rem;
}
.accordion__item.open .accordion__header {
  color: #ff4040;
  /** Установить свои значения */
  background-color: #e7f1ff;
}
.accordion__item.open .accordion__header::after {
  transform: rotate(0deg);
}
.accordion__item.open .accordion__content {
  block-size: max-content;
  /** Установить свои значения */
  padding: 2.25rem 0.5rem;
}
.accordion__header {
  cursor: pointer;
  display: flex;
  position: relative;
  /** Установить свои значения */
  padding: 0.5rem;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease-in-out;
}
.accordion__header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.accordion__header:active {
  background: rgba(255, 255, 255, 0.05);
}
.accordion__header::after {
  content: "";
  position: static;
  block-size: 1.5rem;
  inline-size: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  transition: transform 0.6s ease-in-out;
}
.accordion__content {
  block-size: 0;
  /** Установить свои значения */
  padding: 0 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.footer {
  background-color: #DAB541;
  padding: 30px 0 80px;
}
.footer .container {
  display: grid;
  gap: 8%;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.footer .logo-image {
  padding-bottom: 15px;
  width: 66px;
}
.footer .sub-text {
  font-weight: 600;
}
.footer .section-title {
  font-weight: 700;
  text-align: center;
}
.footer .consultation-badge__list {
  text-align: left;
  margin-left: 12px;
}
.footer .consultation-badge__item {
  font-size: 25px;
}
.footer .consultation-badge__check {
  padding-right: 5px;
  font-weight: 700;
}
.footer .left {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.footer .left p {
  text-align: center;
}
.footer .footer-image {
  height: 20px;
  width: 20px;
}
@media (min-width: 1024px) {
  .footer .container {
    gap: 35%;
  }
  .footer .footer-image {
    height: 22px;
    width: 22px;
  }
  .footer .left p {
    text-align: left;
  }
  .footer .consultation-badge__list {
    margin-left: 25px;
  }
  .footer .consultation-badge__list {
    max-width: 90%;
  }
  .footer .logo-image {
    width: 150px;
  }
}

.home-page-banner {
  background-image: url("../../images/main-banner-img.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.home-page-banner .main-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-page-banner .main-title {
  font-family: "Lexend Deca", sans-serif;
  -webkit-text-stroke: 1px #DAB541;
  font-size: 24px;
  color: transparent;
  margin-bottom: 60px;
}
.home-page-banner .book-spot {
  font-weight: 600;
  padding: 10px 25px;
  z-index: 10;
}
.home-page-banner .sub-title-wrapper {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-page-banner .sub-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  width: 100%;
}
.home-page-banner .sub-title .sub-title-image {
  width: 30px;
}
.home-page-banner .main-banner-block {
  padding: 240px 0 200px;
}
@media (min-width: 768px) {
  .home-page-banner .main-title {
    -webkit-text-stroke: 2px #DAB541;
    margin-bottom: 50px;
    font-size: 60px;
    max-width: 90%;
  }
  .home-page-banner .sub-title-wrapper {
    max-width: 70%;
    width: 100%;
  }
  .home-page-banner .sub-title {
    font-size: 25px;
    text-align: left;
  }
  .home-page-banner .sub-title .sub-title-image {
    width: 40px;
  }
}
@media (min-width: 1024px) {
  .home-page-banner .sub-title {
    font-size: 40px;
  }
}

.photo-block .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.photo-block .sub-text span {
  font-weight: 600;
}
.photo-block .image {
  position: relative;
  max-width: 700px;
}
.photo-block .content {
  display: flex;
  flex-direction: column-reverse;
}
.photo-block .content p {
  margin-bottom: 10px;
}
.photo-block .checklist {
  margin-top: 15px;
}
.photo-block .checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.photo-block .checklist li .text {
  font-weight: 600;
}
.photo-block .icon-check {
  color: #DAB541;
  font-size: 20px;
  margin-right: 10px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .photo-block .icon-check {
    font-size: 45px;
    margin-right: 30px;
  }
  .photo-block .sub-text {
    text-align: center;
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  .photo-block .content {
    flex-direction: row;
    margin-top: 20px;
    padding: 20px;
  }
  .photo-block .checklist {
    max-width: 70%;
    margin-top: 0;
  }
  .photo-block .checklist li .text {
    font-size: 30px;
    padding-right: 15px;
  }
}

.socials-section {
  margin-bottom: 60px;
}
.socials-section .socials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 90%;
}
.socials-section .right,
.socials-section .left {
  display: flex;
  justify-content: center;
}
.socials-section .contact-us-image {
  max-width: 80%;
}
.socials-section .social-item {
  margin-top: 15px;
}
.socials-section .social-item__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(218, 181, 65, 0.1);
  border: 2px solid #DAB541;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.socials-section .social-item__text {
  color: #DAB541;
  font-size: 16px;
  font-weight: 600;
}
.socials-section .social-item__icon {
  width: 35px;
}
@media (min-width: 768px) {
  .socials-section .social-item__text {
    font-size: 25px;
  }
}
@media (min-width: 1024px) {
  .socials-section .left {
    margin-bottom: 60px;
  }
  .socials-section .socials-wrapper {
    display: grid;
    gap: 10%;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .socials-section .socials-list {
    max-width: 80%;
  }
}

.asked-questions {
  background-color: #fff;
  padding: 30px 0;
}
.asked-questions .smart-matching-grid {
  display: flex;
  justify-content: center;
}
.asked-questions .smart-matching-text {
  flex: 1 1 50%;
}
.asked-questions .smart-matching-text .ca-main-sub-title {
  margin-bottom: 20px;
}
.asked-questions .smart-matching-text .ca-text-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.asked-questions .smart-matching-text .mart-matching-content {
  list-style: none;
  padding-left: 0;
  margin-bottom: 36px;
}
.asked-questions .smart-matching-text .mart-matching-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.asked-questions .smart-matching-text .mart-matching-content li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #1c1c1c;
}
.asked-questions .accordion-items {
  flex: 1 1 40%;
}
.asked-questions .accordion-items .accordion-item {
  border: 3px solid #DAB541;
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
}
.asked-questions .accordion-items .accordion-item .icon-down {
  margin-right: 10px;
}
.asked-questions .accordion-items .accordion-item .icon-down::before {
  color: #DAB541;
  font-size: 30px;
}
.asked-questions .link-block {
  width: 100%;
  padding: 20px 10px 20px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 30px;
}
.asked-questions .link-block.active .icon-down {
  transform: rotate(-180deg);
}
.asked-questions .link-block p {
  color: #000;
  padding-right: 5px;
  text-align: left;
}
.asked-questions .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.asked-questions .accordion-inner {
  color: #000;
  padding: 0 60px 20px 20px;
}
@media (min-width: 1024px) {
  .asked-questions .link-block {
    padding: 20px 10px 20px 60px;
  }
  .asked-questions .accordion-inner {
    padding: 0 70px 20px 80px;
  }
  .asked-questions .accordion-items {
    max-width: 70%;
  }
}

.services h3 {
  font-weight: 600;
  text-transform: uppercase;
}
.services .image-reverse {
  display: flex;
  flex-direction: column-reverse;
}
.services .section-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services .box {
  padding: 25px;
  margin-bottom: 15px;
}
.services .yellow-box {
  background-color: #DAB541;
  border: 3px solid #DAB541;
  border-radius: 20px;
}
.services .white-box {
  background-color: #fff;
  border: 3px solid #DAB541;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .services .section-container {
    gap: 40px;
  }
  .services .service-wrapper {
    display: flex;
    justify-content: space-between;
    width: 70%;
  }
  .services .service-wrapper .box {
    margin: 0 20px 0 0;
  }
  .services .service-wrapper.image-reverse {
    flex-direction: row;
  }
  .services .service-wrapper.image-reverse .box {
    margin: 0 0 0 20px;
  }
  .services .service-wrapper img {
    max-width: 200px;
  }
}

.countries-list .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.countries-list .sub-text {
  margin: 0;
}
.countries-list .countries-container {
  width: 100%;
}
.countries-list .countries-container .country-wrapper {
  border: 1px solid #DAB541;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.countries-list .countries-container .country-wrapper .country-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.countries-list .countries-container .country-wrapper .country-img {
  margin-right: 3px;
  width: 40px;
}
.countries-list .countries-slider {
  position: relative;
}
.countries-list .slick-next::before,
.countries-list .slick-prev::before {
  content: "";
}
.countries-list .slick-prev:hover,
.countries-list .slick-prev:focus,
.countries-list .slick-next:hover,
.countries-list .slick-next:focus {
  color: #DAB541;
}
.countries-list .custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #DAB541;
  cursor: pointer;
  z-index: 1;
}
.countries-list .slick-prev {
  left: 5px;
}
.countries-list .slick-next {
  right: 5px;
}
@media (min-width: 1024px) {
  .countries-list .countries-container {
    background-image: url("../../images/earth-background.png");
    background-position: center;
    background-size: 1000px auto;
    background-repeat: no-repeat;
  }
  .countries-list .mobile-earth-img {
    display: none;
  }
  .countries-list .sub-text {
    text-align: center;
    max-width: 80%;
  }
  .countries-list .slick-next,
  .countries-list .slick-prev {
    display: none;
  }
  .countries-list .countries-wrapper {
    display: flex;
    gap: 8px;
  }
  .countries-list .countries-wrapper .country-wrapper {
    max-width: 100%;
  }
  .countries-list .countries-column {
    max-width: 210px;
  }
  .countries-list .countries-slider {
    padding: 40px 0;
    display: flex;
    justify-content: center;
  }
}

.transportation .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.transportation .slider-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
}
.transportation .slick-slider {
  width: 100%;
  margin: 0 auto;
}
.transportation .slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}
.transportation .slick-dots {
  bottom: 0;
  margin-bottom: 10px;
}
.transportation .slick-dots li button:before {
  font-size: 50px;
  color: #D3C69F;
  opacity: 1;
}
.transportation .slick-dots li.slick-active button:before {
  color: #DAB541;
}
.transportation .slide img {
  max-width: 600px;
  object-fit: contain;
  display: block;
  border: 2px solid #DAB541;
  border-radius: 25px;
}
@media (min-width: 1024px) {
  .transportation .slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
  }
  .transportation .sub-text {
    text-align: center;
  }
}

.company-reviews {
  background-image: url("../../images/reviews-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.company-reviews .slider-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 20px;
}
.company-reviews .slick-slider {
  width: 100%;
  margin: 0 auto;
}
.company-reviews .slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.company-reviews .slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.company-reviews .slick-next::before,
.company-reviews .slick-prev::before {
  content: "";
}
.company-reviews .slick-prev:hover,
.company-reviews .slick-prev:focus,
.company-reviews .slick-next:hover,
.company-reviews .slick-next:focus {
  color: #DAB541;
}
.company-reviews .custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: #DAB541;
  cursor: pointer;
  z-index: 1;
}
.company-reviews .slick-prev {
  left: -45px;
}
.company-reviews .slick-next {
  right: -45px;
}
@media (min-width: 768px) {
  .company-reviews .slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
  }
}

.contact-section {
  padding-top: 30px;
}
.contact-section .icon-check {
  color: #DAB541;
  font-size: 40px;
  margin-right: 10px;
  margin-top: 5px;
}
.contact-section .consultation {
  padding: 0 15px 20px;
}
.contact-section .consultation__container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-section .consultation__points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.contact-section .consultation__point {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.contact-section .consultation__point span {
  font-size: 16px;
}
.contact-section .consultation__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-section .consultation__card {
  flex: 1;
  min-width: 280px;
  border: 2px solid #DAB541;
  border-radius: 14px;
  padding: 30px;
  box-sizing: border-box;
}
.contact-section .consultation .phone-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-section .consultation .phone-list__item + .phone-list__item {
  margin-top: 20px;
}
.contact-section .consultation .phone-list__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(218, 181, 65, 0.1);
  border: 1px solid #DAB541;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-section .consultation .phone-list__text {
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.contact-section .consultation .phone-list__icon {
  width: 30px;
}
.contact-section .consultation .phone-list__icon.phone-icon {
  width: 22px;
}
.contact-section .consultation .consultation-form {
  text-align: center;
}
.contact-section .consultation .consultation-form__header {
  text-align: center;
  margin-bottom: 20px;
}
.contact-section .consultation .consultation-form__title {
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-section .consultation .consultation-form__subtitle {
  font-weight: 500;
}
.contact-section .consultation .consultation-form__field {
  position: relative;
  margin-bottom: 15px;
}
.contact-section .consultation .consultation-form__fieldIcon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 20px;
  color: #DAB541;
}
.contact-section .consultation .consultation-form__input {
  width: 100%;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  border: 1px solid #DAB541;
  background-color: rgba(218, 181, 65, 0.1);
  font-size: 17px;
  outline: none;
}
.contact-section .consultation .consultation-form__input.is-invalid {
  border: 1px solid #D50000;
}
.contact-section .consultation .consultation-form__input:focus {
  border-color: #BD9714;
}
.contact-section .consultation .consultation-form__hint {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}
.contact-section .consultation .consultation-form__btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background-color: #BD9714;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-section .consultation .consultation-form__btn:hover {
  background-color: #DAB541;
}
@media (max-width: 1024px) {
  .contact-section .consultation__cards {
    flex-direction: column;
  }
  .contact-section .consultation__card {
    width: 100%;
  }
}
.contact-section .consultation-form__error {
  color: #D50000;
  text-align: left;
}
@media (min-width: 768px) {
  .contact-section .consultation__point span {
    font-size: 25px;
  }
  .contact-section .consultation .phone-list__text {
    font-size: 25px;
  }
  .contact-section .consultation .consultation-form__input {
    font-size: 25px;
  }
  .contact-section .consultation .consultation-form__btn {
    font-size: 30px;
  }
  .contact-section .consultation .consultation-form__subtitle {
    font-size: 25px;
  }
  .contact-section .consultation .consultation-form__hint {
    font-size: 20px;
  }
  .contact-section .consultation .consultation-form__title {
    font-size: 25px;
  }
  .contact-section .consultation .consultation-form__fieldIcon {
    width: 30px;
  }
  .contact-section .consultation .consultation-form__input {
    padding-left: 55px;
  }
  .contact-section .icon-check {
    font-size: 45px;
    margin-right: 30px;
  }
}
@media (min-width: 1024px) {
  .contact-section__point span {
    font-size: 30px;
  }
}

.fixed-consultation-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  width: calc(100% - 32px);
  padding: 12px 18px;
  background: #f3e7b3;
  border: 4px solid #DAB541;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.fixed-consultation-btn img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.fixed-consultation-btn span {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  display: block;
}

.fixed-consultation-btn strong {
  display: block;
  font-weight: 600;
}

.fixed-consultation-btn:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .fixed-consultation-btn {
    max-width: 220px;
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
    border-width: 3px;
  }
  .fixed-consultation-btn img {
    width: 46px;
    height: 46px;
  }
  .fixed-consultation-btn span {
    font-size: 15px;
  }
}
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  left: 15px;
  bottom: 20px;
  background-color: #f3e7b3;
  border: 4px solid #DAB541;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.back-to-top::before {
  content: "↑";
  color: #000;
  font-size: 30px;
  margin-bottom: 6px;
}
.back-to-top.ks-appear {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}

.thank-you-wrapper {
  background-image: url("../../images/main-banner-img.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.thank-you-wrapper .main-title-wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you-wrapper .main-title {
  font-family: "Lexend Deca", sans-serif;
  -webkit-text-stroke: 1px #DAB541;
  text-transform: uppercase;
  font-size: 28px;
  color: transparent;
  margin-bottom: 20px;
}
.thank-you-wrapper .timer-img {
  position: absolute;
  width: 100px;
  right: 15%;
  bottom: 32%;
}
.thank-you-wrapper .go-back {
  margin-top: 100px;
  font-weight: 500;
  padding: 10px 30px;
}
.thank-you-wrapper .sub-title {
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.thank-you-wrapper .sub-title span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.thank-you-wrapper .main-banner-block {
  padding: 300px 0 150px;
}
@media (min-width: 768px) {
  .thank-you-wrapper .main-title {
    -webkit-text-stroke: 2px #DAB541;
    margin-bottom: 50px;
    font-size: 60px;
    max-width: 90%;
  }
  .thank-you-wrapper .timer-img {
    width: 200px;
    right: 15%;
    bottom: 5%;
  }
  .thank-you-wrapper .sub-title {
    font-size: 25px;
  }
  .thank-you-wrapper .sub-title span {
    font-size: 25px;
  }
  .thank-you-wrapper .go-back {
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .thank-you-wrapper .timer-img {
    width: 200px;
    right: 25%;
    bottom: 4%;
  }
  .thank-you-wrapper .sub-title {
    font-size: 40px;
  }
  .thank-you-wrapper .sub-title span {
    font-size: 40px;
  }
}
/*# sourceMappingURL=main.min.css.map */
