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

:root {
    --color-black: #292d32;
    --color-blue: #55bdbb;
    --color-red-dark: #841616;
    --color-red-light: #ff595a;
}
button {
    cursor: pointer;
}
a,
a:link,
a:visited,
a:hover {
    text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
    display: block;
}
ul,
ul li {
    list-style: none;
}
input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

p {
    margin: 0;
}
body {
    margin: 0;
    font-family: "Gilroy";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
}
body._lock {
    overflow: hidden;
}

h1 {
    font-size: 4rem;
    color: #fff;
    margin: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}
h2 {
    font-size: 2.5rem;
    margin: 0;
}
h3 {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.25rem;
    margin: 0;
    margin-bottom: 1rem;
}
@media screen and (max-width: 1400px) {
    h1 {
        font-size: 2.5rem;
    }
}
.container {
    margin: 0 auto;
    max-width: 1368px;
    width: 100%;
    height: 100%;
    padding-left: 28px;
    padding-right: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    background-color: var(--color-blue);
    border-radius: 1rem;
    text-align: center;
    font-size: 0.875rem;
    padding: 1rem 2rem;
    width: fit-content;
    border: none;
}
.btn--md {
    padding: 0.75rem 2rem;
}
.btn--sm {
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
}
.btn--link::after {
    content: "";
    width: 24px;
    height: 20px;
    background: url(./assets/images/arrow-right-white.svg) no-repeat right;
    background-size: contain;
}

.fireprof {
    background: linear-gradient(180deg, #a93a3b 0%, #431717 100%);
}
.elastic {
    background: linear-gradient(180deg, #3d8989 0%, #102323 100%);
}
.hand {
    background: linear-gradient(180deg, #3e6c3a 0%, #283a26 100%);
}
.cleanaero {
    background: linear-gradient(180deg, #593360 0%, #342038 100%);
}

.fp-arrow-up,
.fp-arrow-down {
    position: absolute;
    width: 32px;
    height: 56px;
    border: 1px solid #ffffff;
    border-radius: 40px;
    cursor: pointer;
    opacity: 0.4;
}
.fp-arrow-up:hover,
.fp-arrow-down:hover {
    opacity: 1;
}
.fp-arrow-up {
    transform: translateY(-100%);
    top: 0;
    background: url(./assets/images/arrow-up.svg) no-repeat center;
}
.fp-arrow-down {
    transform: translateY(100%);
    bottom: 0;
    background: url(./assets/images/arrow-down.svg) no-repeat center;
}

/* ----------HEADER---------- */
body._lock {
    overflow: hidden;
}
#header {
    width: 100%;
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 100;
}
#header._fixed {
    position: fixed;
}

.header__wrapper {
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 20px 0px #00000033;
    background-color: #fff;
    border-radius: 1rem;
    position: relative;
}
.header__row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0.5rem;
    background-color: #fff;
}
.header__logo {
    background-color: var(--color-blue);
    width: 192px;
    height: 64px;
    border-radius: 16px 0px 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: -80px 0px 180px 50px var(--color-blue);
}

.header__location {
    padding-left: 1rem;
    color: var(--color-blue);
    background: url(./assets/images/location.svg) no-repeat left;
    text-decoration: underline;
    font-size: 0.75rem;
    cursor: pointer;
}

.header__location:hover {
    text-decoration: none;
}

.header__menu {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto;
}
.header__menu a {
    font-weight: 700;
    color: var(--color-blue);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all .3s;
}

.header__menu a:hover {
    color: #000;
}

#header .btn {
    border-radius: 0.5rem;
}
.consultation {
    position: relative;
    cursor: pointer;
}
.consultation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
}
.consultation .btn {
    background: #f5f5f7;
    color: var(--color-blue);
    transition: all .3s;
}

.consultation:hover > .btn {
    background: var(--color-black);
}
.consultation:hover > .consultation__dropdown {
    display: flex;
}

