* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', sans-serif;
    user-select: none;
}

:root {
    /* COLORS */
    --black: #252525;
    --white: #FFFFFF;

    --main-bg: #318FAD;

    --font-title: "Montserrat", sans-serif;
    --font-inter: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--white);
    color: #4F5155;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16.71px;
    transition: .1s linear;
    text-align: center;
}

.btn:hover {
    background: var(--main-bg);
    color: var(--white);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(69, 71, 75, 0.1);
    backdrop-filter: blur(0);
    transition: backdrop-filter 0.3s ease;
    z-index: 2;
    display: none;
}

.overlay.active {
    display: block;
    backdrop-filter: blur(3px);
    overflow: hidden;
}

body.active {
    overflow: hidden;
}



/* Header
====================================== */

.header {
    background: var(--white);
}

.header_top {
    padding: 25px 0;
    background: var(--white);
}

.header_top_items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header_top_item {
    display: flex;
    gap: 10px;
    align-items: center;
    img {
        width: 40px;
        height: 40px;
    }
}

.header_top_textContent {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.header_top_block {
    display: flex;
    gap: 8px;
}

.header_top_title {
    font-weight: 700;
    font-size: 16px;
    line-height: 19.09px;
    color: var(--black);
}

.header_top_block p {
    font-family: var(--font-inter);
    font-weight: 300;
    font-size: 14px;
    line-height: 16.94px;
    padding-right: 8px;
    border-right: 1px solid var(--black);
}

.header_top_block p:last-child {
    border: none;
    padding: unset;
}

.header_nav {
    width: 100%;
    z-index: 10;
    padding: 15px 0;
    background: var(--black);
    position: sticky;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.burger_menu {
    position: fixed;
    top: 78px;
    right: 0;
    width: 290px;
    height: 200vh;
    background: var(--black);
    padding: 30px 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.burger_menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.header_links.burger {
    flex-direction: column;
    border-bottom: 2px solid #2F2F2F;
    padding-bottom: 14px;
}

.burger_items {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    color: var(--white) !important;
    border-bottom: 2px solid #2F2F2F;
    padding-bottom: 14px;
    gap: 22px;
}

.header_top_item.burger {
    align-items: unset;
}

.header_top_title.burger {
    color: var(--white);
}

.header_top_block.burger {
    display: flex;
    flex-direction: column;
}

.header_top_block.burger p {
    border-right: 1px solid var(--white);
}

.header_top_block.burger p:last-child {
    border: none;
}

.btn.burger {
    margin-top: 30px;
    width: 100%;
}

.burger_btn {
    cursor: pointer;
    border: none;
    background: transparent;
    width: 30px;
    display: none;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px;
    z-index: 10001;
}

.burger_btn span {
    position: absolute;
    top: 0;
    right: 10px;
    border-radius: 100px;
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.burger_btn span:nth-child(1) {
    top: 50%;
}

.burger_btn span:nth-child(2) {
    width: 15px;
    top: 64%;
}

.burger_btn span:nth-child(3) {
    top: 35%;
}

.burger_btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 45%;
}

.burger_btn.active span:nth-child(2) {
    width: 15px;
    top: 64%;
    width: unset;
}

.burger_btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 45%;
}

.header_nav_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header_links {
    display: flex;
    gap: 25px;
}

.header_link {
    font-weight: 500;
    font-size: 14px;
    line-height: 16.71px;
    color: var(--white);
    transition: .1s linear;
}

.header_link:hover {
    color: var(--main-bg);
}

.header_inner {
    position: relative;
    background: var(--main-bg);
    padding: 120px 0 466px 0;
}

.header_title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 62px;
    line-height: 75.58px;
    text-transform: uppercase;
    color: var(--white);
}

.header_inner_content {
    display: flex;
    gap: 47px;
    align-items: center;
}

.header_inner_block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header_inner_block p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16.71px;
    color: var(--white);
}

.inner_btn {
    padding: 20px 59px;
    color: var(--main-bg);
}
.inner_btn:hover {
    background: var(--black);
}

.swiperHeader {
    width: 100%;
    position: absolute;
    bottom: -153px;
}

.header_slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_banner_img.mobile {
    display: none;
}

.header_banner_title {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--main-bg);
    opacity: 0.2;
    font-weight: 800;
    font-size: 100px;
    line-height: 121.9px;
    text-transform: uppercase;
    z-index: -1;
    position: absolute;
    bottom: 15px;
}


/* About
====================================== */

.about {
    background: var(--white);
    padding: 320px 0 40px 0;
}

