@font-face
{
    font-family: 'ProximaNova';
    font-weight: 300;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ProximaNova-Light.woff') format('woff'),
    url('../fonts/ProximaNova-Light.ttf') format('truetype');
}

@font-face
{
    font-family: 'ProximaNova';
    font-weight: 400;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ProximaNova-Regular.woff') format('woff'),
    url('../fonts/ProximaNova-Regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'ProximaNova';
    font-weight: 600;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ProximaNova-Semibold.woff') format('woff'),
    url('../fonts/ProximaNova-Semibold.ttf') format('truetype');
}

@font-face
{
    font-family: 'ProximaNova';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ProximaNova-Bold.woff') format('woff'),
    url('../fonts/ProximaNova-Bold.ttf') format('truetype');
}

@font-face
{
    font-family: 'ProximaNova';
    font-weight: 800;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/ProximaNova-Extrabld.woff') format('woff'),
    url('../fonts/ProximaNova-Extrabld.ttf') format('truetype');
}

@font-face
{
    font-family: '21 Cent';
    font-weight: 250;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/21Cent-Thin.woff') format('woff'),
    url('../fonts/21Cent-Thin.ttf') format('truetype');
}

*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;
            border-radius: 0;

    -webkit-appearance: none;
            appearance: none;
}

:focus
{
    outline: none;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*---------------
    Main styles
---------------*/
:root
{
    --scroll_width: 17px;
    --font_family: "ProximaNova";
    --font_family2: "21 Cent";
}


.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}


