@font-face {
    font-family: 'Manrope'; /* Имя шрифта, которое вы будете использовать в CSS */
    src: url('assets/fonts/Manrope-Regular.ttf') format('ttf');
    font-weight: 400; /* Можно указать: normal, bold или 100-900 */
    font-style: normal;  /* normal, italic, oblique */
}
@font-face {
    font-family: 'Manrope'; /* Имя шрифта, которое вы будете использовать в CSS */
    src: url('assets/fonts/Manrope-Medium.ttf') format('ttf');
    font-weight: 500; /* Можно указать: normal, bold или 100-900 */
    font-style: normal;  /* normal, italic, oblique */
}
@font-face {
    font-family: 'Manrope'; /* Имя шрифта, которое вы будете использовать в CSS */
    src: url('assets/fonts/Manrope-SemiBold.ttf') format('ttf');
    font-weight: 600; /* Можно указать: normal, bold или 100-900 */
    font-style: normal;  /* normal, italic, oblique */
}

@font-face {
    font-family: 'Manrope'; /* Имя шрифта, которое вы будете использовать в CSS */
    src: url('assets/fonts/Manrope-SemiBold.ttf') format('ttf');
    font-weight: 600; /* Можно указать: normal, bold или 100-900 */
    font-style: normal;  /* normal, italic, oblique */
}

:root {
    --primary-color: #C69C6D;
}
* {
     box-sizing: border-box;
}
body {
    font-family: 'Manrope';
}
h1, h2, h3, h4, h5 , h6 {
    font-weight: 400;
}
p {
    font-size: 14px;
}
.header {display: flex;
justify-content: space-between; align-items: center;}
header {
    position: fixed;
    z-index: 9;
    width: 90%;
    padding: 16px;
    left: 50%;
    /* transform: translate(-50%, 0px); */
        transition: 0.5s;
    border-radius: 20px;
}
#header.scrolled {
     background: #ffffff1f;
    /* backdrop-filter: blur(10px); */
    box-shadow: 0px 2px 16px #00000012;
        padding: 5px;
}
#header.scrolled .nav__list {
    background: #ffffff00;
    backdrop-filter: none;
}
section {
    padding: 50px 0;
}
.nav__list {display: flex;
justify-content: space-between;
flex-direction: row; background: #ffffff14; padding: 0 20px;
    border-radius: 44px;backdrop-filter: blur(10px);}
.nav__list  li {
    list-style: none;
}
.nav__list a {
color: white;
    padding: 10px 12px;
    text-decoration: none;
    display: flex;
}
#nav.scrolled .nav__list a {
    color: #000000;
    padding: 10px 12px;
    text-decoration: none;
    display: flex;
}

/* SUBMENU */
.submenu {
   position: absolute;
    top: 100%;
    min-width: 180px;
    margin: 8px 0 0;
    background: #ffffff14;
    padding: 0 8px;
    border-radius: 13px;
    backdrop-filter: blur(10px);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 0;
}

/* SHOW ON HOVER */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
     height: auto;
}

/* LINKS */
.submenu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: white;
}

.submenu li a:hover {
   
}
header a { text-decoration: none;}
.buttons {display: flex;
justify-content: space-between;
flex-direction: row;
gap: 8px;     align-items: center;}
.btn {
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 16px;
}
button.btn.white {
    background: white;
    color: black;
}
.phone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 29px 8px 10px;
    width: fit-content;
}

.phone-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.phone-card__number {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2; color: black;
}

.phone-card__city {
    font-size: 10px;
    color: #777;
}
.container {width: 1300px; margin: 0 auto;}
#main {
    background-image: url(/images/banner.png);
    border-radius: 66px;
    height: 95vh; background-size: cover;
}

