body {
    color: #2C2F88;
    font-size: 25px;

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    background: #F8F7F3;
}

/*.poppins-thin {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 100;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-extralight {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 200;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-light {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 300;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-regular {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-medium {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 500;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-semibold {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 600;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-bold {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 700;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-extrabold {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 800;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-black {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 900;*/
/*    font-style: normal;*/
/*}*/

/*.poppins-thin-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 100;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-extralight-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 200;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-light-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 300;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-regular-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 400;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-medium-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 500;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-semibold-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 600;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-bold-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 700;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-extrabold-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 800;*/
/*    font-style: italic;*/
/*}*/

/*.poppins-black-italic {*/
/*    font-family: "Poppins", sans-serif;*/
/*    font-weight: 900;*/
/*    font-style: italic;*/
/*}*/


/* Header block */
.site-header{
    position: relative;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid #ebe8f3;
}

.site-header__grid{
    padding-top: 35px;
    padding-bottom: 20px;

    display: flex;
    align-items: center;
}

.site-header__logo{
    display: inline-block;


    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2C2F88;
}

.site-header__nav{
    text-align: right;
    white-space: nowrap;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: nowrap;
}

.site-header__nav-link{
    display: inline-block;
    margin: 0 14px;
    font-size: 18px;
    line-height: 56px;
    font-weight: 400;
    color: #2C2F88;
    transition: color 0.2s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link.is-active{
    /* color: #F2B705; */
}

.site-header__phone-wrap{
    text-align: right;
}

.site-header__phone{
    display: inline-block;

    padding: 9px 20px;
    border-radius: 8px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.site-header__phone:hover{
    background: #D9A400;
}

.site-header__burger-wrap{
    text-align: right;
}

.site-header__burger{
    position: relative;
    width: 56px;
    height: 40px;
    padding: 0;
    border: 1px solid #ebe8f3;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.site-header__burger span{
    position: absolute;
    left: 14px;
    right: 14px;
    height: 3px;
    border-radius: 3px;
    background: #2C2F88;
    transition: all 0.2s ease;
}

.site-header__burger span:nth-child(1){
    top: 7px;
}

.site-header__burger span:nth-child(2){
    top: 17px;
}

.site-header__burger span:nth-child(3){
    top: 27px;
}

.site-header__mobile-menu,
.site-header__overlay{
    display: none;
}


/* Hero slider block */
.hero-slider-section{
    position: relative;
    overflow: hidden;
    background: #f7f5fb;
}

.hero-slider{
    position: relative;
}

.hero-slider .swiper-slide{
    height: auto;
}

.hero-slide{
    position: absolute;
    padding: 70px 0 92px 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}



.hero-slide__content{
    position: relative;
    z-index: 2;
    padding-top: 42px;

}



.hero-slide__title{
    font-size: 70px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-slide__text{
    margin-bottom: 34px;
    font-size: 25px;
    line-height: 1.45;
    font-weight: 400;

}

.hero-slide__btn{
    display: inline-block;
    height: 64px;
    line-height: 64px;
    padding: 0 34px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.hero-slide__btn:hover{
    background: #D9A400;
}

.hero-slide__media{
    position: relative;
    z-index: 2;
}

.hero-slide__photo{
    width: 100%;
    min-height: 560px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.hero-slider__pagination{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 5;
    text-align: center;
}

.hero-slider__pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    background: #cfd4ef;
    opacity: 1;
}

.hero-slider__pagination .swiper-pagination-bullet-active{
    background: #F2B705;
}



.about-intro{
    position: relative;
    padding: 88px 0 78px 0;

    overflow: hidden;
}

.about-intro__inner{
    position: relative;

    margin: 0 auto;
    text-align: center;
}

.about-intro__title{
    margin: 0 0 42px 0;
    font-size: 40px;
    line-height: 1.12;
    font-weight: bold;
}

.about-intro__text{

    margin: 0 auto;
}

.about-intro__text p{
    margin: 0 0 26px 0;
    font-size: 25px;
    line-height: 1.7;
    font-weight: 400;

}

.about-intro__text p:last-child{
    margin-bottom: 0;
}

.about-intro__actions{
    padding-top: 38px;
    position: relative;
    padding-bottom: 42px;
}

.about-intro__actions:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 95px;
    background: url(/images/elements/bloc-1-before.png?v=1) no-repeat;
    width: 110px;
    height: 110px;
}


.about-intro__btn{
    display: inline-block;
    min-width: 45%;

    padding: 12px 34px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease;
    max-width: 100%;
    margin-top: 60px;
}

.about-intro__btn:hover{
    background: #D9A400;
}

.about-intro__bee{
    position: absolute;
    display: block;
    width: 54px;
    height: 54px;
    opacity: 0.85;
}

.about-intro__bee:before,
.about-intro__bee:after{
    content: "";
    position: absolute;
    border: 2px solid #8A8FD2;
    border-radius: 50%;
}

.about-intro__bee:before{
    top: 8px;
    left: 8px;
    width: 16px;
    height: 24px;
    transform: rotate(-28deg);
}

.about-intro__bee:after{
    top: 8px;
    left: 26px;
    width: 16px;
    height: 24px;
    transform: rotate(28deg);
}

.about-intro__bee--left{
    left: -28px;
    bottom: 8px;
}

.about-intro__bee--right{
    right: -28px;
    top: 72px;
}

.about-intro__bee--left{
    transform: rotate(-18deg);
}

.about-intro__bee--right{
    transform: rotate(22deg);
}



.products-lead{
    position: relative;
    padding: 32px 0 190px 0;
    overflow: hidden;
    background: url(/images/elements/full-line.png) no-repeat;
    background-position: bottom;
    background-size: contain;
}

.products-lead:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;

    pointer-events: none;
}

.products-lead__inner{
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.products-lead__title{
    margin: 0 0 26px 0;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
}

.products-lead__text{

    margin: 0 auto;
    padding-bottom: 34px;
}

.products-lead__text p{
    margin: 0 0 12px 0;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;

}

.products-lead__text p:last-child{
    margin-bottom: 0;
}

.products-lead__bee{
    position: absolute;
    right: 64px;
    top: 58px;
    display: block;
    width: 54px;
    height: 54px;
    opacity: 0.85;
}

.products-lead__bee:before,
.products-lead__bee:after{
    content: "";
    position: absolute;
    border: 2px solid #8A8FD2;
    border-radius: 50%;
}

.products-lead__bee:before{
    top: 8px;
    left: 8px;
    width: 16px;
    height: 24px;
    transform: rotate(-28deg);
}

.products-lead__bee:after{
    top: 8px;
    left: 26px;
    width: 16px;
    height: 24px;
    transform: rotate(28deg);
}

.products-lead__bee{
    transform: rotate(18deg);
}


.products-cards{
    position: relative;
    padding: 0 0 90px 0;

    bottom: 30px;
}

.product-card{
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 15px;
}

.product-card__image{
    position: relative;
    padding: 28px 28px 0 28px;

    text-align: center;
}

.product-card__image img{
    display: block;
    width: 100%;
    max-width: 290px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.product-card__body{
    padding: 28px 28px 40px 28px;
    text-align: center;
}





.product-card__btn{
    display: inline-block;
    margin-top: 45px;
    height: 58px;
    line-height: 58px;
    padding: 0 28px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease;
    width: 100%;
}

.product-card__btn:hover{
    background: #D9A400;
}




.product-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 10050;
}

.product-popup.is-open{
    opacity: 1;
    visibility: visible;
}

.product-popup__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 47, 136, 0.35);
}

.product-popup__dialog{
    position: relative;
    width: calc(100% - 40px);
    max-width: 1320px;
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    padding: 42px 42px 38px 42px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transform: translateY(18px);
    transition: transform 0.25s ease;
}

.product-popup.is-open .product-popup__dialog{
    transform: translateY(0);
}

.product-popup__close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.product-popup__close:before,
.product-popup__close:after{
    content: "";
    position: absolute;
    top: 21px;
    left: 10px;
    width: 24px;
    height: 2px;
    background: #2C2F88;
}

.product-popup__close:before{
    transform: rotate(45deg);
}

.product-popup__close:after{
    transform: rotate(-45deg);
}

.product-popup__media{

    text-align: center;
}

.product-popup__image{
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.product-popup__content{
    position: relative;
    padding-top: 10px;
    padding-right: 36px;
}

.product-popup__title{
    margin: 0 0 24px 0;
    font-size: 40px;
    line-height: 1.14;
    font-weight: 600;

}

.product-popup__text{
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;

}

.product-popup__features{
    padding-top: 28px;
}

.product-popup__feature{
    position: relative;

    margin-bottom: 22px;
    min-height: 32px;
    display: flex;
    gap: 15px;
}

.product-popup__feature:last-child{
    margin-bottom: 0;
}

.product-popup__icon{
    width: 34px;
}
.product-popup__icon img{
    min-width: 34px;
}
.product-popup__feature-text{
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;

}

.product-popup__actions{
    padding-top: 32px;
}

.product-popup__btn{
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s ease;
}

.product-popup__btn:hover{
    background: #D9A400;
}

.product-popup__bee{
    position: absolute;
    right: 0;
    top: 44%;
    display: block;
    width: 110px;
    height: 110px;
    background: url(/images/elements/bloc-2-before.png) no-repeat;
}

body.is-product-popup-open{
    overflow: hidden;
}




.store-location{
    position: relative;
    padding: 30px 0 110px 0;
    overflow: hidden;
}

.store-location__inner{
    position: relative;

    margin: 0 auto;
    text-align: center;
}

.store-location__title{
    margin: 0 0 50px 0;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
    margin-bottom: 115px;
}

.store-location__map-wrap{
    position: relative;
    overflow: hidden;
}

.store-location__map, .store-location__map-wrap iframe{
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 10px;

}

.store-location__actions{
    padding-top: 115px;
}

.store-location__btn{
    display: inline-block;
    min-width: 430px;
    padding: 12px 34px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease;
    max-width: 100%;
}

.store-location__btn:hover{
    background: #D9A400;
}

.store-location__bee{
    position: absolute;
    display: block;
    width: 125px;
    height: 125px;
    background: url(/images/elements/bloc-3-before.svg?v=1) no-repeat 50% 50%;
    background-size: contain;
}

.store-location__bee--top{
    top: -30px;
    right: 30px;
}

.store-location__bee--bottom{
    left: 40px;
    bottom: -18px;
    background: url(/images/elements/bloc-1-before.png?v=1) no-repeat 50% 50%;
    background-size: contain;
}



.values-intro{
    position: relative;
    padding: 20px 0 70px 0;
}

.values-intro__title{
    margin: 0 0 38px 0;
    text-align: center;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
}

.values-intro__band{
    position: relative;
    padding: 72px 0 68px 0;
    background: url(/images/elements/full-line2.png) no-repeat 50% 50%;
    background-size: cover;
}

.values-intro__text{

    margin: 0 auto;
    text-align: center;
}

.values-intro__text p{
    margin: 0 0 30px 0;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.values-intro__text p:last-child{
    margin-bottom: 0;
}



.why-nectaria{
    position: relative;
    padding: 25px 0 90px 0;
}

.why-nectaria__title{
    margin: 0 0 115px 0;
    text-align: center;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
}

.why-nectaria__box{
    background: #ffffff;
    border-radius: 10px;
    padding: 48px 90px 42px 90px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.why-nectaria__list{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

.why-nectaria__item{
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 50px;
}

.why-nectaria__item:last-child{
    margin-bottom: 0;
}

.why-nectaria__icon{
    width: 60px;
    min-width: 60px;
    text-align: center;
}

.why-nectaria__icon img{
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.why-nectaria__item-text{
    font-size: 25px;
    line-height: 1.35;
    font-weight: 400;
}

.why-nectaria__note{

    margin: 34px auto 0 auto;
    text-align: center;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.why-nectaria__actions{
    padding-top: 26px;
    text-align: center;
}

.why-nectaria__btn{
    display: inline-block;
    min-width: 650px;
    max-width: 100%;
    padding: 12px 34px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.why-nectaria__btn:hover{
    background: #D9A400;
}



.international-recognition{
    position: relative;
    padding: 55px 0 85px 0;
    overflow: hidden;
}

.international-recognition__inner{
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    text-align: center;
}

.international-recognition__title{
    margin: 0 0 90px 0;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
}

.international-recognition__text{
    max-width: 1320px;
    margin: 0 auto;
}

.international-recognition__text p{
    margin: 0 0 32px 0;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.international-recognition__text p:last-child{
    margin-bottom: 0;
}

.international-recognition__actions{
    padding-top: 52px;
}

.international-recognition__btn{
    display: inline-block;
    max-width: 100%;
    min-width: 64%;
    padding: 12px 34px;
    border-radius: 10px;
    background: #2C2F88;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s ease;
    margin-top: 80px;
}

.international-recognition__btn:hover{
    background: #23256B;
}

.international-recognition__decor{
    position: absolute;
    right: 0px;
    top: 38px;
    display: block;
    width: 82px;
    height: 82px;
    background: url(/images/elements/bloc-2-before.png) no-repeat 50% 50%;
    background-size: contain;
    opacity: 0.75;
}



.join-land{
    position: relative;
    padding: 40px 0 70px 0;
    overflow: hidden;
}

.join-land__title{
    margin: 0 0 70px 0;
    text-align: center;
    font-size: 40px;
    line-height: 1.14;
    font-weight: bold;
}

.join-land__text-band{
    position: relative;
    padding: 34px 0 130px 0;
    background: url(/images/elements/full-line3.png) no-repeat 50% 50%;
    background-size: cover;
}

.join-land__text{
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.join-land__text p{
    margin: 0 0 10px 0;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.join-land__text p:last-child{
    margin-bottom: 0;
}

.join-land__actions{
    text-align: center;
    position: relative;
    bottom: 25px;
}

.join-land__btn{
    display: inline-block;
    min-width: 620px;
    max-width: 100%;
    padding: 12px 34px;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.join-land__btn:hover{
    background: #D9A400;
}



.contact-panel{
    position: relative;
    padding: 10px 0 95px 0;

}

.contact-panel__box{
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 45px 0 54px 0;
    overflow: visible;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact-panel__form-wrap{
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-panel__form{
    display: block;
}

.contact-panel__field{
    margin-bottom: 30px;
}

.contact-panel__label{
    display: block;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    padding-left: 10px;
}

.contact-panel__input{

width: 100%;
    height: 62px;
    padding: 0 16px;
    border: 1px solid #D8D8D8;
    border-radius: 10px;

    color: #2C2F88;
    font-size: 25px;

    font-weight: 400;
}

.contact-panel__input::-webkit-input-placeholder{
    color: #D8D7E7;
    opacity: 1;
}

.contact-panel__input::-moz-placeholder{
    color: #D8D7E7;
    opacity: 1;
}

.contact-panel__input:-ms-input-placeholder{
    color: #D8D7E7;
    opacity: 1;
}

.contact-panel__input::placeholder{
    color: #D8D7E7;
    opacity: 1;
}

.contact-panel__actions{
    padding-top: 22px;
}

.contact-panel__btn{
    display: block;
    width: 100%;
    height: 62px;
    line-height: 62px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #FCBF00;
    color: #ffffff;
    font-size: 25px;

    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-panel__btn:hover{
    background: #D9A400;
}

.contact-panel__bee{
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}

.contact-panel__bee--inside{
    left: 16.5%;
    bottom: 74px;
    width: 86px;
    height: 86px;
    background-image: url(/images/elements/bloc-1-before.png);
}

.contact-panel__bee--outside{
    right: 12.5%;
    bottom: -100px;
    width: 86px;
    height: 86px;
    background-image: url(/images/elements/bloc-2-before.png);
}


.support-logos{
    position: relative;
    padding: 70px 0 85px 0;
}

.support-logos__row{

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.support-logos__item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-logos__item img{
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

.support-logos__item--left{

}

.support-logos__item--center{

}

.support-logos__item--right{

}

.support-logos__text{

    margin: 42px auto 0 auto;
    text-align: center;
    font-size: 25px;
    line-height: 1.5;
    font-weight: 400;
}


#footer{
    position: relative;
    background: #2C2F88;
    color: #ffffff;
}

.site-footer{
    padding: 155px 0 0px 0;
}

.site-footer__logo-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.site-footer__logo{
    display: block;
    max-width: 320px;
    width: 100%;
}

.site-footer__logo img{
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.site-footer__contacts{
    padding-top: 8px;
}

.site-footer__title{
    margin: 0 0 18px 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #ffffff;
}

.site-footer__line{
    font-size: 35px;
    line-height: 1.15;
    font-weight: 400;
    color: #ffffff;
}

.site-footer__link{
    color: #ffffff;
    text-decoration: underline;
}


.thanks-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 10100;
}

.thanks-popup.is-open{
    opacity: 1;
    visibility: visible;
}

.thanks-popup__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.thanks-popup__dialog{
    position: relative;
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 6px auto 0 auto;
    padding: 82px 130px 78px 130px;
    background: #fff;
    border-radius: 10px;
}

.thanks-popup__content{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    text-align: center;
}

.thanks-popup__text{
    font-size: 40px;
    line-height: 1.32;
    font-weight: 700;
    color: #2C2F88;
}

.thanks-popup__bee{
    position: absolute;
    display: block;
    width: 86px;
    height: 86px;
    background-image: url(/images/elements/bloc-2-before.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}



.thanks-popup__bee:after{
    right: 8px;
    transform: rotate(28deg);
}

.thanks-popup__bee--left{
    left: 52px;
    top: 42px;
    transform: rotate(165deg);
}

.thanks-popup__bee--right{
    right: 52px;
    bottom: 42px;
    transform: rotate(18deg);
}

body.is-thanks-popup-open{
    overflow: hidden;
}
.wrap_header_phl {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
}

.site-header__phone-lang {
    text-transform: uppercase;
}




.coppy_bb {
    background: #fff;
}
.coppy_b {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;

    padding: 10px 0px;
}

.coppy_dev{
    display:flex;
    align-items:center;
}

.coppy_dev_a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#000;
    font-size:14px;
    line-height:1;
    transition:opacity .2s ease;
}

.coppy_dev_a:hover{
    opacity:1;
    text-decoration:none;
}

.coppy_dev_a span{
    display:inline-flex;
    align-items:center;
}

.coppy_dev_a img{
    display:block;
    max-height:24px;
    width:auto;
    max-width:120px;
    object-fit:contain;
}

.coppy_dev_a svg{
    display:block;
    height:24px;
    width:auto;
    max-width:120px;
}

@media (max-width: 767px){
    .coppy_b {
        gap:14px;
        justify-content:center;
    }

    .coppy_dev_a{
        font-size:13px;
        gap:8px;
    }

    .coppy_dev_a img,
    .coppy_dev_a svg{
        max-height:20px;
        max-width:100px;
    }
}