* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  margin: 0 0 20px 0;
  text-rendering: optimizeLegibility;
}

p img {
  margin: 0;
}

a,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

ul {
  list-style: disc outside;
}

ol {
  list-style: decimal;
}

li {
  display: list-item;
  *display: inline;
  *zoom: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
  float: none !important;
}

:focus {
  outline: 0;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -5px;
}

sub {
  bottom: 2px;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
}

textarea::-moz-placeholder {
  opacity: 1;
}

textarea:-moz-placeholder {
  opacity: 1;
}

textarea:-ms-input-placeholder {
  opacity: 1;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FONTS ------------------------------------------- */
/*------------------------------------------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Bold.eot");
  src: url("Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("Montserrat-Bold.woff2") format("woff2"), url("Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.eot");
  src: url("../fonts/Montserrat-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*------------------------------------------------------------------------------------------- */
/*------------------------------------ START SETTINGS --------------------------------------- */
/*------------------------------------------------------------------------------------------- */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  min-height: 100vh;
  font-family: "Montserrat", serif;
  background-color: #f6f6f6;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
}

.layout {
  width: 100%;
  flex: 1 0 auto;
  padding-top: 98px;
}

.limit {
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
  padding: 0 30px;
}
.limit.narrow {
  max-width: 1300px;
}

.button {
  border-radius: 25px;
  padding: 15px 24px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  color: #081423;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #f2ca48;
  white-space: nowrap;
  text-align: center;
}
.button:hover {
  background: #ffe54e;
  color: #081423;
}

.aside_menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 342px;
  background-color: #081423;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.3s;
}
.aside_menu.open {
  transform: translateX(0);
}
.aside_menu .close_menu {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #67707b;
  background-color: transparent;
  transition: all 0.3s;
}
.aside_menu .close_menu svg line {
  transition: all 0.3s;
}
.aside_menu .close_menu:hover {
  background-color: #f2ca48;
  border-color: #f2ca48;
}
.aside_menu .close_menu:hover svg line {
  stroke: #081423;
}
.aside_menu nav {
  margin-top: 242px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.aside_menu nav a {
  text-align: center;
  display: block;
  position: relative;
  padding: 14px 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  color: #fff;
  overflow: hidden;
}
.aside_menu nav a.active {
  color: #f2ca48;
}
.aside_menu nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 202, 72, 0.06) 0%, rgba(242, 202, 72, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.aside_menu nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 3px;
  background-color: #ffe44e;
  opacity: 0;
  transition: all 0.3s;
}
.aside_menu nav a:hover:after {
  transform: translateX(0);
}
.aside_menu nav a:hover::before {
  opacity: 1;
}
.aside_menu .links {
  margin-top: auto;
  margin-bottom: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.72px;
  color: #67707b;
}

.whatsapp_link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  color: #081423;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 25px;
  background-color: #f2ca48;
  transition: all 0.3s;
  margin-left: 24px;
}
.whatsapp_link:hover {
  background-color: #ffe44e;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: #081423;
  opacity: 0.9;
  display: none;
}

body:has(.aside_menu.open) .overlay {
  display: block;
}

section.limit {
  margin-top: 90px;
}

.heading h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #67707b;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 124%; /* 17.36px */
  text-transform: uppercase;
  margin-bottom: 30px;
}
.heading h3::before {
  content: "";
  width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #f2ca48;
}
.heading h2 {
  color: #081423;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
}
.heading p {
  margin-top: 18px;
  margin-bottom: 0;
  color: #67707b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.modal {
  width: 100%;
  max-width: 705px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #e9e9e9;
  padding: 68px 58px 60px 70px;
  display: flex;
  flex-direction: column;
  max-height: 95dvh;
  overflow: hidden;
}
.modal .cross {
  position: absolute;
  top: 20px;
  right: 12px;
  cursor: pointer;
}
.modal .modal_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal .modal_content .modal_heading {
  flex: 0 0 auto;
  margin-bottom: 36px;
  padding-right: 12px;
}
.modal .modal_content .modal_heading h2 {
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  color: #081423;
  margin-bottom: 14px;
}
.modal .modal_content .modal_heading p {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
}
.modal form {
  width: 100%;
  display: flex;
  flex: 1 1 auto;
  overflow: auto;
  gap: 18px;
  flex-direction: column;
  padding-right: 12px;
}
.modal form::-webkit-scrollbar {
  border-radius: 63px;
  background-color: #f5fafa;
  width: 4px;
}
.modal form::-webkit-scrollbar-thumb {
  border-radius: 54px;
  width: 4px;
  background-color: #f2ca48;
}
.modal form .button {
  margin: 0 auto;
  margin-top: 12px;
}
.modal .default_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: auto;
  padding-right: 12px;
}
.modal .default_content::-webkit-scrollbar {
  border-radius: 63px;
  background-color: #f5fafa;
  width: 4px;
}
.modal .default_content::-webkit-scrollbar-thumb {
  border-radius: 54px;
  width: 4px;
  background-color: #f2ca48;
}

.b-modal {
  background-color: rgba(8, 20, 35, 0.9) !important;
}

.form_row {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form_row label {
  padding-left: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #081423;
}
.form_row label.req::after {
  content: " *";
  color: #f2ca48;
}
.form_row input,
.form_row textarea {
  border-radius: 25px;
  border: 1px solid #f0ebe4;
  background-color: #fdfbf5;
  padding: 15px 16px;
  font-family: "Montserrat", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
  transition: all 0.3s;
}
.form_row input:focus,
.form_row textarea:focus {
  border-color: #f2ca48;
}
.form_row input::-moz-placeholder, .form_row textarea::-moz-placeholder {
  font-family: "Montserrat", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
  opacity: 0.7;
}
.form_row input::placeholder,
.form_row textarea::placeholder {
  font-family: "Montserrat", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
  opacity: 0.7;
}
.form_row textarea {
  resize: none;
  height: 100px;
}

.select2-container {
  z-index: 9999;
}

.select2-container--default .select2-selection--single {
  background-color: #fdfbf5;
  border-color: #f0ebe4;
  border-radius: 50px !important;
  height: auto;
  transition: all 0.3s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 15px 12px 15px 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  font-family: "Montserrat", serif;
  color: #081423;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 5px;
  width: 10px;
  background-image: url(../images//icons/faq_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-color: #f2ca48;
}

.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
  border-radius: 10px;
  border: 1px solid #f5fafa;
  background-color: #fff;
  box-shadow: 0 4px 25.9px 0 rgba(38, 38, 44, 0.1);
  padding: 14px 10px 14px 7px;
}

.select2-container--open .select2-dropdown--below {
  margin-top: 6px;
}

.select2-container--open .select2-dropdown--above {
  margin-bottom: 6px;
}

.select2-search--dropdown {
  display: none;
}

.select2-container--default .select2-results > .select2-results__options {
  padding-right: 5px;
}

.select2-results__option {
  padding: 10px 25px;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: #f2ca48;
  color: #081423;
}

.default_content h2,
.default_content h3,
.default_content h4,
.default_content h5,
.default_content h6 {
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-top: 40px;
}
.default_content h2:first-child,
.default_content h3:first-child,
.default_content h4:first-child,
.default_content h5:first-child,
.default_content h6:first-child {
  margin-top: 0;
}
.default_content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.default_content h3 {
  font-size: 26px;
  margin-bottom: 18px;
}
.default_content h4 {
  font-size: 24px;
  margin-bottom: 16px;
}
.default_content h5 {
  font-size: 22px;
  margin-bottom: 14px;
}
.default_content h6 {
  font-size: 20px;
  margin-bottom: 12px;
}
.default_content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #081423;
  margin-bottom: 15px;
}
.default_content ol,
.default_content ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.default_content ol li,
.default_content ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #081423;
}
.default_content ol li::marker {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: #081423;
}