#main h1 {
  font-size: 60px;
    color: white;
    line-height: 1;
    margin: 12px 0;
}
#main p {
   font-size: 32px;
    color: white;
    margin: 12px 0 18px;
}
.main_content {
    display: flex;
    height: 100%;
}
.left__content {
    width: 60%;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.utp {
    margin-top: 30%;
}
.right__content {
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.adven div {
    border-left: solid 4px var(--primary-color);
    padding-left: 8px;
    color: white;
}

.adven {
  display: flex;
    gap: 24px;    margin-bottom: 14%;
}
.cifry {
       margin-bottom: 14%;
    display: flex;
    width: 100%; gap: 24px;
}
.cifry div {
    background: #ffffff14;
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .cifry div p {
    margin: 0;
    font-size: 28px; font-weight: 600;
}
.cifry img {
    margin-top: -34px;
}
.cifry span {
    text-align: center;
}
.btn {
    color: black;
    background: white;
    display: flex;
    width: fit-content;
    align-items: center;
    padding: 4px 4px 4px 25px;
    border-radius: 50px; 
    gap: 8px; text-decoration: none; border: 0;
}
button.btn.primary {
    background: var(--primary-color);
    color: white;
}
.no-icon {
    padding: 12px 24px 12px 24px;
}
button {
    background-color: var(--primary-color);
    color: white;
}
button.btn.primary.icon-right {
    padding: 10px 10px 10px 28px;
}
.btn span {
    font-family: 'Manrope';
}
.cta .description {
    text-align: left;
    font-size: 20px;
    color: #505050;
}
.catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}
.catalog li {
 width: calc((100% - 48px) / 3);
    list-style: none;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
}
li.product h3 {
    margin: 20px 0px 12px; font-weight: 600; font-size: 20px;color: black;text-align: center;
}
li.product p {
    margin: 0; color: black; text-align: center;
}
li.product a {
    text-decoration: none;
}
.heading_content {
    text-align: center;     margin-bottom: 40px;
}
.heading {
    font-size: 36px; margin: 12px 0; 
}
.description {
    text-align: center;
}

.why-section {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows:repeat(2, 1fr);
    gap: 24px;
}
.why-section .block {
  
    background-color: #F4F4F4;
    border-radius: 20px;
    padding: 24px;
 display: flex;
 flex-direction: column;
justify-content: space-between;
align-items: stretch;
}
.why {
   grid-column-start: 1;
    grid-column-end: 3;
    background: url(images/why.png) no-repeat right bottom ;
    background-size: cover;
    border-radius: 20px;
     padding: 24px;
}
.why h2 {
    color: white;
     font-size: 30px;
}

.adv_content {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

h3.adv_heading {
 font-size: 18px;
 margin: 0;
}
.adv_desc {
    color: #363636;
    font-size: 10px;
}

.regions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.regions div {
    border-radius: 20px;
    padding: 24px 80px ;
}
.regions div .srok {
    padding: 6px 20px;
    background: var(--primary-color);
    width: fit-content;
    color: white;
}
.regions div .srok2 {
    padding: 6px 20px;
    width: fit-content;
   border: 1px solid black;
}
p.price {
    background: white;
    width: fit-content;
    padding: 10px;
    border-radius: 21px;
    font-size: 18px;
    font-weight: 600;     gap: 10px;
}
.price span {
    background: #44E49F;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 12px;
}
.astana {background: url(images/astana.png) no-repeat bottom right, #F4F4F4; flex: 0 0 calc((100% - 24px) / 2);min-height: 330px;}
.almaty {background: url(images/almaty.png) no-repeat bottom right, #F4F4F4; flex: 0 0 calc((100% - 24px) / 2);min-height: 330px;}
.others {background: url(images/kz.png) no-repeat top right, #F4F4F4; flex: 0 0 100%;min-height: 200px;}

.steps {display: flex;
gap: 24px;}
.step {display: flex;
flex: 1;
padding: 44px;
border-radius: 20px;
aspect-ratio: 1;
align-items: baseline;
}
.step_content {display: flex; align-items: center; gap: 8px;}
.step__text h3 {
    margin: 0;
}
.step__text p {
    font-size: 12px; color: #363636;  margin: 0;
}

.cta {
    display: flex;
    align-items: center;
}

form {
    display: flex;
    gap: 20px;
}
.phone-input {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 10px;
  width: fit-content;
}

.phone-input .icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  color: #c49a6c;
  flex-shrink: 0;
}

.phone-input input {
  border: none;
  background: transparent;
  font-size: 18px;
  outline: none;
  width: 100%;
  color: #999;
}

.phone-input input::placeholder {
  color: #bdbdbd;
}
footer {
    background: #F4F4F4; padding: 50px 0;
}
footer .column h3 {
    margin: 0 0 16px 0;
}
.section-1 {
    display: flex;
}
.section-1 .column {
    flex: 1;
}
footer .card {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}
footer .card .card__number {
    font-size: 16px;
}
footer .card .card__desc {
    font-size: 14px;
    color: #6E6E6E;
}
.section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #6E6E6E;
    margin-top: 24px;
}
.section-2 a {
    color: #6E6E6E; font-size: 14px; margin-right: 20px;
}
.splide__slide img {
  width: 100%;
  height: auto;
}
.custom-arrow {
  background: var(--primary-color) !important;
  border: 2px solid #000;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer; position: relative !important;
}
.splide__arrows.splide__arrows--ltr {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 50px;
}
.splide__pagination {

    display: none !important;
}
/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;

    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.5s;
}
.nav-list.active {
    top: 0;
}

@media screen and (max-width: 768px) {
    .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    z-index: 9;
    width: 100%;
    padding: 16px 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    border-radius: 20px;
}
#header.scrolled {
    background: #fffffff2;
    /* backdrop-filter: blur(10px); */
    box-shadow: 0px 2px 16px #00000012;
    padding: 5px;
}
        .burger {
                display: flex;
        padding: 12px;
        background: #00000029;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-right: 12px;
        backdrop-filter: blur(10px);
    }
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
    .nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;

        background: #fff;
        display: none;
    }
    .nav__list a {
    color: white;
    padding: 5px 12px;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
}
#nav {
    opacity: 0;
    top: -100%;
    position: fixed;
    transition: 0.5s;
    width: 91%;
    left: 50%;
    right: 0;
    transform: translate(-50%, 10px);
}
#nav.active {
    opacity: 1;
    top: 88px;
}
    .nav__list {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .nav.active {
        display: block;
    }
    .nav__ist.active {
    top: 0;
}
.buttons {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 90%;
}
.left__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#main h1 {
    font-size: 48px;
}
#main p {
    font-size: 23px;
    color: white;
    margin: 12px 0 18px;
}
.main_content {
    display: flex;
    height: 100%;
    flex-direction: column;
}
.adven {
    margin-top: 100px;
}
.catalog li {
    width: calc((100% - 24px) / 2);
    list-style: none;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
}
.why-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 24px;
}
.regions div {
    border-radius: 20px;
    padding: 24px 24px;
}
.astana, .almaty {
    flex: 0 0 100%;
}
.steps {
    display: flex;
    gap: 24px;
    flex-direction: column;
}
.cta {
    display: flex;
    align-items: center;
    flex-direction: column;        gap: 24px;
}
.section-1 {
    display: flex;
    flex-direction: column;
}
.heading {
    font-size: 30px;
    margin: 12px 0;
}
.submenu {
    position: relative;
box-shadow: none;

backdrop-filter: none;
}
#header.scrolled .nav__list {
    background: #ffffff2e;
    backdrop-filter: blur(10px);
}
.section-1 .column {
    margin-top: 24px;
}
}