.consultation__dropdown {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    -webkit-transition: all 0.5s ease-out;
}
.consultation__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.consultation__link a {
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 600;
}

.header__toggle-btn {
    display: none;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    background: url(./assets/images/burger.svg) no-repeat center;
    background-size: contain;
    margin-left: auto;
    margin-right: 1.5rem;
}
.header__wrapper._active .header__toggle-btn {
    background: url(./assets/images/close.svg) no-repeat center;
}

#header #footer {
    display: none;
}

@media screen and (max-width: 1125px) {
    .header__location {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    #header._fixed {
        position: absolute;
    }
    .header__wrapper._active {
        border-radius: 1rem 1rem 0 0;
    }
    .header__wrapper._active .header__logo {
        border-radius: 16px 0 0 0;
        box-shadow: none;
    }
    .header__location {
        display: block;
        margin-bottom: 2rem;
    } 
    .header__wrapper._active .header__row {
        display: flex;
    }
    .header__row {
        display: none;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        flex-direction: column;
        align-items: start;
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 0 0 1rem 1rem;
        height: calc(100vh - 64px - 2rem );
    }
    .header__menu {
        flex-direction: column;
        margin: 0;
    }
    #header .btn,
    .consultation {
        width: 100%;
    }
    .consultation {
        margin-top: auto;
    }
    .consultation__dropdown {
        top: -0.5rem;
        left: 50%;
        transform: translate(-50%, -100%);
        width: 100%;
        box-shadow: 0px 4px 20px 0px #00000033;
    }
    .header__toggle-btn {
        display: block;
    }
    #header #footer {
        display: block;
        position: static;
    }
    #header #footer .container {
        padding: 0;
    }
}


/* ----------FOOTER---------- */
#footer {
    width: 100%;
    background: rgba(0, 0, 0, .4);
   /* bottom: 1rem;
    left: 0;
    z-index: 100;
    position: absolute;*/
}
/*#footer._fixed {
    position: fixed;
}*/

@media screen and (max-width: 1024px) {
    /*#footer._fixed {
        position: absolute;
    }*/
}

.footer__row,
.footer__left,
.footer__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__row {
    justify-content: space-between;
    flex-wrap: wrap;
    /*border-radius: 1rem;*/
    /*background: #1e1e1e;*/
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    opacity: 0.5;
}
.footer__row a {
    text-decoration: underline;
}

/* ----------SWIPER---------- */
.swiper-container {
    margin-top: auto;
    position: relative;
    width: 100%;
}
.swiper-container--medium {
    max-width: 900px;
    align-self: center;
}
.swiper-container--small {
    max-width: 477px;
}
@media screen and (max-width: 1024px) {
    .swiper-container {
        margin-top: 2rem;
    }
}
.swiper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}
.swiper-navigation {
    width: 100%;
    position: absolute;
    bottom: 60%;
    z-index: 5;
}
.swiper-navigation .swiper-btn-prev,
.swiper-navigation .swiper-btn-next {
    position: absolute;
    cursor: pointer;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
}
.swiper-navigation .swiper-btn-prev {
    left: 0;
    transform: translateX(-50%) rotate(180deg);
}
.swiper-navigation .swiper-btn-next {
    right: 0;
    transform: translateX(50%);
}
.swiper-navigation .swiper-btn-prev:hover,
.swiper-navigation .swiper-btn-next:hover {
    background: var(--color-blue);
}
.swiper-navigation .swiper-btn-prev::after,
.swiper-navigation .swiper-btn-next::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(./assets/images/arrow-right-grey.svg) no-repeat center;
}
.swiper-navigation .swiper-btn-prev:hover::after,
.swiper-navigation .swiper-btn-next:hover::after {
    background: url(./assets/images/arrow-right-white.svg) no-repeat center;
}

.swiper-pagination-bullet {
    background: #fff !important;
    width: 5px !important;
    height: 5px !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    width: 38px !important;
    border-radius: 0.5rem !important;
}