.modal.privacy {
  max-width: 940px;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- HEADER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.header {
  background-color: #f6f6f6;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.header.scroll {
  transform: translateX(-50%) translateY(-100%);
}
.header.up {
  transform: translateX(-50%) translateY(0);
  background-color: #fff;
  box-shadow: 0 4px 13.9px 0 rgba(8, 20, 35, 0.02);
}
.header .logo {
  margin-right: auto;
}
.header .logo img:last-of-type {
  display: none;
}
.header .phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.72px;
  color: #081423;
}
.header .whatsapp_link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  color: #081423;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 25px;
  background-color: #f2ca48;
  transition: all 0.3s;
  margin-left: 24px;
}
.header .whatsapp_link:hover {
  background-color: #ffe44e;
}
.header .burger_btn {
  z-index: 10;
  width: 50px;
  height: 50px;
  min-width: 50px;
  cursor: pointer;
  display: block;
  padding: 16px 15px;
  border-radius: 100%;
  background-color: transparent;
  transition: all 0.3s;
  margin-left: 14px;
}
.header .burger_btn:hover {
  background-color: #f2ca48;
}
.header .burger_btn:hover span:nth-last-child(2) {
  transform: translateX(0);
}
.header .burger_btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 6px;
  position: relative;
  background: #081423;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.header .burger_btn span:first-child {
  transform-origin: 0% 0%;
}
.header .burger_btn span:nth-last-child(2) {
  width: 13px;
  transform-origin: 0% 100%;
  transform: translateX(50%);
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FOOTER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
footer {
  background-color: #081423;
  background-image: url("../images/footer_bg.webp");
  background-size: auto;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-top: 46px;
  padding-bottom: 14px;
  margin-top: 90px;
}
footer .footer_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer_wrapper .logo_block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer_wrapper .logo_block p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  color: #67707b;
  margin-bottom: 26px;
  margin-top: 8px;
}
footer .footer_wrapper .footer_socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
footer .footer_wrapper .footer_socials .phone {
  font-weight: 400;
}
footer .footer_wrapper .footer_socials .whatsapp_link {
  margin: 0;
}
footer .footer_wrapper .footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
footer .footer_wrapper .footer_links > * {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  color: #67707b;
}