.about_content {
    display: flex;
    gap: 66px;
}

.about_top {
    width: calc(50% - 66px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.about_title {
    font-weight: 800;
    font-size: 44px;
    line-height: 53.64px;
    color: var(--main-bg);
    text-transform: uppercase;
    font-family: var(--font-title);
}

.about_text_content {
    gap: 18px;
    display: flex;
    flex-direction: column;
}

.about_subtitle {
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
}

.about_text_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.about_bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 57px;
}   

.about_bottom_title {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 34px;
    line-height: 41.45px;
    text-transform: uppercase;
}

/*  */

.logo-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #fff;
}

.logo-container.mobile {
    display: none;
}

.logo-track {
    display: flex;
    width: calc(100% * 2);
    animation: scroll 20s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    margin-right: 16px;
}

.logo-item img {
    height: 50px;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* Features
====================================== */

.features {
    padding: 50px 0;
    background: var(--main-bg);
}

.features_items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.features_item {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features_item p {
    font-family: var(--font-inter);
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 16.94px;
}




/* Delivery
====================================== */

.delivery {
    padding: 110px 0 100px 0;
    background: var(--white);
}

.delivery_content {
    
}

.delivery_title {
    text-align: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 34px;
    line-height: 41.45px;
    text-transform: uppercase;
    padding-bottom: 40px;
    color: var(--black);
}

.delivery_item_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28.64px;
    text-transform: uppercase;
    transition: .1s linear;
    z-index: 1;
}

.delivery_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.09px;
    z-index: 1;
}

.delivery_item ul {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 15px;
    li {
        font-weight: 400;
        font-size: 16px;
        line-height: 19.09px;
    }
}

.delivery_btn p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16.71px;
    transition: .1s linear;
}

