@charset "utf-8";
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Thin.woff');
        font-weight: 100;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-ThinItalic.woff');
        font-weight: 100;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Light.woff');
        font-weight: 300;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-LightItalic.woff');
        font-weight: 300;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Regular.woff');
        font-weight: normal;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-RegularItalic.woff');
        font-weight: normal;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Medium.woff');
        font-weight: 500;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-MediumItalic.woff');
        font-weight: 500;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Semibold.woff');
        font-weight: 600;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-SemiBoldItalic.woff');
        font-weight: 600;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Bold.woff');
        font-weight: bold;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-BoldItalic.woff');
        font-weight: bold;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Extrabold.woff2');
        font-weight: 800;
        font-style: normal;
}

body{
    font-family: 'Gilroy';
    color: #323232;
    font-size: 16px;
    line-height: 1.6;
}

h1,
.title-h1 {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 600;
}
h2,
.title-h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 600;
}
h3,
.title-h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

h4,
.title-h4 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}
h5,
.title-h5 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}
h6,
.title-h6 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

h1.pagetitle{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 40px;
}
h2.section-title{
    font-size: 32px;
    font-weight: 400;
}
h2.section-title2{
    font-size: 25px;
    font-weight: 500;
}

@media(max-width: 767px) {
    h1,
    .title-h1{
        font-size: 36px;
    }
    h2,
    .title-h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    h3,
    .title-h3 {
        font-size: 25px;
    }

    h4,
    .title-h4 {
        font-size: 20px;
    }
    h5,
    .title-h5 {
        font-size: 18px;
    }
    h6,
    .title-h6 {
        font-size: 16px;
    }
    h1.pagetitle{
        margin-bottom: 20px;
    }
    h2.section-title2{
        font-size: 20px;
    }
}

a {
    color: #FCC633;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #FCC633;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px 2px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    background: #FCC633;
    text-align: center;
    transition: all 300ms ease-out;
    box-shadow: 0px 15px 20px -15px #000000;
}

.btn:hover {
    filter: brightness(115%);
    color: #000;
}
.btn-black{
    background: #000;
    color: #fff;
    box-shadow: none;
}
.btn-black:hover{
    filter: brightness(100%);
    background: #FCC633;
    color: #000;
}
.btn-md{
    height: 40px;
    font-weight: normal;
    font-size: 17px;
}
.btn-lg{
    height: 62px;
    padding-left: 50px;
    padding-right: 50px;
}
.content{
    font-size: 18px;
}

/* Header */
.header{
    background: #fff;
}
.header-top{
    padding: 20px 0;
}
.header-top-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-logo{
    width: 140px;
}
.header-top-left{
    width: calc(50% - 70px);
    padding-right: 30px;
}
.header-top-right{
    width: calc(50% - 70px);
    padding-left: 30px;
    display: flex;
    justify-content: flex-end;
}
.social-buttons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header .social-buttons{
    margin-left: 15px;
}
.social-buttons > div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.social-buttons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #DADADA;
}
.social-buttons a + a{
    margin-left: 6px;
}
.social-buttons a:hover{
    background: #E7E7E7;
}
.social-buttons .path1{
    padding-right: 8px;
    margin-right: 8px;
    position: relative;
}
.social-buttons .path1:after{
    content: "";
    background: #707070;
    height: 18px;
    width: 1px;
    position: absolute;
    right: 0;
    top: calc(50% - 9px);
}
.header-search input[type="text"]{
    height: 30px;
    width: 370px;
    max-width: 100%;
    border: 1px solid #BABABA;
    border-radius: 96px;
    color: #C7C7C7;
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    padding: 0 35px 0 15px;
}
.header-search button{
    padding: 0;
    border: none;
    background: transparent;
    position: absolute;
    right: 10px;
    top: 5px;
}
.header-phones-title{
    color: #8B8B8B;
    font-size: 15px;
    font-weight: 300;
    padding-left: 18px;
}
.header-phones-items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-phones-items .item + .item{
    margin-left: 20px;
}
.header-phones-items .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-phones-items .item-icon{
    width: 14px;
    line-height: 1;
    position: relative;
    top: -1px;
}
.header-phones-items .item-value{
    width: calc(100% - 14px);
    padding-left: 4px;
}
.header-phones-items .item a{
    font-weight: 700;
    font-size: 14px;
    color: #323232;
}
.header-phones-items .item a:hover{
    color: #FCD05A;
}

.header-nav > ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.header-nav > ul > li{
    padding: 0 32px;
}
.header-nav a{
    color: #323232;
    display: inline-flex;
    padding-bottom: 5px;
    position: relative;
}
.header-nav a:hover{
    color: #FCD05A;
}
.header-nav > ul > li.active > a:after{
    content: "";
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/wave1.svg) 0 0 repeat-x;
}

.header-search-btn-open,
.search-close{
    display: none;
}