html
{
    height: 100%;

    background: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body
{
    color: #4B3F52;
    font: 21px/29px var(--font_family);

    letter-spacing: -0.02em;


    height: 100%;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.lock
{
    overflow: hidden;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1172px;
    margin: 0 auto;
    padding: 0 15px;
}


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}

.lozad
{
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.flex
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


::-webkit-input-placeholder
{
    color: #c2c2c2;
}

:-moz-placeholder
{
    color: #c2c2c2;
}

:-ms-input-placeholder
{
    color: #c2c2c2;
}


.form .label{
    color: #4B3F52;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;

    margin-bottom: 10px;
}

.form .line_form{
    margin-bottom: 30px;
}

.form .input{
    color: #4D4D4D;
    font: 17px var(--font_family);

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 24px;

    transition: .2s linear;

    border: 1px solid #EBD5DD;
    background: #fff;
    border-radius: 25px;
}

.form textarea{
    color: #4D4D4D;
    font: 17px var(--font_family);

    display: block;

    width: 100%;
    height: 177px;
    padding: 18px 24px;

    resize: none;
    transition: .2s linear;

    border: 1px solid #EBD5DD;
    background: #fff;
    border-radius: 25px;
}

.form .submit_btn{
    color: #A27385;
    font: 21px var(--font_family);

    position: relative;

    display: inline-block;
    vertical-align: top;

    height: 50px;
    padding: 0 35px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    background: #FFFFFF;
    border: 1px solid #EBD5DD;
    border-radius: 25px;
}

.form .submit_btn:hover{
    background: #EBD5DD;
}

.form .agree{
    color: #4D4D4D;
    font-size: 16px;
    line-height: 19px;

    margin-top: 22px;
}

.form .agree a{
    color: #A27385;

    display: inline-block;

    transition: .2s linear;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.form .agree a:hover{
    border-color: currentColor;
}


.accordion{
    margin-top: 35px;
}
.accordion .item + .item{
    margin-top: 24px;
}
.accordion .item .title{
    color: #4d4d4d;
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;

    position: relative;

    padding-right: 20px;

    cursor: pointer;
    letter-spacing: -.02em;
    transition: .2s linear;
}
.accordion .item .title:hover{
    color: #A27385;
}
.accordion .item .title:after{
    position: absolute;
    top: 50%;
    right: 3px;

    width: 10px;
    height: 10px;
    margin-top: -6px;

    content: '';
    transition: .2s linear;
    transform: rotate(45deg);

    border-right: 2px solid #4d4d4d;
    border-bottom: 2px solid #4d4d4d;
}
.accordion .item .title:hover:after{
    border-color: #A27385;
}
.accordion .item.active .title:after{
    margin-top: -3px;

    transform: scale(1, -1) rotate(45deg);
}
.accordion .item .data{
    display: none;

    width: 100%;
    margin-top: 10px;
}
.accordion .item .data .text_block{
    color: #4d4d4d;
    font-size: 16px;
    line-height: 19px;
}


.page_content{
    padding: 105px 0 160px;
}


.supports_error{
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show{
    display: flex;
}


.text_block > :last-child{
    margin-bottom: 0 !important;
}

.text_block h3{
    color: #4d4d4d;
    font-size: 28px;
    font-weight: 700;
    line-height: 31px;

    margin-bottom: 31px;

    letter-spacing: -.02em;
}

.text_block * + h3{
    margin-top: 69px;
}

.text_block h4{
    color: #4d4d4d;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;

    letter-spacing: -.02em;
}

.text_block * + h4{
    margin-top: 40px;
}

.text_block img{
    display: block;

    max-width: 100%;
    margin-bottom: 30px;
}

.text_block p,
.text_block ul{
    margin-bottom: 19px;
}

.text_block ul li{
    list-style: none;
}
.text_block ul li:before{
    position: relative;

    content: '• ';
}


.main_title{
    color: #4d4d4d;
    font-size: 44px;
    line-height: normal;

    text-transform: uppercase;
}

.main_title.center{
    text-align: center;
}

.main_title span{
    color: #bb8094;
}


.uppercase{
    text-transform: uppercase;
}


/*---------------
   Header
---------------*/
header
{
    padding-top: 25px;
}

header .logo img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

header .menu{
    max-width: 1060px;
    margin: -12px auto 0;

    justify-content: space-between;
    padding: 0 62px;
    position: relative;
}

header .menu button{
    border: none;
    background: none;

    cursor: pointer;
    height: 66px;

    font: 300 22px var(--font_family);

    color: #4D4D4D;
    display: block;
    transition: .2s linear;
}

header .menu button:hover{
    color: #BB8094;
}

header .mob_menu_link
{
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 15px;

    display: none;

    width: 44px;
    height: 38px;
    margin-right: -10px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    border-radius: 2px;
    background: #000;
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}

header .mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1)
{
    top: 8px;

    transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3)
{
    top: -8px;

    transform: rotate(-45deg);
}
/*---------------
   Main section
---------------*/
.owl-carousel .owl-stage{
    white-space: nowrap;
}

.owl-carousel .owl-item{
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad{
    transition: .3s linear;
}


.main_banner{
    padding: 0 247px;
}
.main_banner .slider{
    max-width: 865px;
    margin: 0 auto;
}
.main_banner .slider.owl-carousel .owl-stage-outer{
    overflow: visible;
}
.main_banner .slide{
    position: relative;

    min-height: 618px;
    min-height: 618px;
    padding: 50px 56px 250px;
}
.main_banner .slide .bg{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
}
.main_banner .slide .bg-logo{
    position: absolute;
    bottom: 12px;
    left: 39px;

    transition: .2s linear;

    opacity: 0;
	display: none;
}
.main_banner .owl-item.active .slide .bg-logo{
    visibility: visible;

    opacity: 1;
}
.main_banner .slide .bg-logo img{
    display: block;

    max-width: 100%;
}
.main_banner .slide .title{
    color: #000;
    font-size: 38px;
    line-height: 40px;

    position: relative;

    visibility: hidden;

    transition: .2s linear;

    opacity: 0;
}
.main_banner .slide .title span{
    color: #4d4d4d;
}
.main_banner .slide .title span.pink{
    color: #bb8094;
}
.main_banner .owl-item.active .slide .title{
    visibility: visible;

    opacity: 1;
}
.main_banner .owl-carousel .owl-nav button{
    height: 100%;
    width: calc(100vw / 2);
    top: 0;
    margin-top: 0;
}
.main_banner .owl-carousel .owl-nav button:before{
    display: none;
}
.main_banner .owl-carousel .owl-nav button.owl-prev{
    left: auto;
    right: 100%;
}
.main_banner .owl-carousel .owl-nav button.owl-next{
    right: auto;
    left: 100%;
}


.products{
    margin-top: 86px;
}

.products .main_title{
    margin-bottom: 23px;
}

.products .slider.owl-carousel .owl-nav button{
    width: 19px;
    height: 35px;
    margin-top: -17.5px;
}
.products .slider.owl-carousel .owl-nav button:before{
    display: none;
}
.products .slider.owl-carousel .owl-nav button svg{
    display: block;

    width: 19px;
    height: 35px;

    transition: .2s linear;

    fill: #e5e5e5;
}
.products .slider.owl-carousel .owl-nav button:hover:not(.disabled) svg{
    fill: #4d4d4d;
}
.products .slider.owl-carousel .owl-nav button.owl-next svg{
    transform: rotate(180deg);
}
.products .item .thumb{
    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 100%;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: rgba(247, 145, 157, .1);
}
.products .item .thumb:hover{
    background: rgba(247, 145, 157, .25);
}
.products .item .thumb .img{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 30px;

    justify-content: center;
    align-items: center;
    align-content: center;
}
.products .item .thumb .img img{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.products .item .name{
    color: #4d4d4d;
    font-size: 21px;
    line-height: 110%;

    margin-top: 25px;
    padding: 0 35px;

    text-align: center;
    letter-spacing: -.02em;
	min-height: 161px;
}
.products .item .name button{
    color: #4d4d4d;
    font-family: var(--font_family);
    font-size: 21px;
    line-height: 110%;

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: -.02em;

    border: none;
    background-color: transparent;
}
.products .item .name button span{
    font-weight: 300;
}
.products .item .name button:hover{
    color: #bb8094;
}

.products .item .price-xml {
    color: #bb8094;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 0;
    font-weight: bold;
    font-size: 24px;
    padding: 0 35px;
    text-align: center;
}

.products .item .price-xml span.rrc {
    color: #4d4d4d;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 16px;
    font-weight: 300;
    display: inline-block;
	width: 100%;
}

.price-xml-popup span.rrc {
    color: #4d4d4d;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 16px;
    font-weight: 300;
    top: -4px;
    position: relative;
}

.products .item .soon {
    text-align: center;
    color: #bb8094;
    margin-top: 3%;
    font-weight: bold;
    font-size: 24px;
}

.price-xml-popup {
    color: #bb8094;
    margin-top: 4px;
    margin-bottom: 10px;
    margin-right: 1%;
    margin-left: 15px;
    font-weight: bold;
    font-size: 24px;
    width: 100%;
}

.block1{
    min-height: 110px;
}
.about_section{
    margin-top: 83px;
}

.about_section.composition{
    margin-top: 66px;
}

.about_section .columns{
    margin-top: 23px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.about_section.composition .columns{
    margin-top: 45px;
}

.about_section .img{
    width: calc(46% - 5px);
}

.about_section.composition .img{
    width: calc(50% - 16px);
}

.about_section .img img,
.about_section .img video{
    display: block;

    max-width: 100%;
}

.about_section .text_block{
    width: calc(54% - 35px);
}

.about_section.composition .text_block{
    width: calc(50% - 64px);
}

.about_section .text_block h3{
    line-height: 38px;

    margin-bottom: 17px;
}


.history{
    margin-top: 104px;
}
.history .columns{
    margin-top: 59px;
}
.history .line{
    padding-right: 3px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.history .box_img{
    width: calc(50% - 8px);
    max-width: 563px;
}
.history .line:nth-child(2n) .box_img{
    order: 2;
}

.history .img{
    padding-bottom: 100%;
    position: relative;
}
.history .img img{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.history .text_block{
    width: calc(50% + 8px);
    padding: 5px 30px 15px 59px;
}
.history .line:nth-child(2n) .text_block{
    padding: 15px 55px 15px 0;
}
.history .text_block h3{
    color: #a27385;
    font-weight: 400;

    margin-bottom: 17px;
}


.phases{
    margin-top: 100px;
}
.phases .text .text_block{
    font-size: 23px;
    line-height: 29px;

    margin-top: 11px;
}
.phases .text .text_block h3{
    margin-bottom: 14px;
}
.phases .box{
    position: relative;

    margin-top: 76px;
}
.phases .box:before{
    position: absolute;
    top: -30px;
    left: 50%;

    width: 100%;
    max-width: calc(100% - 20px);
    height: calc(100% + 52px);

    content: '';
    transform: translateX(-50%);

    background: url('../images/ic_triangle.svg') 50% 0 no-repeat;
    background-size: auto 100%;
}
.phases .box .item{
    position: relative;

    padding: 10px 32px;

    background: linear-gradient(90deg, #fcebe4 0%, rgba(255, 255, 255, .4) 48.44%, #fcebe4 100%);

    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.phases .box .item + .item{
    margin-top: 14px;
}
.phases .box .item .number{
    width: 120px;
    padding-right: 15px;
}
.phases .box .item .number img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
.phases .box .item .title{
    color: #bb8094;
    font-size: 34px;
    font-weight: 800;
    line-height: 50px;

    letter-spacing: .04em;
    text-transform: uppercase;

    flex-grow: 1;
}
.phases .box .item .desc{
    width: 40%;

    flex-shrink: 0;
}
.phases .box .item .desc .top{
    color: #4d4d4d;
    font-size: 36px;
    line-height: 46px;

    letter-spacing: -.02em;
}
.phases .box .item .desc .top button{
    cursor: pointer;
    color: #4d4d4d;
    font-size: 36px;
    background-color: transparent;
    font-family: var(--font_family);
    border: none;
    cursor: pointer;
    transition: .2s linear;
}
.phases .box .item .desc .top button:hover{
    color: #BB8094;
}
.phases .box .item .desc .bot{
    color: #4d4d4d;
    font-size: 34px;
    font-weight: bold;
    line-height: 43px;

    letter-spacing: -.02em;
}
.phases .slider{
    margin-top: 80px;
}

.phases .slide .text_block{
    font-size: 23px;
    line-height: 32px;
}
.phases .slide .text_block h3:first-child{
    padding-right: 130px;
}
.phases .slider.owl-carousel .owl-nav button{
    top: 4px;

    width: 15px;
    height: 30px;
    margin-top: 0;

    opacity: .35;
}
.phases .slider.owl-carousel .owl-nav button:not(.disabled):hover{
    opacity: 1;
}
.phases .slider.owl-carousel .owl-nav button:before{
    display: none;
}
.phases .slider.owl-carousel .owl-nav button.owl-prev{
    right: 80px;
    left: auto;
}
.phases .slider.owl-carousel .owl-nav button.owl-next{
    right: 21px;
}
.phases .slider.owl-carousel .owl-nav button svg{
    display: block;

    width: 15px;
    height: 30px;

    transition: .2s linear;

    fill: #4d4d4d;
}
.phases .slider.owl-carousel .owl-nav button.owl-next svg{
    transform: rotate(180deg);
}


.formula{
    margin-top: 80px;
    padding: 60px 90px 70px;

    background: #efd2cc;
}

.formula .line{
    margin-top: 50px;
    margin-left: -30px;

    flex-wrap: nowrap;
    justify-content: space-between;
}
.formula .line .item{
    margin-left: 30px;

    text-align: center;
}
.formula .line .sum{
    width: 99px;

    flex-shrink: 0;
}
.formula .line .sum img{
    display: block;

    max-width: 100%;
}
.formula .line .sep{
    color: #fff;
    font-size: 100px;
    font-weight: 300;
    line-height: normal;

    margin-top: 40px;

    text-transform: uppercase;
}

.formula .line .num span{
    color: #a27385;
    font-family: var(--font_family2);
    font-size: 270px;
    font-weight: 250;
    line-height: 170px;

    text-transform: uppercase;
    display: block;
}

.formula .line .num span img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

 

.formula .line .num .note{
    color: #4b3f52;
    font-family: var(--font_family);
    font-size: 24px;
    font-weight: bold;
    line-height: 33px;

    display: flex;

    height: 66px;
    margin-top: 35px;

    text-align: center;

    justify-content: center;
    align-items: center;
    align-content: center;
}


.article{
    margin-top: 70px;
}
.article .box{
    padding: 44px 69px 57px;

    background: #efd2cc;
}
.article .text_block h3{
    color: #a27385;
    font-weight: 400;

    margin-bottom: 12px;

    text-transform: uppercase;
}


.components{
    margin-top: 122px;
}
.article + .components{
    margin-top: 78px;
}
.components .main_title{
    margin-bottom: 60px;
}
.components .grid{
    margin-bottom: -21px;
    margin-left: -19px;
}
.components .grid .item{
    width: calc(25% - 19px);
    margin-bottom: 21px;
    margin-left: 19px;
}
.components .item button{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 100%;

    cursor: pointer;
    text-align: left;

    border: none;
    background-color: transparent;
}
.components .item button .bg{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
}
.components .item button .letter{
    color: #fff;
    font-size: 208px;
    font-weight: bold;
    line-height: 100%;

    position: absolute;
    z-index: 1;
    bottom: 6px;
    left: 0;

    width: 100%;

    text-align: center;
    letter-spacing: -.02em;

    opacity: .34;
}
.components .item button .title{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 100%;

    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    padding: 32px 28px;

    transition: .2s linear;
    letter-spacing: -.02em;
}
.components .item button:hover .title{
    transform: translateY(-15px);
}

/*---------------
   Footer
---------------*/
footer{
    color: #4b3f52;
    font-size: 20px;
    line-height: 120%;

    position: relative;

    margin-top: 68px;
    padding: 50px 0 45px;

    letter-spacing: .05em;
    text-transform: uppercase;
}
footer .bg{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
    object-position: 50% 0;
}
footer:before{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(202, 98, 132, .15);
}
footer .cont{
    position: relative;
    z-index: 5;
}
footer .columns{
    margin-bottom: -50px;
    margin-left: -50px;

    justify-content: space-between;
    flex-wrap: nowrap;
}
footer .columns .col{
    margin-bottom: 50px;
    margin-left: 50px;
}
footer .title{
    color: #4b3f52;
    font-size: 20px;
    font-weight: bold;
    line-height: 27px;

    margin-bottom: 24px;

    letter-spacing: .05em;
    text-transform: uppercase;
}
footer .logo{
    max-width: 134px;
}
footer .logo img{
    display: block;

    max-width: 100%;
}
footer .socials{
    margin-top: 30px;
    margin-bottom: -10px;
    margin-left: -10px;
}
footer .socials .soc{
    margin-bottom: 5px;
    margin-left: 5px;
}
footer .socials .soc .icon{
    display: block;

    width: 24px;
    height: 24px;

    transition: .2s linear;

    fill: #4b3f52;
}
footer .socials .soc:hover .icon{
    fill: #000;
}

a.soc.youtube {
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url(/images/icon_youtube_1.svg) no-repeat;
	transition: .2s linear;
}

a.soc.youtube:hover {
    background: url(/images/icon_youtube.svg) no-repeat;
}





footer .contact{
    color: #4b3f52;
    font-size: 20px;
    line-height: 27px;

    margin-top: 43px;

    letter-spacing: .05em;
    text-transform: uppercase;
}
footer .contact a{
    color: #4b3f52;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}
footer .contact a:hover{
    border-color: currentColor;
}
footer .contact .mail{
    margin-top: 10px;
}
footer .menu{
    margin-bottom: -30px;
    margin-left: -90px;

    justify-content: space-between;
}
footer .menu .item{
    /*margin-bottom: 30px;*/
    margin-left: 90px;
}
footer .menu .item button{
    color: #4b3f52;
    font-size: 17px;
    font-weight: bold;
    line-height: 23px;
    font-family: var(--font_family);
    text-align: left;

    cursor: pointer;
    transition: .2s linear;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: none;
    border-bottom: 2px solid transparent;
    background-color: transparent;

    margin-bottom: 22px;
}
footer .menu .item button:hover{
    border-color: currentColor;
}

/*---------------
   PopUp
---------------*/
.fancybox-slide--html .fancybox-close-small{
    color: #4d4d4d;

    top: 17px;
    right: 37px;

    padding: 0;
}
.modal{
    display: none;
    visibility: visible !important;

    width: 1149px;
    max-width: 100%;
    padding: 54px 78px 50px 58px;

    background: #fff;
}

.modal_review{
    width: 700px;
    padding: 50px;
}

.modal_success{
    width: 700px;
    padding: 50px;
}

.modal_title{
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    color: #4D4D4D;
}

.modal .nav{}
.modal .nav button{
    width: 19px;
    height: 35px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    z-index: 10;
}
.modal .nav button svg{
    display: block;
    width: 19px;
    height: 35px;
    transition: .2s linear;
    fill: #000;
    opacity: 0.25;
}
.modal .nav button:hover svg{
    opacity: 1;
}
.modal .nav button.prev{
    left: 25px;
}
.modal .nav button.next{
    right: 25px;
}
.modal .nav button.next svg{
    transform: rotate(180deg);
}

.modal_data{
    margin-top: 30px;
}

.modal.component_modal{
    width: 1073px;
    padding: 0;
}
.component_modal .data{
    position: relative;

    display: flex;

    width: 100%;
    min-height: 715px;
    padding: 87px 83px 50px;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.component_modal .bg{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 10px;
    height: 100%;
    min-height: 10px;

    object-fit: cover;
    object-position: 0 0;
}
.component_modal .content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 370px;
}
.component_modal .text_block{
    font-size: 16px;
    line-height: 19px;
}
.component_modal .text_block.small{
    max-width: 287px;
}
.component_modal .text_block.medium{
    max-width: 300px;
}

.component_modal .read_more{
    display: none;
}
.component_modal .read_more button{
    color: #a27385;
    font-size: 14px;
    line-height: 120%;
    cursor: pointer;
    transition: .2s linear;
    letter-spacing: -.02em;
    border: none;
    border-bottom: 1px solid;
    background-color: transparent;
}
.component_modal .read_more button:hover{
    border-color: transparent;
}

.product_info{
    justify-content: space-between;
}
.product_info .image{
    width: calc(43% - 18px);
}
.product_info .image .thumb{
    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 100%;

    background: rgba(247, 145, 157, .1);
}
.product_info .image .thumb .img{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 15px;

    justify-content: center;
    align-items: center;
    align-content: center;
}
.product_info .image .thumb img{
    display: block;

    max-width: 100%;
    max-height: 100%;
}
.product_info .data{
    width: calc(57% - 22px);
}
.product_info .data .name{
    color: #4d4d4d;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;

    letter-spacing: -.02em;
}
.product_info .data .name b{
    font-weight: 700;
}
.product_info .data .volume{
    color: #4d4d4d;
    font-size: 17px;
    line-height: 120%;

    margin-top: 6px;

    letter-spacing: -.02em;
}
.product_info .data .desc{
    margin-top: 8px;
}
.product_info .data .desc .text_block{
    color: #4d4d4d;
    font-size: 16px;
    line-height: 19px;
}
.product_info .data .desc .hidden{
    display: none;
}
.product_info .data .desc .read_more{
    margin-top: 7px;
}
.product_info .data .desc .read_more button{
    color: #a27385;
    font-size: 14px;
    line-height: 120%;

    cursor: pointer;
    transition: .2s linear;
    letter-spacing: -.02em;

    border: none;
    border-bottom: 1px solid;
    background-color: transparent;
}
.product_info .data .desc .read_more button:hover{
    border-color: transparent;
}
.product_info .brands{
    margin-top: 28px;
}
.product_info .brands .grid{
    margin-bottom: -14px;
    margin-left: -14px;
}
.product_info .brands .grid .item{
    display: flex;

    height: 37px;
    margin-bottom: 14px;
    margin-left: 14px;
    padding: 5px 15px;

    transition: .2s linear;

    border: 1px solid #ebd5dd;
    border-radius: 25px;

    justify-content: center;
    align-items: center;
    align-content: center;
}
.product_info .brands .grid .item:hover{
    background: #ebd5dd;
}
.product_info .brands .grid .item img{
    display: block;
    max-width: 90%;
    max-height: 90%;
}
.product_info .links{
    margin-top: 25px;
    margin-bottom: -15px;
    margin-left: -28px;

    align-items: center;
    align-content: center;
}
.product_info .links .link{
    margin-bottom: 15px;
    margin-left: 28px;
}
.product_info .links .link a{
    color: #a27385;
    font-size: 14px;
    line-height: 120%;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: -.02em;

    border-bottom: 1px solid;
}
.product_info .links .link a:hover{
    border-color: transparent;
}
.product_info .links .link .link_btn{
    color: #4d4d4d;
    font-size: 17px;
    line-height: 35px;

    display: block;

    height: 37px;
    padding: 0 25px;

    letter-spacing: -.02em;

    border: 1px solid #ebd5dd;
    border-radius: 25px;
}
.product_info .links .link .submit_btn{
    color: #4d4d4d;
    font-family: var(--font_family);
    font-size: 17px;

    display: block;

    height: 37px;
    padding: 0 25px;

    cursor: pointer;
    transition: .2s linear;
    letter-spacing: -.02em;

    border: 1px solid #ebd5dd;
    border-radius: 25px;
    background: #fff;
}
.product_info .links .link .link_btn:hover,
.product_info .links .link .submit_btn:hover{
    border-color: #ebd5dd;
    background: #ebd5dd;
}



/* Media */
@media (max-width: 1249px){
    .owl-carousel .owl-nav button.owl-prev{
        left: 5px;
    }
    .owl-carousel .owl-nav button.owl-next{
        right: 5px;
    }
    .buy{

    }
    .price-xml-popup{
        display: block!important;
        margin-right: 50%;
        margin-bottom: 8px;
    }

    .modal{
        padding: 30px;
        padding-right: 50px;
    }

}
@media (max-width: 1020px){
    .price-xml-popup{
        display: block!important;
        margin-right: 50%;
        margin-bottom: 8px;
    }
}
@media (max-width: 1030px){
    .price-xml-popup{
        display: block!important;
        margin-right: 70% !important;
        margin-bottom: 8px;
min-width: 150px;
    }
}