/*------------------------------------------------------------------------------------------- */
/*---------------------------------------- CONTENT ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.first_screen_wrappper {
  overflow: hidden;
  border-radius: 18px;
  background-color: #eceeee;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 165px 30px;
}
.first_screen_wrappper .icons_field {
  position: absolute;
  inset: 0;
  pointer-events: all;
}
.first_screen_wrappper .icons_field img {
  position: absolute;
  width: 40px;
  height: 40px;
  will-change: transform;
  opacity: 0.3;
}
.first_screen_wrappper .text {
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.first_screen_wrappper .text h1 {
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  text-align: center;
  color: #081423;
  margin-bottom: 30px;
  pointer-events: none;
}
.first_screen_wrappper .text h1 strong {
  color: #f2ca48;
}
.first_screen_wrappper .text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #67707b;
  margin-bottom: 46px;
  text-align: center;
  pointer-events: none;
}
.first_screen_wrappper .text ul {
  pointer-events: none;
  order: 4;
  display: flex;
  list-style: none;
  padding-left: 15px;
  flex-direction: column;
  gap: 18px;
}
.first_screen_wrappper .text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #67707b;
}
.first_screen_wrappper .text ul li::before {
  content: "";
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url(../images/icons/list_icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.first_screen_wrappper .text .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 518px;
  margin-bottom: 50px;
}
.first_screen_wrappper .text .buttons .button {
  width: 100%;
}
.first_screen_wrappper .text .buttons .button:last-child {
  background-color: #081423;
  color: #fff;
}
.first_screen_wrappper .text .buttons .button:last-child:hover {
  background: #ffe54e;
  color: #081423;
}

.about_us {
  display: flex;
  align-items: start;
  gap: 90px;
}
.about_us .images_wrapper {
  position: relative;
  padding-top: 139px;
  padding-right: 142px;
}
.about_us .images_wrapper .image_1_container {
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
  aspect-ratio: 40/48;
}
.about_us .images_wrapper .image_1_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us .images_wrapper .image_2_container {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 25px;
  border: 12px solid #f6f6f6;
  width: 100%;
  max-width: 415px;
  height: 511px;
  overflow: hidden;
}
.about_us .images_wrapper .image_2_container:not(.animate__animated) {
  opacity: 0;
}
.about_us .images_wrapper .image_2_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_us .text .heading {
  margin-bottom: 28px;
}
.about_us .text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about_us .text ul li {
  position: relative;
  padding-left: 33px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
}
.about_us .text ul li strong {
  font-weight: 600;
}
.about_us .text ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-image: url(../images/icons/list_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services_wrapper {
  border-radius: 18px;
  background-color: #f0efeb;
  padding: 90px 30px;
}
.services_wrapper .heading {
  margin-bottom: 52px;
}
.services_wrapper .heading h2,
.services_wrapper .heading p {
  text-align: center;
}
.services_wrapper .heading h3 {
  justify-content: center;
}
.services_wrapper .services_listing {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service:not(.animate__animated) {
  opacity: 0;
}
.service:nth-child(1) {
  animation-delay: 0s;
}
.service:nth-child(2) {
  animation-delay: 0.2s;
}
.service:nth-child(3) {
  animation-delay: 0.4s;
}
.service:nth-child(4) {
  animation-delay: 0.6s;
}
.service:nth-child(5) {
  animation-delay: 0.8s;
}
.service:nth-child(6) {
  animation-delay: 1s;
}
.service:nth-child(7) {
  animation-delay: 1.2s;
}
.service:nth-child(8) {
  animation-delay: 1.4s;
}
.service:nth-child(9) {
  animation-delay: 1.6s;
}
.service:nth-child(10) {
  animation-delay: 1.8s;
}
.service:nth-child(11) {
  animation-delay: 2s;
}
.service:nth-child(12) {
  animation-delay: 2.2s;
}
.service:nth-child(13) {
  animation-delay: 2.4s;
}
.service:nth-child(14) {
  animation-delay: 2.6s;
}
.service:nth-child(15) {
  animation-delay: 2.8s;
}
.service:nth-child(16) {
  animation-delay: 3s;
}
.service:nth-child(17) {
  animation-delay: 3.2s;
}
.service:nth-child(18) {
  animation-delay: 3.4s;
}
.service:nth-child(19) {
  animation-delay: 3.6s;
}
.service:nth-child(20) {
  animation-delay: 3.8s;
}
.service .icon_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  background-color: #f2ca48;
  border-radius: 100%;
}
.service .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #081423;
}
.service p {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
}

.cta_wrapper {
  height: 447px;
  display: flex;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f8d76e;
  background-image: url(../images/cta_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta_wrapper.third .cta_content {
  align-items: normal;
}
.cta_wrapper.third .cta_content .cta_text .buttons .button:last-of-type {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
}
.cta_wrapper .cta_content {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: start;
  position: relative;
}
.cta_wrapper .cta_content .cta_text {
  margin: auto 0;
  width: 100%;
  max-width: 712px;
}
.cta_wrapper .cta_content .cta_text h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  color: #081423;
  margin-bottom: 16px;
}
.cta_wrapper .cta_content .cta_text p {
  margin-bottom: 30px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
}
.cta_wrapper .cta_content .cta_text .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta_wrapper .cta_content .cta_text .buttons .button:first-of-type {
  background-color: #081423;
  color: #fff;
}
.cta_wrapper .cta_content .cta_text .buttons .button:first-of-type:hover {
  background: #ffe54e;
  color: #081423;
}
.cta_wrapper .cta_content .cta_text .buttons .button:last-of-type {
  background-color: #fff;
  color: #081423;
}
.cta_wrapper .cta_content .cta_text .buttons .button:last-of-type:hover {
  background: #ffe54e;
}
.cta_wrapper .cta_content .image_container {
  width: 685px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 730px;
}
.cta_wrapper .cta_content .image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages .heading {
  margin-bottom: 52px;
}
.advantages .heading h3 {
  justify-content: center;
}
.advantages .heading h2,
.advantages .heading p {
  text-align: center;
}

.advantages_listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantages_card {
  border-radius: 18px;
  background-color: #fff;
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
}
.advantages_card .icon_container {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2ca48;
  margin-bottom: 41px;
}
.advantages_card .title {
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: #081423;
  margin-bottom: 7px;
}
.advantages_card p {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
}

.how_we_work_wrapper {
  border-radius: 18px;
  background-color: #f0efeb;
  padding: 90px 30px;
}
.how_we_work_wrapper .heading {
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 52px;
}
.how_we_work_wrapper .steps_wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  gap: 42px;
}
.how_we_work_wrapper .steps_wrapper .image_container {
  width: 100%;
  max-width: 620px;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
}
.how_we_work_wrapper .steps_wrapper .image_container::after {
  z-index: 2;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(140, 117, 42, 0) 0%, #8c752a 100%);
  opacity: 0.54;
  height: 131px;
}

.steps {
  counter-reset: step-counter;
  overflow: hidden;
}

.step {
  counter-increment: step-counter;
  display: flex;
  gap: 30px;
}
.step:not(.animate__animated) {
  opacity: 0;
}
.step:nth-child(1) {
  animation-delay: 0s;
}
.step:nth-child(2) {
  animation-delay: 0.2s;
}
.step:nth-child(3) {
  animation-delay: 0.4s;
}
.step:nth-child(4) {
  animation-delay: 0.6s;
}
.step:nth-child(5) {
  animation-delay: 0.8s;
}
.step:nth-child(6) {
  animation-delay: 1s;
}
.step:nth-child(7) {
  animation-delay: 1.2s;
}
.step:nth-child(8) {
  animation-delay: 1.4s;
}
.step:nth-child(9) {
  animation-delay: 1.6s;
}
.step:nth-child(10) {
  animation-delay: 1.8s;
}
.step:nth-child(11) {
  animation-delay: 2s;
}
.step:nth-child(12) {
  animation-delay: 2.2s;
}
.step:nth-child(13) {
  animation-delay: 2.4s;
}
.step:nth-child(14) {
  animation-delay: 2.6s;
}
.step:nth-child(15) {
  animation-delay: 2.8s;
}
.step:nth-child(16) {
  animation-delay: 3s;
}
.step:nth-child(17) {
  animation-delay: 3.2s;
}
.step:nth-child(18) {
  animation-delay: 3.4s;
}
.step:nth-child(19) {
  animation-delay: 3.6s;
}
.step:nth-child(20) {
  animation-delay: 3.8s;
}
.step:last-of-type .text p {
  margin-bottom: 0;
}
.step .label {
  padding-top: 5px;
  position: relative;
  gap: 8px;
  display: flex;
}
.step .label span {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  color: #67707b;
  white-space: nowrap;
  min-width: 63px;
}
.step .label span::after {
  content: " " counter(step-counter, decimal-leading-zero);
}
.step .label .separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 7px;
  width: 12px;
  margin-top: 2px;
}
.step .label .separator::before {
  content: "";
  width: 12px;
  max-width: 12px;
  max-height: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 100%;
  border: 1px solid #f2ca48;
}
.step .label .separator::after {
  content: "";
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, rgba(103, 112, 123, 0.4) 0px, rgba(103, 112, 123, 0.4) 2px, transparent 2px, transparent 7px);
  border-radius: 1px;
}
.step .text h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #081423;
  margin-bottom: 6px;
}
.step .text p {
  margin-bottom: 28px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
}

.prices .heading {
  max-width: 1020px;
  margin: 0 auto;
  margin-bottom: 42px;
}
.prices .heading h3 {
  justify-content: center;
}
.prices .heading h2,
.prices .heading p {
  text-align: center;
}
.prices table {
  width: 100%;
  overflow: hidden;
}
.prices table tr {
  display: grid;
  grid-template-columns: 54% 46%;
  border-radius: 8px;
  background-color: transparent;
}
.prices table tr:nth-child(even) {
  background-color: #eceeee;
}
.prices table tr:has(th) {
  opacity: 1 !important;
}
.prices table tr:not(.animate__animated) {
  opacity: 0;
}
.prices table tr:nth-child(1) {
  animation-delay: 0s;
}
.prices table tr:nth-child(2) {
  animation-delay: 0.2s;
}
.prices table tr:nth-child(3) {
  animation-delay: 0.4s;
}
.prices table tr:nth-child(4) {
  animation-delay: 0.6s;
}
.prices table tr:nth-child(5) {
  animation-delay: 0.8s;
}
.prices table tr:nth-child(6) {
  animation-delay: 1s;
}
.prices table tr:nth-child(7) {
  animation-delay: 1.2s;
}
.prices table tr:nth-child(8) {
  animation-delay: 1.4s;
}
.prices table tr:nth-child(9) {
  animation-delay: 1.6s;
}
.prices table tr:nth-child(10) {
  animation-delay: 1.8s;
}
.prices table tr:nth-child(11) {
  animation-delay: 2s;
}
.prices table tr:nth-child(12) {
  animation-delay: 2.2s;
}
.prices table tr:nth-child(13) {
  animation-delay: 2.4s;
}
.prices table tr:nth-child(14) {
  animation-delay: 2.6s;
}
.prices table tr:nth-child(15) {
  animation-delay: 2.8s;
}
.prices table tr:nth-child(16) {
  animation-delay: 3s;
}
.prices table tr:nth-child(17) {
  animation-delay: 3.2s;
}
.prices table tr:nth-child(18) {
  animation-delay: 3.4s;
}
.prices table tr:nth-child(19) {
  animation-delay: 3.6s;
}
.prices table tr:nth-child(20) {
  animation-delay: 3.8s;
}
.prices table tr:nth-child(21) {
  animation-delay: 4s;
}
.prices table tr:nth-child(22) {
  animation-delay: 4.2s;
}
.prices table tr:nth-child(23) {
  animation-delay: 4.4s;
}
.prices table tr:nth-child(24) {
  animation-delay: 4.6s;
}
.prices table tr:nth-child(25) {
  animation-delay: 4.8s;
}
.prices table tr:nth-child(26) {
  animation-delay: 5s;
}
.prices table tr:nth-child(27) {
  animation-delay: 5.2s;
}
.prices table tr:nth-child(28) {
  animation-delay: 5.4s;
}
.prices table tr:nth-child(29) {
  animation-delay: 5.6s;
}
.prices table tr:nth-child(30) {
  animation-delay: 5.8s;
}
.prices table tr th {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  color: #081423;
}
.prices table tr th:first-of-type {
  padding: 16px 14px 16px 36px;
}
.prices table tr th:last-of-type {
  padding: 16px 14px;
}
.prices table tr td {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
}
.prices table tr td:first-of-type {
  padding: 16px 14px 16px 36px;
}
.prices table tr td:last-of-type {
  padding: 16px 14px;
}
.prices .note {
  padding: 6px 0 6px 19px;
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #67707b;
  margin-top: 30px;
}
.prices .note p {
  margin: 0;
}
.prices .note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: calc(100% - 12px);
  border-radius: 57px;
  background-color: #f2ca48;
}

.projects_wrapper {
  padding: 90px 0;
  border-radius: 18px;
  background-color: #f0efeb;
  overflow: hidden;
}
.projects_wrapper .heading {
  margin-bottom: 52px;
}
.projects_wrapper .heading h3 {
  justify-content: center;
}
.projects_wrapper .heading h2,
.projects_wrapper .heading p {
  text-align: center;
}

.projects_swiper {
  height: auto;
}
.projects_swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  height: 100%;
  width: 180px;
  z-index: 3;
  background: linear-gradient(270deg, rgba(236, 238, 238, 0) 0%, #eceeee 95.53%);
}
.projects_swiper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  height: 100%;
  width: 180px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(236, 238, 238, 0) 0%, #eceeee 95.53%);
}
.projects_swiper .project {
  border-radius: 18px;
  overflow: hidden;
  width: 1240px;
  aspect-ratio: 2 \1 ;
  transform: scale(0.726);
  transition: transform 0.45s ease;
  position: relative;
}
.projects_swiper .project.swiper-slide-active {
  transform: translate(0, 0) scale(1);
}
.projects_swiper .project:not(.swiper-slide-active)::before, .projects_swiper .project:not(.swiper-slide-active)::after {
  opacity: 0;
}
.projects_swiper .project:not(.swiper-slide-active) .project_content {
  opacity: 0;
}
.projects_swiper .project.swiper-slide-prev {
  transform: translate(14%, -13%) scale(0.726);
}
.projects_swiper .project.swiper-slide-next {
  transform: translate(-14%, 13%) scale(0.726);
}
.projects_swiper .project::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 20.8px rgba(8, 20, 35, 0.1));
  -webkit-backdrop-filter: blur(1.7999999523px);
          backdrop-filter: blur(1.7999999523px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url(../images/icons/fancy_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 3;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
  pointer-events: none;
}
.projects_swiper .project::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 431px;
  background: linear-gradient(0deg, rgba(20, 16, 3, 0.9) 10.24%, rgba(20, 16, 3, 0) 100%);
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s;
}
.projects_swiper .project .project_content {
  position: absolute;
  bottom: 36px;
  width: calc(100% - 72px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  gap: 42px;
  z-index: 3;
  opacity: 1;
  transition: all 0.3s;
}
.projects_swiper .project .project_content .left .label {
  padding: 8px 16px;
  border-radius: 69px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  margin-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 124%;
  color: #fff;
}
.projects_swiper .project .project_content .left .name {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #faf9f5;
}
.projects_swiper .project .project_content .left .inner_pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 19px;
  height: 11px;
}
.projects_swiper .project .project_content .left .inner_pagination span {
  margin: 0;
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.projects_swiper .project .project_content .left .inner_pagination span.swiper-pagination-bullet-active {
  background-color: #f2ca48;
  width: 11px;
  height: 11px;
  min-width: 11px;
}
.projects_swiper .project_next,
.projects_swiper .project_prev {
  width: 58px;
  height: 58px;
  min-width: 58px;
  top: calc(50% - 29px);
  transform: none;
  max-width: 270px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0;
  transition: background-color 0.3s ease;
  position: absolute;
  cursor: pointer;
  z-index: 4;
}
.projects_swiper .project_next:hover,
.projects_swiper .project_prev:hover {
  background-color: #f2ca48;
}
.projects_swiper .project_next svg,
.projects_swiper .project_prev svg {
  display: none;
}
.projects_swiper .project_next::before,
.projects_swiper .project_prev::before {
  content: "";
  height: 12px;
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
.projects_swiper .project_next {
  right: 192px;
}
.projects_swiper .project_next::before {
  background-image: url(../images/icons/arrow_next.svg);
}
.projects_swiper .project_prev {
  left: 192px;
}
.projects_swiper .project_prev::before {
  background-image: url(../images/icons/arrow_prev.svg);
}

.reviews .heading {
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 52px;
}

.review {
  width: 1133px;
  padding: 20px 20px 20px 42px;
  border-radius: 18px;
  display: flex;
  gap: 42px;
  justify-content: space-between;
  background-color: #f0efeb;
}
.review .review_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}
.review .review_info .coment {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #081423;
}
.review .review_info .user_info {
  padding-top: 18px;
  border-top: 1px dotted rgba(103, 112, 123, 0.4);
}
.review .review_info .user_info .user_name {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #081423;
  margin-bottom: 6px;
}
.review .review_info .user_info .add_info {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #67707b;
}
.review .inner_review_swiper {
  position: relative;
  max-width: 445px;
  height: 287px;
  border-radius: 6px;
}
.review .inner_review_swiper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 20.8px rgba(8, 20, 35, 0.1));
  -webkit-backdrop-filter: blur(1.7999999523px);
          backdrop-filter: blur(1.7999999523px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url(../images/icons/fancy_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  z-index: 3;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
  pointer-events: none;
}
.review .inner_review {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.review .inner_review a {
  width: 100%;
  height: 100%;
  display: block;
}
.review .inner_review a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .inner_review::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 117px;
  background: linear-gradient(0deg, rgba(20, 16, 3, 0.9) 10.24%, rgba(20, 16, 3, 0) 100%);
  opacity: 0.3;
}

.reviews_slider {
  margin-left: 0;
}
.reviews_slider > .swiper-wrapper {
  margin-left: -110px;
}
.reviews_slider .buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 55px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.inner_review_pagination {
  position: absolute;
  z-index: 4;
  bottom: 14px !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 19px;
  height: 11px;
}
.inner_review_pagination span {
  margin: 0;
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.inner_review_pagination span.swiper-pagination-bullet-active {
  background-color: #f2ca48;
  width: 11px;
  height: 11px;
  min-width: 11px;
}

.swiper_review_prev,
.swiper_review_next {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_review_prev:hover,
.swiper_review_next:hover {
  background-color: #f2ca48;
}
.swiper_review_prev svg,
.swiper_review_next svg {
  display: none;
}
.swiper_review_prev::before,
.swiper_review_next::before {
  content: "";
  height: 12px;
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.swiper_review_next::before {
  background-image: url(../images/icons/arrow_next.svg);
}

.swiper_review_prev::before {
  background-image: url(../images/icons/arrow_prev.svg);
}

.faqs .heading {
  margin-bottom: 52px;
}
.faqs .heading h3 {
  justify-content: center;
}
.faqs .heading h2,
.faqs .heading p {
  text-align: center;
}

.faqs_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.faq {
  padding: 0px 30px;
  border-radius: 18px;
  border: 1px dashed rgba(103, 112, 123, 0.4);
  background-color: transparent;
  transition: all 0.3s;
}
.faq:nth-child(1) {
  animation-delay: 0s;
}
.faq:nth-child(2) {
  animation-delay: 0.2s;
}
.faq:nth-child(3) {
  animation-delay: 0.4s;
}
.faq:nth-child(4) {
  animation-delay: 0.6s;
}
.faq:nth-child(5) {
  animation-delay: 0.8s;
}
.faq:nth-child(6) {
  animation-delay: 1s;
}
.faq:nth-child(7) {
  animation-delay: 1.2s;
}
.faq:nth-child(8) {
  animation-delay: 1.4s;
}
.faq:nth-child(9) {
  animation-delay: 1.6s;
}
.faq:nth-child(10) {
  animation-delay: 1.8s;
}
.faq:nth-child(11) {
  animation-delay: 2s;
}
.faq:nth-child(12) {
  animation-delay: 2.2s;
}
.faq:nth-child(13) {
  animation-delay: 2.4s;
}
.faq:nth-child(14) {
  animation-delay: 2.6s;
}
.faq:nth-child(15) {
  animation-delay: 2.8s;
}
.faq:nth-child(16) {
  animation-delay: 3s;
}
.faq:nth-child(17) {
  animation-delay: 3.2s;
}
.faq:nth-child(18) {
  animation-delay: 3.4s;
}
.faq:nth-child(19) {
  animation-delay: 3.6s;
}
.faq:nth-child(20) {
  animation-delay: 3.8s;
}
.faq:nth-child(21) {
  animation-delay: 4s;
}
.faq:nth-child(22) {
  animation-delay: 4.2s;
}
.faq:nth-child(23) {
  animation-delay: 4.4s;
}
.faq:nth-child(24) {
  animation-delay: 4.6s;
}
.faq:nth-child(25) {
  animation-delay: 4.8s;
}
.faq:nth-child(26) {
  animation-delay: 5s;
}
.faq:nth-child(27) {
  animation-delay: 5.2s;
}
.faq:nth-child(28) {
  animation-delay: 5.4s;
}
.faq:nth-child(29) {
  animation-delay: 5.6s;
}
.faq:nth-child(30) {
  animation-delay: 5.8s;
}
.faq:not(.animate__animated) {
  opacity: 0;
}
.faq:hover {
  background-color: #f2ca48;
  border-color: #f2ca48;
}
.faq_title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #081423;
  align-items: start;
  padding: 20px 0;
  transition: all 0.3s;
  cursor: pointer;
}
.faq_title .arrow {
  width: 31px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq_content {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  margin-top: 8px;
}
.faq_content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #081423;
  margin-bottom: 12px;
}
.faq_content p:last-of-type {
  margin: 0;
}
.faq.open {
  padding-bottom: 30px;
  background-color: #f2ca48;
  border-color: #f2ca48;
}
.faq.open .faq_title .arrow {
  transform: scaleY(-1);
}
.faq.open .faq_title {
  padding-bottom: 0;
}
.faq.open .faq_content {
  max-height: 600px;
  opacity: 1;
}

@media (max-width: 1850px) {
  .projects_swiper .project_next {
    right: 120px;
  }
  .projects_swiper .project_prev {
    left: 120px;
  }
}
@media (max-width: 1700px) {
  .projects_swiper .project_next {
    right: 90px;
  }
  .projects_swiper .project_prev {
    left: 90px;
  }
}
@media (max-width: 1650px) {
  .projects_swiper .project_next {
    right: 50px;
  }
  .projects_swiper .project_prev {
    left: 50px;
  }
  .first_screen_wrappper .text {
    max-width: 1000px;
  }
  .about_us {
    gap: 60px;
  }
}
@media (max-width: 1599px) {
  .heading h2 {
    font-size: clamp(32px, 2.63vw, 42px);
  }
}
@media (max-width: 1450px) {
  .first_screen_wrappper .text {
    max-width: 900px;
  }
  .first_screen_wrappper .text h1 {
    font-size: clamp(42px, 3.31vw, 48px);
  }
  .about_us {
    gap: 50px;
    justify-content: center;
  }
  .about_us .images_wrapper {
    padding-top: 123px;
    padding-right: 126px;
  }
  .about_us .images_wrapper .image_1_container {
    min-width: 353px;
    max-width: 353px;
    border-radius: 22px;
    aspect-ratio: 35/42;
  }
  .about_us .images_wrapper .image_2_container {
    border-radius: 22px;
    max-width: 366px;
    border-width: 10px;
    max-height: 452px;
  }
  .about_us .text {
    max-width: 524px;
  }
  section.limit {
    margin-top: 60px;
  }
  .services_wrapper {
    padding: 60px 83px;
  }
  .cta_wrapper {
    padding-left: 83px;
  }
  .cta_wrapper .cta_content .cta_text {
    max-width: 620px;
  }
  .cta_wrapper .cta_content .image_container {
    width: 520px;
    height: 80%;
    left: 640px;
  }
  .advantages_listing {
    gap: 20px;
    padding: 0 83px;
  }
  .how_we_work_wrapper {
    padding: 60px 83px;
  }
  .how_we_work_wrapper .heading {
    margin-bottom: 42px;
  }
  .how_we_work_wrapper .steps_wrapper {
    align-items: start;
  }
  .how_we_work_wrapper .steps_wrapper .image_container {
    max-width: 420px;
    height: auto;
  }
  .prices .heading {
    padding: 0 83px;
  }
  .prices table tr {
    margin: 0 83px;
  }
  .prices .note {
    margin: 30px 83px 0;
  }
  .projects_wrapper {
    padding: 60px 0;
  }
  .projects_wrapper .heading {
    margin-bottom: 42px;
  }
  .projects_swiper .project {
    width: 1036px;
  }
  .projects_swiper .project .project_content .left .name {
    font-size: 28px;
  }
  .projects_swiper::before,
  .projects_swiper::after {
    display: none;
  }
  .projects_swiper .project_next,
  .projects_swiper .project_prev {
    width: 58px !important;
    border-radius: 100%;
  }
  .projects_swiper .project_next {
    right: 30px;
  }
  .projects_swiper .project_prev {
    left: 30px;
  }
  .reviews .heading {
    margin-bottom: 42px;
    padding: 0 83px;
  }
  .reviews_slider .buttons {
    padding-left: 80px;
  }
  .review {
    max-width: 1067px;
  }
  .reviews_slider {
    margin-left: 0;
  }
  .faqs .heading {
    margin-bottom: 42px;
  }
  .cta_wrapper .cta_content .cta_text h2 {
    font-size: 32px;
  }
  .cta_wrapper.third .cta_content .image_container {
    height: 100%;
    left: 545px;
  }
  .faqs_container {
    padding: 0 83px;
  }
  footer {
    margin-top: 60px;
  }
}
@media (max-width: 1250px) {
  .first_screen_wrappper .icons_field img {
    width: 35px;
    height: 35px;
  }
  .first_screen_wrappper .text {
    max-width: 772px;
  }
  .first_screen_wrappper .text p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .first_screen_wrappper .text .buttons {
    margin-bottom: 30px;
  }
  .first_screen_wrappper .text ul {
    gap: 16px;
  }
  .first_screen_wrappper .text ul li {
    font-size: 14px;
  }
  .about_us {
    gap: 30px;
  }
  .heading h3 {
    margin-bottom: 20px;
  }
  .heading p {
    font-size: 14px;
  }
  .about_us .text ul li {
    font-size: 14px;
  }
  .about_us .text {
    max-width: 495px;
  }
  .about_us .images_wrapper {
    padding-top: 75px;
    padding-right: 77px;
  }
  .about_us .images_wrapper .image_1_container {
    border-radius: 13px;
    min-width: 216px;
    max-width: 216px;
    aspect-ratio: 21/26;
  }
  .about_us .images_wrapper .image_2_container {
    border-radius: 14px;
    border-width: 4px;
    max-width: 224px;
    max-height: 277px;
  }
  .services_wrapper {
    padding: 60px;
  }
  .services_wrapper .heading {
    margin-bottom: 42px;
  }
  .services_wrapper .services_listing {
    gap: 20px;
  }
  .service .title {
    font-size: 18px;
  }
  .service p {
    font-size: 14px;
  }
  .cta_wrapper {
    height: auto;
    padding: 86px 60px 0;
  }
  .cta_wrapper .cta_content {
    flex-direction: column;
    align-items: center;
    gap: 23px;
    max-width: 100%;
  }
  .cta_wrapper .cta_content .cta_text {
    max-width: 100%;
  }
  .cta_wrapper .cta_content .cta_text h2,
  .cta_wrapper .cta_content .cta_text p {
    text-align: center;
  }
  .cta_wrapper .cta_content .cta_text p {
    font-size: 16px;
  }
  .cta_wrapper .cta_content .cta_text .buttons {
    justify-content: center;
  }
  .cta_wrapper .cta_content .image_container {
    position: static;
  }
  .advantages_listing {
    padding: 0 60px;
  }
  .advantages_card {
    padding: 20px 10px 30px;
    align-items: center;
  }
  .advantages_card .icon_container {
    margin-bottom: 20px;
  }
  .advantages_card .title {
    text-align: center;
    font-size: 38px;
  }
  .advantages_card p {
    font-size: 14px;
    text-align: center;
  }
  .how_we_work_wrapper {
    padding: 60px;
  }
  .how_we_work_wrapper .steps_wrapper {
    flex-direction: column;
    align-items: center;
  }
  .how_we_work_wrapper .steps_wrapper .image_container {
    max-width: 100%;
    aspect-ratio: 31/20;
  }
  .how_we_work_wrapper .steps_wrapper .image_container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .prices .heading {
    padding: 0 60px;
  }
  .prices .note {
    margin: 30px 60px 0;
  }
  .prices table tr {
    margin: 0 60px;
  }
  .projects_swiper .project {
    width: 782px;
  }
  .projects_swiper .project .project_content {
    gap: 18px;
    max-width: calc(100% - 54px);
  }
  .projects_swiper .project .project_content .left .name {
    font-size: 26px;
  }
  .projects_swiper .project::after {
    width: 74px;
    height: 74px;
    background-size: 22px 22px;
  }
  .projects_swiper .project_next,
  .projects_swiper .project_prev {
    width: 44px !important;
    min-width: 44px;
    height: 44px;
    transform: translateY(0);
  }
  .projects_swiper .project_next {
    right: 16px;
    top: 20px;
  }
  .projects_swiper .project_prev {
    left: 16px;
    top: auto;
    bottom: 20px;
  }
  .reviews .heading {
    padding: 0 60px;
  }
  .review {
    max-width: 820px;
    padding: 20px 20px 20px 28px;
    gap: 24px;
  }
  .review .review_info .coment {
    font-size: 18px;
  }
  .review .inner_review_swiper {
    max-width: 340px;
    height: 219px;
  }
  .review .review_info .user_info .user_name {
    font-size: 18px;
  }
  .review .review_info .user_info .add_info {
    font-size: 14px;
  }
  .reviews_slider .buttons {
    padding-left: 58px;
  }
  .swiper_review_prev,
  .swiper_review_next {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }
  .faqs_container {
    padding: 0 60px;
  }
  .faq_title {
    font-size: 22px;
  }
  .cta_wrapper.third .cta_content {
    align-items: center;
  }
  .review .review_info {
    padding: 0 0 20px;
  }
}
@media (max-width: 999px) {
  .first_screen_wrappper .text {
    max-width: 656px;
  }
  .first_screen_wrappper .text h1 {
    font-size: 40px;
  }
  .first_screen_wrappper .text p {
    font-size: 14px;
  }
  .heading h2 {
    font-size: 30px;
  }
  .about_us {
    display: grid;
    grid-template-columns: 255px auto;
    justify-content: center;
    gap: 20px;
  }
  .about_us .text {
    display: contents;
  }
  .about_us .text .heading {
    margin: 0;
    max-width: 373px;
  }
  .about_us .text ul {
    grid-column: span 2;
    gap: 14px;
  }
  .about_us .images_wrapper {
    padding-top: 66px;
    padding-right: 68px;
  }
  .about_us .images_wrapper .image_1_container {
    min-width: 188px;
    max-width: 188px;
    border-radius: 11px;
    aspect-ratio: 18/22;
  }
  .about_us .images_wrapper .image_2_container {
    max-width: 195px;
    max-height: 241px;
    border-radius: 6px;
    border-width: 5px;
  }
  .services_wrapper {
    padding: 60px 42px;
  }
  .services_wrapper .services_listing {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    display: grid;
    grid-template-columns: 46px auto;
    gap: 10px;
    align-items: center;
  }
  .service .icon_container {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }
  .service p {
    grid-column: span 2;
  }
  .cta_wrapper {
    padding: 86px 42px 0;
  }
  .cta_wrapper .cta_content .cta_text h2 {
    font-size: 30px;
  }
  .how_we_work_wrapper {
    padding: 60px 42px;
  }
  .how_we_work_wrapper .steps_wrapper .image_container {
    aspect-ratio: 56/45;
  }
  .prices .heading {
    padding: 0 42px;
  }
  .prices table tr {
    margin: 0 42px;
  }
  .prices table tr th:first-of-type {
    padding: 16px 14px 16px 26px;
  }
  .prices table tr td:first-of-type {
    padding: 12px 14px 12px 26px;
  }
  .prices table tr td:last-of-type {
    padding: 12px 26px 12px 14px;
  }
  .prices table tr td {
    font-size: 16px;
  }
  .prices .note {
    margin: 30px 42px 0;
  }
  .projects_wrapper {
    padding: 60px 0;
    background-color: transparent;
    overflow: visible;
  }
  .projects_swiper {
    width: 100dvw;
  }
  .projects_swiper .project_next,
  .projects_swiper .project_prev {
    display: none;
  }
  .projects_swiper .project {
    width: 688px;
    border-radius: 0;
  }
  .projects_swiper .project.swiper-slide-next,
  .projects_swiper .project.swiper-slide-prev {
    transform: translate(0, 0) scale(1);
  }
  .projects_swiper .project .project_content {
    position: static;
  }
  .inner_project_swiper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .inner_project_swiper::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(20, 16, 3, 0.9) 10.24%, rgba(20, 16, 3, 0) 100%);
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s;
  }
  .inner_project_swiper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    background-size: 22px 22px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 20.8px rgba(8, 20, 35, 0.1));
    -webkit-backdrop-filter: blur(1.7999999523px);
    backdrop-filter: blur(1.7999999523px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-image: url(../images/icons/fancy_icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 3;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s;
    pointer-events: none;
  }
  .projects_swiper .project::before {
    display: none;
  }
  .projects_swiper .project::after {
    display: none;
  }
  .projects_swiper .project .project_content {
    max-width: 100%;
    transform: translate(0, 0);
    width: 100%;
    flex-direction: column;
    gap: 18px;
    align-items: start;
  }
  .projects_swiper .project .project_content .left .label {
    padding: 5px 12px;
    border-radius: 69px;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: rgba(8, 20, 35, 0.07);
    color: #081423;
    font-size: 12px;
  }
  .projects_swiper .project .project_content .left .name {
    font-size: 24px;
    color: #081423;
  }
  .projects_swiper .project .project_content .left .inner_pagination {
    display: none;
  }
  .projects {
    overflow: hidden;
  }
  .reviews .heading {
    padding: 0 42px;
  }
  .reviews {
    overflow: hidden;
  }
  .reviews_slider {
    width: 100dvw;
  }
  .reviews_slider > .swiper-wrapper {
    margin-left: 42px;
  }
  .reviews_slider .buttons {
    padding-left: 42px;
  }
  .review {
    max-width: 571px;
    height: 502px;
    padding: 20px 20px 20px 12px;
    flex-direction: column-reverse;
    align-items: start;
    gap: 24px;
    justify-content: start;
  }
  .review .inner_review_swiper {
    margin: 0;
  }
  .review .review_info {
    padding: 6px 0 6px 16px;
    flex: 1;
  }
  .faqs .heading {
    padding: 0 42px;
  }
  .faqs_container {
    padding: 0 42px;
  }
  .faq_title {
    font-size: 20px;
  }
  .button,
  .header .whatsapp_link {
    font-size: 14px;
  }
  .header .whatsapp_link img {
    width: 20px;
    height: 20px;
  }
  .header .phone {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .first_screen_wrappper .icons_field img {
    width: 20px;
    height: 20px;
  }
  .limit {
    padding: 0 16px;
  }
  .header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .projects_swiper .project {
    width: 88.89vw;
  }
}
@media (max-width: 750px) {
  .modal .modal_content .modal_heading {
    margin-bottom: 25px;
  }
  .modal.privacy .modal_content .modal_heading h2 {
    margin: 0;
  }
  .modal, .modal.privacy {
    max-width: 98vw;
    border-radius: 18px;
    padding: 60px 38px 50px 50px;
  }
  .default_content h2 {
    font-size: 24px;
  }
  .default_content h3 {
    font-size: 22px;
  }
  .default_content h4 {
    font-size: 20px;
  }
  .default_content h5 {
    font-size: 18px;
  }
  .default_content h6 {
    font-size: 16px;
  }
  .default_content p, .default_content ol li, .default_content ul li {
    font-size: 14px;
  }
  .first_screen_wrappper {
    border-radius: 14px;
    padding: 113px 14px;
  }
  .first_screen_wrappper .text h1 {
    font-size: clamp(28px, 5.33vw, 40px);
    margin-bottom: 12px;
  }
  .first_screen_wrappper .text p {
    margin-bottom: 28px;
  }
  .first_screen_wrappper .text .buttons {
    margin-bottom: 28px;
  }
  .heading h3 {
    font-size: 12px;
  }
  .heading h2 {
    font-size: clamp(22px, 4vw, 30px);
  }
  .about_us {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }
  .about_us .text .heading {
    margin-bottom: 18px;
    order: -1;
    max-width: 100%;
    padding: 0 14px;
  }
  .about_us .text .heading h3 {
    justify-content: center;
  }
  .about_us .text .heading h2 {
    text-align: center;
  }
  .about_us .text .heading p {
    text-align: center;
  }
  .about_us .images_wrapper {
    margin-bottom: 28px;
  }
  .services_wrapper {
    padding: 50px 14px;
  }
  .cta_wrapper {
    padding: 73px 17px 0;
  }
  .cta_wrapper .cta_content {
    gap: 10px;
  }
  .cta_wrapper .cta_content .cta_text h2 {
    font-size: clamp(22px, 4vw, 30px);
  }
  .cta_wrapper .cta_content .cta_text p {
    font-size: 14px;
  }
  .cta_wrapper .cta_content .image_container {
    width: 344px;
  }
  .advantages_listing {
    padding: 0 14px;
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages .heading {
    margin-bottom: 28px;
  }
  .how_we_work_wrapper {
    padding: 50px 14px;
  }
  .how_we_work_wrapper .heading {
    margin-bottom: 30px;
  }
  .how_we_work_wrapper .heading h3 {
    justify-content: center;
  }
  .how_we_work_wrapper .heading h2 {
    text-align: center;
  }
  .how_we_work_wrapper .heading p {
    text-align: center;
  }
  .how_we_work_wrapper .steps_wrapper {
    gap: 20px;
  }
  .how_we_work_wrapper .steps_wrapper .image_container {
    border-radius: 8px;
    aspect-ratio: 3/2;
  }
  .step {
    gap: 16px;
  }
  .step .label span {
    font-size: 12px;
    min-width: 52px;
  }
  .step .text h5 {
    font-size: 16px;
  }
  .step .text p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .prices table tr:has(th) {
    display: none;
  }
  .prices table tr {
    margin: 0;
    margin-bottom: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .prices table tr td {
    padding: 0 !important;
  }
  .prices table tr td:last-of-type {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .prices table tr td:last-of-type::before {
    content: attr(data-label) " *";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #67707b;
  }
  .prices table tr:last-of-type {
    margin-bottom: 0;
  }
  .prices .note {
    margin: 20px 0 0;
    font-size: 12px;
  }
  .projects_wrapper {
    padding: 0;
  }
  .projects_wrapper .heading {
    margin-bottom: 30px;
  }
  .projects_swiper .project .project_content .left .name {
    font-size: 18px;
  }
  .inner_project_swiper {
    border-radius: 8px;
  }
  .reviews .heading {
    padding: 0 8px;
    margin-bottom: 30px;
  }
  .reviews .heading h3 {
    justify-content: center;
  }
  .reviews .heading h2 {
    text-align: center;
  }
  .reviews_slider .buttons {
    padding-left: 8px;
    display: none;
  }
  .review {
    max-width: 88.89vw;
    height: 493px;
    padding: 12px 14px;
    gap: 20px;
  }
  .reviews_slider > .swiper-wrapper {
    margin-left: 8px;
  }
  .faqs .heading {
    padding: 0 8px;
    margin-bottom: 30px;
  }
  .faqs_container {
    padding: 0 8px;
    gap: 12px;
  }
  .faq_title {
    padding: 14px 0;
    font-size: 16px;
    align-items: center;
  }
  .faq {
    padding: 0 12px 0 14px;
  }
  .faq_content p {
    font-size: 14px;
  }
  footer .footer_wrapper .footer_links {
    display: grid;
    gap: 8px 12px;
    justify-content: center;
  }
  footer .footer_wrapper .footer_links .copyright {
    order: 5;
    grid-column: span 2;
    text-align: center;
  }
  .header .logo img:first-of-type {
    display: none;
  }
  .header .logo img:last-of-type {
    display: block;
  }
  .header .whatsapp_link {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .header .whatsapp_link > span {
    display: none;
  }
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .prices .heading {
    padding: 0;
  }
}
@media (max-width: 550px) {
  .modal, .modal.privacy {
    padding: 48px 18px 30px 30px;
  }
  .modal .modal_content .modal_heading h2 {
    font-size: 22px;
  }
  .modal .modal_content .modal_heading p {
    font-size: 14px;
  }
  .limit {
    padding: 0 8px;
  }
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header .phone img {
    display: none;
  }
  .header .whatsapp_link {
    margin-left: 14px;
  }
  .header .burger_btn {
    margin-left: 4px;
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  .layout {
    padding-top: 67px;
  }
  .first_screen_wrappper .text {
    max-width: 100%;
  }
  .first_screen_wrappper .text ul {
    gap: 10px;
  }
  .first_screen_wrappper .text .buttons {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
  }
  .first_screen_wrappper .text .buttons .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .services_wrapper .services_listing {
    grid-template-columns: 1fr;
  }
  .cta_wrapper .cta_content .cta_text .buttons {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
  }
  .cta_wrapper .cta_content .cta_text .buttons .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .advantages_listing {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .advantages_card {
    display: grid;
    grid-template-columns: 43px auto;
    gap: 0px 20px;
    padding: 20px 30px;
    border-radius: 8px;
    align-items: start;
  }
  .advantages_card .icon_container {
    grid-row: span 2;
    width: 43px;
    min-width: 43px;
    height: 43px;
  }
  .advantages_card .icon_container svg,
  .advantages_card .icon_container img {
    width: 20px;
    height: 20px;
  }
  .advantages_card .title {
    text-align: left;
    font-size: 36px;
    margin: 0;
  }
  .advantages_card p {
    text-align: left;
  }
  .inner_project_swiper::after {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-size: 15px 15px;
  }
  .review .inner_review_swiper {
    max-width: 100%;
    height: auto;
    aspect-ratio: 138/89;
  }
  footer .footer_wrapper .logo_block .footer_logo {
    max-width: 259px;
  }
  .aside_menu {
    max-width: 100%;
  }
  .aside_menu nav a {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .aside_menu .close_menu {
    top: 12px;
    right: 8px;
    width: 46px;
    height: 46px;
  }
}
@media (max-height: 999px) {
  .aside_menu nav {
    margin-top: 10dvh;
  }
}
@media (max-width: 749px) {
  .prices table tr td:last-of-type::before {
    content: none;
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
