*,
*::before,
*::after {
    box-sizing: border-box;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img {
    max-width: 100%;
    display: block;
}

article > * + * {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@font-face {
    font-family: 'e-Ukraine';
    src: url('/wp-content/themes/aquabox/assets/fonts/e-Ukraine-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('/wp-content/themes/aquabox/assets/fonts/e-Ukraine-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('/wp-content/themes/aquabox/assets/fonts/e-Ukraine-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/*text*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 500;
}
.h1-desk{
    font-size: clamp(36px, 5vw, 58px);
    line-height: 100%;
}
.h2-desk{
    font-size: clamp(58px, 8.3333vw, 160px);
    line-height: 100%;
}
.h2-secondary{
    font-size: clamp(36px, 8.3333vw, 64px);
    line-height: 100%;
}
.text{
    font-family: Inter, sans-serif;
    font-size: clamp(16px, 3.3333vw, 24px);
    font-weight: 500;
}
.main-text{
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.subheading{
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
}

.privacy p, .privacy ul, .privacy ol{
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.privacy ul, .privacy ol{
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}
.privacy p{
    margin-bottom: 10px;
}
.privacy h1{
    font-size: clamp(36px, 5vw, 58px);
    line-height: 100%;
}
.privacy h1, .privacy h2, .privacy h3, .privacy h4{
    margin-top: 24px;
    margin-bottom: 10px;
}
.privacy ul[class], .privacy ol[class]{
    list-style: unset;
}

/*btn*/
.main-bg{
    background: #1F75EF;
    padding: 0 40px 40px 40px;
}
.container{
    border-radius: 40px;
    background: #ffffff;
}
.mt-40{
    margin-top: 40px;
}
.btn{
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-pink{
    background: url("../img/header-btn-bg.svg") no-repeat, #FF83A9;
    color: #FFF !important;
    padding: 12px 22px;
    border-radius: 12px;
    position: relative;
    transition: all 0.5s;
    background-position-y: 60px;
}
.btn-primary-pink:hover{
    background: url("../img/header-btn-bg.svg") no-repeat, #FFF;
    background-size: auto;
    background-position-x: center;
    background-position-y: 0px;
    color: #FFF !important;
}

.btn-secondary-blue{
    background: rgba(31, 117, 239, 0.1);
    color: #1F75EF;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.5s;
    /*display: flex;*/
    /*align-items: center;*/
}
.btn.btn-secondary-blue svg{
    transition: 0.5s;
    margin-left: 24px;
}
.btn-secondary-blue:hover{
    background: rgba(31, 117, 239, 1);
    color: #FFF;
}
.btn.btn-secondary-blue:hover svg path {
    stroke: #FFF;
}
.btn.btn-secondary-blue:hover svg {
    transform: rotate(-45deg);
    scale: 1.2;
}

.btn-cont{
    display: flex;
    justify-content: center;
}

@media (max-width: 1200px){
    .container{
        border-radius: 16px;
    }
}
@media (max-width: 600px){
    .mt-40{
        margin-top: 24px;
    }

    .btn{
        font-size: 14px;
        display: block;
        text-align: center;
        /*width: fit-content;*/
        margin: 0 auto;
    }
    .subheading{
        font-size: 12px;
    }
    .main-text{
        font-size: 16px;
    }

    .btn-secondary-blue{
        padding: 10px 12px;
    }
    .btn.btn-secondary-blue svg{
        margin-left: 8px;
    }

    .btn-cont{
        display: unset;
    }
}

/*header*/
.nav {
    /*max-width: 1400px;*/
    border-radius: 0 0 40px 40px;
    margin: 0 40px;
    background-color: #FFF;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    padding: 24px;
    justify-content: space-between;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-sizing: border-box;
}
.nav-active{
    background-color: #1F75EF;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.nav > .nav-header > .nav-title {
    font-size: 22px;
    color: #050505;
}
.nav > .nav-list {
    display: flex;
    gap: 24px;
}
.nav > .nav-list > li {
    list-style-type: none;
}
.nav > .nav-list > li a {
    text-decoration: none;
    color: #181818;
    cursor: pointer;
    font-family: 'e-Ukraine', sans-serif;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.4s;
    position: relative;
}
.nav > .nav-list > li a:hover{
    color: #1F75EF;
}
.nav > .nav-list > li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #1F75EF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.nav > .nav-list > li a:hover::after {
    transform: scaleX(1);
}
.contact-section div ul li a{
    position: relative;
}
.contact-section div ul li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.contact-section div ul li a:hover::after {
    transform: scaleX(1);
}
.contact-item .contact-number a{
    position: relative;
}
.contact-item .contact-number a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.contact-item .contact-number a:hover::after {
    transform: scaleX(1);
}
.nav > #nav-check {
    display: none;
}
.logo{
    display: block;
}
.logo-mob{
    display: none;
}
.logo-mob path{
    transition: all 0.3s;
}
.logo-mob-active path{
    fill: #FFFFFF;
}
.header-bnt{
    background: url("../img/header-btn-bg.svg") no-repeat, rgba(31, 117, 239, 0.1);
    color: #1F75EF !important;
    padding: 12px 22px;
    border-radius: 12px;
    position: relative;
    transition: all 0.5s;
    background-position-y: 60px;
}
.header-bnt:hover{
    background: url("../img/header-btn-bg.svg") no-repeat, #FFF;
    background-size: auto;
    background-position-x: center;
    background-position-y: 0px;
    color: #FFF !important;
}
.header-bnt-mob{
    font-size: 12px;
    padding: 10px 12px;
    color: #FFF !important;
    background: #FF83A9;
    border-radius: 8px;
    position: relative;
    transition: all 0.5s;
    background-position-y: 60px;
}
.header-bnt-mob:hover{
    background: url("../img/header-btn-bg.svg") no-repeat, #FFF;
    background-size: auto;
    background-position-x: center;
    background-position-y: 0px;
    color: #FFF !important;
}
.header-bnt-mob{
    display: none;
}
.nav-btn{
    display: none;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    cursor: pointer;
    font-family: e-Ukraine, sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: -25%;
    background: rgba(243, 243, 246, 1);
    display: none;
    min-width: 50px;
    padding: 14px 16px;
    z-index: 2;
    border-radius: 12px;
}

.lang-switcher.active .lang-dropdown {
    display: block;
}

.lang-switcher.active .lang-current svg {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.lang-dropdown a {
    display: block;
    white-space: nowrap;
}




@media (max-width: 1550px){
    .nav > .nav-list > li a{
        font-size: 16px;
    }
    .nav > .nav-list{
        gap: 16px;
    }
    .header-bnt{
        font-size: 18px;
    }

}
@media (max-width: 1715px){
    .app-main-text .h1-desk{
        font-size: clamp(36px, 5vw, 44px);
    }
    .app-main-text .text{
        font-size: clamp(16px, 3.3333vw, 22px);
    }
    .aquabox-phone .aquabox-phone-text .h2-secondary{
        font-size: clamp(36px, 8.3333vw, 40px);
        margin-bottom: 16px;
    }
    .aquabox-phone-bg{
        gap: 20px;
        padding: 38px;
    }
}
@media (max-width: 1399px){
    .logo{
        width: 140px;
    }
    .header-bnt {
        font-size: 14px;
    }
    .bottle_block .bottle-bg .h2-secondary{
        font-size: clamp(36px, 8.3333vw, 42px);
    }
    .bottle-page-main-text .h1-desk{
        font-size: clamp(36px, 5vw, 42px);
    }
    .app-main-text .h1-desk{
        font-size: clamp(36px, 5vw, 44px);
    }
    .app-main-text .text{
        font-size: clamp(16px, 3.3333vw, 20px);
    }

    .aquabox-phone .aquabox-phone-text .h2-secondary{
        font-size: clamp(36px, 8.3333vw, 40px);
        margin-bottom: 16px;
    }
    .aquabox-phone .aquabox-phone-text .main-text{
        font-size: 18px;
    }
    .aquabox-phone-bg{
        gap: 16px;
        padding: 32px;
    }
}
@media (max-width: 1200px) {
    .lang-dropdown {
        position: relative;
        left: 0;
        padding: 0;
        padding-top: 8px;
        background: unset;
        border-radius: 6px;
    }
    .lang-current{
        color: #1F75EF;
        font-weight: 500;
    }

    .nav > .nav-list > li a{
        font-size: 20px;
        font-weight: 500;
        color: #1F75EF;
    }
    .logo{
        display: none;
    }
    .logo-mob{
        display: block;
    }
    .nav {
        padding: 10px;
        border-radius: 16px;
        margin: 10px 16px;
    }
    .nav > .nav-btn {
        display: flex;
        align-items: center;
        right: 0;
        top: 3px;
        /*padding-top: 0.2rem;*/
        gap: 10px;
    }
    .nav > .nav-btn > label {
        display: inline-block;
        width: 14px;
        height: 14px;
        padding: 12px;
        background: url("../img/burger-menu.svg") no-repeat;
        background-size: contain;
    }
    .nav > .nav-btn > label > span {
        display: block;
        width: 20px;
        height: 3px;
    }
    #nav-check:checked ~ .nav-btn label {
        background: url("../img/headerX.svg") no-repeat;
        background-size: 64%;
        background-position: center;
    }
    .nav > .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: #FFFFFF;
        height: 0;
        transition: all 0.3s ease-in;
        top: 70px;
        left: 0;
        overflow: hidden;
    }
    .nav > .nav-list > li {
        width: 100%;
        margin: 8px 0;
        padding-left: 16px;
    }
    .nav > .nav-list > li .lang-switcher{
        margin-top: 16px;
        background: rgba(31, 117, 239, 0.05);
        padding: 7px 10px;
        border-radius: 6px;
        margin-bottom: 8px;
    }
    .nav > .nav-list > li .lang-switcher .lang-current svg path{
        stroke: #1F75EF;
    }
    .nav > .nav-list > li:nth-child(1){
        margin-top: 16px;
    }
    .nav > #nav-check:checked ~ .nav-list {
        height: auto;
        z-index: 999;
        width: -webkit-fill-available;
        width: -moz-available;
        width: stretch;
        box-shadow: 2px 4px 22px rgba(1, 13, 31, 0.3);
    }
    .nav-btn{
        display: block;
    }
    .header-bnt-mob{
        display: block;
    }
    .header-bnt{
        display: none;
    }
    .nav > .nav-list{
        margin: 0 0px;
        width: -webkit-fill-available;
        width: -moz-available;
        width: stretch;
        border-radius: 12px;
        gap: unset;
    }

    .main-bg{
        background: #1F75EF;
        padding: 0 16px 16px 16px;
    }
}

/*home*/
.main-block{
    padding: 40px;
    margin-top: 40px;
    display: flex;
}
.main-block-img{
    width: 50%;
    position: absolute;
    height: 850px;
    width: auto;
    margin: 0 auto;
    left: 72%;
    transform: translate(-50%, 0);
    z-index: 2;
}
.main-block .h1-desk{
    margin-bottom: 24px;
}
.main-block .text{
    margin-bottom: 80px;
}
.text-main-block{
    max-width: 869px;
    width: 50%;
}
.text-main-block::after{
    /*content: '';*/
    position: absolute;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    height: 100%;
    background-repeat: no-repeat;
    left: 65%;
    top: 184px;
    background-size: calc(100% - 12vw);
}
.how-work{
    padding: 80px 40px 80px 40px;
}
.how-work .h2-desk{
    max-width: 870px;
    margin-bottom: 200px;
}
.how-work-cards{
    display: flex;
    gap: 20px;
}
.how-work-card-white, .how-work-card-pink, .how-work-card-blue{
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 33%;
    border-radius: 34px;
    position: relative;
    overflow: visible;
}
.how-work-card-white{
    border: 3px solid rgba(31, 117, 239, 0.5);
}
.how-work-card-pink{
    border: 3px solid rgba(31, 117, 239, 0.1);
    background: #FF83A9;
}
.how-work-card-blue{
    border: 3px solid rgba(31, 117, 239, 0.1);
    background: #1F75EF;
}
.how-work-card-pink .subheading, .how-work-card-blue .subheading, .how-work-card-pink p, .how-work-card-blue p{
    color: #FFF;
}
.how-work-card-white .how-work-card-text, .how-work-card-pink .how-work-card-text, .how-work-card-blue .how-work-card-text{
    font-family: e-Ukraine, sans-serif;
    font-size: 40px;
    line-height: 100%;
    width: 70%;
}
.how-work-card-white::after{
    content: "";
    position: absolute;
    right: 0;
    top: -20px;

    width: 211px;
    height: 258px;

    aspect-ratio: 1 / 1;
    background-image: url('../img/how-work-card-1.png');
    background-repeat: no-repeat;
    background-size: clamp(100px, 11vw, 210px);
    background-position: right top;

}
.how-work-card-pink::after{
    content: "";
    position: absolute;
    right: 0;
    top: -20px;

    width: 211px;
    height: 258px;

    aspect-ratio: 1 / 1;
    background-image: url('../img/how-work-card-2.png');
    background-repeat: no-repeat;
    background-size: clamp(100px, 11vw, 210px);
    background-position: right top;
}
.how-work-card-blue::after{
    content: "";
    position: absolute;
    right: 0;
    top: -20px;

    width: 211px;
    height: 258px;

    aspect-ratio: 1 / 1;
    background-image: url('../img/how-work-card-3.png');
    background-repeat: no-repeat;
    background-size: clamp(100px, 11vw, 210px);
    background-position: right top;
}
.how-work .btn-secondary-blue{
    margin-top: 60px;
}

.access{
    padding: 60px 60px 0 60px;
}
.access-water{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}
.access-water-text{
    width: 50%;
}
.access-water-img{
    width: 50%;
}
.access-water-text .subheading{
    color: #1F75EF;
    margin-bottom: 10px;
}
.access-water-text .h2-secondary{
    margin-bottom: 24px;
}
.access-water-text .main-text{
    margin-bottom: 60px;
}
.access-water-hand img{
    margin: 0 auto;
}

.aquabox-phone{
    padding: 40px;
    display: flex;
    gap: 24px;
}
.aquabox-phone-bg{
    padding: 40px;
    background: rgba(31, 117, 239, 0.05);
    border-radius: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}
.aquabox-phone-text .subheading{
    color: #1F75EF;
    margin-bottom: 10px;
}
.aquabox-phone-text .h2-secondary{
    margin-bottom: 24px;
}
.aquabox-phone-img{
    background: rgba(31, 117, 239, 1);
    border-radius: 40px;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.aquabox-phone-img img{
    border-radius: 40px;
}

.why{
    padding: 80px 40px;
}
.why-cards{
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 35px;
    align-items: center;
}
.why-cards:nth-of-type(2){
    margin-top: 35px;
}
.why-card{
    padding: 40px;
    display: flex;
    gap: 24px;
    border-radius: 34px;
    border: 3px solid rgba(31, 117, 239, 0.5);
    max-width: 600px;
    align-items: center;
    height: -webkit-fill-available;
    height: -moz-available;
    height: fill-available;
    height: 100%;
}
.why-card-num{
    font-size: 64px;
    font-weight: 500;
    font-family: e-Ukraine, sans-serif;
    padding: 24px 41px;
    background: #1F75EF;
    border-radius: 20px;
    color: #FFF;
}
.why-card-text-h{
    margin-bottom: 10px;
}
.why-card-text-h, .why-card-text-p{
    font-family: e-Ukraine, sans-serif;
    font-size: 20px;
}
.why .h2-desk{
    margin-bottom: 80px;
}

.swiper-home-text{
    color: #FFF;
}
.swiper-home{
    background: rgba(0, 76, 184, 1);
    padding: 80px 40px;
    border-radius: 40px;
}
.swiper-home .subheading{
    margin-bottom: 10px;
}
.swiper-home .h2-secondary{
    margin-bottom: 24px;
}
.swiper-home .main-text{
    margin-bottom: 60px;
}

.bottle_block{
    display: flex;
    padding: 40px 40px 40px 24px;
    gap: 24px;
}
.bottle-bg{
    padding: 40px;
    background: rgba(31, 117, 239, 0.05);
    border-radius: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.bottle-text .subheading{
    color: #1F75EF;
    margin-bottom: 10px;
}
.bottle-text .h2-secondary{
    margin-bottom: 24px;
}
.bottle-img{
    border-radius: 40px;
    width: 50%;
}


@media (max-width: 1680px) {
    .how-work-card-white .how-work-card-text, .how-work-card-pink .how-work-card-text, .how-work-card-blue .how-work-card-text{
        font-size: 28px;
    }
    .how-work-card-white::after, .how-work-card-pink::after, .how-work-card-blue::after{
        right: -16px;
        top: -56px;
    }
}
@media (max-width: 1550px){
    .why-card{
        padding: 16px;
    }
    .why-card-num{
        font-size: 48px;
    }
}
@media (min-width: 1421px) and (max-width: 1550px) {
    .why-card-text-h, .why-card-text-p{
        font-size: 14px;
    }
    .why-cards img{
        width: 160px;
    }
    .why-cards .why-card .why-card-num{
        padding: 24px 32px;
    }
}
@media (max-width: 1420px){
    .text-main-block::after{
        display: none;
    }

    .why-cards img{
        display: none;
    }
    .why-card{
        max-width: 100%;
        width: 100%;
        padding: 12px;
        border-radius: 16px;
    }
    .why{
        padding: 32px 16px 16px 16px;
    }
    .why-cards{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .why-cards:nth-of-type(2){
        margin-top: 16px;
    }
    .why-card-num{
        font-size: 24px;
        padding: 16px 24px;
        border-radius: 12px;
    }
    .why-card-text-h{
        margin-bottom: 0;
    }
    .why-card-text-h, .why-card-text-p{
        font-size: 18px;
    }
    .why .h2-desk{
        margin-bottom: 24px;
    }
}
@media (max-width: 1200px){
    .main-block{
        flex-direction: column;
    }
    .main-block-img{
        position: unset;
        transform: unset;
        height: auto;
        margin-top: 24px;
        width: 80%;
    }
    .text-main-block{
        width: 100%;
    }

    .how-work-cards{
        flex-direction: column;
    }
    .how-work-card-white, .how-work-card-pink, .how-work-card-blue{
        width: auto;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }
    .how-work-card-white .subheading, .how-work-card-pink .subheading, .how-work-card-blue .subheading{
        font-size: 12px;
    }
    .how-work-card-white .how-work-card-text, .how-work-card-pink .how-work-card-text, .how-work-card-blue .how-work-card-text{
        font-size: 24px;
        width: 54%;
    }
    .how-work .h2-desk{
        margin-bottom: 74px;
    }

    .access-water-text .subheading{
        margin-bottom: 6px;
    }
    .access-water-text .h2-secondary{
        margin-bottom: 16px;
    }
    .access-water-text .main-text{
        margin-bottom: 32px;
    }
    .access-water{
        flex-direction: column;
        gap: 32px;
    }
    .access-water-text, .access-water-img{
        width: 100%;
    }
    .access-water-hand{
        flex-direction: column-reverse;
        margin-top: 40px;
    }

    .aquabox-phone{
        flex-direction: column;
    }
    .aquabox-phone-bg{
        width: auto;
        display: unset;
        padding: 16px;
        border-radius: 16px;
        gap: 0;
    }
    .aquabox-phone-img{
        width: 100%;
        border-radius: 16px;
    }
    .aquabox-phone-img img{
        border-radius: 16px;
    }
    .aquabox-phone{
        padding: 16px;
    }
    .aquabox-phone-bg .btn-secondary-blue{
        margin-top: 24px;
    }

    .why-cards img{
        display: none;
    }
    .why-card{
        max-width: 100%;
        width: 100%;
        padding: 12px;
        border-radius: 16px;
        gap: 12px;
    }
    .why{
        padding: 32px 16px 16px 16px;
    }
    .why-cards{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .why-cards:nth-of-type(2){
        margin-top: 16px;
    }
    .why-card-num{
        font-size: 24px;
        padding: 16px 24px;
        border-radius: 12px;
    }
    .why .why-cards .why-card-num{
        font-size: 24px;
        padding: 23px 24px;
        border-radius: 12px;
        line-height: 140%;
    }
    .why-card-text-h{
        margin-bottom: 0;
    }
    .why-card-text-h, .why-card-text-p{
        font-size: 18px;
    }
    .why .h2-desk{
        margin-bottom: 24px;
    }

    .swiper-home{
        border-radius: 16px;
    }

    .swiper-home{
        padding: 32px 16px;
        border-radius: 16px;
    }
    .swiper-home .subheading{
        margin-bottom: 6px;
    }
    .swiper-home .h2-secondary{
        margin-bottom: 16px;
    }
    .swiper-home .main-text{
        margin-bottom: 24px;
    }

    .bottle_block{
        flex-direction: column-reverse;
        padding: 16px;
    }
    .bottle-img{
        width: 100%;
    }
    .bottle-bg{
        padding: 24px;
        width: auto;
        border-radius: 16px;
    }
    .bottle-img img{
        margin: 0 auto;
        transform: translate(0px, 0px);
    }
}
@media (max-width: 600px){
    .main-block{
        padding: 32px 16px 16px 16px;
        margin-top: 16px;
    }
    .how-work{
        padding: 32px 16px 16px 16px;
    }
    .how-work-card-white::after, .how-work-card-pink::after, .how-work-card-blue::after{
        background-size: clamp(120px, 11vw, 210px);
    }
    .how-work-card-white{
        transform: rotate(-4deg);
        background: #FFF;
    }
    .how-work-card-pink{
        transform: rotate(2.6deg);
        z-index: 1;
    }
    .how-work-card-blue{
        transform: rotate(-4deg);
    }
    .how-work-cards{
        gap: 12px;
        padding-bottom: 100px;
    }
    .how-work-card-blue::after{
        left: -100px;
        top: 40px;
    }
    .how-work-card-blue .how-work-card-text{
        margin-left: auto;
    }
    .how-work-card-pink::after{
        right: 45px;
        top: 7px;
    }
    .text-main-block::after{
        display: block;
        background-size: contain !important;
        position: unset;
        height: 425px;
        margin-top: 24px;
        margin-bottom: 16px;
        background-position: center !important;
    }
    .main-block .text{
        margin-bottom: 40px;
    }
    .how-work .btn-secondary-blue{
        margin-top: 0;
    }

    .access{
        padding: 32px 16px 0 16px;
    }

    .why-card-text-h, .why-card-text-p{
        font-size: 12px;
    }
    .bottle-bg{
        display: unset;
    }
}



/*faq*/
.faq{
    padding: 80px 40px;
}
.faq-container {
    margin: 0 auto;
    max-width: 1220px;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    cursor: pointer;
    border-bottom: 3px solid rgba(31, 117, 239, 1);
    /*transition: background-color 0.4s ease;*/
    border-radius: 16px 16px 0 0;
    transition: all 0.5s;
}

.faq-question:hover {
    background-color: rgba(31, 117, 239, 0.05);
    border-bottom: 3px solid transparent;
    border-radius: 16px;
}

.faq-question.active {
    border-bottom: unset;
    background-color: #1F75EF;
    color: #FFF;
    border-radius: 16px;
}

.faq-question:hover .arrow {
    transform: rotate(-45deg);
}
.faq-question:hover .arrow svg path {
    stroke: #1F75EF;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 400;
    flex: 1;
    transition: all 0.5s;
}
.faq-question:hover h3{
    color: #1F75EF;
    transform: translateX(24px);
}
.faq-question.active:hover h3{
    color: #FFF;
    transform: translateX(0px);
}

.arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.arrow svg {
    width: 100%;
    height: 100%;
    stroke: #000;
}

.faq-question.active .arrow {
    transform: rotate(-45deg);
}

.faq-question.active .arrow svg path {
    stroke: white;
}

.faq-answer {
    display: none;
}

.faq-answer-content {
    font-family: Inter, sans-serif;
    padding: 20px 40px;
    background: white;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}
@media (max-width: 600px){
    .faq-question{
        padding: 24px 16px;
    }
    .faq-question h3{
        font-size: 18px;
    }
    .faq {
        padding: 40px 16px;
    }
}

/*слайдер отзывы*/
.swiper {
    /*width: 100%;*/
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.swiper-pagination {
    position: static !important;
    width: 100% !important;
    display: flex;
    gap: 8px;
}

.navigation-buttons {
    display: flex;
    gap: 12px;
}

.swiper-slide {
    height: auto;
}

.review-card {
    background: white;
    border-radius: 40px;
    padding: 40px;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*.review-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);*/
/*}*/

.review-text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #181818;
    margin-bottom: 32px;
    flex-grow: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #181818;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #1F75EF;
    font-size: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Inter, sans-serif;
}

.reviewer-info {
    font-size: 16px;
    color: #181818;
    font-weight: 600;
    font-size: 24px;
}

.review-date {
    font-size: 18px;
    color: #0052cc;
    font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    margin: 0;
    background: white;
    width: 78px;
    height: 78px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    transform: scale(1.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #0052cc;
    font-weight: 900;
}

.swiper-button-disabled-custom {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.swiper-pagination {
    position: static !important;
    width: 100% !important;
    display: flex;
    gap: 0;
}

.swiper-pagination-bullet {
    width: 100%;
    height: 4px;
    background: white;
    opacity: 0.4;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: url("../img/btn-arr.svg");
    transition: all 0.3s;
    line-height: 0%;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: url("../img/arr-left.svg");
    transition: all 0.3s;
    line-height: 0%;
}
.swiper-button-next.swiper-button-disabled:after,
.swiper-rtl .swiper-button-prev.swiper-button-disabled:after {
    content: url("../img/btn-arr-disabled.svg");
}

/* PREV disabled */
.swiper-button-prev.swiper-button-disabled:after,
.swiper-rtl .swiper-button-next.swiper-button-disabled:after {
    content: url("../img/arr-left-disabled.svg");
}

@media (max-width: 1680px) {
    .reviewer-info{
        font-size: 16px;
    }
    .review-date{
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .review-card {
        padding: 24px;
        border-radius: 16px;
    }

    .review-text {
        font-size: 16px;
    }
    .reviewer-info{
        font-size: 18px;
        font-weight: 600;
    }
    .review-date{
        font-size: 14px;
    }
    .review-rating{
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 78px;
        height: 78px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
    .swiper-pagination{
        display: none;
    }
    .swiper-controls{
        justify-content: flex-end;
    }
    .swiper-controls{
        margin-top: 74px;
    }
}

/*about us*/
.about-main-block{
    padding: 100px 40px 40px 40px;
    position: relative;
    display: flex;
}
.about-main-img{
    width: 50%;
    position: absolute;
    height: 1090px;
    width: auto;
    margin: 0 auto;
    left: 72%;
    transform: translate(-50%, 0);
    z-index: 2;
}
@media (max-width: 1800px){
    .about-main-img{
        height: 760px;
    }
}
.about-main-block h1{
    margin-bottom: 100px;
}
.about-main-block .text{
    position: relative;
    max-width: 750px;
    margin-bottom: 100px;
}
.sub-text-rotate{
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    position: absolute;
    padding: 10px 16px;
    border-radius: 12px;
    background: #1F75EF;
    color: #FFF;
    transform: rotate(-2.5deg) translate(0px, -53px);
}
.arr-bottom{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #1F75EF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-block{
    padding: 80px 40px 40px 40px;
}
.about-card-block h2{
    margin-bottom: 80px;
    max-width: 870px;
}
.about-cards{
    display: flex;
    gap: 40px;
}
.about-card{
    padding: 40px;
    border: 3px solid rgba(31, 117, 239, 0.5);
    border-radius: 34px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
}
.about-card img{
    width: 100px;
}
.about-card .h2-secondary{
    font-family: 'e-Ukraine', sans-serif;
    margin-bottom: 8px;
}
.about-main-text{
    width: 50%;
}
.about-main-text::after{
    /*content: '';*/
    background: url("../img/compressed_about-us-main-img.webp");
    position: absolute;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    height: 150%;
    background-repeat: no-repeat;
    left: 48%;
    top: 100px;
    background-size: calc(89%);
}

.about-history{
    padding: 80px 16px 80px 16px;
    overflow: hidden;
}
.about-history-h{
    margin: 0 auto;
    width: fit-content;
    margin-bottom: 40px;
}
.about-history-bg{
    background: url("../img/about-history-line.svg") no-repeat center top;
    padding-top: 150px;
    background-position-y: top;
    background-size: contain;
}
.about-history-date-block-wrap{
    max-width: 920px;
}
.about-history-date-block{
    padding: 0 80px;
}
.about-history-date{
    font-family: 'e-Ukraine', sans-serif;
    font-size: 64px;
    font-weight: 500;
    padding: 24px 40px;
    border: 3px solid rgba(31, 117, 239, 0.1);
    border-radius: 34px;
    line-height: 81%;
    margin-bottom: 32px;
    width: fit-content;
    position: relative;
}
.about-history-date-pink{
    background: #FF83A9;
    color: #ffffff;
}
.about-history-date-blue{
    background: #1F75EF;
    color: #ffffff;
}
.about-history-heading{
    font-family: 'e-Ukraine', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 90%;
    margin-bottom: 24px;
}
.about-history-text{

}
.about-history-card-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 105px;
    margin-bottom: 40px;
    width: 50%;
}
.about-history-card-left{
    gap: 150px;
    display: flex;
    flex-direction: column;
    margin-bottom: 150px;
    text-align: right;
    width: 50%;
}
.about-history-card-left .about-history-date-block{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about-history-date1::before, .about-history-date2::before, .about-history-date3::before, .about-history-date4::before, .about-history-date5::before{
    content: '';
    width: 71px;
    height: 71px;
    border-radius: 50%;
    border: 23px solid  rgba(25, 94, 191, 1);
    background: #ffffff;
    position: absolute;
}
.about-history-date1::before{
    left: -43%;
}
.about-history-date2::before{
    left: -60%;
}
.about-history-date3::before{
    right: -70%;
}
.about-history-date4::before{
    right: -40%;
}
.about-history-date5::before{
    left: -68%;
}
.about-history-block{
    display: flex;
}
.about-history-img{
    width: 50%;
}
.about-history-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-history-block-left-right .about-history-img{
    justify-content: center;
}
.about-history-img img{
    /*padding: 0 120px;*/
    width: inherit;
}
.about-history-img{
    transition: all 0.9s;
    transform: rotate(0deg);
}
.about-history-img.about-active-img{
    transform: rotate(12deg);
}
.about-history-block-mob{
    display: none;
}
.about-history-btn-block{
    text-align: center;
}
.about-history-btn-block p{
    margin-top: 40px;
    margin-bottom: 32px;
}

.team-partner{
    padding: 80px 40px;
}
.team-partner-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.team-partner-card img{
    max-width: 200px;
}
.team-partner-h{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 80px;
}
.team-partner-btn-mob{
    display: none;
}

@media (max-width: 1650px) {
    .about-card{
        flex-direction: column;
        border-radius: 16px;
        padding: 16px;
    }
    .about-card{
        text-align: center;
    }
    .about-card .h2-secondary{
        font-size: clamp(36px, 8.3333vw, 36px);
    }

    .about-history-date3::before{
        right: -54%;
    }
    .about-history-date4::before{
        right: -53%;
    }
    .about-history-date5::before{
        left: -54%;
    }

}
@media (max-width: 1450px) {
    .team-partner-card img{
        max-width: 140px;
    }
    .about-main-img {
        height: 638px;
    }
}
.privacy{
    padding: 40px;
}
@media (max-width: 1200px) {
    .privacy{
        padding: 16px;
    }
    .about-main-img{
        position: unset;
        transform: unset;
        height: auto;
    }
    .about-main-text{
        width: 100%;
        /*padding-bottom: 160px;*/
    }
    .sub-text-rotate{
        font-size: 12px;
        transform: rotate(-2.5deg) translate(0px, -36px);
        border-radius: 8px;
    }
    .about-main-block{
        padding: 32px 16px;
        flex-direction: column;
    }
    .about-main-block h1{
        margin-bottom: 60px;
    }
    .about-main-block .arr-bottom{
        margin: 0 auto;
        margin-bottom: 24px;
    }
    .arr-bottom{
        border: 2px solid #1F75EF;
        width: 100px;
        height: 100px;
    }
    .arr-bottom svg path{
        stroke-width: 2px;
    }
    .about-main-block .text{
        margin-bottom: 24px;
    }

    .about-card-block {
        padding: 32px 16px 16px 16px;
    }
    .about-cards{
        gap: 16px;
        flex-direction: column;
    }
    .about-card{
        padding: 16px;
        gap: 2px;
        justify-content: center;
    }
    .about-card-block h2{
        margin-bottom: 24px;
    }

    .about-history-block-pc{
        display: none;
    }
    .about-history-block-mob{
        display: block;
    }
    .about-history-card-left, .about-history-card-right{
        width: 100%;
    }
    .about-history-bg{
        background: unset;
        padding-top: 40px;
    }
    .about-history{
        padding: 32px 0 32px 0;
    }
    .about-history-date-block{
        padding: 0 16px;
    }
    .about-history-card-left .about-history-date-block{
        align-items: flex-start;
        text-align: left;
    }
    .about-history-date{
        font-size: 32px;
        padding: 16px;
        margin-bottom: 8px;
        border-radius: 12px;
    }
    .about-history-heading{
        font-size: 24px;
        margin-bottom: 4px;
    }
    .about-history-text{
        font-size: 14px;
    }
    .about-history-img{
        width: 100%;
    }
    .about-history-img img{
        padding: 0 1px;
        width: 35%;
    }
    .about-history-img{
        justify-content: flex-start;
    }
    .about-history-card-right{
        gap: 25px;
    }
    .about-history-date-block-wrap{
        max-width: unset;
    }
    .about-history-card-right{
        align-items: flex-start;
    }
    .pt-56{
        padding-top: 0px;
    }
    .pt-57{
        padding-top: 0px;
    }
    .about-history-date1::before, .about-history-date2::before, .about-history-date3::before, .about-history-date4::before, .about-history-date5::before{
        display: none;
    }
    .about-history-btn-block{
        padding: 0 16px;
    }
    .about-history-btn-block p{
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .team-partner-cards{
        gap: 10px;
        justify-content: center;
    }
    .team-partner-card img{
        max-width: 125px;
    }
    .team-partner{
        padding: 32px 16px 24px 16px;
    }
    .team-partner-h a{
        display: none;
    }
    .team-partner-h{
        margin-bottom: 24px;
    }
    .team-partner-btn-mob{
        margin-top: 24px;
        display: inline-block;
    }
    .about-main-text::after{
        height: 350px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        top: unset;
        left: 0;
    }

}
@media (max-width: 1200px) and (min-width: 460px) {
    .about-history-card-left{
        gap: 25px;
        margin-bottom: 25px;
    }
    .about-history-card-right{
        margin-bottom: 25px;
    }
    .about-history-img.about-active-img, .about-history-img.about-active-img, .about-history-img.about-active-img{
        transform: unset;
    }
}
@media (max-width: 460px) {
    .pt-56{
        padding-top: 74px;
    }
    .pt-57{
        padding-top: 90px;
    }
    .about-history-card-left{
        gap: 49px;
    }
    .tt-48{
        transform: translateY(-48px);
    }
    .about-history-block-left-right .about-history-img{
        justify-content: center;
        margin-bottom: 50px;
    }
    .about-history-date-block{
        position: relative;
    }
    .about-history-date1-mob::before, .about-history-date2-mob::before, .about-history-date3-mob::before, .about-history-date4-mob::before, .about-history-date5-mob::before{
        content: '';
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 12px solid  rgba(25, 94, 191, 1);
        background: #ffffff;
        position: absolute;
        left: 42%;
    }
    .about-history-date1-mob::before{
        top: -46%;
        left: 44%;
    }
    .about-history-date2-mob::before{
        top: -26%;
    }
    .about-history-date3-mob::before{
        top: -73%;
    }
    .about-history-date4-mob::before{
        top: -51%;
    }
    .about-history-date5-mob::before{
        top: -43%;
    }
    .about-history-bg{
        background: url("../img/about-history-line-mob.svg") no-repeat center top;
        background-size: contain;
        padding-top: 100px;
    }
    .about-history-img{
        justify-content: center;
    }
    .about-history-img.about-active-img, .about-history-img.about-active-img, .about-history-img.about-active-img{
        transform: rotate(12deg);
    }
    .team-partner-btn-mob{
        display: block;
    }
    .about-main-text::after{
        height: 300px;
    }
}
@media (max-width: 399px) {
    .pt-56{
        padding-top: 44px;
    }
    .pt-57{
        padding-top: 58px;
    }
    .about-history-date3-mob::before{
        top: -56%;
    }
    .about-history-date4-mob::before {
        top: -40%;
    }
}
@media (max-width: 394px) {
    .about-history-date3-mob::before {
        top: -65%;
    }
    .about-history-date4-mob::before {
        top: -45%;
    }
}








        /*how it works*/
    .work-main-block{
        padding: 80px 40px 0 40px;
        display: flex;
        align-items: flex-end;
        gap: 80px;
        overflow: hidden;
    }
    .work-main-text{
        width: 50%;
    }
    .work-main-block-img{
        width: 50%;
        transform: translateY(12px);
    }
    .work-main-block .h1-desk{
        margin-bottom: 80px;
    }
    .work-main-block .text{
        margin-bottom: 80px;
    }
    .work-main-block .arr-bottom{
        margin-bottom: 40px;
    }

    .work-within{
        padding: 80px 40px;
    }
    .work-within-h{
        display: flex;
        align-items: flex-end;
        gap: 10px;
        justify-content: space-between;
        margin-bottom: 80px;
    }
    .work-within-h .h2-desk{
        flex: 1;
    }
    .work-within-img{
        margin: 0 auto;
    }
    .work-within-img-mob{
        display: none;
    }

    body.popup-open {
        overflow: hidden;
    }

    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }
    .popup-overlay.active {
        display: flex;
    }
    .popup-content {
        position: relative;
        background: white;
        border-radius: 12px;
        max-width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        margin-top: 24px;

    }
    .popup-image {
        width: 100%;
        height: auto;
        display: block;
        min-height: 600px;
        padding-top: 30px;
    }
    .popup-close {
        position: absolute;
        top: 4px;
        right: 20px;
        color: #1F75EF;;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        text-transform: uppercase;
        z-index: 10;
        font-family: e-Ukraine, sans-serif;
        transition: all 0.4s;
    }
    .popup-close:hover {
        color: rgba(31, 117, 239, 0.5);
    }

    .work-advantages {
        padding: 80px 40px;
    }
    .work-advantages-h{
        display: flex;
        align-items: flex-end;
        gap: 10px;
        justify-content: space-between;
        position: relative;
        margin-bottom: 70px;
    }
    .work-advantages-h-text .subheading{
        color: #1F75EF;
    }
    .work-advantages-h-text .h2-secondary{
        max-width: 600px;
        position: relative;
    }
    .work-advantages-h-text .h2-secondary::after{
        content: '';
        background: url("../img/work-advantages-h-arr.svg") no-repeat;
        width: 200px;
        height: 200px;
        position: absolute;
        right: -34%;
        top: 0;
    }
    .work-advantages-card{
        display: flex;
        gap: 20px;
        width: 50%;
    }
    .work-advantages-card p{
        border: 3px solid rgba(31, 117, 239, 0.5);
        border-radius: 32px;
        font-family: e-Ukraine, sans-serif;
        font-size: clamp(14px, 8.3333vw, 36px);
        flex: 1;
        line-height: 90%;
    }
    .work-advantages-cards{
        display: flex;
        gap: 20px;
    }
    .work-advantages-cards-centr{
        justify-content: center;
        margin: 48px 0;
    }
    .work-advantages-card1 p{
        padding: 52px 32px;
    }
    .work-advantages-card2 p{
        padding: 36px 32px;
    }
    .work-advantages-card3 p{
        padding: 20px 32px;
    }
    .work-phone-cards-wrap-wrap{
        padding: 40px 40px 80px 40px;
    }
    .work-phone-cards-wrap{
        gap: 20px;
        display: flex;
        /*flex-wrap: wrap;*/
        justify-content: center;
    }
    .work-phone-cards-wrap:nth-of-type(2){
        margin-top: 20px;
    }
    .work-phone-card{
        display: flex;
        border-radius: 34px;
        padding: 24px;
        gap: 24px;
        width: 29%;
        border: 3px solid rgba(31, 117, 239, 0.5);
    }
    .work-phone-card-blue{
        background: #1F75EF;
        border: 3px solid rgba(31, 117, 239, 0.05) !important;
        color: #FFF;
    }
    .work-phone-card-pink{
        background: #FF83A9;
        border: 3px solid rgba(31, 117, 239, 0.05) !important;
        color: #FFF;
    }
    .work-phone-card-h{
        font-size: 24px;
        font-family: e-Ukraine, sans-serif;
        font-weight: 500;
    }
    .work-phone-card-text{
        font-family: Inter, sans-serif;
        font-size: 18px;
    }
    .work-phone-card img{
        width: 100px;
        background: #FFF;
        border-radius: 24px;
    }
    .work-advantages-h-img-mob{
        display: none;
    }
    .work-map-block{
        padding: 100px 0;
        background: url("../img/compressed_map.webp") no-repeat;
        overflow: hidden;
        background-size: cover;
    }
    .work-map-block-text{
        max-width: 870px;
        margin: 0 auto;
        color: #ffffff;
        padding: 0 16px;
    }
    .work-map-block-text h2{
        margin-bottom: 24px;
    }
    .work-map-block-text p{
        margin-bottom: 60px;
        position: relative;
    }
    .work-map-block-text p::after{
        content: '';
        background: url("../img/work-map-block-text-arr.svg") no-repeat;
        position: absolute;
        width: 140px;
        height: 140px;
        top: -50px;
        right: -50px;
        background-size: contain;
    }

    @media (max-width: 1715px){
        .work-phone-card{
            display: flex;
            align-items: center;
            border-radius: 34px;
            padding: 16px;
            gap: 24px;
            width: 40%;
            border: 3px solid rgba(31, 117, 239, 0.5);
        }
        .aquabox-phone{
            align-items: center;
        }
    }
    @media (max-width: 1460px) {
        .work-advantages-card .why-card-num {
            font-size: 58px;
            padding: 16px 24px;
            border-radius: 12px;
        }
        .work-advantages-card{
            align-items: center;
        }
        .work-advantages-card p{
            font-size: 24px;
            padding: 24px !important;
            height: -webkit-fill-available;
            height: -moz-available;
            height: fill-available;
            display: flex;
            align-items: center;
        }
        .work-advantages-cards-centr{
            margin: 24px 0;
        }
    }
    @media (max-width: 1200px) {
        .popup-image{
            min-height: unset;
        }
        .work-advantages-card .why-card-num{
            font-size: 24px;
            line-height: 140%;
            padding: 23px 24px;
        }
        .work-main-block{
            padding: 32px 16px 0 16px;
            align-items: center;
            gap: 24px;
            flex-direction: column;
        }
        .work-main-text{
            width: 100%;
        }
        .work-main-block-img{
            width: 100%;
            transform: translateY(12px);
        }
        .work-main-block .h1-desk{
            margin-bottom: 48px;
        }
        .work-main-block .text{
            margin-bottom: 24px;
        }
        .work-main-block .arr-bottom{
            margin: 0 auto;
        }

        .work-within{
            padding: 32px 16px 22px 16px;
        }
        .work-within-h{
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 10px;
        }
        .work-within-h h2{
            font-size: clamp(48px, 8.3333vw, 160px);
        }
        .work-within-h .btn{
            margin: unset;
        }
        .work-within-img{
            display: none;
        }
        .work-within-img-mob{
            display: block;
        }
        .work-within-img-mob p{
            margin-bottom: 10px;
        }
        .work-within-img-mob img{
            margin: 0 auto;
        }
        .work-advantages-h-img{
            display: none;
        }
        .work-advantages-h-text .h2-secondary::after{
            width: 100px;
            height: 100px;
            background-size: contain;
        }
        .work-advantages-cards{
            flex-direction: column;
        }
        .work-advantages-card{
            width: auto;
            border-radius: 16px;
            padding: 12px;
            border: 3px solid rgba(31, 117, 239, 0.5);
            font-family: e-Ukraine, sans-serif;
            font-size: clamp(14px, 8.3333vw, 36px);
            flex: 1;
            line-height: 90%;
            gap: 12px;
        }
        .work-advantages-cards:nth-of-type(2) .work-advantages-card:nth-child(2) {
            flex-direction: row-reverse;
        }
        .work-advantages-card3{
            flex-direction: row-reverse;
        }
        .work-advantages-card p{
            border: unset;
            padding: unset !important;
            font-size: 14px;
            height: 100%;
        }
        .work-advantages{
            padding: 32px 16px 16px 16px;
        }
        .work-advantages-h{
            margin-bottom: 40px;
        }
        .work-advantages-h-text .h2-secondary::after{
            right: 0;
            top: 66%;
            transform: rotate(15deg);
        }
        .work-phone-card{
            width: auto;
            align-items: center;
        }
        .work-phone-cards-wrap-wrap{
            padding: 4px 0px 16px 0px;
        }
        .work-phone-cards-wrap{
            padding: 4px 16px 16px 16px;
            flex-wrap: wrap;
        }
        .work-phone-cards-wrap:nth-of-type(2){
            margin-top: 0;
            flex-direction: column-reverse;
        }
        .work-phone-cards-wrap{
            flex-direction: column;
        }
        .work-phone-card img{
            width: 80px;
            height: max-content;
            border-radius: 8px;
            height: 100%;
        }
        .work-phone-card{
            padding: 16px;
            border-radius: 16px;
            gap: 12px;
        }
        .work-phone-card-h{
            font-size: 18px;
            line-height: 120%;
        }
        .work-phone-card-text{
            font-size: 14px;
            line-height: 130%;
        }
        .work-advantages-h-img-mob{
            display: block;
            margin: 0 auto;
            width: 96px;
            margin-top: 12px;
        }

        .work-map-block-text p::after{
            width: 180px;
            height: 180px;
            top: -10px;
            right: -30px;
        }
        .work-map-block-text h2{
            margin-bottom: 16px;
        }
        .work-map-block-text p{
            font-size: 20px;
        }

        .work-phone-cards-wrap .work-phone-card:nth-child(4) {
            order: 5;
        }
        .work-phone-cards-wrap .work-phone-card:nth-child(5) {
            order: 4;
        }
        .work-map-block{
            background-position-x: calc(43%);
        }
    }
    @media (max-width: 460px) {
        .work-map-block-text p::after{
            width: 70px;
            height: 70px;
            top: -50px;
            right: 0;
            background-size: cover;
        }
        .work-map-block-text p{
            font-size: 16px;
            margin-bottom: 50px;
        }
    }

    /*aquabox app*/
    .app-main{
        display: flex;
        gap: 60px;
        padding: 40px;
        align-items: center;
    }
    .app-main-text{
        width: 50%;
        display: flex;
        gap: 24px;
        flex-direction: column;
        justify-content: space-between;
    }
    .app-main-img{
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }
    .app-main-text h1{
        margin-bottom: 80px;
    }
    .app-main-text p{
        max-width: 800px;
        position: relative;
    }
    .app-main-text p::after{
        /*content: '';*/
        position: absolute;
        top: 59px;
        right: 28%;
        width: 100px;
        height: 200px;
        background: url("../img/app-main-arr.svg") no-repeat;
    }
    .app-main-btn {
        display: flex;
        gap: 24px;
    }
    .app-main-btn a img{
        width: 200px;
    }
    .app-main-btn .app-button{
        padding: 24px 40px;
    }

    .app-work{
        padding: 80px 40px;
    }
    .app-work .h2-desk{
        margin-bottom: 80px;
    }
    .app-work-block{
        display: flex;
        gap: 20px;
    }
    .app-work-block-img{
        width: 50%;
    }
    .app-work-block-list{
        width: 50%;
    }
    .app-work-block-list-item .app-work-block-list-item-text{
        border-radius: 24px;
        border: 3px solid rgba(31, 117, 239, 0.5);
        font-family: e-Ukraine, sans-serif;
        font-size: 24px;
        padding: 0 24px;
        flex: 1;
    }
    .app-work-block-list-item-text{
        display: flex;
        align-items: center;
    }
    .app-work-block-list-item{
        display: flex;
        gap: 20px;
    }
    .app-work-block-list-item .why-card-num{
        padding: 40px 35px;
        font-size: 36px;
        line-height: 90%;
        border: 3px solid transparent;
    }
    .app-work-block-list{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .app-work-block-list-item .why-card-num-white{
        border: 3px solid rgba(31, 117, 239, 0.1);
        background: #ffffff;
        color: #181818;
    }
    .app-work-block-list-item .why-card-num-pink{
        background: #FF83A9;
    }
    .app-work-block-list-item-text{
        position: relative;
    }
    .app-work-block-list-item-text1::after{
        content: '';
        background: url("../img/app-work-block-list-item-text1.png") no-repeat;
        width: 240px;
        height: 305px;
        background-size: contain;
        position: absolute;
        z-index: 2;
        transition: all 0.5s;
        scale: 0.6;
        opacity: 0;
        right: 10%;
        top: -117%;
    }
    .app-work-block-list-item-text2::after{
        content: '';
        background: url("../img/app-work-block-list-item-text2.png") no-repeat;
        width: 240px;
        height: 305px;
        background-size: contain;
        position: absolute;
        z-index: 2;
        transition: all 0.5s;
        scale: 0.6;
        opacity: 0;
        right: 10%;
        top: -234%;
    }
    .app-work-block-list-item-text3::after{
        content: '';
        background: url("../img/app-work-block-list-item-text3.png") no-repeat;
        width: 240px;
        height: 305px;
        background-size: contain;
        position: absolute;
        z-index: 2;
        transition: all 0.5s;
        scale: 0.6;
        opacity: 0;
        right: 10%;
        top: -90%;
    }
    .app-work-block-list-item-text4::after{
        content: '';
        background: url("../img/app-work-block-list-item-text4.png") no-repeat;
        width: 240px;
        height: 305px;
        background-size: contain;
        position: absolute;
        z-index: 2;
        transition: all 0.5s;
        scale: 0.6;
        opacity: 0;
        right: 30%;
        top: -90%;
    }
    .app-work-block-list-item-text5::after{
        content: '';
        background: url("../img/app-work-block-list-item-text5.png") no-repeat;
        width: 240px;
        height: 305px;
        background-size: contain;
        position: absolute;
        z-index: 2;
        transition: all 0.5s;
        scale: 0.6;
        opacity: 0;
        right: 2%;
        top: -90%;
    }
    .app-work-block-list-item1:hover .app-work-block-list-item-text1::after,
    .app-work-block-list-item2:hover .app-work-block-list-item-text2::after,
    .app-work-block-list-item3:hover .app-work-block-list-item-text3::after,
    .app-work-block-list-item4:hover .app-work-block-list-item-text4::after,
    .app-work-block-list-item5:hover .app-work-block-list-item-text5::after{
        opacity: 1;
        scale: 1;
    }
    .why-card-num{
        transition: all 0.4s;
    }
    .app-work-block-list-item1:hover .why-card-num,
    .app-work-block-list-item2:hover .why-card-num,
    .app-work-block-list-item3:hover .why-card-num,
    .app-work-block-list-item4:hover .why-card-num,
    .app-work-block-list-item5:hover .why-card-num{
        border: 3px solid #FF83A9;
        background: #1F75EF;
        color: #ffffff;
    }
    .mobile-break {
        display: none;
    }

    .app-get{
        display: flex;
        gap: 60px;
        position: relative;
        padding: 80px 80px 80px 40px;
    }
    .app-get-cards{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .app-get-card img{
        width: 100px;
    }
    .app-get-text{
        width: 50%;
    }
    .app-get-text .h2-secondary{
        margin-bottom: 24px;
    }
    .app-get-text .main-text{
        margin-bottom: 80px;
    }
    .app-get-card{
        padding: 24px;
        border-radius: 20px;
        border: 3px solid rgba(31, 117, 239, 0.5);
        width: calc(50% - 64px);
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .app-get-img{
        width: 50%;
        position: absolute;
        height: 810px;
        width: auto;
        margin: 0 auto;
        left: 72%;
        transform: translate(-50%, 0);
        z-index: 2;
    }
    .app-get-card .about-history-heading{
        margin-bottom: 0;
    }
    @media (max-width: 1650px) {
        .app-main-text p::after{
            top: 98px;
            right: 47%;
            width: 77px;
            height: 118px;
            background-size: contain;
        }
    }
    @media (max-width: 1441px) {
        .app-main-text p::after{
            top: 98px;
            right: 45%;
            width: 77px;
            height: 118px;
            background-size: contain;
        }
        .app-work-block-list-item-text1::after,
        .app-work-block-list-item-text2::after,
        .app-work-block-list-item-text3::after,
        .app-work-block-list-item-text4::after,
        .app-work-block-list-item-text5::after{
            width: 180px;
            height: 200px;
            right: 0%;
            top: -50%;
        }
        .app-get-card .about-history-heading{
            font-size: 24px;
        }
        .app-get-card{
            padding: 16px;
        }
        .app-work-block-list-item .app-work-block-list-item-text{
            border-radius: 12px;
        }
    }
    @media (max-width: 1200px) {
        .app-main{
            flex-direction: column;
            align-items: center;
        }
        .app-main-text{
            width: 100%;
            display: flex;
            gap: 24px;
            flex-direction: column;
            justify-content: space-between;
        }
        .app-main-img{
            width: 100%;
            justify-content: center;
        }
        .app-main-text h1 {
            margin-bottom: 46px;
        }
        .app-main-text p{

        }
        .app-main-text p::after {
            top: 46px;
            right: 12%;
            width: 51px;
            height: 79px;
            background-size: contain;
            display: none;
        }
        .app-main-btn .app-button {
            padding: 15px 24px;
        }
        .app-main{
            padding: 32px 16px 16px 16px;
            gap: 12px;
        }
        .app-main-btn{
            gap: 12px;
        }

        .app-work-block{
            flex-direction: column-reverse;
            gap: 60px;
        }
        .aquabox-phone-img{
            width: 100%;
        }
        .app-work-block-list{
            width: 100%;
            gap: 40px;
        }
        .app-work .h2-desk{
            margin-bottom: 40px;
        }
        .app-work-block-list-item .app-work-block-list-item-text{
            font-size: 12px;
            font-weight: 700;
        }
        .app-work-block-list-item .app-work-block-list-item-text{
            border-radius: 12px;
            border-radius: 2px solid rgba(31, 117, 239, 0.5);
            padding: 0 16px;
        }
        .app-work-block-list-item .why-card-num{
            font-size: 24px;
            padding: 26px 23px;
        }
        .app-work-block-list-item{
            gap: 12px;
        }
        .app-work{
            padding: 32px 16px 16px 16px;
        }

        .app-get{
            padding: 32px 16px 16px 16px;
            flex-direction: column;
            gap: 20px;
        }
        .app-get-text{
            width: auto;
        }
        .app-get-text .h2-secondary{
            margin-bottom: 16px;
        }
        .app-get-text .main-text{
            margin-bottom: 24px;
        }
        .app-get-card .about-history-heading{
            font-size: 18px;
        }
        .app-get-card{
            width: 100%;
            flex-direction: row;
            gap: 12px;
            align-items: center;
        }
        .app-get-card img{
            width: 80px;
        }
    }
    @media (max-width: 1200px) and (min-width: 480px) {
        .app-get-img{
            display: none;
        }
    }
    @media (max-width: 480px) {
        .mobile-break {
            display: block;
        }
        .pc-break{
            display: none;
        }
        .app-work-block-list-item-text1::after,
        .app-work-block-list-item-text2::after,
        .app-work-block-list-item-text3::after,
        .app-work-block-list-item-text4::after,
        .app-work-block-list-item-text5::after{
            opacity: 1;
            scale: 0.55;
        }
        .app-work-block-list-item-text1::after{
            right: -16%;
            top: -50%;
        }
        .app-work-block-list-item-text2::after{
            right: -22%;
            top: -25%;
        }
        .app-work-block-list-item-text3::after{
            right: -16%;
            top: -8%;
            transform: rotate(-19deg);
        }
        .app-work-block-list-item-text4::after{
            right: 6%;
            top: -22%;
            scale: 0.5;
        }
        .app-work-block-list-item-text5::after{
            right: -21%;
            top: -40%;
        }

        .app-get-img{
            position: relative;
            left: unset;
            width: 285px;
            height: auto;
            margin: 0 auto;
            transform: translate(0%, 33%);
            z-index: 2;
            margin-top: -38%;
        }
        .app-swiper .swiper{
            padding: 90px 16px 32px 16px;
        }
    }
    @media (max-width: 420px) {
        .app-work-block-list-item-text1::after,
        .app-work-block-list-item-text2::after,
        .app-work-block-list-item-text3::after,
        .app-work-block-list-item-text4::after,
        .app-work-block-list-item-text5::after{
            scale: 0.45;
        }
    }

    /*map*/
    .map-container{
        overflow: hidden;
        border-radius: 40px;
        height: 1020px;
    }
    @media (max-width: 1200px) {
        .map-container{
            overflow: hidden;
            border-radius: 0;
            height: 700px;
        }
        .map-container iframe{
            height: 700px;
        }
        .map .main-bg{
            padding: 0;
            padding-bottom: 16px;
        }
    }

    /*bottle page*/
    .bottle-page{
        padding: 40px;
    }
    .bottle-page-main{
        display: flex;
        align-items: center;
    }
    .bottle-page-main-text{
        width: 50%;
    }
    .bottle-page-main-img{
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }
    .bottle-page-main-text .h1-desk{
        margin-bottom: 24px;
    }
    .bottle-page-main-text .text{
        margin-bottom: 80px;
        position: relative;
    }
    .bottle-page-main-text .btn-primary-pink{
        position: relative;
    }
    .bottle-page-main-text .btn-primary-pink::after{
        content: '';
        background: url("../img/bottle-arr.svg") no-repeat;
        width: 200px;
        height: 130px;
        position: absolute;
        top: -157%;
        left: 100%;
        pointer-events: none;
    }

    .bottle-page-cards-wrap{
        padding: 80px 40px;
    }
    .bottle-page-cards-wrap .h2-desk{
        margin-bottom: 60px;
    }
    .bottle-page-card-h{
        font-family: e-Ukraine, sans-serif;
        font-size: 36px;
        margin-bottom: 24px;
        line-height: 90%;
    }
    .bottle-page-card .text{
        line-height: 90%;
    }
    .bottle-page-cards-cont{
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .bottle-page-cards{
        display: flex;
        flex-direction: column;
        gap: 140px;
    }
    .bottle-page-card .why-card-num{
        font-size: 36px;
        padding: 24px 32px;
        margin-bottom: 32px;
    }
    .bottle-page-card{
        display: flex;
        flex-direction: column;
    }
    .bottle-page-cards-col1 .bottle-page-card{
        align-items: flex-end;
        text-align: right;
    }
    .bottle-page-cards-col2 .bottle-page-card{
        align-items: flex-start;
    }

    .bottle-page-des{
        background: rgba(0, 76, 184, 1);
        padding: 80px 40px;
        color: #ffffff;
    }
    .bottle-page-des .h2-secondary{
        margin-bottom: 60px;
    }
    .bottle-page-des-block-text{
        flex: 1;
    }
    .bottle-page-des-block-text-p{
        font-family: e-Ukraine, sans-serif;
        font-size: 36px;
        margin-bottom: 40px;
    }
    .bottle-page-des-block-text-border{
        padding: 40px;
        background: rgba(255, 255, 255, 0.1);
        font-family: e-Ukraine, sans-serif;
        font-size: 20px;
        border: 4px dashed #ffffff;
        border-radius: 10px;
        text-transform: uppercase;
        font-weight: 500;
    }
    .bottle-page-des-block{
        display: flex;
        gap: 60px;
        align-items: center;
    }
    .bottle-page-des-block img{
        width: 220px;
        border-radius: 34px;
    }

    @media (max-width: 1450px) {
        .bottle-page-cards{
            gap: 50px;
        }
    }
    @media (max-width: 1200px) {
        .bottle-page{
            padding: 32px 16px 16px 16px;
            overflow: hidden;
        }
        .bottle-page-main{
            flex-direction: column;
            gap: 24px;
        }
        .bottle-page-main-text{
            width: 100%;
        }
        .bottle-page-main-img{
            width: 100%;
            justify-content: center;
        }
        .bottle-page-main-text .btn-primary-pink::after{
            content: unset;
        }
        .bottle-page-main-text .text::after{
            content: '';
            background: url("../img/bottle-arr.svg") no-repeat;
            width: 80px;
            height: 94px;
            position: absolute;
            top: 10%;
            right: -46px;
            background-size: 100%;
            transform: rotate(-40deg);
        }
        .bottle-page-main-text .h1-desk{
            margin-bottom: 16px;
        }
        .bottle-page-main-text .text{
            margin-bottom: 40px;
        }

        .bottle-page-cards-wrap{
            padding: 32px 16px 16px 16px;
        }
        .bottle-page-cards-cont{
            flex-direction: column;
        }
        .bottle-page-cards-col1 .bottle-page-card{
            text-align: left;
            align-items: center;
        }
        .bottle-page-cards-col2 .bottle-page-card{
            text-align: right;
            align-items: center;
            flex-direction: row-reverse;
        }
        .bottle-page-cards-col2{
            align-items: flex-end;
        }
        .bottle-page-card{
            flex-direction: row;
            gap: 8px;
        }
        .bottle-page-card .why-card-num{
            font-size: 24px;
            padding: 12px 16px;
            margin-bottom: 0;
        }
        .bottle-page-cards-wrap .h2-desk {
            margin-bottom: 24px;
        }
        .bottle-page-card-h{
            font-size: 16px;
            margin-bottom: 4px;
        }
        .bottle-page-card .text{
            font-size: 12px;
        }
        .bottle-page-cards {
            gap: 20px;
        }

        .bottle-page-des{
            padding: 32px 16px 16px 16px;
        }
        .bottle-page-des .h2-secondary {
            margin-bottom: 24px;
        }
        .bottle-page-des-block-text-p{
            font-size: 20px;
            line-height: 100%;
            margin-bottom: 12px;
        }
        .bottle-page-des-block-text-border{
            border: 2px dashed #ffffff;
            font-size: 12px;
            padding: 20px;
        }
        .bottle-page-des-block{
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }
        .bottle-page-des-block img{
            width: 100px;
            border-radius: 12px;
        }
    }
    @media (max-width: 600px) {
        .bottle-page-cards-wrap .h2-desk{
            font-size: 36px;
        }
    }
}