.swiper-slide {
    height: auto !important;
    padding: 2rem;
}
.swiper-slide::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 50%;
    height: 70%;
    width: 1px;
    background: #fff;
    transform: translateY(50%);
}

/* ----------MODAL---------- */
.modal-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
}
.modal-outer._fixed {
    position: fixed;
}
.modal-outer .modal-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 720px;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 10px;
    transform: scale(0);
    transition: transform 0.8s;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80%;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .modal-outer .modal-inner {
        max-height: 80%;
    }
}
.modal-outer._open {
    visibility: visible;
    opacity: 1;
}
.modal-outer._open .modal-inner {
    transform: scale(1);
}
#close-modal {
    position: absolute;
    top: 40px;
    right: 40px;
    background: url(./assets/images/close-btn.svg) no-repeat center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 5;
}


.modal-standarts img {
    max-width: 640px;
    height: 370px;
}
.modal-standarts h3,
.modal-standarts img,
.modal-standarts p {
    margin-bottom: 2rem;
}
.modal-inner p {
    opacity: 0.6;
}
.standarts-modal-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
}
.standarts-modal-outer._fixed {
    position: fixed;
}
.standarts-modal-outer .standarts-modal-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 720px;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 10px;
    transform: scale(0);
    transition: transform 0.8s;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80%;
}
@media screen and (max-width: 1024px) {
    .standarts-modal-outer .standarts-modal-inner {
        max-height: 80%;
    }
}
.standarts-modal-outer._open {
    visibility: visible;
    opacity: 1;
}
.standarts-modal-outer._open .standarts-modal-inner {
    transform: scale(1);
}
#close-standarts-modal {
    position: absolute;
    top: 40px;
    right: 40px;
    background: url(./assets/images/close-btn.svg) no-repeat center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 5;
}


.modal-video img {
    max-width: 640px;
    height: 370px;
}
.modal-video h3,
.modal-video img,
.modal-video p {
    margin-bottom: 2rem;
}
.video-modal-inner p {
    opacity: 0.6;
}

.video-modal-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
}
.video-modal-outer._fixed {
    position: fixed;
}
.video-modal-outer .video-modal-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 10px;
    transform: scale(0);
    transition: transform 0.8s;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80%;
}
@media screen and (max-width: 1024px) {
    .video-modal-outer .video-modal-inner {
        max-height: 80%;
    }
}
.video-modal-outer._open {
    visibility: visible;
    opacity: 1;
}
.video-modal-outer._open .video-modal-inner {
    transform: scale(1);
}
#close-video-modal {
    position: absolute;
    top: 40px;
    right: 40px;
    background: url(./assets/images/close-btn.svg) no-repeat center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 5;
}

.modal-logos {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}
.modal-logos::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: 1px;
    border: 1px solid rgba(41, 45, 50, 1);
    opacity: 0.05;
}
.modal-logos .modal-logos__nova {
    width: 113px;
    height: 32px;
}
.modal-logos .modal-logos__egida {
    width: 86px;
    height: 32px;
}


.location-modal-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
}
.location-modal-outer._fixed {
    position: fixed;
}
.location-modal-outer .location-modal-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 720px;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 10px;
    transform: scale(0);
    transition: transform 0.8s;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80%;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .location-modal-outer .location-modal-inner {
        max-height: 80%;
    }
}
.location-modal-outer._open {
    visibility: visible;
    opacity: 1;
}
.location-modal-outer._open .location-modal-inner {
    transform: scale(1);
}
#close-location-modal {
    position: absolute;
    top: 40px;
    right: 40px;
    background: url(./assets/images/close-btn.svg) no-repeat center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 5;
}