.delivery_items {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.delivery_items.mobile {
    display: none;
}

.delivery_item {
    border-radius: 10px;
    padding: 390px 20px 146px 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
    color: var(--white);
    overflow: hidden;
    position: relative;
    transition: width 0.5s ease, padding 0.5s ease;
}

.delivery_item.active::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:rgba(0, 0, 0, .4);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.delivery_item.active:hover::before {
    opacity: 1;
}

.delivery_item:nth-child(3) {
    background-size: cover !important;
}

.delivery_item .delivery_text, .delivery_item ul {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.delivery_item.active {
    width: 600px !important;
    padding: 100px 40px 40px 40px;
}

.delivery_item.active p, .delivery_item.active ul {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.delivery_item.active .delivery_item_title {
    font-size: 32px;
}

.delivery_item.active .delivery_btn {
    bottom: 40px;
}

.delivery_item.active .delivery_btn p {
    font-size: 20px;
    line-height: 23.87px;
}

.delivery_btn {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 146px;
    left: 20px;
    transition: .1s linear;
}

.delivery_btn.last {
    bottom: 120px;
}

.delivery_btn img {
    width: 24px;
    height: 24px;
}




/* Price
====================================== */

.price {
    position: relative;
    /* background: url("../img/price_bg.png") center no-repeat;
    background-size: cover;
    background-attachment: fixed; */
    overflow: hidden;
}

.price::before {
    content: "";
    position: fixed; /* Фиксированное положение относительно окна */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/price_bg.png") center no-repeat;
    background-size: cover;
    z-index: -1; /* Псевдоэлемент будет позади содержимого блока */
}

.price_content {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 40px;
    z-index: 0;
}

.price_title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 44px;
    line-height: 53.64px;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}

.price_items {
    display: none;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.price_item {
    border-radius: 10px;
    background: var(--main-bg);
    overflow: hidden;
    width: 350px;
    border: 1px solid var(--white);
}

.price_item_text_block {
    padding: 33px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price_item_title {
    padding: 30px 20px 12px 20px;
    color: var(--main-bg);
    background: var(--white);
}

.price_item_text {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 19.09px;
    span {
        font-weight: 700;
    }
}

.price_table {
    border: 1px solid var(--white);
    border-radius: 10px;
    border-spacing: 0;
    max-width: 1090px;
    width: 100%;
}

.price_block_title {
    background: var(--white);
}

.price_table_title {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #45A3C1;
    text-transform: uppercase;
}

.price_table_default {
    background: #318FAD;
    font-size: 14px;
}

td {
    border: 2px solid var(--white);
    border-style: none none solid none;
    padding: 14px 70px;
    color: var(--white);
  }
  
tr:first-child td:first-child { border-top-left-radius: 10px; }
tr:first-child td:last-child { border-top-right-radius: 10px; }

tr:last-child td:first-child { border-bottom-left-radius: 10px; }
tr:last-child td:last-child { border-bottom-right-radius: 10px; }

tr:first-child td { border-top-style: solid; }
tr td:first-child { border-left-style: solid; }

/* .price_bg {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

.price_cloud {
    position: absolute;
    top: 26px;
    left: -68px;
    z-index: 1;
}

.price_cloud.two {
    top: unset;
    bottom: -52px;
    left: 20px;
}

.price_cloud.three {
    bottom: 36px;
    top: unset;
    left: unset;
    right: -140px;
}



/* Process
====================================== */

.process {
    padding: 72px 0 140px 0;
    background: var(--white);
}

.process_title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 44px;
    line-height: 53.64px;
    text-transform: uppercase;
    color: var(--black);
}

.mySwiper {
    margin-top: 40px;
}

.process_top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.process_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.process_btns.mobile {
    display: none;
}

.process_next, .process_prev {
    cursor: pointer;
}

.process_img {
    width: 100%;
    height: 100%;
    max-height: 520px;
}



/* Contacts
====================================== */

.contacts {
    position: relative;
    display: flex;
    justify-content: center;
    color: var(--white);
    height: 352px;
    background: var(--white);
}

.contacts_content {
    position: absolute;
    display: flex;
    gap: 10px;
    bottom: -76px;
    width: 100%;
}

.contacts_city {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: #2F2F2F;
    border-radius: 12px;
    gap: 14px;
    padding: 75px 60px 70px 60px;
}

.contacts_title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 36px;
    line-height: 43.88px;
}

.contacts_text {
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    line-height: 19.09px;
}

.contacts_form {
    padding-top: 56px;
    display: flex;
    gap: 10px;
}

.contacts_form input {
    padding: 18px 20px 18px 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    border-radius: 100px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 240px;
}

.contacts_form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contacts_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19.09px;
    border: none;
    cursor: pointer;
}

.contacts_address {
    padding: 70px 16px 135px 16px;
    background: #2F2F2F;
    border-radius: 12px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contacts_address_items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts_address_item {
    display: flex;
    gap: 12px;
}

.contacts_address_texts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacts_address_texts h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 19.09px;
}

.contacts_address_texts p {
    --font-inter: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 14.52px;
}

.contacts_stores {
    display: flex;
    gap: 10px;
}

.contacts_box {
    position: absolute;
    right: -75px;
    bottom: -73px;
}



/* Footer
====================================== */

.footer {
    background: var(--black);
    padding: 164px 0 62px 0;
    color: var(--white);
}

.footer_logo.mobile {
    display: none;
}

.footer_inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer_block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer_contact {
    width: 295px;
    display: flex;
    flex-direction: column;
}

.footer_contact h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 21.48px;
    padding-bottom: 8px;
}

.footer_contact p {
    font-family: var(--font-inter);
    font-weight: 300;
    font-size: 14px;
    line-height: 16.94px;
    padding-bottom: 20px;
}

.footer_address {
    display: flex;
    img {
        width: 56px;
        height: 56px;
    }
}

.footer_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.footer_item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_block_tel {
    display: flex;
    gap: 7px;
}

.footer_texts {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_texts h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 21.48px;
}

.footer_block_tel p {
    font-family: var(--font-inter);
    font-weight: 300;
    font-size: 16px;
    line-height: 19.36px;
    border-right: 1px solid var(--white);
    padding-right: 8px;
}

.footer_block_tel p:last-child {
    border: none;
    padding-right: unset;
}

/* Media Screen 
=====================================*/

@media screen and (max-width:1024px){
    .header_title {
        font-size: 44px;
    }
    .header_banner_img {
        height: 400px;
    }
    .header_inner {
        padding: 90px 0 320px 0;
    }
    .header_banner_title {
        font-size: 75px;
    }
    .about_content {
        gap: 50px;
    }
    .about_title {
        font-size: 35px;
    }
    .about_bottom_title {
        font-size: 28px;
    }
    .features_items {
        gap: 20px;
    }
    .delivery_title {
        font-size: 26px;
    }
    .delivery_item.active .delivery_item_title {
        font-size: 26px;
    }
    .delivery_text {
        font-size: 14px;
    }
    .delivery_item ul {
        gap: 6px;
    }
    .delivery_item ul {
        li {
            font-size: 14px;
        }
    }
    .price_title {
        font-size: 38px;
    }
    .price_table {
        max-width: 1010px;
    }
    .price_table_title {
        font-size: 12px;
    }
    .process_title {
        font-size: 38px;
    }
    .contacts_city {
        width: 70%;
    }
    .contacts_stores {
        flex-wrap: wrap;
    }
    .contacts_address_items {
        gap: 20px;
    }
    .contacts_address {
        padding: 70px 16px 100px 16px;
    }
    .contacts_form {
        padding-top: 50px;
    }
    .footer_texts h2 {
        font-size: 16px;
    }
    .footer_address {
        img {
            width: 44px;
            height: 44px;
        }
    }
    .footer_block_tel {
        gap: 4px;
    }
    .footer_inner {
        gap: 60px;
    }
    .footer_block_tel p {
        font-size: 12px;
    }
}