@media(max-width: 1299px){
    .header-search input[type="text"]{
        width: 270px;
    }
}
@media(max-width: 1099px){
    .header-search input[type="text"]{
        width: 200px;
    }
}
@media(max-width: 991px){
    .header-top-inner{
        justify-content: space-between;
    }
    .header-phones-items{
        display: block;
    }
    .header-phones-items .item + .item{
        margin-left: 0;
    }
    .header-phones-title{
        font-size: 13px;
    }
    .header-logo{
        order: 1;
    }
    .header-top-right{
        order: 2;
        width: auto;
    }
    .header-top-left{
        order: 3;
        width: auto;
        padding-right: 0;
        padding-left: 30px;
    }
    .header-nav > ul > li {
        padding: 0 20px;
    }
}
@media(max-width: 767px){
    .header-bottom{
        display: none;
    }
    .header-top{
        padding: 9px 0;
        box-shadow: 0 0 3px rgba(0,0,0,0.2);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 600;
        background: #fff;
        height: 60px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .header-top-push{
        height: 60px;
    }
    .header-top-left{
        order: 2;
    }
    .header-top-right{
        order: 3;
        padding-left: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .header-phones-title{
        display: none;
    }
    .header-phones-items{
        display: flex;
        justify-content: flex-end;
    }
    .header-phones-items .item + .item{
        padding-left: 20px;
    }
    .header-logo{
        width: 70px;
    }
    .header-top-right{
        padding-left: 0;
    }
    .header-search-btn-open{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
    }
    .header-search{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 50;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 15px;
        display: none;
    }
    .header-search.active{
        display: flex;
    }
    .header-search form{
        width: calc(100% - 20px);
        padding-right: 15px;
    }
    .header-search input[type="text"]{
        width: 100%;
    }
    .search-close{
        line-height: 1;
        width: 20px;
        cursor: pointer;
        transition: all ease-out 300ms;
        display: block;
        position: relative;
        bottom: -1px;
    }
}
@media(max-width: 699px){
    .header-phones-items{
        display: block;
    }
    .header-phones-items .item + .item{
        padding-left: 0;
    }
    .header-phones-items{
        line-height: 1.2;
    }
    .header-top-left{
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-top-inner{
        justify-content: flex-end;
    }
    .header-logo{
        margin-right: auto;
    }
}
@media(max-width: 499px){
    .icon-menu-burger:before{
        top: -7px;
    }
    .icon-menu-burger:after{
        bottom: -7px;
    }
    .menu-button{
        margin-left: 15px;
    }
    .header .social-buttons a{
        width: 28px;
        height: 28px;
    }
    .header .social-buttons{
        margin-left: 10px;
    }
    .header-top-left{
        padding-left: 10px;
        padding-right: 15px;
    }
    .header-phones-items .item a{
        font-size: 2.8vw;
    }
    .header-phones-items .item-value{
        padding-left: 0;
    }
}
@media(max-width: 399px){
    .header-phones-items .item{
        display: block;
        line-height: 1;
    }
    .header-phones-items .item-value{
        width: auto;
    }
    .header-phones-items .item-icon{
        display: none;
    }
    .header .social-buttons{
        display: none;
    }
}
/* /. Header */

/* first-section */
.first-section{
    position: relative;
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-color: #000;
}
.first-section:before{
    content: "";
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: url(../images/fs-wave-top.svg) 0 0 repeat-x;
    z-index: 1;
}
.first-section:after{
    content: "";
    height: 36px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/fs-wave-bottom.svg) bottom 0 left 0 repeat-x;
    z-index: 1;
}
.first-section-top{
    min-height: 380px;
    padding: 100px 0 50px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.first-section-top h1{
    margin-bottom: 0;
    font-weight: 400;
    font-size: 45px;
    line-height: 1.4;
}
.first-section-top h1:first-line{
    font-weight: 500;
    font-size: 60px;
}
.fs-bottom-description{
    text-align: center;
    padding: 50px 0 60px;
    font-size: 22px;
    color: #fff;
}
.fs-features{
    min-height: 254px;
    background: url(../images/fs-features-bg.png) 0 50% repeat-x;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 50px;
}
.fs-features-items{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-left: -15px;
    margin-right: -15px;
}
.fs-features-items .col{
    padding-left: 15px;
    padding-right: 15px;
    width: 25%;
}
.fs-features-items .item-icon{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.fs-features-items .item-text{
    font-size: 15px;
    color: #FCD05A;
    line-height: 1.3;
}
.fs-features-items .col:nth-child(2),
.fs-features-items .col:nth-child(4){
    transform: translateY(-30%);
}

@media(max-width: 1599px){
    .first-section-mask{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, rgb(0 0 0 / 70%) 35%, rgba(0, 0, 0, 0.3) 78.79%);
    }
    .fs-main{
        position: relative;
        z-index: 5;
    }
}
@media(max-width: 1489px){
    .first-section-top{
        min-height: 25vw;
    }
    .fs-features{
        align-items: center;
        padding-bottom: 0;
    }
    .fs-features-items .col:nth-child(2), 
    .fs-features-items .col:nth-child(4) {
        transform: none;
    }
}
@media(max-width: 1299px){
    .fs-bottom-description{
        font-size: 20px;
    }
    .fs-bottom-description br{
        display: none;
    }
}
@media(max-width: 991px){
    .fs-features-items{
        margin-left: -10px;
        margin-right: -10px;
    }
    .fs-features-items .col{
        padding-left: 10px;
        padding-right: 10px;
    }
    .fs-features-items .item-icon{
        margin-bottom: 7px;
    }
    .fs-features-items .item-text{
        font-size: 13px;
    }
    .first-section-top h1{
        font-size: 4.5vw;
    }
    .first-section-top h1:first-line{
        font-size: 6vw;
    }
    .first-section:before,
    .first-section:after{
        background-size: 100% auto;
    }
}
@media(max-width: 767px){
    .first-section{
        background: #000 !important;
    }
    .fs-img-xs{
        margin-top: 40px;
        border-radius: 20px;
        overflow: hidden;
    }
    .first-section:before{
        display: none;
    }
    .first-section-top{
        padding: 30px 0 0;
    }
    .fs-features{
        background: rgba(0,0,0,0.6);
        min-height: 1px;
        padding: 40px 0 0;
    }
    .fs-features-items{
        justify-content: center;
    }
    .fs-features-items .col{
        width: 180px;
        max-width: 50%;
        margin-bottom: 20px;
    }
    .first-section-top h1{
        text-align: center;
    }
    .fs-bottom-description{
        padding: 15px 0 35px;
        font-size: 16px;
    }
    .first-section-top h1{
        font-size: 6vw;
    }
    .first-section-top h1:first-line{
        font-size: 8vw;
    }
}
/* /. first-section */

/* categories */
.categories-section{
    width: 100%;
    overflow: hidden;
}
.categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 20px;
}
.categories .col{
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.categories .item{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.categories .item img{
    width: 100%;
    transition: all ease-out 1000ms;
}
.categories .item-title{
    height: 64px;
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    padding: 7px;
    background: #000;
    color: #AEAEAE;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 300;
    transition: all ease-out 300ms;
    text-align: center;
}
.categories .item:hover .item-title{
    color: #fff;
}
.categories .item:hover img{
    transform: scale(1.1);
}

@media(max-width: 1489px){
    .categories{
        margin-left: -15px;
        margin-right: -15px;
    }
    .categories .col{
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }
}
@media(max-width: 1199px){
    .categories .col{
        width: 33.3333%;
    }
}
@media(max-width: 991px){
    .categories{
        margin-left: -10px;
        margin-right: -10px;
    }
    .categories .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .categories .item-title{
        height: 6.4vw;
        bottom: 2vw;
        left: 1vw;
        right: 1vw;
        padding: 0.5vw;
        font-size: 2vw;
    }
}
@media(max-width: 599px){
    .categories{
        padding-top: 0;
        margin-left: -7px;
        margin-right: -7px;
    }
    .categories .col{
        width: 50%;
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }
    .categories .item-title{
        height: 10.5vw;
        bottom: 3.33vw;
        left: 1.66vw;
        right: 1.66vw;
        padding: 1vw;
        font-size: 3.33vw;
    }
}
/* /. categories */

/* footer */
.footer {
    background: #000;
    color: #fff;
    font-size: 14px;
}
.footer a:not(.btn){
    color: #fff;
}
.footer a:not(.btn):hover{
    color: #FCD05A;
}
.development-wrapper{
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.development{
    display: flex;
    justify-content: flex-end;
    width: 130px;
}
.development a{
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 8px;
    line-height: 140.62%;
    letter-spacing: 0.01em;
}
.development-icon{
    margin-left: 8px;
    display: inline-block;
    position: relative;
}
.development-icon img{
    position: relative;
    z-index: 2;
}
.development-icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: 4px;
    bottom: 4px;
    background: rgb(255 255 255 / 24%);
}
.footer-inner{
    display: flex;
    flex-wrap: wrap;
}
.footer-left{
    width: 540px;
    max-width: 100%;
    padding-right: 30px;
}
.footer-right{
    width: calc(100% - 540px);
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-nav{
    width: calc(100% - 210px);
    max-width: 370px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-nav .col{
    width: calc(50% - 15px);
}
.footer-contacts{
    width: 210px;
}

.footer-logo{
    margin-bottom: 30px;
}
.footer-text1{
    margin-bottom: 20px;
}
.footer-text2{
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.7;
    font-size: 12px;
}
.footer-policy{
    margin-bottom: 10px;
    font-size: 12px;
}
.footer-policy a{
    color: #FCD05A;
}
.footer-policy a:hover{
    color: #fff;
}
.footer-copyright{
    font-size: 10px;
}

.footer-right .item-title{
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 7px;
    display: inline-block;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.footer-nav li{
    margin-bottom: 5px;
}
.footer-nav a{
    text-decoration: underline;
}
.footer-nav a:hover{
    text-decoration: none;
}
.footer-contacts{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}
.footer-contacts-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.footer-contacts-item .item-icon{
    width: 18px;
}
.footer-phone a{
    font-weight: 700;
}
.footer-phone .item-icon{
    position: relative;
    top: -2px;
}
.footer .social-buttons{
    margin: 20px 0 30px;
}

@media(max-width: 1199px){
    .footer-left{
        width: 40%;
        padding-right: 30px;
    }
    .footer-right{
        width: 60%;
    }
}
@media(max-width: 991px){
    .footer-left{
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .footer-right{
        width: 100%;
        justify-content: space-between;
    }
}
@media(max-width: 599px){
    .footer-nav{
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .development-wrapper{
        justify-content: flex-start;
        margin-top: 50px;
    }
    .development{
        justify-content: flex-start;
    }
}
/* /. footer */

/* application-section */
.application-section{
    position: relative;
    background: #F2F2F2;
    color: #000;
}
.application-section:before{
    content:"";
    background: url(../images/wave2.svg) 0 0 repeat-x;
    height: 38px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.application-section .container-min{
    width: 710px;
    margin: auto;
    max-width: 100%;
}
.application-section h2{
    margin-top: 20px;
    margin-bottom: 10px;
}
.section-intro{
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}
.form-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-row .form-group{
    width: calc(50% - 7px);
}
.form-bottom{
    align-items: center;
    width: 80%;
    margin: auto;
}
.simple-agreement{
    font-size: 14px;
    line-height: 1.2;
}
.simple-agreement a{
    color: #000;
    text-decoration: underline;
}
.simple-agreement a:hover{
    text-decoration: none;
}
.fancybox_modal .simple-agreement{
    font-size: 12px;
    opacity: 0.3;
    margin-bottom: 15px;
}

@media(max-width: 767px){
    .form-bottom{
        width: 100%;
        text-align: center;
    }
}
@media(max-width: 599px){
    .form-row .form-group{
        width: 100%;
    }
    .simple-agreement{
        margin-bottom: 20px;
    }
}
/* /. application-section */

/* about-section */
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-section-inner .col1{
    width: calc(100% - 300px);
    padding-right: 50px;
}
.about-section-inner .col2{
    width: 300px;
    text-align: center;
}
.about-section h3{
    font-weight: 400;
    font-size: 60px;
    margin-bottom: 30px;
}
.about-section h3 span{
    display: inline-block;
    position: relative;
    padding-bottom: 7px;
}
.about-section h3 span:after{
    content:"";
    height: 5px;
    background: url(../images/wave-line.svg) 0 0 repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.about-section .num{
    font-size: 300px;
    font-weight: 700;
    line-height: 0.9;
    color: #000;
}
.about-section .num-description{
    font-weight: 500;
    font-size: 20px;
    color: #A5A5A5;
    line-height: 1.3;
}
.about-section .num-description strong{
    color: #000;
    font-weight: 500;
}
@media(min-width: 992px){
    .base-template .about-section-inner .col1{
        width: calc(100% - 200px);
    }
    .base-template .about-section-inner .col2{
        width: 200px;
        text-align: center;
    }
    .base-template .num{
        font-size: 200px;
    }
}
@media(max-width: 991px){
    .about-section-inner .col1{
        width: calc(100% - 200px);
        padding-right: 40px;
    }
    .about-section-inner .col2{
        width: 200px;
    }
    .about-section .content{
        font-size: 17px;
    }
    .about-section h3{
        font-size: 50px;
        margin-bottom: 25px;
    }
    .about-section .num{
        font-size: 200px;
    }
    .about-section .num-description{
        font-size: 18px;
    }
}
@media(max-width: 699px){
    .about-section-inner .col1{
        width: calc(100% - 150px);
        padding-right: 30px;
    }
    .about-section-inner .col2{
        width: 150px;
    }
    .about-section .content{
        font-size: 16px;
    }
    .about-section h3{
        font-size: 40px;
    }
    .about-section .num{
        font-size: 150px;
    }
    .about-section .num-description{
        font-size: 17px;
    }
}
@media(max-width: 599px){
    .about-section-inner{
        align-items: flex-start;
    }
}
@media(max-width: 499px){
    .about-section-inner .col1{
        width: 70%;
        padding-right: 6vw;
    }
    .about-section-inner .col2{
        width: 30%;
    }
    .about-section .content{
        font-size: 3.2vw;
    }
    .about-section h3{
        font-size: 8vw;
    }
    .about-section .num{
        font-size: 30vw;
    }
    .about-section .num-description{
        font-size: 3.4vw;
    }
}
/* /. about-section */

/* news */
.news{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.news .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.news .item-img{
    margin-bottom: 15px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.news .item-img img{
    width: 100%;
    border-radius: 3px;
    transition: all ease-out 1000ms;
}
.news .item-img:hover img{
    transform: scale(1.1);
}
.news .item-date{
    color: #929292;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
}
.news .item-title{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.news .item-title a{
    color: #333;
}
.news .item-title a:hover{
    color: #FCD05A;
}
.news .item-intro{
    color: #8B8B8B;
    font-size: 14px;
    margin-bottom: 10px;
}
.news .item-more a{
    color: #949596;
    text-decoration: underline;
}
.news .item-more a:hover{
    text-decoration: none;
}
.news-page-section-inner .item{
    overflow: hidden;
    position: relative;
}
.news .item-img .video-link,
.news-page-section-inner .video-link{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-indent: -99999px;
    background: url(../images/play.svg) 50% 50% / 55px 55px no-repeat;
}
.news-page-section-inner .video-link:hover{
    transform: scale(1.1);
}

.news-carousel-wrapper{
    width: 100%;
    overflow: hidden;
}
.news-carousel:not(.slick-slider){
    visibility: hidden;
}
.news-carousel.slick-slider{
    display: block;
}
.news-carousel > div:not(:first-of-type){
    display: none;
}
.news-carousel .col{
    width: 455px;
    max-width: 100%;
}
@media(max-width: 1399px){
    .news-carousel-wrapper{
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media(max-width: 991px){
    .news{
        margin-left: -10px;
        margin-right: -10px;
    }
    .news .col{
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media(max-width: 767px){
    .news .col{
        width: 50%;
    }
}
@media(max-width: 499px){
    .news .item-title{
        font-size: 17px;
    }
    .news .item-intro{
        font-size: 13px;
    }
}
@media(max-width: 399px){
    .news .col{
        width: 100%;
    }
    .news .item-title{
        font-size: 18px;
    }
    .news .item-intro{
        font-size: 14px;
    }
}
/* /. news */

/* special-products-carousel */
.special-products-carousel-wrapper{
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}
.special-products-carousel .slick-track{
    padding: 20px 0;
}
.special-products-carousel > div:not(:first-of-type){
    display: none;
}
.special-products-carousel .col{
    padding-left: 15px;
    padding-right: 15px;
    transition: all ease-out 300ms;
    text-align: center;
}

@media(min-width: 1400px){
    .special-products-carousel .slick-center{
        transform: scale(1.08);
    }
}
.special-products-carousel .item{
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    max-height: 380px;
}
.special-products-carousel .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.special-products-carousel .item:after{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 67.94%, rgba(0, 0, 0, 0.45) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.special-products-carousel .item-title{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 5;
}
.special-products-carousel .slick-prev{
    top: auto;
    bottom: -50px;
    left: calc(50% - 45px);
}
.special-products-carousel .slick-next{
    top: auto;
    bottom: -50px;
    right: calc(50% - 45px);
}

@media(max-width: 1399px){
    .special-products-carousel .slick-track{
        padding: 0;
    }
}
@media(max-width: 599px){
    .special-products-carousel .item{
        border-radius: 20px;
    }
    .special-products-carousel .col{
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* /. special-products-carousel */

/* Breadcrumbs */
.breadcrumb{
    margin: 35px 0;
    font-size: 12px;
    color: #A1A0A0;
}
.breadcrumb > li {
    display: inline;
    white-space: nowrap;
}
.breadcrumb > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.breadcrumb > li > a:after {
    content: '—';
    display: inline-block;
    margin: 0 5px 0 10px;
}
.breadcrumb > li > a{
    color: #A1A0A0;
}
.breadcrumb > li > a:hover{
    color: #000;
}
.breadcrumb span,
.breadcrumb a{
    display: inline-block;
}
.breadcrumb span:first-letter,
.breadcrumb a:first-letter{
    text-transform: capitalize;
}
@media(max-width: 991px){
    .breadcrumb{
        display: flex;
        overflow: auto;
        margin-bottom: 25px;
    }
}
/* /. Breadcrumbs */

/* news-page-section-inner */
.news-page-section-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-page-section-inner .col{
    width: calc(50% - 15px);
}
.news-page-section-inner .col3{
    width: 100%;
}
.news-page-section .page-date{
    margin-bottom: 10px;
    font-size: 14px;
    color: #929292;
}
.news-page-gallery .item{
    margin-bottom: 30px;
}
.news-page-gallery .item img{
    width: 100%;
    border-radius: 3px;
}

@media(max-width: 991px){
    .news-page-section-inner .col1{
        width: calc(40% - 15px);
    }
    .news-page-section-inner .col2{
        width: calc(60% - 15px);
    }
}
@media(max-width: 767px){
    .news-page-section-inner .col1{
        width: 100%;
        order: 2;
    }
    .news-page-section-inner .col2{
        width: 100%;
        order: 1;
        margin-bottom: 40px;
    }
}
/* /. news-page-section-inner */

/* contacts-page-section */
.contacts-page-section-inner{
    display: flex;
    flex-wrap: wrap;
}
.contacts-page-section-inner .col1{
    width: 620px;
    padding-right: 50px;
}
.contacts-page-section-inner .col2{
    width: calc(100% - 620px);
}
.contacts-page-section-inner .map{
    margin-bottom: 40px;
}
.application-form-block{
    background: #F2F2F2;
    border-radius: 12px;
    padding: 30px 60px;
    margin-bottom: 30px;
}
.application-form-block-title{
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 24px;
}
.legal-entity{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}
.contacts-page-items + .contacts-page-items{
    margin-top: 40px;
}
.contacts-page-items .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.contacts-page-items .item-key{
    width: 150px;
}
.contacts-page-items .item-value{
    width: calc(100% - 150px);
    padding-left: 15px;
}
.contacts-page-items strong{
    font-weight: 600;
}

@media(max-width: 1399px){
    .contacts-page-section-inner .col1{
        width: 570px;
        padding-right: 30px;
    }
    .contacts-page-section-inner .col2{
        width: calc(100% - 570px);
    }
    .application-form-block {
        padding: 30px 40px;
    }
}
@media(max-width: 1199px){
    .contacts-page-section-inner .col1{
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .contacts-page-section-inner .col2{
        width: 100%;
    }
}
@media(max-width: 429px){
    .contacts-page-items .item{
        font-size: 12px;
    }
    .contacts-page-items .item-key{
        width: 110px;
    }
    .contacts-page-items .item-value{
        width: calc(100% - 110px);
        padding-left: 7px;
    }
    .application-form-block{
        padding: 25px 20px 40px;
    }
}
/* /. contacts-page-section */


/* category-page-columns */
.category-page-columns{
    display: flex;
    flex-wrap: wrap;
}
.category-page-columns .col1{
    width: 280px;
}
.category-page-columns .col2{
    width: calc(100% - 280px);
    padding-left: 30px;
}

/* Aside menu */
.aside-menu{
    margin-bottom: 20px;
    background: #F6F6F6;
    border-radius: 7px;
    padding: 16px 8px 16px 0;
}
.aside-menu li{
    position: relative;
}
.aside-menu > ul > li{
    padding-right: 14px;
}
.aside-menu a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    padding: 0 20px;
    height: 44px;
    position: relative;
}
.aside-menu a:hover,
.aside-menu ul ul .active > a{
    color: #D49A00;
}
.aside-menu > ul > li.active > a{
    color: #fff !important;
    background: #D49A00;
}
.aside-menu > ul > li.active > ul{
    padding-top: 15px;
}

.aside-menu > ul > li.active > a:after {
    content: "";
    border-left: 14px solid #D49A00;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -14px;
}

.aside-menu .active > ul{
    display: block;
}

.aside-menu > ul .dropdown-button{
    height: 44px;
    width: 30px;
    display: block;
    z-index: 20;
    top: 0;
    right: 3px;
    position: absolute;
    cursor: pointer;
}

.aside-menu > ul .dropdown-button:after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 13px;
    top: 50%;
    right: 17px;
    background: #000;
    margin-top: -6px;
}
.aside-menu>ul .dropdown-button.active:after{
    display: none;
}
.aside-menu>ul .dropdown-button:before{
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 1px;
    top: 50%;
    right: 17px;
    background: #000;
    margin-right: -6px;
}
.aside-menu li:hover > .dropdown-button:after,
.aside-menu li:hover > .dropdown-button:before{
    background: #D49A00;
}
.aside-menu > ul > li.active > .dropdown-button:after,
.aside-menu > ul > li.active > .dropdown-button:before{
    background: #fff !important;
}

.aside-menu ul ul > li.active > .dropdown-button:after,
.aside-menu ul ul > li.active > .dropdown-button:before{
    background: #D49A00 !important;
}

.aside-menu ul ul {
    display: none;
    padding-left: 30px;
    padding-bottom: 15px;
}

.aside-menu ul ul a {
    height: auto;
    padding: 7px 0;
    font-size: 14px;
    position: relative;
}
.aside-menu ul ul .dropdown-button{
    height: 30px;
    width: 13px;
    right: 5px;
}
.aside-menu ul ul .dropdown-button:before{
    right: 0;
}
.aside-menu ul ul .dropdown-button:after{
    right: 0;
}
.aside-menu ul ul ul{
    padding-left: 10px;
}
/* /. Aside menu */

.catalog{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.catalog .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 65px;
    display: flex;
    flex-wrap: wrap;
}
.catalog .item{
    height: 100%;
    width: 100%;
    background: #F7F7F7;
    padding: 3px;
    border-radius: 2px;
    font-size: 13px;
    color: #787777;
    display: flex;
    flex-direction: column;
}
.catalog .item-img img{
    border-radius: 2px;
    width: 100%;
}
.catalog .item-body{
    padding: 10px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.catalog .item-article{
    margin-bottom: 3px;
    min-height: 21px;
}
.catalog .item-body-bottom{
    padding: 12px 0 7px;
}
.item-avl{
    position: relative;
    padding-left: 10px;
    color: #3E8A00;
}
.item-avl:before{
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #3E8A00;
    position: absolute;
    left: 0;
    top: 7px;
}
.item-avl.avl-false{
    color: red;
}
.item-avl.avl-false:before{
    background: red;
}
.catalog .item-title{
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    margin: 5px 0 15px;
}
.catalog .item-title a{
    color: #000;
}

.property-list-row {
    margin-bottom:5px; 
    width:100%; 
    display:flex; 
    align-items:flex-end;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
}
.property-list-name {
    width:100%; 
    background:url(../images/dot.svg) 0 calc(100% - 6px) repeat-x; 
    flex-grow:0; 
    padding-right:4px;
}
.property-list-name span {
    background-color:#F6F6F6; 
    box-shadow:-5px 0 0 #F6F6F6,5px 0 0 #F6F6F6;
}
.property-list-value {
    display:inline-block; 
    padding-left:5px; 
    flex-grow:0;
    text-align:right; 
    background:url(../images/dot.svg) 0 calc(100% - 6px) repeat-x; 
    width:100%;
}
.property-list-value span {
    background-color:#F6F6F6; 
    box-shadow:-5px 0 0 #F6F6F6,5px 0 0 #F6F6F6;
}

.tabs-gallery-section{
    position: relative;
}
.tabs-gallery-buttons{
    position: absolute;
    z-index: 10;
    left: 7px;
    bottom: 7px;
    display: flex;
    flex-wrap: wrap;
}
.tabs-gallery-buttons li{
    width: 42px;
    height: 4px;
    border-radius: 9px;
    background: #E1E1E1;
    cursor: pointer;
    max-width: calc(20% - 5px);
}
.tabs-gallery-buttons li.current{
    background: #A4A4A4;
}
.tabs-gallery-buttons li + li{
    margin-left: 5px;
}
.tabs-gallery-box{
    display: none;
}
.tabs-gallery-box.visible{
    display: block;
}

.product-tags{
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 0;
}
.product-tag{
    display: flex;
    height: 26px;
    width: 80px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    position: relative;
    background: #000;
}
.product-tag + .product-tag{
    margin-top: 7px;
}
.product-tag:after {
    content: "";
    border-left: 7px solid #000;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -7px;
}
.product-tag-new{
    background: #7BC73D;
}
.product-tag-new:after{
    border-left-color: #7BC73D;
}

.product-tag-popular{
    background: #DD5651;
}
.product-tag-popular:after{
    border-left-color: #DD5651;
}
.category-page-main-column-header{
    display: flex;
    flex-wrap: wrap;
}
.category-page-main-column-header h1{
    width: calc(100% - 120px);
    padding-right: 30px;
    margin-bottom: 20px;
}
.sort-block {
    margin-bottom: 20px;
    width: 120px;
    padding-top: 3px;
}
.category-page-columns .sort-block a{
    color: #000;
    cursor: pointer !important;
}
#mse2_sort {
    display: block !important;
    text-align: right;
}
#mse2_sort span:after {
    content: "↑";
}
.reset-filters-btn {
    margin-top: 8px;
    border: none;
    padding: 0;
    background: transparent;
    color: #F65454;
    display: inline-flex;
    align-items: center;
    transition: all ease-out 300ms;
    white-space: nowrap;
    font-size: 13px;
}
.reset-filters-btn.hidden {
    display: none;
}
.reset-filters-btn-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.filters-result-btn {
    order: 1;
    margin-bottom: 10px;
}
.reset-filters-btn {
    order: 2;
}
.reset-filters-btn.hidden + .filters-result-btn {
    display: none;
}

.filter-item-wrapper{
    padding: 24px;
    background: #F6F6F6;
    border-radius: 7px;
    margin-bottom: 20px;
}
.filter-item-title{
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.filter-customcheck {
    position: relative;
    margin-bottom: 10px;
}
.filter-customcheck input[type=checkbox]{
    position: fixed;  
    top: -100000px;
}
.filter-customcheck input[type=checkbox] + label {
    position: relative;
    padding-left: 38px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
}
.filter-customcheck input[type=checkbox] + label:before{
    background: url(../images/check-empty.svg) 0 0 no-repeat #fff;
    content: "";
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 2px;
    left: 0px;
}
.filter-customcheck input[type=checkbox]:checked + label:before{
    background: url(../images/checked.svg) 0 0 no-repeat #fff;
}
.filter-customcheck label:hover{
    color: #333;
}

.boolean-filter .filter-customcheck:first-of-type + .filter-customcheck{
    display: none !important;
}

.not-boolean-filter.open .filter-customcheck-wrap > div{
    display: block;
}

.filter-more-btn {
    display: inline-block;
    position: relative;
    color: #2978c3;
    padding-left: 23px;
    cursor: pointer;
    transition: color ease-out 300ms;
    font-size: 14px;
}
.filter-more-btn:before{
    content:"";
    width: 22px;
    height: 22px;
    position: absolute;
    top: 1px;
    left: 0;
    background: url(../images/down-icon2.svg);
    transition: opacity ease-out 300ms;
}
.filter-more-btn:hover{
    color: #3E5168;
}

.filter-item-wrapper.open .filter-more-btn:after,
.filter-item-wrapper.open .filter-more-btn:before{
    transform: rotate(180deg);
}

.catalog-sidebar-filters .item-dropdown{
    position: relative;
    max-height: 265px;
    overflow: hidden;
}
.catalog-sidebar-filters .ps__rail-y{
    width: 2px;
    background: #CCCCCC !important;
    opacity: 1 !important;
    right: 6px !important;
}
.catalog-sidebar-filters .ps__thumb-y {
    background-color: #D49A00;
    border-radius: 15px;
    transition: none;
    width: 11px;
    right: -4px !important;
    background: #D49A00 !important;
}
.catalog-sidebar-inner-close{
    display: none;
}
.catalog-carousel.slick-slider{
    display: block;
}
.catalog-carousel > div:not(:first-of-type){
    display: none;
}
.catalog-carousel .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.catalog-carousel .slick-slide {
    height: inherit;
}
@media(max-width: 1299px){
    .category-page-columns .col1{
        width: 250px;
    }
    .aside-menu > ul > li > a{
        font-size: 15px;
    }
    .category-page-columns .col2{
        width: calc(100% - 250px);
        padding-left: 20px;
    }
    .catalog{
        margin-left: -10px;
        margin-right: -10px;
    }
    .catalog .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 40px;
    }
}
@media(max-width: 1099px){
    .catalog{
        margin-left: -7px;
        margin-right: -7px;
    }
    .catalog .col{
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 30px;
    }
    .catalog .item-body{
        padding: 10px 5px;
    }
    .catalog .item-title {
        font-size: 18px;
        margin: 5px 0 10px;
    }
    .property-list-row{
        font-size: 13px;
        margin-bottom: 2px;
    }
    .catalog .item-body-bottom{
        padding-bottom: 0;
    }
}
@media(max-width: 991px){
    .catalog .col{
        width: 50%;
    }
    .catalog .item{
        width: 100%;
    }
    .catalog-sidebar-filters .item-dropdown{
        overflow: auto;
    }
}
@media(max-width: 767px){
    .category-page-columns .col1{
        width: 100%;
    }
    .category-page-columns .col2{
        width: 100%;
        padding-left: 0;
    }
    .aside-menu{
        display: none;
    }
    .category-page-main-column-header h1{
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .catalog-sidebar-inner {
        position: fixed;
        top: 61px;
        bottom: -100px;
        right: -320px;
        width: 320px;
        max-width: 100%;
        background-color: #fff;
        z-index: 600;
        padding: 45px 20px 80px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
        height: 100%;
        transition-property: transform;
        transition-duration: .2s;
    }
    .catalog-sidebar-inner.active {
        transform: translateX(-320px);
    }
    .catalog-sidebar-inner-overlay{
        background: rgba(255, 255, 255, 0.8);
        position: fixed;
        top: 60px;
        bottom: -100px;
        left: 0;
        right: 0;
        z-index: -1;
        opacity: 0;
        transition: opacity ease-out 300ms;
    }
    .catalog-sidebar-inner.active + .catalog-sidebar-inner-overlay {
        z-index: 500;
        opacity: 1;
    }
    .catalog-sidebar-scroll {
        height: 100%;
        overflow-y: auto;
    }
    .category-page-main-column-header{
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .filters-open-btn{
        width: 265px;
        box-shadow: none;
        padding-left: 20px;
        padding-right: 20px;
    }
    .filters-open-btn span{
        margin-left: 10px;
    }
    .sort-block {
        margin-bottom: 0;
    }
    .catalog-sidebar-inner-close{
        display: block;
        position: absolute;
        right: 15px;
        top: 10px;
    }
}
@media(max-width: 499px){
    .catalog .item .btn-md{
        height: 32px;
        font-size: 14px;
    }
    .property-list-row{
        font-size: 12px;
    }
}
@media(max-width: 429px){
    .catalog .col{
        width: 100%;
    }
    .filters-open-btn span{
        display: none;
    }
    .filters-open-btn{
        width: 100px;
    }
}
@media (min-width: 768px){
    .catalog.rows4 .col{
        width: 33.3333%;
    }
}
@media (min-width: 992px){
    .reset-filters-btn-wrapper{
        display: block;
    }
    .filters-result-btn {
        display: none !important;
    }
    .catalog.rows4 .col{
        width: 25%;
    }
}


/** /. category-page-columns **/


/* product page */
.product-first-container{
    display: flex;
    flex-wrap: wrap;
}
.product-first-container .product-page-gallery-block{
    width: 55%;
    display: flex;
    flex-wrap: wrap;
}
.product-first-container .product-first-main-block{
    width: 100%;
}
.product-first-container .product-page-gallery-block + .product-first-main-block{
    width: 45%;
    padding-left: 30px;
}

.product-page-peviews-carousel-wrapper{
    width: 70px;
    height: 100%;
    overflow: hidden;
}
.product-page-main-carousel-wrapper {
    width: calc(100% - 70px);
    padding-left: 17px;
    position: relative;
}
.product-page-main-carousel-wrapper-fullwidth{
    width: 100%;
    padding-left: 0;
}
.product-page-peviews-carousel{
    margin-top: -2px;
}
.product-page-main-carousel > div:not(:first-of-type),
.product-page-peviews-carousel > div:not(:first-of-type){
    display: none;
}
.product-page-main-carousel img,
.product-page-peviews-carousel img{
    width: 100%;
}
.product-page-peviews-carousel .col{
    margin-bottom: 7px;
}
.product-page-peviews-carousel .col.slick-current{
    opacity: 1;
}
.product-page-main-carousel .slick-prev{
    width: 50px;
    height: 50px;
    left: 20px;
    top: calc(50% - 25px);
}
.product-page-main-carousel .slick-next{
    width: 50px;
    height: 50px;
    right: 20px;
    top: calc(50% - 25px);
}

.product-first-main-block .item-article{
    color: #888888;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 12px;
}
.product-first-main-block .item-price{
    color: #000;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
}
.product-first-main-block .item-introtext{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.product-first-main-block .item-introtext p:last-of-type{
    margin-bottom: 0;
}
.product-first-main-block .item-avl{
    font-size: 14px;
    margin-bottom: 15px;
}
.product-first-main-block .item-avl:before{
    top: 9px;
}
.product-first-main-block .properties-columns{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.product-first-main-block .properties-columns .col{
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.product-first-main-block .properties-columns .item{
    padding: 15px;
    background: #F6F6F6;
    border-radius: 7px;
    height: 100%;
}
.product-first-main-block .properties-columns .item-title{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}
.product-first-main-block .property-list-row {
    margin-bottom: 10px;
    font-weight: 400;
    color: #7D7D7D;
}
.product-first-main-block .property-list-row .property-list-value{
    font-weight: 500;
    color: #000;
}
.product-first-section-info{
    display: flex;
    flex-wrap: wrap;
}
.product-first-section-info .item-icon{
    width: 14px;
    line-height: 1.2;
}
.product-first-section-info .item-description{
    width: calc(100% - 14px);
    padding-left: 10px;
    font-size: 12px;
    margin-bottom: 40px;
}
.product-first-section-info .item-description a{
    color: #000;
}
.product-first-section-info .item-description a:hover{
    color: #ccc;
}
.product-first-section-question-link{
    text-align: right;
}
.product-first-section-question-link a{
    font-size: 14px;
    color: #000;
    border-bottom: 1px dotted;
    display: inline-block;
}
.product-first-section-question-link a:hover{
    border-color: transparent;
}

.product-page-peviews-carousel-wrapper + .product-page-main-carousel-wrapper .product-tags{
    left: 17px;
}

@media(max-width: 1489px){
    .product-page-peviews-carousel-wrapper + .product-page-main-carousel-wrapper .product-tags{
        left: 0;
    }
    .product-first-container .product-page-gallery-block{
        width: 50%;
    }
    .product-first-container .product-page-gallery-block + .product-first-main-block{
        width: 50%;
    }
    .product-first-main-block .properties-columns .col{
        width: 100%;
    }
    
    .product-page-peviews-carousel-wrapper{
        width: 100%;
        order: 2;
        overflow: hidden;
    }
    .product-page-main-carousel-wrapper{
        width: 100%;
        padding-left: 0;
        order: 1;
        margin-bottom: 10px;
    }
    .product-page-peviews-carousel .col{
        padding-left: 5px;
        padding-right: 5px;
    }
    .product-page-peviews-carousel{
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media(max-width: 1199px){
    .product-first-container .product-page-gallery-block{
        width: 45%;
    }
    .product-first-container .product-page-gallery-block + .product-first-main-block{
        width: 55%;
    }
    .product-page-main-carousel .slick-prev{
        width: 36px;
        height: 36px;
        top: calc(50% - 18px);
        left: 10px;
    }
    .product-page-main-carousel .slick-next{
        width: 36px;
        height: 36px;
        top: calc(50% - 18px);
        right: 10px;
    }
}
@media(max-width: 991px){
    .product-first-container .product-page-gallery-block{
        width: 40%;
    }
    .product-first-container .product-page-gallery-block + .product-first-main-block{
        width: 60%;
        padding-left: 20px;
    }
}
@media(max-width: 767px){
    .product-first-container .product-page-gallery-block{
        width: 100%;
        margin-bottom: 30px;
    }
    .product-first-container .product-page-gallery-block + .product-first-main-block{
        width: 100%;
        padding-left: 0;
    }
}
/* /. product page */

.price-fixed-btn{
    width: 49px;
    height: 272px;
    position: fixed;
    right: -5px;
    top: calc(50% - 136px);
    z-index: 400;
}
.price-fixed-btn:hover{
    right: 0;
}





