.modal-pick-up {
    position: relative;
    color: #fff;
    display: none;
}
.modal-pick-up._active {
    display: block;
}
.modal-pick-up[data-step="2"],
.modal-pick-up[data-step="3"],
.modal-pick-up[data-step="4"] {
    color: #000;
}
.modal-pick-up::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: 560px;
    z-index: -1;
}
.modal-pick-up[data-step="1"]::before,
.modal-pick-up[data-step="5"]::before {
    background-color: var(--color-blue);
}

.modal-pick-up[data-step="5"] {
    overflow: visible !important;
}

.modal-pick-up[data-step="5"] .modal-pick-up__bottom {
    margin-top: 6rem;
}

.modal-pick-up__container {
    max-width: 420px;
    margin: 0 auto;
}
.modal-pick-up__bg-img {
    height: calc(560px - 2rem - 190px);
    position: relative;
}
.modal-pick-up__bg-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-2rem);
}

.modal-pick-up__number {
    font-size: 128px;
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-weight: 800;
    color: rgba(212, 213, 214, 1);
}
.modal-pick-up__bottom {
    margin-top: 3rem;
    display: flex;
}
.modal-pick-up[data-step="1"] .modal-pick-up__bottom{
    justify-content: center;
}
.modal-pick-up[data-step="2"] .modal-pick-up__bottom, 
.modal-pick-up[data-step="3"] .modal-pick-up__bottom, 
.modal-pick-up[data-step="4"] .modal-pick-up__bottom, 
.modal-pick-up[data-step="5"] .modal-pick-up__bottom{
    justify-content: space-between;
}
.modal-pick-up .btn {
    padding: 1.125rem 2rem;
}
.modal-pick-up a:active, /* активная/посещенная ссылка */
.modal-pick-up a:hover,  /* при наведении */
.modal-pick-up a {
  text-decoration: none;
  color: inherit;
}

.modal-pick-up__options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}
.option input[type="checkbox"] {
    display: none;
}
.option input[type="checkbox"]:checked + label .option-content {
    background: var(--color-blue);
    color: #fff;
}
.option-content {
    border-radius: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(245, 245, 247, 1);

    display: flex;
    align-items: center;
    position: relative;
}
.option-content:hover {
    background: rgba(212, 213, 214, 1);
}
.option-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2rem;
    width: 2rem;
    height: 2rem;
    transform: translate(0, -50%);
    background: url(./assets/images/checked.svg) no-repeat center;
    display: none;
}
.option input[type="checkbox"]:checked + label .option-content::before{
    display: block;
}

.option-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}
.option-text h5 {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 0.5rem;
}
.option-text p {
    margin: 0;
    font-size: 0.875rem;
}

.modal-pick-up__back {
    background: rgba(245, 245, 247, 1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(41, 45, 50, 0.05);
    position: relative;
}
.modal-pick-up__back::after {
    content: "";
    background: url(./assets/images/arrow-right-grey.svg) no-repeat center;
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-pick-up .swiper-container {
    margin-top: 1.5rem;
}
.modal-pick-up .swiper::before {
    display: none;
}
.modal-pick-up .swiper-slide {
    width: 200px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    color: var(--color-black);
    border-radius: 1rem;
}
.modal-pick-up .swiper-slide::after {
    display: none;
}
.modal-pick-up .swiper-slide .product__img {
    height: 165px;
}
.modal-pick-up .swiper-slide h4 {
    font-weight: normal;
}
.modal-pick-up .swiper-pagination {
    bottom: -1.5rem !important;
}

.hidden {
    display: none;
}

#bx_incl_area_5_1,
#bx_incl_area_5_17 {
    height: 100%;
}


/* Cookie
-----------------------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    font-size: 14px;
    max-width: 320px;
    backdrop-filter: blur(4px);
}

.cookie-banner a {
    color: #88ccff;
    text-decoration: underline;
}

.cookie-banner .cookie-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.cookie-banner button {
    padding: 10px 20px;
    background-color: var(--color-blue);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-banner button:hover {
    background-color: #0088cc;
}