@media screen and (max-width:768px){
    .header_top {
        display: none;
    }
    .header_nav {
        width: 100%;
        position: fixed;
    }
    .header_right {
        display: none;
    }
    .burger_btn {
        display: flex;
    }
    .header_inner {
        padding: 240px 0 320px 0;
    }
    .header_banner_img {
        height: 300px;
    }
    .swiperHeader {
        bottom: -100px;
    }
    .header_banner_title {
        font-size: 50px;
        bottom: -20px;
    }
    .header_title {
        font-size: 34px;
        line-height: 52.58px;
    }
    .about {
        padding: 220px 0 40px 0;
    }
    .about_content {
        flex-direction: column;
    }
    .logo-container {
        display: none;
    }
    .about_content {
        gap: 20px;
    }
    .logo-container.mobile {
        display: flex;
        gap: 120px;
    }
    .about_top {
        width: unset;
    }
    .about_bottom {
        gap: 30px;
    }
    .features_items {
        gap: 15px;
    }
    .delivery_items {
        display: none;
    }
    .delivery_items.mobile {
        display: flex;
    }
    .delivery_title {
        text-align: unset;
    }
    .price_table {
        display: none;
    }
    .price_items {
        display: flex;
    }
    .contacts_city {
        width: 100%;
    }
    .contacts_content {
        flex-direction: column;
        bottom: -240px;
    }
    .footer {
        padding: 290px 0 62px 0;
    }
    .footer_inner {
        flex-direction: column;
        align-items: unset;
    }
}

@media screen and (max-width:480px){
    .header_inner_content {
        flex-direction: column;
        text-align: center;
    }
    .features_items {
        flex-wrap: wrap;
    }
    .contacts_form {
        flex-direction: column;
    }
    .header_banner_img {
        transform: translateX(120px);
    }
    .header_banner_img.two {
        transform: translateX(45px);
    }
    .header_inner {
        padding: 270px 0 220px 0;
    }
    .about {
        padding: 149px 0 40px 0;
    }
    .about_title {
        font-size: 28px;
        line-height: 34.13px;
    }
    .about_subtitle {
        font-weight: 600;
        font-size: 16px;
        line-height: 19.09px;
    }
    .about_text_content p {
        font-size: 14px;
        line-height: 19px;
    }
    .about_bottom_title {
        font-size: 22px;
        line-height: 26.82px;
    }
    .features_item {
        width: calc(50% - 12px);
    }
    .delivery_item.active {
        width: 430px !important;
    }
    .delivery_item {
        padding: 390px 20px 146px 50px;
    }
    .delivery_btn {
        left: 50px;
    }
    .delivery {
        padding: 70px 0;
    }
    .delivery_title {
        padding-bottom: 20px;
        font-size: 24px;
        line-height: 29.26px;
    }
    .price_title {
        font-size: 28px;
        line-height: 34.13px;
    }
    .process {
        padding: 70px 0 0 0;
    }
    .process_title {
        font-size: 24px;
        line-height: 29.26px;
    }
    .process_btns {
        display: none;
    }
    .process_btns.mobile {
        padding-top: 20px;
        display: flex;
    }
    .contacts_title {
        font-size: 30px;
        line-height: 36.57px;
    }
    .contacts_form {
        padding-top: 40px;
    }
    .contacts_form input {
        width: 100%;
    }
    .contacts_content {
        bottom: -500px;
    }
    .footer {
        padding: 550px 0 62px 0;
    }
    .footer_logo {
        display: none;
    }
    .footer_logo.mobile {
        display: unset;
        max-width: 163.69px;
    }
    .footer_block {
        flex-direction: column;
        align-items: unset;
    }
    .footer_contact {
        width: unset;
    }
    .process_img {
        max-width: 538px;
    }
}