@charset "utf-8";
body{
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 17px;
    line-height: 1.6;
}

h1,
.title-h1 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}
h2,
.title-h2 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}
h3,
.title-h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}
h4,
.title-h4 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}
h5,
.title-h5{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
h6,
.title-h6{
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
.pagetitle{
    text-transform: none;
}
.content h2,
.content h3,
.content h4{
    text-transform: none;
}

@media(max-width: 991px) {
    h1,
    .title-h1 {
        font-size: 40px;
    }
    h2,
    .title-h2 {
        font-size: 40px;
    }
    h3,
    .title-h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    h4,
    .title-h4 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    h5,
    .title-h5{
        font-size: 20px;
    }
    h6,
    .title-h6{
        font-size: 18px;
    }
}

@media(max-width: 767px) {
    h1,
    .title-h1 {
        font-size: 35px;
        margin-bottom: 25px;
    }
    h2,
    .title-h2 {
        font-size: 35px;
        margin-bottom: 25px;
    }
    h3,
    .title-h3 {
        font-size: 25px;
    }
    h4,
    .title-h4 {
        font-size: 21px;
    }
    h5,
    .title-h5{
        font-size: 19px;
        margin-bottom: 15px;
    }
    h6,
    .title-h6{
        font-size: 17px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px) {
    h1,
    .title-h1 {
        font-size: 22px;
    }
    h2,
    .title-h2 {
        font-size: 22px;
    }
    h3,
    .title-h3 {
        font-size: 20px;
    }
    h4,
    .title-h4 {
        font-size: 18px;
    }
    h5{
        font-size: 17px;
    }
    h6{
        font-size: 16px;
    }
    h1 br,
    .title-h1 br,
    h2 br, 
    .title-h2 br,
    h3 br,
    .title-h3 br{
        display: none;
    }
}
@media(min-width: 768px){
    .pagetitle{
        font-size: 32px;
    }
}
a {
    color: #f7e33fed;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

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

.btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0 20px 1px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #000;
    background: linear-gradient(93.8deg, #f7e33fed -0.95%, #FFB342 99.26%);
    text-align: center;
    transition: all 300ms ease-out;
}
.btn:hover {
    background: linear-gradient(93.8deg, #FFB342 -0.95%, #f7e33fed 99.26%);
    color: #000;
}
.btn.btn-lg {
    height: 60px;
    font-size: 17px;
    padding: 0 35px;
}
.btn.btn-xlg {
    height: 80px;
    font-size: 20px;
    padding: 0 45px;
    min-width: 300px;
    max-width: 100%;
}
.full-width{
    width: 100%;
}
.anim-link {
    position: relative;
    overflow: hidden;
}
.anim-link:before{
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 150%;
    height: 100%;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
    background: -webkit-gradient(linear, right top, left top, from(rgba(121, 117, 117, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(121, 117, 117, 0))) no-repeat -2em 0%;
    background: linear-gradient(to left, rgba(121, 117, 117, 0), rgba(255, 255, 255, 0.8), rgba(121, 117, 117, 0)) no-repeat -2em 0%;
    background-size: 3em 100%;
    -webkit-animation: move-blick 12s linear infinite;
    animation: move-blick 12s linear infinite;
    animation-delay: 2s;
}
@keyframes move-blick {
    0% {
         background-position: 0% 0%;
    }
    7% {
         background-position: 110% 0%;
    }
    100% {
         background-position: 110% 0%;
    }
}

@media(max-width: 499px){
    .btn.btn-xlg{
        height: 70px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 17px;
    }
    .btn.btn-lg{
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
    }
}

.btn.whatsapp-btn{
    background: #4CAF50;
    color: #fff;
}
.btn.whatsapp-btn:hover{
    background: #4CAF50;
    color: #fff;
    filter: brightness(115%);
}
.btn.whatsapp-btn img{
    margin-left: 10px;
}

.overflow-block{
    overflow: hidden;
}

.section{
    padding: 60px 0 50px;
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}
.pt50{
    padding-top: 50px;
}
.pt60{
    padding-top: 60px;
}
.pt70{
    padding-top: 70px;
}
.pt80{
    padding-top: 80px;
}
.pt90{
    padding-top: 90px;
}
.pt100{
    padding-top: 100px;
}
@media(max-width: 767px){
    .pt50{
        padding-top: 30px;
    }
    .pt60{
        padding-top: 40px;
    }
    .pt70{
        padding-top: 50px;
    }
    .pt80{
        padding-top: 60px;
    }
    .pt90{
        padding-top: 70px;
    }
    .pt100{
        padding-top: 80px;
    }
}
.gray-bg{
    background: #F4F4F4;
}
.white-bg{
    background: #fff;
}
.section h1 span,
.section h2 span{
    color: #f7e33fed;
}

.section.gray-bg + .section.gray-bg{
    padding-top: 0;
}

.more-link{
    text-transform: uppercase;
    position: relative;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.more-link:after{
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url(../images/more-link-arrow.svg) 0 0 / 100% no-repeat;
    margin-left: 9px;
    position: relative;
    top: -1px;
    transition: all ease-out 300ms;
}
.more-link:hover:after{
    transform: translateX(5px);
}

/** Header **/
.header{
    position: relative;
/* background: linear-gradient(180deg, rgba(18, 18, 18, .03) 0, rgba(248, 248, 248, 0) 100%);
*/
}
.header-media{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.header-img{
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left center, top center, center 101%, right center;
    background-size: 65% 100%, 100% 250px, 100% 15%, auto 100%;
}
.header-img-overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
}
.index-template .header-inner{
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
/*.header-main{
    padding: 15px 0;
}*/
.header-main-inner {
    /*background: #fff;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    padding: 10px 20px;
    border-radius: 5px;
    /*box-shadow: 0 2px 7px rgba(0, 0, 0, .09);*/
}
.header-logo{
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
}
.header-logo{
    display: inline-block;
    height: 100%;
}
.header-logo img{
    max-height: 100%;
}
.header-logo .logo-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
.header-logo .logo-inner img{
    max-width: 70px;
}
.header-logo .logo-body{
    width: calc(100% - 70px);
    padding-left: 10px;
}
.header-logo .logo-title{
    color: #000;
    font-weight: 800;
    font-size: 24px;
}
.header-logo .logo-title span{
    color: #f7e33fed;
}
.header-contacts{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 400px;
}

.header-contacts > .btn{
    margin-left: 30px;
}
.header-bar{
    margin-left: 20px;
}
.header-contacts .social-nav{
    margin-left: 20px;
}
.header-contacts-dropdown .title-h6{
    margin-bottom: 10px;
}
.header-contacts-dropdown-close{
    display: none;
}
.header-contacts-dropdown .social-nav{
    margin-left: 0;
}
.header-search-btn{
    line-height: 1;
    cursor: pointer;
}
.header-search-btn:hover path{
    fill: #f7e33fed;
}
.header-contacts-title{
    position: relative;
}
.header-contacts-title:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.header-contacts-title a,
.header-contacts-title > span{
    color: #000;
    font-weight: 600;
    font-size: 22px;
    padding-right: 15px;
    position: relative;
}
.header-contacts-title a:after,
.header-contacts-title > span:after{
    content: "";
    border-top: 4px solid #000;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    right: 3px;
    top: 8px;
}
.header-contacts-dropdown-wrapper{
    position: relative;
}
.header-contacts-dropdown{
    background: #fff;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    padding: 20px;
    width: 280px;
    top: 0;
    left: -20px;
    top: -20px;
    display: none;
}

.header-main-wrapper-push{
    display: none;
}
@media(min-width: 992px){
    .header-contacts-dropdown-wrapper:hover .header-contacts-dropdown{
        display: block;
    }
    .fix-panel-true .header-main-wrapper.pred_fixed{
        position: fixed;
        bottom: 100%;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 600;
        box-shadow: 0 2px 7px rgba(0, 0, 0, .09);
        transition: transform .2s;
    }
    .fix-panel-true .header-main-wrapper.fixed{
        transform: translateY(100%);
    }
    .fix-panel-true .header-main-wrapper.pred_fixed .header-main-inner{
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }
    .fix-panel-true .header-main-wrapper.pred_fixed + .header-main-wrapper-push{
        display: block;
    }
}

.header-phone{
    margin-bottom: 10px;
}
.header-phone a{
    color: #000;
    font-weight: 600;
    font-size: 15px;
}
.header-phone a:hover{
    color: #f7e33fed;
}
.header-phone-description{
    font-size: 0.8em;
    line-height: 1.584em;
    color: #999;
    margin-top: -2px;
}
.header-contacts-dropdown-btn{
    padding: 10px 0 20px;
}
.header-contacts-dropdown-items .item{
    margin-bottom: 14px;
}
.header-contacts-dropdown-items .item-title{
    font-size: 0.8em;
    line-height: 1.584em;
    color: #999;
}
.header-contacts-dropdown-items .item-value{
    line-height: 1.2;
    font-size: 15px;
}
.social-nav {
    display: flex;
}
.social-nav li{
    margin-right: 6px;
    display: inline-block;
}
.social-nav li:last-of-type{
    margin-right: 0;
}
.social-nav a {
    position: relative;
    width: 33px;
    height: 33px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}
.social-nav .telegram-btn a{
    background-color: #0D83BE;
}
.social-nav .whatsapp-btn a{
    background-color: #752cc5;
}
.social-nav .viber-btn a{
    background-color: #7360F2;
}
.social-nav .vk-btn a{
    background-color:#0077FF;
}
.social-nav .youtube-btn a{
    background-color: #FF0000;
}
.social-nav .inst-btn a{
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.social-nav a:hover{
    filter: brightness(114%);
}

.header-content{
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 70px 0;
}
.header-content-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header-content-inner .col1{
    width: 65%;
    padding-right: 25px;
    max-width: calc(100% - 450px);
}
.header-content-inner .col2{
    width: 30%;
    padding-left: 25px;
    min-width: 450px;
}

.header-features{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: space-between;
    width: 85%;
    position: relative;
}
.header-features.features-total-4:after{
    content: "";
    background: linear-gradient(0deg, #527BD400 0%, #555 17%, #555 85%, #293E6A00 100%);
    position: absolute;
    left: 48%;
    top: 10%;
    height: 80%;
    width: 1px;
    opacity: 0.8;
}
.header-features.features-total-4:before{
    content: "";
    background: linear-gradient(90deg, #527BD400 0%, #555 15%, #555 87%, #293E6A00 100%);
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    opacity: 0.8;
}
.header-features .col{
    width: 46%;
    margin: 25px 0;
}
.header-features .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-features .item-icon{
    width: 70px;
}
.header-features .item-icon img{
    width: 100%;
}
.header-features .item-body{
    width: calc(100% - 70px);
    padding-left: 20px;
}
.header-features .item-title{
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
}
.header-big-btn{
    margin-top: 70px;
}

.header-form{
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 5px;
    color: #000;
}
.header-form-title{
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}
.header-form-subtitle{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 10px;
}
.header-form-body{
    margin-top: 25px;
}
.header-content h1 span{
    color: #f7e33fed;
}
@media(min-width:1300px){
    .header-content h1{
        font-size: 45px;
    }
}
@media(min-width:1500px){
    .header-content h1{
        font-size: 55px;
    }
}
@media(max-width: 1299px){
    .header-contacts > .btn{
        margin-left: 15px;
    }
    .header-bar{
        margin-left: 15px;
    }
    .header-contacts{
        width: 380px;
    }
}
@media(max-width: 1199px){
    .header-features .item-title{
        font-size: 15px;
    }
    .header-features .item-title br{
        display: none;
    }
    .header-features{
        width: 100%;
    }
    .header-content-inner .col1 {
        padding-right: 20px;
        max-width: calc(100% - 400px);
    }
    .header-content-inner .col2 {
        padding-left: 20px;
        min-width: 400px;
    }
    .header-form{
        padding: 25px;
    }
    .header-features .item-body{
        padding-left: 15px;
    }
}
@media(max-width: 991px){
    .index-template .header-inner{
        min-height: inherit;
    }
    .header-media{
        background-color: #fff;
    }
    .header-img{
        background-position: right 0 top 0;
        background-size: cover;
        opacity: 0.9;
    }
    .header-inner{
        padding-top: 70px;
    }
    .header-main{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        background: #fff;
        z-index: 1000;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }
    .header-main-inner{
        min-height: 1px;
        height: 70px;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }
    .header-contacts{
        width: auto;
    }
    .header-content-inner .col1 {
        padding: 20px;
        border-radius: 5px;
        background: rgba(255,255,255,.7);
        max-width: 100%;
        width: 100%;
    }
    .header-content-inner .col2 {
        display: none;
    }
    .header-contacts-dropdown {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: auto;
        z-index: 200;
        border-radius:0;
        box-shadow: 0 5px 5px rgba(0,0,0,0.3);
        border-top: 1px solid #eee;
    }
    .header-contacts-title:after{
        display: none;
    }
    .header-contacts-title-overlay{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }
    .header-contacts-dropdown-btn .btn.full-width{
        width: auto;
    }
    .header-contacts-dropdown-close{
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .header-form-body{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header-form-body .form-group{
        width: calc(50% - 5px);
    }
    .header-form-body .form-group.agreement{
        width: 100%;
        text-align: left;
    }
    .header-form-body .btn.full-width{
        width: auto;
    }
}
@media(max-width: 767px){
    .header-search-btn{
        bottom: -2px;
        position: relative;
    }
    .header-features .col{
        margin: 20px 0;
    }
    .header-features .item-icon{
        width: 50px;
    }
    .header-features .item-body{
        width: calc(100% - 50px);
        padding-left: 10px;
    }
    .header-features .item-title{
        font-weight: 500;
    }
    .header-form{
        padding: 30px 20px;
    }
    .header-form-title{
        font-size: 24px;
    }
    .header-form-subtitle{
        font-size: 14px;
        font-weight: normal;
    }
    .header-logo .logo-inner img {
        width: 35px;
    }
    .header-logo .logo-body {
        width: calc(100% - 35px);
        padding-left: 5px;
    }
    .header-logo .logo-title{
        font-size: 20px;
    }
}
@media(max-width: 599px){
    .header-content-inner .col2{
        margin-top: 50px;
    }
    .header-contacts-title a,
    .header-contacts-title > span{
        font-size: 12px;
    }
    .header-contacts-title a:after,
    .header-contacts-title > span:after{
        top: 5px;
    }
    .header-logo{
        width: 100px;
    }

    .header-logo .logo-inner img {
        width: 17px;
    }
    .header-logo .logo-body {
        width: calc(100% - 17px);
    }
    .header-logo .logo-title{
        font-size: 12px;
    }

    .header-features .col{
        width: 100%;
    }
    .header-features:before,
    .header-features:after{
        display: none;
    }
    .header-features{
        margin-top: 0;
    }
    .header-big-btn{
        margin-top: 30px;
    }
    .header-big-btn .btn{
        width: 100%;
    }
    .header-main-inner{
        height: 70px;
    }
    .header-inner{
        padding-top: 60px;
    }
    .header-content{
        padding: 60px 0;
    }
    .header-contacts-dropdown{
        top: 60px;
    }
    .header-form {
        background: rgba(255, 255, 255, .99);
        backdrop-filter: blur(1px);
    }
    .header-form-body .form-group{
        width: 100%;
    }
    .header-form-body .btn.full-width{
        width: 100%;
    }
}
@media(max-width: 359px){
    .header-bar{
        margin-left: 8px;
    }
    .header-contacts-title a,
    .header-contacts-title > span{
        font-size: 9px;
    }
    .header-contacts-title a:after,
    .header-contacts-title > span:after{
        top: 4px;
    }
}

/* top menu */
.top-menu{
    display: flex;
    width: calc(100% - 650px);
    padding: 0 30px;
    justify-content: center;
}
.top-menu > ul {
    display: flex;
    visibility: hidden;
    opacity: 0;
}
.top-menu.loaded > ul {
    visibility: visible;
    opacity: 1;
}
.top-menu.loaded > ul {
    visibility: visible;
    opacity: 1;
}

.top-menu li{
    position: relative;
    line-height: 1.2;
}
.top-menu a{
    color: #000;
    font-weight: 500;
}
.top-menu li.active > a,
.top-menu a:hover{
    color: #f7e33fed;
}
.top-menu > ul > li > a{
    font-size: 17px;
    margin: 0 18px;
    white-space: nowrap;
}

.top-menu li.down > a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    vertical-align: middle;
    margin: -5px 0 0 8px;
    transition: all ease-out 300ms;
}
.top-menu ul ul li.down > a{
    position: relative;
    padding-right: 25px;
    width: 100%;
}
.top-menu ul ul li.down > a:after {
    transform: rotate(-45deg);
    position: absolute;
    right: 12px;
    top: 18px;
}
.top-menu li.down.active > a:after,
.top-menu li.down > a:hover:after{
    border-color: #f7e33fed;
}
.top-menu ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 240px;
    z-index: 300;
    background: #fff;
    padding: 15px 20px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.top-menu ul ul:before{
    content: "";
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
}
.top-menu li:hover > ul{
    display: block;
}
.top-menu ul ul li + li{
    margin-top: 5px;
}
.top-menu ul ul a{
    color: #000;
    display: inline-block;
    padding: 7px 0;
    font-size: 15px;
}
.top-menu ul ul ul{
    top: 0;
    left: 100%;
    border-radius: 5px;
}

.top-menu .top-menu-more-list {
    display: none;
}
.top-menu .top-menu-more-list.active {
    display: block;
}
.top-menu-more-list > li > ul{
    left: auto;
    right: 0;
}
.top-menu-more-list > li:first-of-type {
    width: 40px;
    height: 100%;
}
.top-menu-more-list > li > span {
    display: block;
    width: 40px;
    height: 100%;
    cursor: pointer;
    background: url(../images/burger.svg) 50% 50% no-repeat;
}
@media(max-width: 1299px){
    .top-menu{
        padding: 0 15px;
        width: calc(100% - 630px);
    }
    .top-menu > ul > li > a {
        font-size: 15px;
        margin: 0 15px;
    }
    .top-menu > ul > li.down > a:after {
        width: 5px;
        height: 5px;
        margin: -7px 0 0 6px;
    }
    .top-menu ul ul a{
        font-size: 13px;
    }
    .top-menu ul ul li.down > a:after{
        width: 5px;
        height: 5px;
    }
}
@media(max-width: 991px){
    .top-menu{
        display: none;
    }
}
/* /. top menu */

/* search block */
.search-form-section{
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform: translateY(-130px);
    transition: all ease-out 300ms;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .05);
}
.search-form-section.active{
    transform: translateY(0px);
}
.search-form-block{
    height: 130px;
    display: flex;
    align-items: center;
}
.search-form-block-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -100;
    opacity: 0;
    transition: opacity 200ms ease-out;
}
.search-form-section.active + .search-form-block-overlay{
    z-index: 1400;
    opacity: 1;
}
.search-form-block-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.search-close{
    line-height: 1;
    width: 20px;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.search-close:hover path{
    fill: #f7e33fed;
}
.search-form-block-inner form{
    width: calc(100% - 20px);
    padding-right: 15px;
    position: relative;
}
.search-input {
    width: 100%;
    height: 56px;
    line-height: 56px;
    background: #eee;
    padding: 0 100px 0 15px;
    font-size: 20px;
    border: none;
    color: #555;
    border-radius: 4px;
}
.search-submit-input{
    position: absolute;
    right: 15px;
    top: 0;
    height: 56px;
    line-height: 56px;
    padding: 0 20px;
    background: linear-gradient(93.8deg, #f7e33fed -0.95%, #FFB342 99.26%);
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    transition: all ease-out 300ms;
    color: #000;
    border-radius: 0 4px 4px 0;
}
.search-submit-input:hover{
    background: linear-gradient(93.8deg, #FFB342 -0.95%, #f7e33fed 99.26%);
    color: #000;
}
@media(max-width: 991px){
    .search-form-block{
        height: 90px;
    }
    .search-input{
        height: 50px;
    }
    .search-submit-input{
        height: 50px;
        line-height: 50px;
    }
}
@media(max-width: 499px){
    .search-input {
        height: 50px;
        line-height: 50px;
        padding: 0 80px 0 10px;
        font-size: 15px;
    }
    .search-submit-input{
        height: 50px;
        line-height: 50px;
        padding: 0 10px;
        font-size: 13px;
    }
}
/* /. search block */

/** /. Header **/


/* num-section */
.nums{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -15px;
}
.nums .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.nums .item{
    height: 100%;
    padding: 25px 45px;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 5;
}
.nums .item-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 76px;
    line-height: 1.2;
    color: #f7e33fed;
}
.nums .item-text{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}
@media(max-width: 1299px){
    .nums .item{
        padding: 25px 35px;
    }
    .nums .item-title{
        margin-bottom: 15px;
        font-size: 56px;
    }
    .nums .item-text{
        font-size: 16px;
        line-height: 1.4;
    }
}
@media(max-width: 991px){
    .nums{
        margin-top: 0;
    }
    .nums .item{
        padding: 20px 25px;
    }
    .nums .item-title{
        font-size: 46px;
    }
    .nums .item-text{
        font-size: 15px;
    }
}
@media(max-width: 767px){
    .nums{
        margin-left: -10px;
        margin-right: -10px;
    }
    .nums .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .nums .item{
        padding: 20px;
    }
    .nums .item-title{
        margin-bottom: 10px;
        font-size: 36px;
    }
    .nums .item-text{
        font-size: 12px;
    }
}
@media(max-width: 599px){
    .nums .col{
        width: 100%;
        margin-bottom: 15px;
    }
}
/* /. num-section */


/* about-section */
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.about-section-inner .content-block{
    width: calc(100% - 700px);
    padding-right: 50px;
    font-size:16px;
}
.about-section-inner .img-block{
    width: 700px;
    display: inline-flex;
    justify-content: flex-end;
    
}
.about-section-inner .img-block-inner{
    position: relative;
    padding-bottom: 160px;
}
.about-section-inner .img-block .img1{
    width: 520px;
    height: 470px;
    max-width: 100%;
}
.about-section-inner .img-block .img1 img{
    border-radius: 10px;
}
.about-section-inner .img-block .img2 img{
    border-radius: 10px 0 10px 10px;
}
.about-section-inner .img-block img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.about-section-inner .img-block .img2{
    width: 360px;
    height: 430px;
    border: 20px solid #fff;
    position: absolute;
    bottom: 0;
    right: 65%;
}
@media(max-width:1559px){
    .about-section-inner .content-block{
        width: calc(100% - 560px);
        padding-right: 30px;
        padding-top: 10px;
        font-size: 14px;
    }
    .about-section-inner .img-block{
        width: 560px;
    }
    .about-section-inner .img-block .img1{
        width: 460px;
        height: 400px;
    }
    .about-section-inner .img-block .img2{
        width: 280px;
        height: 340px;
        border: 14px solid #fff;
        right: 60%;
    }
}
@media(max-width:1229px){
    .about-section-inner .content-block{
        width: calc(100% - 470px);
        padding-top: 0;
    }
    .about-section-inner .img-block{
        width: 470px;
    }
    .about-section-inner .img-block .img1{
        width: 400px;
        height: 400px;
    }
    .about-section-inner .img-block .img2{
        width: 250px;
        height: 300px;
        border: 10px solid #fff;
        right: 55%;
    }
}
@media(max-width:991px){
    .about-section-inner .content-block{
        width: 100%;
        padding-right: 0;
        order: 2;
        padding-top: 40px;
    }
    .about-section-inner .img-block{
        width: 700px;
    }
    .about-section-inner .img-block-inner{
        padding-bottom: 160px;
    }
    .about-section-inner .img-block .img1{
        width: 520px;
        height: 470px;
    }
    .about-section-inner .img-block .img2{
        width: 360px;
        height: 430px;
        border: 20px solid #fff;
        right: 65%;
    }
}
@media(max-width:767px){
    .about-section-inner .img-block{
        width: 100%;
        display: block;
    }
    .about-section-inner .img-block-inner{
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about-section-inner .img-block .img1{
        width: 48%;
        height: 40vw;
    }
    .about-section-inner .img-block .img2{
        position: static;
        width: 48%;
        height: 40vw;
        border: none;
    }
    .about-section-inner .img-block .img1 img,
    .about-section-inner .img-block .img2 img{
        border-radius: 5px;
    }
}
/* / about-section */

/* cases-section */
.cases-carousel > div:not(:first-of-type){
    display: none;
}
.cases-carousel{
    margin-left: -15px;
    margin-right: -15px;
}
.cases .item{
    position: relative;
    margin-bottom: 50px;
}
.cases .item:last-child{
    margin-bottom: 0;
}
.cases-carousel .item{
    padding: 10px 15px;
    margin-bottom: 0;
}

.cases .item-inner{
    background: #fff;
    padding: 50px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
}
.cases.case-on-page .item-inner{
    padding: 0;
    box-shadow: none;
}

.cases .item-inner .col1{
    width: 502px;
}
.cases .item-inner .col1 + .col2{
    width: calc(100% - 502px);
    padding-left: 40px;
}
.case-slider{
    margin-bottom: 10px;
    border-radius: 5px;
}
.case-slider > div:not(:first-of-type),
.case-slider-thumbnails > div:not(:first-of-type){
    display: none;
}
.case-slider-item{
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.case-slider-item > a{
    display: block;
}
.case-slider-item > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-slider-thumbnails-wrapper{
    width: 100%;
    overflow: hidden;
}
.case-slider-thumbnails-inner{
    margin-left: -5px;
    margin-right: -5px;
}
.case-slider-item-thumbnail{
    padding-left: 5px;
    padding-right: 5px;
}
.case-slider-item-thumbnail-inner{
    overflow: hidden;
    border-radius: 5px;
    width: 164px;
    max-width: 100%;
}
.case-slider-thumbnails img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases-carousel .slick-prev{
    left: -15px;
}
.cases-carousel .slick-next{
    right: -15px;
}

.cases .item-subtitle{
    margin-top: -10px;
    font-size: 24px;
}
.cases .item-description{
    margin-top: 30px;
    font-size: 17px;
}

.cases .item-prop{
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 19px;
}
.cases .item-prop-value{
    margin-left: 20px;
    font-weight: 600;
}
.cases .item-summ .item-prop-value{
    color: #f7e33fed;
    font-size: 23px;
}

.cases .item-btn{
    margin-top: 40px;
}
.cases .item-btn .btn{
    min-width: 50%;
}

.case-slider-item .video-holder{
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-holder-icon{
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.video-holder-icon a {
    display: block;
    height: 100%;
    position: relative;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 5;
}
.video-holder-icon .play-icon {
    display: inline-block;
    border-left: 24px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -8px;
    transition: all 200ms ease-out;
}
.video-holder-icon a:hover{
    background: #f7e33fed;
}
.video-holder-icon .animation-element{
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 100%;
    animation: video-section-type1-animaion 2s linear infinite;
    box-shadow: 0 0 0 5px #fff;
    transition: all 0.3s ease;
    z-index: -1;
}
@keyframes video-section-type1-animaion {
  0% {
    transform: scale(1);
    opacity: 0.0; }
  25% {
    transform: scale(1);
    opacity: .75; }
  100% {
    transform: scale(1.5);
    opacity: 0; } 
}

@media(min-width:992px){
    .cases > div:nth-of-type(2n) .col1{
        order: 2;
    }
    .cases > div:nth-of-type(2n) .col2{
        order: 1;
        padding-left: 0 !important;
        padding-right: 40px;
    }
}
@media(max-width: 1569px){
    .cases-carousel .item-inner{
        padding-left: 90px;
        padding-right: 90px;
    }
    .cases-carousel .slick-prev{
        left: 25px;
    }
    .cases-carousel .slick-next{
        right: 25px;
    }
}
@media(max-width: 1229px){
    .cases .item-inner{
        padding: 40px;
    }
    .cases-carousel .slick-prev{
        left: 20px;
    }
    .cases-carousel .slick-next{
        right: 20px;
    }
    .cases .item-inner .col1{
        width: 400px;
    }
    .cases .item-inner .col1 + .col2{
        width: calc(100% - 400px);
        padding-left: 30px;
    }
    .case-slider-item-thumbnail-inner{
        width: 140px;
    }
    .cases .item-description {
        margin-top: 20px;
        font-size: 14px;
    }
    .cases .item .title-h3{
        font-size: 25px;
    }
    .cases .item-prop{
        font-size: 16px;
        margin-top: 5px;
    }
    .cases .item-summ .item-prop-value{
        font-size: 18px;
    }
    .cases .item-subtitle {
        margin-top: -15px;
        font-size: 20px;
    }
    .cases .item-btn{
        margin-top: 30px;
    }
}
@media(max-width: 991px){
    .cases .item-inner .col1{
        width: 100%;
        margin-bottom: 30px;
    }
    .cases .item-inner .col2{
        width: 100% !important;
        padding-left: 0 !important;
        margin-bottom: 1px;
    }
    .case-slider-item-thumbnail-inner {
        width: 218px;
    }
}
@media(max-width: 767px){
    .cases.cases-carousel .item-inner {
        padding: 100px 25px 40px;
    }
    .cases .item-inner {
        padding: 40px 25px;
    }
    .cases .item-inner .col1{
        margin-bottom: 20px;
    }
    .cases-carousel .slick-prev{
        top: 40px;
        left: 40px;
    }
    .cases-carousel .slick-next{
        top: 40px;
        left: 90px;
    }
}
@media(max-width: 499px){
    .cases.cases-carousel .item-inner {
        padding: 80px 15px 20px;
    }
    .cases .item-inner {
        padding: 20px 15px;
    }
    .cases-carousel .slick-prev {
        top: 30px;
        left: 30px;
    }
    .cases-carousel .slick-next{
        top: 30px;
        left: 80px;
    }
    .cases .item-prop{
        display: block;
    }
    .cases .item-prop-value{
        margin-left: 0;
    }
    .cases .item-btn .btn{
        width: 100%;
    }
    .cases .item .title-h3{
        font-size: 20px;
    }
    .cases .item-subtitle{
        font-size: 18px;
    }
}
/* /. cases-section */

/* features section */
.features-section-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.features-section-columns .col{
    width: calc(50% - 20px);
}
.features-intro{
    background: #fff;
    padding: 45px;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    position: sticky;
    top: 40px;
}
.features-section.fix-panel-true .features-intro{
    top: 130px;
}
.features-intro-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
/*.features-intro-head-img{
    width: 225px;
    overflow: hidden;
    border-radius: 50%;
}*/
.features-intro-head-info{
    width: calc(100% - 225px);
    padding-left: 40px;
}
.features-intro-body{
    margin-top: 25px;
    font-size: 22px;
    line-height: 1.4;
}
.features-intro-body span{
    color: #f7e33fed;
}
.features-intro-head-info span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(93.8deg, #f7e33fed -0.95%, #FFB342 99.26%);
    border-radius: 20px;
    height: 40px;
    padding: 0 25px;
    margin-bottom: 15px;
}
.features-intro-head-info .item-title{
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}
.features-intro-head-info .item-text{
    opacity: 0.7;
    font-size: 15px;
}
.features-section-items .item{
    padding: 45px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
}
.features-section-items .item + .item{
    margin-top: 40px;
}
.features-section-items .item-title{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}
.features-section-items .item-title span{
    color: #f7e33fed;
}
.features-section-items .item-text{
    color: #808080;
    font-size: 15px;
    line-height: 1.3;
}
@media(max-width: 1499px){
    .features-section-columns .col {
        width: calc(50% - 15px);
    }
    .features-section-items .item + .item {
        margin-top: 30px;
    }
    .features-intro{
        padding: 35px;
    }
    .features-intro-head-info{
        padding-left: 30px;
    }
    .features-intro-body{
        font-size: 20px;
    }
    .features-section-items .item{
        padding: 35px;
    }
    .features-intro-head-info .item-title{
        font-size: 32px;
    }
    .features-section-items .item-title{
        font-size: 22px;
    }
}
@media(max-width: 1299px){
    .features-section-columns .col1 {
        width: calc(55% - 15px);
    }
    .features-section-columns .col2 {
        width: calc(45% - 15px);
    }
    .features-intro-head-img{
        width: 150px;
    }
    .features-intro-head-info {
        width: calc(100% - 150px);
        padding-left: 25px;
    }
    .features-intro{
        padding: 30px;
    }
    .features-intro-body{
        font-size: 18px;
    }
    .features-section-items .item{
        padding: 30px;
    }
    .features-intro-head-info .item-title{
        font-size: 30px;
    }
    .features-section-items .item-title{
        font-size: 20px;
    }
}
@media(max-width: 991px){
    .features-section-columns .col1{
        width: 100%;
        margin-bottom: 30px;
    }
    .features-section-columns .col2{
        width: 100%;
    }
}
@media(max-width: 767px){
    .features-intro,
    .features-section-items .item{
        padding: 25px;
    }
    .features-intro-head-img{
        width: 100px;
    }
    .features-intro-head-info {
        width: calc(100% - 100px);
        padding-left: 25px;
    }
    .features-intro-head-info .item-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .features-intro-body{
        font-size: 16px;
        margin-top: 15px;
    }
    .features-intro-head-info .item-text{
        font-size: 13px;
    }
    .features-intro-head-info span {
        height: 30px;
        padding: 0 15px;
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media(max-width: 499px){
    .features-intro,
    .features-section-items .item{
        padding: 15px;
    }
    .features-intro-head-img{
        width: 90px;
    }
    .features-intro-head-info {
        width: calc(100% - 90px);
        padding-left: 15px;
    }
    .features-intro-head-info .item-title {
        font-size: 20px;
    }
    .features-intro-body{
        font-size: 15px;
    }
    .features-intro-head-info .item-text{
        font-size: 12px;
    }
    .features-intro-head-info span {
        height: 26px;
        font-size: 12px;
    }
}
@media(max-width: 399px){
    .features-intro-head{
        align-items: flex-start;
    }
    .features-intro-head-img{
        width: 60px;
    }
    .features-intro-head-info {
        width: calc(100% - 60px);
    }
}
/* /. features section */

/* tabs */
.boxes{
    width: 100%;
    overflow: hidden;
}
.box{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: -10;
}
.box.visible{
    position: relative;
    z-index: 1;
    opacity: 1;
}
/* /. tabs */

/* offers-section */
.offers-section .tabs{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
}
.offers-section .tabs li{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.offers-section .tabs .item{
    height: 100%;
    border: 4px solid #eee;
    padding: 35px;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease-out 300ms;
    background: #F4F4F4;
}
.offers-section .tabs li.current .item{
    border-color: #f7e33fed;
    background: #fff;
}
.offers-section .tabs .item:hover{
    border-color: #f7e33fed;
}
.offers-section .tabs .item-title{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}
.offers-section .tabs .item-tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(93.8deg, #f7e33fed -0.95%, #FFB342 99.26%);
    border-radius: 20px;
    height: 40px;
    padding: 0 25px;
}
.offers-section-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offers-section-box .col{
    width: calc(50% - 25px);
    margin-bottom: 30px;
}
.offers-section-box .col1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}
.offer-img{
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.offer-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offers-section-box .item-head{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offers-section-box .item-title{
    width: calc(100% - 210px);
    padding-right: 20px;
}
.offers-section-box .item-title .item-tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(93.8deg, #f7e33fed -0.95%, #FFB342 99.26%);
    border-radius: 20px;
    height: 40px;
    padding: 2px 25px 0;
    font-size: 16px;
    position: relative;
    font-weight: normal;
}
.offers-section-box .item-title-text{
    margin-right: 15px;
}
.offers-section-box .item-feature{
    width: 210px;
    padding-left: 20px;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
.offers-section-box .item-feature-icon{
    width: 32px;
}
.offers-section-box .item-feature-title{
    width: calc(100% - 32px);
    padding-left: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}
.offers-section-box .item-body{
    font-weight: 500;
    font-size: 18px;
    margin-top: 20px;
}
.offers-section-box .item-footer{
    margin-top: 20px;
}
.offers-section-box .item-footer .btn{
    margin-right: 10px;
}
@media(max-width: 1299px){
    .offers-section .tabs{
        margin-left: -10px;
        margin-right: -10px;
    }
    .offers-section .tabs li {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .offers-section .tabs .item{
        padding: 25px;
    }
    .offers-section .tabs .item-title{
        font-size: 22px;
    }
    .offers-section-box .item-body{
        font-size: 17px;
    }
    .offers-section-box .col {
        width: calc(50% - 15px);
    }
}
@media(max-width: 1199px){
    .offers-section-box .item-footer .btn{
        width: 100%;
    }
    .offers-section-box .item-footer .btn + .btn{
        margin-top: 10px;
    }
    .offers-section-box .item-title {
        width: 100%;
        padding-right: 0;
    }
    .offers-section-box .item-feature {
        width: 100%;
        padding-left: 0;
        align-items: center;
        padding-top: 0;
    }
    .offers-section-box .item-body{
        font-size: 16px;
    }
    .offers-section-box .item-title .item-tag {
        height: 34px;
        font-size: 14px;
        padding: 0 25px;
    }
    .offers-section .tabs .item {
        padding: 15px;
    }
    .offers-section .tabs .item-title {
        font-size: 20px;
    }
    .offers-section .tabs .item-tag {
        height: 34px;
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .offers-section .tabs .item{
        border-width: 2px;
        padding: 10px;
    }
    .offers-section .tabs .item-title{
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .offers-section .tabs .item-tag {
        height: 30px;
        font-size: 13px;
        padding: 0 20px;
    }
}
@media(max-width: 767px){
    .offers-section-box .col{
        width: 100%;
    }
    .offers-section-box .col1{
        order: 2;
    }
    .offers-section-box .col2{
        order: 1;
    }
    .offers-section .tabs .item{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}
@media(max-width: 599px){
    .offers-section .tabs li{
        width: 100%;
    }
    .offers-section .tabs .item{
        display: block;
    }
}
/* /. offers-section */


/* calc */
.calc-form{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.calc-form .col1{
    width: 60%;
}
.calc-form .col2{
    width: 40%;
}
.calc-contacts-item{
    height: 100%;
    padding: 60px;
    border: 10px solid #f7e33fed;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.calc-contacts-item-subtitle{
    font-weight: 600;
    font-size: 18px;
}

.calc-items{
    padding: 60px;
}
.calc-item-title{
    font-weight: 600;
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.calc-item-row{
    display: flex;
    flex-wrap: wrap;
}
.calc-item + .calc-item{
    margin-top: 40px;
}
.custom-radio,
.custom-check{
    position: relative;
}
.custom-check input,
.custom-radio input,
.custom-check2 input,
.custom-radio2 input{
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}
.custom-check label,
.custom-radio label{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: #F2F2F2;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid #F2F2F2;
    padding: 0 15px;
    transition: all ease-out 300ms;
    cursor: pointer;
}
.custom-check label:hover,
.custom-radio label:hover{
    border-color: #f7e33fed;
}
.custom-check input:checked + label,
.custom-radio input:checked + label{
    border-color: #f7e33fed;
    background: #fff;
}

.calc-item .custom-check2,
.calc-item .custom-radio2{
    position: relative;
    margin-right: 50px;
    margin-bottom: 10px;
}
.custom-check2 label,
.custom-radio2 label{
    position: relative;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    padding-left: 32px;
    cursor: pointer;
}
.custom-check2 label:before,
.custom-radio2 label:before{
    content: "";
    background: #fff;
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: -2px;
    left: 0px;
    border-radius: 5px;
    border: 2px solid #E0E0E0;
}
.custom-check2 input:checked + label:before,
.custom-radio2 input:checked + label:before{
    background: url(../images/checked-white.svg) 50% no-repeat #f7e33fed;
    border-color: #f7e33fed;
}
.custom-check2 label:hover:before,
.custom-radio2 label:hover:before{
    border-color: #f7e33fed;
}

.area-slider-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.slider-item-col1{
    width: 70px;
}
.slider-item-col2{
    width: calc(100% - 70px);
    padding-left: 15px;
}
.slider-item-col1 .form-control {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
}
.area-slider-item .ui-widget-header{
    background: #f7e33fed;
    border-color: #f7e33fed;
    border-radius: 10px;
    top: -2px;
    bottom: -2px;
    left: -2px;
    height: auto;
}
.area-slider-item .ui-widget.ui-widget-content{
    border-radius: 10px;
    height: 14px;
    border: 2px solid  #E0E0E0;
}
.area-slider-item .ui-slider-handle{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7e33fed;
    border: 5px solid #fff;
    box-shadow: 6px 9px 32px -1px rgb(63 63 63 / 24%);
    cursor: pointer;
    top: -11px;
}
.area-slider-item .ui-slider-handle:after{
    content: "";
    width: 6px;
    height: 8px;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 3px);
}

@media(max-width: 1299px){
    .calc-form .col1{
        width: calc(100% - 500px);
    }
    .calc-form .col2{
        width: 500px;
    }
}
@media(max-width: 1199px){
    .calc-form .col1{
        width: calc(100% - 440px);
    }
    .calc-form .col2{
        width: 440px;
    }
    .calc-contacts-item,
    .calc-items{
        padding: 40px 30px;
    }
}
@media(max-width: 991px){
    .calc-form .col1{
        width: 100%;
    }
    .calc-form .col2{
        width: 100%;
    }
}
@media(max-width: 767px){
    .calc-contacts-item, 
    .calc-items {
        padding: 30px 25px;
    }
    .calc-contacts-item{
        border-width: 8px;
    }
    .calc-item + .calc-item {
        margin-top: 30px;
    }
    .calc-item-title {
        font-size: 20px;
        margin-bottom: 7px;
    }
    .calc-contacts-item-subtitle {
        font-weight: 500;
        font-size: 14px;
    }
    .custom-check label, .custom-radio label {
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }
}
/* /. calc */


/* Reviews */
.reviews{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.reviews .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 50%;
}
.reviews .item{
    padding: 30px 40px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.reviews .item-img{
    width: 200px;
    position: relative;
}
.reviews .item-img img{
    border-radius:4px;
    width: 100%;
}
.reviews .video-block{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.reviews .video-block a{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.1);
}
.reviews .video-block a:after {
    content: "";
    background: url(../images/play.svg) 0 0 no-repeat;
    width: 53px;
    height: 53px;
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    transition: all ease-out 300ms;
}
.reviews .video-block:hover a:after{
    transform: scale(1.2);
}
.reviews .item-right{
    width: calc(100% - 200px);
    padding-left: 40px;
    font-size: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews .item-body{
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews .item-footer .btn{
    margin: 30px 0 0;
}
.reviews .item-date,
.reviews-modal .item-date{
    color: #999;
    margin-bottom: 15px;
    font-size: 13px;
}
.reviews .item-title,
.reviews-modal .item-title{
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.reviews .item-subtitle,
.reviews-modal .item-subtitle{
    color: #f7e33fed;
    font-weight: 600;
}
.reviews .item-body,
.reviews-modal .item-body{
    padding-top: 10px;
}
.reviews-carousel > div:not(:first-of-type){
    display: none;
}
.reviews-carousel .slick-list{
    padding: 7px 0;
}
.reviews-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.reviews-carousel .slick-slide {
    height: inherit;
}
.reviews-carousel .slick-slide>div {
    height: 100%;
}
.fancybox_modal .reviews .item{
    box-shadow: none;
    padding: 0;
    display: block;
    background-color: transparent;
}
.fancybox_modal .reviews .item-img{
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}
.reviews-on-page{
    margin-left: 0;
    margin-right: 0;
}
.reviews .item-body p:last-of-type{
    margin-bottom: 0;
}
.fancybox_modal .reviews{
    margin-left: 0;
    margin-right: 0;
}
@media(max-width: 1299px){
    .reviews{
        margin-left: -10px;
        margin-right: -10px;
    }
    .reviews .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .reviews .item {
        padding: 30px 20px;
    }
}
@media(max-width: 1199px){
    .reviews .item-img {
        width: 150px;
    }
    .reviews .item-right{
        width: calc(100% - 150px);
        padding-left: 20px;
    }
    .reviews .item {
        padding: 30px 20px;
    }
}
@media(max-width:991px){
    .reviews .col{
        width: 100%;
    }
}
@media(max-width:499px){
    .reviews .item-img{
        margin-bottom: 15px;
        width: 100%;
    }
    .reviews .item-right{
        width: 100%;
        height: auto;
        padding-left: 0;
    }
    .reviews .item {
        padding: 20px;
    }
}

@media(min-width:992px){
    .reviews-on-page .item-img{
        width: 400px;
    }
    .reviews-on-page .item-right{
        width: calc(100% - 400px);
    }
    .reviews-on-page .item-body{
        font-size: 18px;
    }
    .reviews-on-page .item-title{
        font-size: 24px;
    }
    .reviews-on-page .item-subtitle{
        font-size: 18px;
    }
}
/* /. Reviews */

.slick-arrows-top-section h2{
    padding-right: 120px;
}
.slick-arrows-top{
    padding-top: 20px;
}
.slick-arrows-top .slick-next{
    right: 15px;
    top: -80px;
}
.slick-arrows-top .slick-prev{
    left: auto;
    right: 65px;
    top: -80px;
}

@media(max-width:767px){
    .slick-arrows-top-section h2{
        padding-right: 0;
    }
    .slick-arrows-top{
        padding-top: 60px;
    }
    .slick-arrows-top .slick-next{
        right: auto;
        top: 0;
        left: 60px;
    }
    .slick-arrows-top .slick-prev{
        left: 10px;
        right: auto;
        top: 0;
    }
}

/* faq */
.accordion{
    margin-bottom: 20px;
}
.accordion .item-body {
    display: none;
    padding: 35px 35px 15px;
    font-size: 20px;
}
.accordion .item{
   margin-bottom: 10px;
}
.accordion .item-head {
    min-height: 66px;
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #F4F4F4;
    color: #000000;
    border-radius: 12px;
    border: 4px solid #eee;
    font-weight: 600;
    transition: all ease-out 300ms;
}
.accordion .item-title{
    font-size: 22px;
    line-height: 1.35;
    width: calc(100% - 25px);
}
.accordion .item-icon{
    position: relative;
}
.accordion .item-icon:after{
    content: "+";
    font-size: 26px;
    font-weight: 600;
}
.accordion .item.active .item-icon:after{
    content: "-";
}
.accordion .item:hover .item-head,
.accordion .item.active .item-head{
    border-color: #f7e33fed;
}
.accordion .item.active .item-head{
    background: #fff;
}

@media(max-width: 991px){
    .accordion .item-head{
        min-height: 80px;
        padding: 12px 24px;
    }
    .accordion .item-title{
        font-size: 20px;
    }
    .accordion .item-body{
        font-size: 16px;
        padding: 24px 24px 4px;
    }
}
@media(max-width: 767px){
    .accordion .item-head{
        min-height: 70px;
        padding: 10px 20px;
    }
    .accordion .item-title{
        font-size: 16px;
    }
    .accordion .item-body {
        padding: 20px 20px 0;
        font-size: 14px;
    }
}
/* /. faq */

/* Map */
.map {
    height: 740px;
    position: relative;
}
.map-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.map-content-inner{
    width: 480px;
    max-width: 100%;
    background: #fff;
    padding: 50px;
    pointer-events: initial;
    box-shadow: 4px 4px 0px 0px #00000026;
}
.map-content-inner .item-address,
.map-content-inner .item-schedule{
    font-size: 16px;
    margin-bottom: 10px;
}
.map-content-inner div + .items{
    margin-top: 20px;
}
.map-content-inner .items .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.map-content-inner .item-icon{
    width: 22px;
    position: relative;
    bottom: -3px;
}
.map-content-inner .item-value{
    width: calc(100% - 22px);
    padding-left: 7px;
    font-size: 16px;
}
.map-content-inner .item-value a{
    color: #000000;
}
.map-content-inner .item-value a:hover{
    color: #E03226;
}
.map-content-inner .phone-description{
    padding-left: 4px;
    font-weight: 300;
}

@media(max-width: 991px){
    .map {
        height: auto;
    }
    .map-section #mapexMap{
        height: 400px !important;
    }
    .map-content{
        position: static;
        padding: 0;
    }
    .map-content-inner{
        width: 100%;
        padding: 0 0 60px;
        box-shadow: none;
    }
}
/* /. Map */

/* Footer */
.footer{
    background: #333;
}
.footer-main-top{
    padding: 50px 15px 0;
    color: #fff;
}
.footer-main-top-inner{
    display: flex;
    justify-content: space-between;
}
.footer-main-top-left_part{
    width: 540px;
    padding-right: 40px;
}
.footer-main-top-right_part{
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 540px);
}
.footer-main-top-right_part .col{
    width: 350px;
    padding-right: 40px;
    margin-bottom: 35px;
}
.footer-main-top-right_part .item-title{
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}
.footer-main-top-right_part .item-title a{
    color: #fff;
}
.footer-main-top-right_part .item-title a:hover{
    color: #f7e33fed;
}
.footer-main-top-right_part nav li:not(:last-of-type){
    margin-bottom: 7px;
}
.footer-main-top-right_part nav a{
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    display: inline-block;
}
.footer-main-top-right_part nav a:hover{
    text-decoration: underline;
}
.footer-main-bottom{
    padding: 28px 15px;
}
.footer-bottom-container{
    padding: 14px 15px;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-container-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-main-bottom-items{
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-left: -15px;
    margin-right: -15px;
    font-size: 14px;
}
.footer-main-bottom-items .item{
    display: flex;
    align-items: center;
    margin: 15px;
    flex-wrap: wrap;
}
.footer-main-bottom-items .item-icon{
    margin-right: 10px;
    width: 32px;
    height: 32px;
}
.footer-main-bottom-items .item-icon img{
    width: 100%;
}
.footer-main-bottom-items .item-text{
    width: calc(100% - 42px);
}
.footer-main-bottom-items .item a{
    color: #fff;
}
.footer-main-bottom-items .item a:hover{
    color: #f7e33fed;
}
.footer-main-top-right_part .item-title-btn{
    display: none;
}
.development{
    margin-right: 30px;
}
.development a:hover{
    color: #fff;
}
.footer-text{
    margin-bottom: 30px;
    font-size: 14px;
}
.footer-bottom-right-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width: 1299px){
    .footer-main-top-right_part .col{
        width: 300px;
        padding-right: 30px;
    }
}
@media(max-width:1229px){
    .footer-main-top-left_part {
        width: 480px;
        padding-right: 30px;
    }
    .footer-main-top-right_part{
        max-width: calc(100% - 480px);
    }
    .footer-main-bottom-items{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer-main-bottom-items .item{
        font-size: 14px;
    }
}
@media(max-width:1199px){
    .footer-main-top-left_part {
        width: 440px;
        padding-right: 40px;
    }
    .footer-main-top-right_part {
        max-width: calc(100% - 440px);
    }
    .footer-main-top-right_part .col {
        width: 50%;
        padding-right: 2.5vw;
    }
    .footer-main-top-right_part .item-title{
        font-size: 14px;
    }
    .footer-main-top-right_part nav a{
        font-size: 12px;
    }
    .footer-text{
        font-size: 12px;
    }
}
@media(max-width:991px){
    .footer-main-top-inner{
        flex-wrap: wrap;
    }
    .footer-main-top-left_part{
        width: 100%;
        padding-right: 0;
    }
    .footer-main-top-right_part{
        width: 100%;
        max-width: 100%;
    }
}
@media(max-width: 767px){
    .footer-main-bottom-items{
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .footer-main-bottom-items .item{
        margin: 15px 0;
    }
    .footer-main-top{
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .footer-main-top-inner,
    .footer-main-top-right_part{
        display: block;
    }
    .footer-main-top-right_part .col{
        margin-bottom: 0;
        padding-right: 0;
        width: 100%;
    }
    .footer-main-top-right_part .dropdown{
        display: none;
        padding: 0 0 25px;
    }
    .footer-main-top-right_part .item{
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .footer-main-top-right_part .item-title{
        margin: 0;
        padding: 12px 48px 12px 0;
        position: relative;
        font-size: 15px;
    }
    .footer-main-top-right_part > div:last-of-type > .item{
        border-bottom: none;
    }
    .footer-main-top-right_part .item-title-btn{
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
    }
    .footer-main-top-right_part .item-title-btn g {
        stroke: #666666;
        transition: all ease-out 200ms;
    }
    .footer-main-top-right_part .item.active .item-title-btn svg{
        transform: rotate(45deg);
    }
    .footer-main-top-right_part nav a {
        font-size: 13px;
        color: rgba(255,255,255,0.9);
    }
    .footer-bottom-container-inner{
        align-items: center;
        font-size: 12px;
    }
    .footer-bottom-right-part{
        flex-wrap: wrap;
    }
    .footer-main-bottom,
    .footer-main-top,
    .footer-bottom-container{
        padding-left: 0;
        padding-right: 0;
    }
    .development{
        margin-right: 0;
        width: calc(100% - 60px);
    }
    .copyright{
        padding-right: 15px;
    }
}
@media(min-width:768px){
    .footer-main-top-right_part .item .dropdown{
        display: block !important;
    }
}
/* /. Footer */

/* Breadcrumbs */
.breadcrumb{
    margin: 20px 0 35px;
    font-size: 15px;
}
.breadcrumb > li {
    display: inline;
    color: #000;
    white-space: nowrap;
}
.breadcrumb > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.breadcrumb > li > a:after {
    content: '';
    display: inline-block;
    background: url(../images/breadcrumb-arrow.svg) 0 0 no-repeat;
    margin-left: 4px;
    margin-right: 0px;
    width: 20px;
    height: 17px;
    position: relative;
    top: -2px;
}
.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 */
.news{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
}
.news .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.news .item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #000;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    border-radius: 5px;
}
.news .item-img{
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.news .item-img img{
    width: 100%;
    transition: all ease-out 300ms;
}
.news .item-body{
    padding: 25px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news .item-date{
    color: #6A6A6A;
    margin-bottom: 5px;
    font-size: 14px;
}
.news .item-title{
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all ease-out 300ms;
}
.news .item:hover{
    box-shadow: 0 2px 14px rgba(0, 0, 0, .2);
}
.news .item:hover .item-img img{
    transform: scale(1.1);
}
.news .item:hover .item-title{
    color: #f7e33fed;
}
@media(max-width:1299px){
    .news .col{
        width: 33.3333%;
    }
    .news .item-title{
        font-size: 18px;
    }
}
@media(max-width:991px){
    .news{
        margin-left: -10px;
        margin-right: -10px;
    }
    .news .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .news .item-title{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .news .item-body{
        padding: 15px;
    }
    .news .item-date{
        font-size: 12px;
    }
    .news .item-title{
        font-size: 1.6vw;
    }
}
@media(max-width:767px){
    .news{
        margin-left: -5px;
        margin-right: -5px;
    }
    .news .col{
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .news .item-body{
        padding: 10px;
    }
    .news .item-date {
        font-size: 10px;
    }
    .news .item-title {
        font-size: 2.5vw;
        margin-bottom: 10px;
    }
    .news .item .more-link{
        display: none;
    }
}
@media(max-width:599px){
    .news .item-title {
        font-size: 3vw;
    }
}
/* /. news*/

/* news page*/
.news-page-columns{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news-page-columns .main-column{
    width: calc(100% - 530px);
}
.news-page-columns .sidebar{
    width: 470px;
}
.page-img{
    margin-bottom: 30px;
}
.page-img img{
    width: 100%;
    border-radius: 9px;
}
.page-date{
    color: #777777;
    margin-bottom: 10px;
    font-size: 14px;
}
.sidebar-widget{
    margin-bottom: 40px;
}
.sidebar-widget.last{
    margin-bottom: 0;
}
.sidebar-widget.popular-posts{
    margin-top: -4px;
    position: sticky;
    top: 20px;
}
.fix-panel-true + .main-content .sidebar-widget.popular-posts {
    top: 120px;
}
.sidebar-widget-title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}
.sidebar .popular-posts .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.sidebar .popular-posts .item-img{
    width: 150px;
}
.sidebar .popular-posts .item-img img{
    border-radius: 5px;
}
.sidebar .popular-posts .item-content{
    width: calc(100% - 150px);
    padding-left: 20px;
}
.sidebar .popular-posts .item-date{
    color: #777777;
    margin-bottom: 7px;
    font-size: 13px;
}
.sidebar .popular-posts .item-title{
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    transition: all ease-out 300ms;
}
.sidebar .popular-posts .item:hover .item-title{
    color: #f7e33fed;
}
.page-share{
    margin-bottom: 50px;
    margin-top: 30px;
}
.page-share-title{
    color: #222222;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item{
    margin-top: 0;
}
.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
    height: 36px !important;
    width: 36px !important;
}
.ya-share2__container_shape_round.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(.ya-share2__icon_more):not(.ya-share2__icon_copy) {
    background-size: 24px 24px !important;
    background-repeat: no-repeat;
}
.content img{
    width: auto !important;
    height: auto !important;
}

@media(max-width:1299px){
    .sidebar .popular-posts .item-content {
        width: calc(100% - 170px);
        padding-left: 22px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 16px;
    }
    .sidebar .popular-posts .item{
        margin-bottom: 25px;
    }
    .news-page-columns .sidebar {
        width: 450px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 490px);
    }
    .content p {
        font-size: 15px;
    }
}
@media(max-width:1199px){
    .sidebar .popular-posts .item-img {
        width: 150px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 150px);
        padding-left: 20px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 13px;
    }
    .news-page-columns .sidebar {
        width: 370px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 400px);
    }
    .sidebar-widget-title{
        font-size: 22px;
    }
}
@media(max-width:991px){
    .news-page-columns .main-column{
        width: 100%;
        margin-bottom: 20px;
    }
    .news-page-columns .sidebar{
        width: 100%;
    }
    .sidebar .popular-posts .item-title{
        font-size: 18px;
    }
}
@media(max-width:767px){
    .sidebar-widget-title{
        font-size: 18px;
    }
    .sidebar .popular-posts .item-img {
        width: 100px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 100px);
        padding-left: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 12px;
        margin-bottom: 4px;
    }
    .sidebar .popular-posts .item-title {
        font-size: 14px;
    }
} 
/* /. news page*/

/* team */
.team{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.team .col{
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.team .item{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.team .item-img{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
}
.team .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team .item-body{
    width: calc(100% - 140px);
    padding-left: 20px;
}
.team .item-title{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
}
.team .item-subtitle{
    color: #808080;
    font-size: 16px;
    margin-top: 15px;
}

@media(max-width: 1299px){
    .team .col{
        width: 50%;
    }
}
@media(max-width: 991px){
    .team .item{
        padding: 20px;
    }
    .team .item-img {
        width: 100px;
        height: 100px;
    }
    .team .item-body{
        width: calc(100% - 100px);
        padding-left: 20px;
    }
    .team .item-title{
        font-size: 20px;
    }
    .team .item-subtitle{
        margin-top: 5px;
    }
}
@media(max-width: 767px){
    .team .col{
        width: 100%;
    }
}
/* team */

/* contacts page */
.contacts-page-columns{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.map-section-contacts-block {
    width: 570px;
    background: #fff;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    padding: 70px 70px 80px;
    position: relative;
    z-index: 10;
}
.contacts-page-columns .map-wrapper{
    width: calc(100% - 570px);
}
.contacts-page-columns .map{
    height: 100%;
    min-height: 500px;
}
.contacts-page-content-wrapper{
    background: #fff;
    padding: 70px;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}
.map-section-contacts-block .item{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.map-section-contacts-block .item-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
}
.map-section-contacts-block .item-body{
    width: calc(100% - 50px);
    padding-left: 20px;
}
.map-section-contacts-block .item-title{
    font-weight: 600;
}
.map-section-contacts-block .item-phone{
    font-weight: 700;
    font-size: 18px;
}

.map-section-contacts-block .messengers-item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.map-section-contacts-block .messengers-item-title{
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    width: 115px;
}
.map-section-contacts-block .messengers-item-buttons{
    width: calc(100% - 115px);
    padding-left: 20px;
}
.map-section-contacts-block .messengers-item-buttons a {
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}
.map-section-contacts-block .messengers-item-buttons a img{
    margin-right: 5px;
}
.map-section-contacts-block .messengers-item-buttons a:last-of-type{
    margin-right: 0;
}
.map-section-contacts-block .messengers-item-buttons a img{
    height: 18px;
}
.map-section-contacts-block .messengers-item-buttons a:hover{
    box-shadow: 0 0 0 2px rgb(0 0 0 / 15%);
}

@media(max-width: 1249px){
    .map-section-contacts-block {
        width: 500px;
        padding: 60px 60px 70px;
    }
    .contacts-page-columns{
        margin-bottom: 15px;
    }
    .contacts-page-columns .map-wrapper{
        width: calc(100% - 500px);
    }
    .contacts-page-content-wrapper{
        padding: 60px;
    }
}
@media(max-width: 991px){
    .contacts-page-columns{
        margin-bottom: 10px;
    }
    .contacts-page-columns .map-section-contacts-block{
        width: 340px;
        padding: 30px;
    }
    .contacts-page-columns .map-wrapper{
        width: calc(100% - 340px);
    }
    .contacts-page-content-wrapper{
        padding: 30px;
    }
    .map-section-contacts-block {
        width: 440px;
        padding: 40px 40px 50px;
    }
    .map-section-contacts-block h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .map-section-contacts-block .item-icon{
        width: 44px;
        height: 44px;
    }
    .map-section-contacts-block .item-body {
        width: calc(100% - 44px);
        padding-left: 15px;
        font-size: 14px;
    }
    .map-section-contacts-block .item-phone{
        font-size: 16px;
        line-height: 1.4;
    }
    .map-section-contacts-block .item-title{
        font-size: 15px;
    }
    .map-section-contacts-block .messengers-item-title{
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .map-section-contacts-block .messengers-item-buttons {
        width: 100%;
        padding-left: 0;
    }
}
@media(max-width: 767px){
    .contacts-page-columns .map-section-contacts-block{
        width: 100%;
    }
    .contacts-page-columns .map-wrapper{
        width: 100%;
    }
    .contacts-page-content-wrapper{
        margin-bottom: 0;
    }
    .contacts-page-columns{
        margin-bottom: 30px;
        background-color: transparent;
    }
    .contacts-page-columns .map{
        min-height: 300px;
        height: 300px;
    }
    .contacts-page-content-wrapper .content{
        font-size: 14px;
    }
}
/* /. contacts page */

/* services */
.services{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.services .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.services .item{
    height: 100%;
    padding-left: 30px;
    display: block;
    color: #000;
}
.services .item-inner{
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    padding: 30px 30px 30px 0;
    height: 100%;
    border: 4px solid #eee;
    transition: all ease-out 300ms;
}
.services .item-img{
    width: 150px;
    position: relative;
    left: -30px;
}
.services .item-img img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    max-height: 195px;
    object-fit: cover;
}
.services .item-body{
    width: calc(100% - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 30px;
}
.services .item-img + .item-body{
    padding-left: 0;
}
.services .item-title{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}
.services .item-introtext{
    font-size: 14px;
}
.services .item .more-link{
    font-size: 13px;
    color: #FF5E0B;
}
.services .item:hover{
    transform: translateY(-10px);
}
.services .item:hover .item-inner{
    border-color: #FF5E0B;
}

@media(max-width: 1559px){
    .services .col{
        width: 50%;
    }
}
@media(max-width: 991px){
    .services .col{
        width: 100%;
    }
}
@media(max-width: 499px){
    .services .col{
        margin-bottom: 15px;
    }
    .services .item{
        padding: 0;
    }
    .services .item-inner{
        padding: 15px;
    }
    .services .item .more-link{
        display: none;
    }
    .services .item-img {
        width: 80px;
        height: 80px;
        left: 0;
    }
    .services .item-body {
        width: calc(100% - 80px);
        padding-left: 0;
    }
    .services .item-img + .item-body{
        padding-left: 15px;
    }
    .services .item-title {
        font-size: 18px;
        line-height: 1.2;
    }
    .services .item-introtext{
        font-size: 12px;
    }
    .services .item-introtext p{
        margin-bottom: 0;
    }
}
/* /. services */

/* application-section */
.application-block{
    display: flex;
    flex-wrap: wrap;
}
.application-block .col1{
    width: calc(100% - 450px);
    margin-bottom: 20px;
}
.application-block .col2{
    width: 450px;
    padding-left: 30px;
    margin-bottom: 20px;
}
.application-form {
    height: 100%;
    padding: 30px;
    border-radius: 10px;
    background: #f4f4f4;
    border: 5px solid #eee;
}
.application-form-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.application-form-row .col{
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
}
.application-form-row .btn{
    width: 100%;
    height: 60px;
}
.application-title{
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 30px;
}
.application-form .agreement{
    margin-bottom: 0;
}
.application-messengers {
    background: #fff;
    padding: 30px 30px 35px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    border: 5px solid #eee;
}
.application-messengers-title{
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.application-messengers a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    padding: 0 30px;
    border: 2px solid;
    border-radius: 4px;
    font-weight: 600;
    color: #fff;
}
.application-messengers .telegram-btn{
    background-color: #00A6FB;
    border-color: #00A6FB;
    margin-bottom: 10px;
}
.application-messengers .telegram-btn svg{
    fill: #fff;
    margin-right: 5px;
    transition: all ease-out 300ms;
}
.application-messengers .telegram-btn:hover{
    background: #fff;
    border-color: #00A6FB;
    color: #00A6FB;
}
.application-messengers .telegram-btn:hover svg{
    fill: #00A6FB;
}
.application-messengers .whatsapp-btn{
    background-color: #94BF4C;
    border-color: #94BF4C;
    color: #fff;
}
.application-messengers .whatsapp-btn svg{
    fill: #fff;
    margin-right: 5px;
    transition: all ease-out 300ms;
}
.application-messengers .whatsapp-btn:hover{
    background: #fff;
    border-color: #94BF4C;
    color: #94BF4C;
}
.application-messengers .whatsapp-btn:hover svg{
    fill: #94BF4C;
}

@media(max-width: 1299px){
    .application-block .col1 {
        width: calc(100% - 350px);
    }
    .application-block .col2 {
        width: 350px;
        padding-left: 20px;
    }
    .application-messengers {
        padding: 20px 20px 25px;
    }
    .application-form {
        padding: 20px;
    }
    .application-title{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media(max-width: 1099px){
    
    .application-form-row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .application-form-row .col{
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media(max-width: 991px){
    .application-block .col1{
        width: 100%;
    }
    .application-block .col2{
        width: 100%;
        padding-left: 0;
    }
    .application-messengers{
        display: block;
    }
    .application-messengers-buttons{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .application-messengers-buttons a{
        width: calc(50% - 5px);
    }
}
@media(max-width: 767px){
    .application-form-row .col{
        width: 100%;
    }
    .application-form .agreement{
        margin-top: 20px;
    }
    .application-messengers{
        padding: 20px 20px 30px;
    }
    .application-messengers a{
        width: 100%;
        max-width: 100%;
        margin-right: 0!important;
    }
    .application-title{
        font-size: 16px;
    }
}
/* /. application-section */


/* content-blocks */
.content-blocks .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
.content-blocks .item-content{
    width: 60%;
    padding-bottom: 30px;
}
.content-blocks .item-img{
    width: 40%;
    padding: 0 30px 60px 50px;
    position: relative;
}
.content-blocks .item-img img{
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}
.content-blocks .item-img:before{
    content: "";
    position: absolute;
    right: 0;
    top: 30px;
    bottom: 30px;
    left: 80px;
    background: #F4F4F4;
    border-radius: 10px;
}
.content-blocks .item:nth-child(even) .item-content{
    order: 2;
}
.content-blocks .item:nth-child(even) .item-img{
    order: 1;
    padding: 0 50px 60px 30px;
}
.content-blocks .item:nth-child(even) .item-img:before{
    left: 0;
    right: 80px;
}

@media(max-width:991px){
    .content-blocks .item-content {
        width: 100%;
        order:2;
    }
    .content-blocks .item-img{
        order:1;
        width: 100%;
        padding: 0 0 60px 30px !important;
    }
    .content-blocks .item-img:before{
        left: 0 !important;
        right: 60px !important;
    }
}
/* /. content-blocks */

/* search results page */
.simplesearch-results + .simplesearch-paging{
    display: none;
}

p.simplesearch-results {
    margin-bottom: 40px;
    background: #f7f7f7;
    border: 1px solid #d0d1d0;
    padding: 30px;
    font-weight: bold;
    font-size: 22px;
    display: block;
}
.simplesearch-paging{
    font-size: 26px;
}
.simplesearch-result h3{
    text-transform: none;
    font-size: 26px;
    margin-bottom: 10px;
}
.simplesearch-result{
    margin-bottom: 35px;
}
/* /. search results page */

/* testimonials */
.testimonials{
    margin-bottom: 40px;
    display: inline-block;
}
.testimonials .item{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    color: #000;
    transition: all ease-out 300ms;
    position: relative;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
}
.testimonials .item:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
}
.testimonials .item-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.testimonials .item-body{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 110px);
    padding-right: 30px;
}
.testimonials .item-icon{
    width: 40px;
}
.testimonials .item-content{
    width: calc(100% - 40px);
    padding-left: 15px;
}
.testimonials .item-title{
    font-weight: bold;
    font-size: 22px;
}
.testimonials .item-title-icon{
    display: inline-block;
    background: url(../images/ext-link.svg);
    height: 16px;
    width: 16px;
}
.testimonials-stats{
    font-weight: normal;
    font-size: 16px;
}
.testimonials .rating {
    position: relative;
    height: 24px;
    width: 110px;
    color: #c1c1c1;
    white-space: nowrap;
    margin-bottom: 0;
}
.testimonials .rating .real {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffc04c;
    width: 0;
    height: 23px;
    overflow: hidden;
    white-space: nowrap;
}
.testimonials .rating svg {
    width: 19px;
    height: 16.875;
}
.testimonials .rating.rating1 .real {
    width: 20%;
}
.testimonials .rating.rating2 .real {
    width: 40%;
}
.testimonials .rating.rating3 .real {
    width: 60%;
}
.testimonials .rating.rating4 .real {
    width: 80%;
}
.testimonials .rating.rating5 .real {
    width: 100%;
}


@media(max-width: 559px){
    .testimonials{
        width: 100%;
    }
    .testimonials .item{
        padding: 15px;
    }
    .testimonials .item-body{
        padding-right: 15px;
    }
    .testimonials .item-content{
        padding-left: 10px;
    }
    .testimonials .item-title{
        font-size: 18px;
    }
    .testimonials-stats{
        font-size: 13px;
    }
}
@media(max-width: 359px){
    .testimonials .item{
        padding: 10px;
    }
    .testimonials .item-title{
        font-size: 16px;
    }
    .testimonials-stats{
        font-size: 10px;
    }
    .testimonials .item-icon{
        width: 20px;
    }
    .testimonials .item-content {
        width: calc(100% - 20px);
    }
    .testimonials .item-title-icon {
        background-size: contain;
        height: 12px;
        width: 12px;
    }
}
/* /. testimonials */

/* shop-categories */
.shop-categories-section{
    width: 100%;
}
.shop-categories-inner{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.shop-categories-section .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.shop-categories-section .item{
    height: 100%;
    display: block;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    background: #fff;
    transition: all 200ms ease-out;
}
.shop-categories-section .item-img{
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.shop-categories-section .item-img img{
    max-height: 100%;
}
.shop-categories .item-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
}
.shop-categories-section .item:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-color: #fff;
}
@media(max-width: 1489px){
    .shop-categories-inner{
        margin-left: -7px;
        margin-right: -7px;
    }
    .shop-categories-section .col{
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }
}
@media(max-width: 1199px){
    .shop-categories-section .col{
        width: 33.3333%;
    }
}
@media(max-width: 767px){
    .shop-categories-section .col{
        width: 50%;
    }
    .shop-categories-section.item{
        padding: 2vw;
    }
    .shop-categories-section .item-img{
        height: 25vw;
    }
    .shop-categories-section .item-title{
        font-size: 3vw;
    }
}
@media(max-width: 499px){
    .shop-categories-section .item-title{
        font-size: 3.5vw;
    }
}
/* /. shop-categories*/

/* shop-subcategories */
.shop-subcategories-inner{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.shop-subcategories-inner .col{
    width: 25%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
.shop-subcategories-inner .item{
    display: flex;
    align-items: center;
    border: 1px solid #ececec;
    background-color: #fff;
    height: 100%;
    min-height: 110px;
    padding: 25px;
    line-height: 1.2;
    color: #000;
    border-radius: 5px;
}
.shop-subcategories-inner .item-img{
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.shop-subcategories-inner .item-img img{
    max-height: 100%;
}
.shop-subcategories-inner .item-body{
    padding-left: 20px;
}
.shop-subcategories-inner .item-title{
    font-size: 15px;
}
.shop-subcategories-inner .item:hover{
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
@media(max-width: 1199px){
    .shop-subcategories-inner .item{
        padding: 20px;
    }
    .shop-subcategories-inner .item-img{
        width: 50px;
        height: 50px;
    }
    .shop-subcategories-inner .item-body{
        padding-left: 15px;
    }
    .shop-subcategories-inner .item-title{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .shop-subcategories-inner .col{
        width: 33.3333%;
    }
}
@media(max-width: 767px){
    .shop-subcategories-inner .col{
        width: 50%;
    }
    .shop-subcategories-inner .item{
        min-height: 100px;
    }
    .shop-subcategories-inner .item-img{
        width: 60px;
        height: 60px;
    }
    .shop-subcategories-inner .item-body{
        padding-left: 20px;
    }
    .shop-subcategories-inner .item-title{
        font-size: 15px;
    }
}
@media(max-width: 599px){
    .shop-subcategories-inner .col{
        width: 100%;
    }
}
/* /. shop-subcategories */

/* catalog categories page*/
.catalog-categories-columns{
    display: flex;
    flex-wrap: wrap;
}
.catalog-categories-aside{
    width: 320px;
}
.catalog-categories-column{
    width: calc(100% - 320px);
    padding-left: 30px;
}
.catalog-categories-nav-title{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}
.catalog-categories-nav {
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 1px solid #ececec;
    border-radius: 5px;
}
.catalog-categories-nav a {
    display: block;
    text-decoration: none !important;
    color: #232323;
    padding: 15px 20px 15px 0;
    font-size: 16px;
    background: #fff;
    line-height: 1.3;
    font-weight: 600;
}
.catalog-categories-nav > ul > li{
    border-bottom: 1px solid #ececec;
}
.catalog-categories-nav .down > a{
    padding-right: 30px;
}
.catalog-categories-nav > ul > li:last-of-type{
    border-bottom: none;
}
.catalog-categories-nav li:hover > a,
.catalog-categories-nav .open > a,
.catalog-categories-nav .active > a{
    color: #f29146 !important;
}
.catalog-categories-nav > ul ul{
    display: none;
}
.catalog-categories-nav .active > ul{
    display: block;
}
.catalog-categories-nav > ul li{
    position: relative;
}
.catalog-categories-nav > ul .dropdown-button{
    height: 51px;
    width: 30px;
    display: block;
    z-index: 20;
    top: 0;
    right: 0;
    position: absolute;
    cursor: pointer;
}
.catalog-categories-nav > ul .dropdown-button:after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 17px;
    right: 0;
    border-bottom: 1px solid #747474;
    border-right: 1px solid #747474;
    transform: rotate(45deg);
    transition: all 200ms ease-out;
}
.catalog-categories-nav > ul .dropdown-button.active:after{
    transform: rotate(225deg);
    top: 23px;
}
.catalog-categories-nav > ul ul .dropdown-button{
    height: 37px;
}
.catalog-categories-nav > ul ul .dropdown-button:after{
    top: 5px;
}
.catalog-categories-nav > ul ul .dropdown-button.active:after,
.catalog-categories-nav > ul ul .active > a + .dropdown-button:after,
.catalog-categories-nav > ul ul .open > a + .dropdown-button:after{
    top: 10px;
}
.catalog-categories-nav ul ul{
    padding-left: 12px;
    margin-bottom: 12px;
}
.catalog-categories-nav ul ul a{
    font-weight: normal;
    font-size: 13px;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}
.catalog-categories-nav  ul ul > li > a:before{
    content:"";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    top: 11px;
    left: -15px;
    background: #D5D5D5;
}


@media (max-width: 991px) {
    .catalog-categories-nav-wrapper{
        display: none;
    }
}

.catalog {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.catalog .col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 33.3333%;
}
.catalog.cols4 .col{
    width: 25%;
}
.catalog .item {
    color: #333;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    padding: 40px 25px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.gray-bg .catalog .item{
    border-color: #fff;
}
.catalog .item:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-color: #fff;
}
.catalog .item-img {
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.catalog .item-img img{
    max-height: 100%;
}
.product-tags{
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 15;
    color: #fff;
    text-align: left;
}
.product-gallery .product-tags{
    left: 20px;
    top: 20px;
}
.product-tags span{
    margin: 0 3px 3px 0;
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.product-tags span.product-tag-new{
    background: #76B500;
}
.product-tags span.product-tag-popular{
    background: #FFCA1E;
}
.product-tags span.product-tag-favorite{
    background: #893CA9;
}
.product-tags span.product-tag-sale{
    background: #FF1B2D;
}
.catalog .item-inner {
    flex: 1 0 auto;
    display: flex;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.catalog .item-footer {
    padding-top: 20px;
}
.catalog .item-footer .btn{
    margin-bottom: 0;
    background: #fff;
    border: 1px solid #f7e33fed;
    color: #f7e33fed;
}
.catalog .item-footer .btn:hover{
    background: #f7e33fed;
    color: #fff;
}
.catalog .item-article{
    font-size: 14px;
    margin-bottom: 10px;
    height: 24px;
    white-space: nowrap;
}
.catalog .item-title{
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}
.catalog .item-prices{
    margin-bottom: 20px;
}
.catalog .item-price{
    font-size: 20px;
    font-weight: 500;
}
.catalog .item-old-price{
    text-decoration: line-through;
    color: #777;
}
.catalog .item-old-price + .item-price{
    margin-left: 10px;
}
.catalog-carousel{
    display: block;
}
.catalog-carousel > div:not(:first-of-type){
    display: none;
}
.catalog-carousel .slick-list{
    padding-top: 10px;
}
.catalog-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.catalog-carousel .slick-slide {
    height: inherit;
}
.catalog-carousel .slick-slide>div {
    height: 100%;
}
.catalog-carousel .slick-next{
    left: auto;
    right: 5px;
    width: 40px;
    height: 40px;
}
.catalog-carousel .slick-prev{
    left: auto;
    right: 55px;
    width: 40px;
    height: 40px;
}
.products-carousel-section h2{
    padding-right: 120px;
}

.looked-section .catalog{
    margin-left: -5px;
    margin-right: -5px;
}
.looked-section .catalog .col{
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
.looked-section .catalog .item{
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
}
.looked-section .catalog .item-img{
    height: 80px;
    width: 80px;
    flex-shrink: 0;
}
.looked-section .catalog .item-img img{
    max-height: 100%;
}
.looked-section .catalog .item-body{
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.looked-section .catalog .item-title{
    font-weight: 400;
    font-size: 15px;
    height: 58px;
    overflow: hidden;
}
.looked-section .catalog .item-prices{
    margin-bottom: 0;
    margin-top: 10px;
    text-align: right;
}
.looked-section .catalog .item-price{
    font-size: 18px;
}
.looked-section .catalog .item-old-price{
    font-size: 16px;
}

@media(max-width: 1489px){
    .catalog-categories-column{
        padding-left: 15px;
    }
    .catalog{
        margin-left: -7px;
        margin-right: -7px;
    }
    .catalog .col {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }
    .catalog .item-img{
        height: 16vw;
    }
    .catalog-carousel .slick-next{
        right: 7px;
    }
    .catalog-carousel .slick-prev{
        right: 57px;
    }
}
@media(max-width: 1299px){
    .catalog .col {
        width: 50%;
    }
    .catalog.cols4 .col{
        width: 33.3333%;
    }
    .catalog .item-img {
        height: 22vw;
    }
}
@media(max-width: 991px){
    .catalog .col {
        width: 33.3333%;
    }
    .catalog-categories-aside{
        width: 100%;
    }
    .catalog-categories-column{
        width: 100%;
        padding-left: 0;
    }
    .catalog .item-old-price,
    .catalog .item-price{
        display: block;
    }
    .catalog .item-old-price + .item-price{
        margin-left: 0;
    }
    .looked-section .catalog .item-img{
        height: 60px;
        width: 60px;
    }
    .looked-section .catalog .item-body{
        padding-left: 15px;
    }
    .looked-section .catalog .item-title{
        font-size: 13px;
        height: 51px;
    }
    .looked-section .catalog .item-price{
        font-size: 16px;
    }
    .looked-section .catalog .item-old-price{
        font-size: 14px;
    }
    .looked-section  .catalog .item-old-price,
    .looked-section  .catalog .item-price{
        display: inline-block;
    }
}
@media(max-width: 767px){
    .catalog .col,
    .catalog.cols4 .col{
        width: 50%;
    }
    .catalog .item-img {
        height: 30vw;
    }
    .catalog-carousel{
        padding-top: 50px;
    }
    .catalog-carousel .slick-next{
        right: auto;
        left: 57px;
        top: 0;
    }
    .catalog-carousel .slick-prev{
        right: auto;
        left: 7px;
        top: 0;
    }
    .products-carousel-section h2{
        padding-right: 0;
    }
}
@media(max-width: 699px){
    .catalog .item{
        padding: 60px 3vw 3vw;
    }
    .product-tags{
        top: -50px;
    }
    .catalog .item-inner{
        padding-top: 3vw;
    }
    .catalog .item-footer{
        padding-top: 3vw;
    }
    .catalog .item-prices{
        margin-bottom: 2.8vw;
    }
    .catalog .item-article {
        font-size: 2.4vw;
        margin-bottom: 2vw;
        height: 3vw;
    }
    .catalog .item-title{
        font-size: 3vw;
    }
    .catalog .item-old-price{
        font-size: 3vw;
    }
    .catalog .item-price{
        font-size: 4vw;
    }
    .catalog .item .btn.mid{
        height: 9vw;
        padding: 0 3vw;
        border-width: 1px;
        font-size: 3vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .looked-section .catalog .item{
        flex-direction: column;
    }
    .looked-section .catalog .item-img{
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .looked-section .catalog .item-body{
        padding-left: 0;
    }
    .looked-section .catalog .item-title{
        font-size: 15px;
        font-weight: 500;
        height: auto;
    }
}
@media(max-width: 429px){
    .catalog .col, .catalog.cols4 .col{
        width: 100%;
    }
    .catalog .item-img{
        height: 60vw;
    }
    .catalog .item{
        padding: 60px 6vw 6vw;
    }
    .catalog .item-article {
        font-size: 4vw;
        margin-bottom: 4vw;
        height: 6vw;
    }
    .catalog .item-title{
        font-size: 5vw;
    }
    .catalog .item-old-price{
        font-size: 5vw;
    }
    .catalog .item-price{
        font-size: 8vw;
    }
    .catalog .item .btn.mid {
        height: 15vw;
        font-size: 5vw;
    }
}
/* /. catalog categories page*/

/* product page */
.product-page-thumb-carousel .item-inner{
    position: relative;
}
.product-page-carousel .item a:after, 
.product-page-thumb-carousel .item-inner:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #ececec;
    z-index: 1;
    border-radius: 5px;
}
.product-page-thumb-carousel .slick-current .item-inner:after{
    border: 2px solid #f29146;
}
.product-page-carousel > div:not(:first-of-type),
.product-page-thumb-carousel > div:not(:first-of-type){
    display: none;
}
.product-page-carousel .item a{
    display: block;
    position: relative;
    z-index: 5;
}
.product-page-thumb-carousel-wrapper{
    width: 608px;
    max-width: 100%;
}
.product-page-thumb-carousel{
    margin-left: -3px;
    margin-right: -3px;
    margin-top: 6px;
}
.product-page-thumb-carousel .item{
    width: 25%;
    padding-left: 3px;
    padding-right: 3px;
}
.product-page-carousel img,
.product-page-thumb-carousel img{
    width: 100%;
}

.product-page-main-block{
    display: flex;
    flex-wrap: wrap;
}
.product-page-gallery{
    width: 450px;
}
.product-page-info{
    width: calc(100% - 450px);
    padding-left: 30px;
}
.product-page-info .item-article{
    margin-bottom: 20px;
}
.product-page-info .item-prices{
    margin-bottom: 20px;
}
.product-page-info .item-old-price{
    text-decoration: line-through;
    font-size: 18px;
}
.product-page-info .item-old-price + .item-price{
    margin-left: 10px;
}
.product-page-info .item-price{
    font-size: 24px;
    font-weight: 600;
}

.application-buttons-block{
    margin: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.application-buttons-block .col{
    margin-bottom: 30px;
}
.application-buttons-block .col1{
    margin-right: 30px;
}
.application-buttons-block .btn-cart{
    width: 250px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 0;
}
.product-page-info .oneclick-link a{
    border-bottom: 1px dashed;
    font-size: 18px;
}
.product-page-info .oneclick-link a:hover{
    border-bottom-color: transparent;
}

.application-buttons-block .item-counter-inner{
    width: 130px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.application-buttons-block .item-counter-inner .input-number{
    display: inline-block;
    height: 22px;
    width: 32px;
    padding: 0;
    text-align: center;
    font-size: 16px;
    line-height:16px;
    background: transparent;
    border: none;
    margin: 0;
    font-weight: bold;
}
.application-buttons-block .item-counter-inner button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: #e5e5e5;
    transition: all 200ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.application-buttons-block .item-counter-inner button:hover svg path{
    stroke: #000;
}
.application-buttons-block .count-input-wrapper{
    position: relative;
    display: inline-block;
}
.application-buttons-block .count-input-wrapper:before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-chars-block{
    margin: 40px 0;
    width: 450px;
    max-width: 100%;
}
.product-chars-block .title{
    font-family: SuisseIntl-Book, sans-serif;
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
}
.chars-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    position: relative;
    font-size: 14px;
}
.chars-row > div:nth-of-type(1) {
    display: block;
    background: #fff;
    position: relative;
    z-index: 5;
    padding: 0 3px 0 0;
}
.chars-row  > div:nth-of-type(2) {
    display: block;
    background: #fff;
    position: relative;
    z-index: 5;
    padding: 0 0 0 3px;
    font-weight: bold;
}
.chars-row:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    border-bottom: 1px dotted #9F9F9F;
}
@media(max-width: 1299px){
    .application-buttons-block .col1{
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    .application-buttons-block .col2{
        width: 100%;
    }
}
@media(max-width: 1199px){
    .product-page-template .catalog-categories-aside{
        display: none;
    }
    .product-page-template .catalog-categories-column{
        padding-left: 0;
        width: 100%;
    }
    .product-page-gallery{
        width: 350px;
    }
    .product-page-info {
        width: calc(100% - 350px);
        padding-left: 20px;
    }
    .product-chars-block{
        width: 100%;
    }
}
@media(max-width: 767px){
    .product-page-gallery{
        width: 50%;
    }
    .product-page-info{
        width: 50%;
    }
}
@media(max-width: 599px){
    .product-page-gallery{
        width: 100%;
    }
    .product-page-info{
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
}
/* /. product page */


/****** cart page*/
.cart-section .cart-item{
    border: 1px solid #E5E5E5;
    padding: 20px 40px 20px 20px;
    margin-bottom: 30px;
    border-radius: 7px;
}
.cart-section .cart-item-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}
.cart-section .remove{
    position: absolute;
    right: -25px;
    top: -5px;
    z-index: 20;
}
.cart-section .remove button{
    cursor: pointer;
    color: red;
    padding: 0;
    border: 0;
    background: transparent;
}
.cart-section .remove svg{
    width: 20px;
    height: 20px;
    transition: all 200ms ease-out;
}
.cart-section .remove:hover svg{
    transform: rotate(180deg);
}
.cart-section .left-part{
    width: 105px;
    align-self: flex-start;
}
.cart-section .left-part a{
    display: block;
}
.cart-section .left-part a:hover{
    opacity:0.8;
}
.cart-section .right-part{
    width: 440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-section .center-part{
    width: calc(100% - 545px);
    padding: 0 30px;
}

.cart-section .item-counter-inner{
    border: 1px solid #e1e0e0;
    width: 100px;
    max-width: 100%;
    height: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    border-radius: 5px;
}
.cart-section .item-counter-inner .input-number{
    display: inline-block;
    height: 22px;
    width: 22px;
    padding: 0;
    text-align: center;
    font-size: 16px;
    line-height:16px;
    background: transparent;
    border: none;
    margin: 0;
    font-weight: bold;
}
.cart-section .item-counter-inner button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    transition: all 200ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-section .item-counter-inner button:hover svg path{
    stroke: #f7e33fed;
}
.cart-section .count-input-wrapper{
    position: relative;
    display: inline-block;
}
.cart-section .count-input-wrapper:before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.cart-section .technikal-btn{
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
}
.cart-section .item-price-title,
.cart-section .item-cost-title{
    font-weight: 500;
    color: #747474;
}
.cart-section .item-cost .ms2_cost,
.cart-section .item-price .price{
    font-size: 18px;
}

.cart-section .item-product-information-title a{
    color: #000;
    font-size: 16px;
}
.cart-section .item-product-information-title a:hover{
    text-decoration: underline;
}

.cart-section .cart-total{
    font-size: 24px;
    margin-bottom: 20px;
}

.cart-section .cart-buttons{
    display: flex;
    align-items: center;
}
.cart-section .cart-buttons .btn{
    margin-bottom: 0;
}
.cart-section .clean-cart{
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #1c2e36;
    background: #fff;
    border-radius: 7px;
    margin-right: 10px;
    transition: all ease-out 300ms;
}
.cart-section .clean-cart svg{
    width: 20px;
    fill: #1c2e36;
    transition: all ease-out 300ms;
}
.cart-section .clean-cart:hover{
    border-color: #f7e33fed;
}
.clean-cart:hover svg{
    fill: #f7e33fed;
}

@media(max-width:991px){
    .cart-section .center-part{
        padding: 0 20px;
        width: calc(100% - 425px);
    }
    .item-product-information-title a{
        font-size: 13px;
    }
    .cart-section .cart-item {
        padding: 15px 30px 15px 15px;
        margin-bottom: 20px;
    }
    .cart-section .remove{
        top: -10px;
    }
    .cart-section .item-cost .ms2_cost, 
    .cart-section .item-price .price{
        font-size: 15px;
    }
    .cart-section .item-counter-inner{
        height: 38px;
        margin: 0 10px;
    }
    .cart-section .right-part{
        width: 320px;
    }
}
@media(max-width:767px){
    .cart-section .cart-item{
        padding: 20px 15px 20px 15px;
    }
    .cart-section .right-part{
        width: 320px;
        margin-top: 20px;
        max-width:100%;
    }
    .cart-section .center-part{
        padding: 0 0 0 15px;
        width: calc(100% - 105px);
    }
    .cart-section .remove {
        top: -17px;
        right: -12px;
    }
    .cart-section .item-product-information-title a {
        font-size: 12px;
        line-height: 1.6;
        display: inline-block;
    }
    .cart-section .item-price, 
    .cart-section .item-cost{
        font-size: 15px;
    }
    .cart-section .item-counter-inner{
        width: 80px;
    }
    .cart-section .item-counter-inner button{
        width: 24px;
    }
    .cart-section .item-counter-inner .input-number{
        font-size: 14px;
        line-height: 14;
    }
    .cart-section .item-counter-inner button svg{
        width: 12px;
    }
    .cart-section .cart-total{
        font-size: 18px;
    }
}
@media(max-width: 429px){
    .cart-section .right-part{
        flex-wrap: wrap;
    }
    .cart-section .right-part .item-price{
        width: 100%;
        order: 2;
        display: flex;
    }
    .cart-section .right-part .item-counter{
        width: 100%;
        order: 1;
        margin-bottom: 15px;
    }
    .cart-section .item-counter-inner{
        margin-left: 0;
        margin-right: 0;
    }
    .cart-section .right-part .item-cost{
        width: 100%;
        order: 3;
        display: flex;
        margin-top: 5px;
    }
    .cart-section .right-part .item-price-title,
    .cart-section .right-part .item-cost-title{
        margin-right: 5px;
        color: #000;
    }
    .cart-section .right-part .item-price-title:after,
    .cart-section .right-part .item-cost-title:after{
        content: ":";
    }
    .cart-section .left-part{
        width: 100%;
    }
    .cart-section .center-part{
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
}
/****** /. cart page*/

/****** Order Page */
.order-section .order-grid{
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 1fr 1fr;
}
.order-section .input-group-1,
.order-section .input-group-2,
.order-section .input-group-3{
    display: grid;
    grid-column-gap: 20px;
}
.order-section .input-group-1{
    grid-template-columns: 1fr 1fr;
}
.order-section .input-group-2{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.input-group-2 > .col:first-child{
    grid-column-start: 1;
    grid-column-end: 5;
}
.input-group-2 > .col:nth-child(2){
    grid-column-start: 1;
    grid-column-end: 3;
}

.order-section .checkbox label{
    padding-left: 38px;
    position: relative;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
    margin-bottom: 15px;
    display: inline-block;
}
.order-section .checkbox label input{
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
.order-section .checkbox label > div{
    position: absolute;
    left: 5px;
    top: 0;
    width: 22px;
    height: 22px;
    display: block;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.25);
    transition: 300ms all;
    border-radius: 2px;
}
.order-section .checkbox label:hover > div{
    border-color: #f7e33fed;
}
.order-section .checkbox label > div.radio{
    border-radius: 100%;
}
.order-section .checkbox label > div.radio:before{
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    content: '';
    display: block;
    background-color: white;
    border-radius: 100px;
    opacity: 0;
    transform: scale(0);
    transition: 300ms all;
}
.order-section .checkbox input:checked + .radio{
    border-color: #f7e33fed;
    background-color: #f7e33fed;
}
.order-section #msOrder .radio{
    min-height: 1px;
}
.order-section .checkbox input:checked + .radio:before{
    opacity: 1;
    transform: scale(0.5);
}
.order-section .checkboxsquare svg {
    width: 100%;
    opacity: 0;
    transform: scale(0);
    transition: 300ms all;
}
.order-section .checkbox input:checked + .checkboxsquare{
    border-color: #f7e33fed;
    background-color: #f7e33fed;
}
.checkbox input:checked + .checkboxsquare svg{
    opacity: 1;
    transform: scale(1);
}
.order-section #msOrder .radio{
    min-height: 1px;
}
.order-section input[type="checkbox"].error + div + span{
    color: red;
}
.order-section .checkbox input:checked.error + div + span{
    color: #444444;
}
.order-section .checkbox p.small{
    padding-left: 38px;
    font-size: 14px;
    color: #444;
}

.order-section #msOrder .form-control.error{
    border: 2px solid #FF1A00 !important;
    box-shadow: none;
}

.order-section .button.disabled, 
.order-section .button.disabled:hover, 
.order-section .btn.disabled, 
.order-section .btn.disabled:hover {
    background: #dadada;
    border-color: #dadada;
    color: #1c1c1b;
    cursor: default;
}

.orderbutton-wrapper{
    display: inline-block;
}
.orderbutton-wrapper #orderbutton.disabled + span{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.order-section #agreement_order + label.err{
    color: #FF1A00;
}

.order-section #agreement_order + label a{
    color: #838383;
    text-decoration: underline;
}
.order-section #agreement_order + label a:hover{
    text-decoration: none;
    color: #000;
}
.order-section #agreement_order + label.err a{
    color: #FF1A00;
}
/* ======= /. custom check and radio ======= */
@media(max-width: 991px){
    .order-section .input-group-1 {
        grid-template-columns: 1fr;
    }
    .order-section .input-group-2 {
        grid-template-columns: 1fr 1fr;
    }
    .input-group-2 > .col:first-child,
    .input-group-2 > .col:nth-child(2){
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
@media(max-width:767px){
    .order-section .order-grid {
        grid-gap: 40px;
        grid-template-columns: 1fr;
    }
}

.jgrowlHide #jGrowl{
    display: none !important;
}
.isa_success {
    border: 1px solid #f29146;
    background-color: #fff9f5;
    margin: 0 0 10px;
    padding: 15px;
    border-radius: 5px;
}
.order-number{
    color: #f29146;
}
/****** /.Order Page */

.cart-page-empty-block{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 40px;
}
.cart-page-empty-block .item-icon{
    width: 90px;
    height: 90px;
    background: url(../images/scorp2.png) 0 -18px no-repeat;
}
.cart-page-empty-block .item-body{
    width: calc(100% - 90px);
    padding-left: 30px;
}
.cart-page-empty-block .item-title{
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.cart-page-empty-block .item-text{
    margin-bottom: 20px;
}
.cart-page-empty-block .button{
    margin-bottom: 0;
    border: none;
    padding-top: 8px;
    padding-bottom: 8px;
}
.cart-page-empty-block .button:hover{
    background: #414141;
    color: #fff;
}
/* alerts */
.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #356635
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #2d6987
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #c09853
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #a47e3c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #b94a48
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #953b39
}
/* /.alerts */

/* fixed cart */
.header-cart {
    position: fixed;
    top: 170px;
    right: 0;
    padding: 20px 10px 10px;
    z-index: 500;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 5px 0 0 5px;
    font-size: 13px;
    color: #000;
    text-align: center;
}
.header-cart-icon{
    display: inline-block;
    position: relative;
    bottom: -1px;
}
.header-cart svg{
    width: 18px;
}
.header-cart .ms2_total_count {
    top: -7px;
    right: -11px;
    background: #f7e33fed;
    color: #fff;
    position: absolute;
    font-size: 11px;
    line-height: 11px;
    text-align: center;
    padding: 3px 3px 2px 4px;
    border-radius: 10px;
    min-width: 16px;
}
#msMiniCart.header-cart .not_empty { 
    display: none; 
}
#msMiniCart.header-cart.full .empty{ 
    display: none; 
}
#msMiniCart.header-cart.full .not_empty{ 
    display: block;
}
.header-cart > div{
    align-items: center;
}
.header-cart .cart-text{
    white-space: nowrap;
    margin-left: 5px;
    display: block;
    font-size: 12px;
    color: #858a93;
}
.header-cart .not_empty:hover .cart-text{
    text-decoration: underline;
}
@media(max-width:991px){
    .header-cart{
        top: 90px;
    }
}

/* /. fixed cart */





/* Top slider */

.top-slider>div {
	display: none;
}

.top-slider>div:first-of-type,
.top-slider.slick-slider>div {
	display: block;
}

.top-slider .slick-dots {
	position: absolute;
	bottom: 25px;
}



.top-slider .item {
	overflow: hidden;
	position: relative;
}

.top-slider .item-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.top-slider .item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-slider .item-inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 41vw;
	max-height: 650px;
}

.top-slider .item .title {
	font-size: 51px;
	line-height: 1.2;
	margin-bottom: 30px;
	max-width: 65%;
	font-weight: 700;
}

.top-slider .item .text {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 15px;
	/*max-width: 65%;*/
	font-weight: 300;
}

.slider-buttons {
	width: 100%;
}

.top-slider .telega-btn {
    background: #0076f5;
    color:#fff;
}
.top-slider .telega-btn svg {
    width: 20px;
    height: 22.844px;
    margin-right: 5px;
    position: relative;
}
.top-slider .btn {
	height: 51px;
	padding: 0;
	line-height: 51px;
	    width: 100%;
}

.top-slider .callback-btn svg {
	width: 21px;
	height: 21px;
	margin-right: 5px;
	position: relative;
	bottom: -4px;
}

.top-slider .whatsapp-btn {
	background: #752cc5;
}

.top-slider .whatsapp-btn svg {
	width: 20px;
	height: 22.844px;
	margin-right: 5px;
	position: relative;
}

.top-slider .slick-prev,
.top-slider .slick-next {
	border: none;
	/*background: #fff;*/
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}


.top-slider .slick-prev:hover:after,
.top-slider .slick-next:hover:after {
	border-color: #fff;
}

@media (max-width: 1919px) {
	.top-slider .item .title {
		font-size: 3vw;
		margin-bottom: 2vw;
	}
}

@media (max-width: 1229px) {
	.slider-buttons {
		width: 65%;
	}
	.top-slider .item .text {
		font-size: 1.5vw;
		margin-bottom: 2.5vw;
	}
}

@media (max-width: 991px) {
	.top-slider .btn {
		height: 5vw;
		line-height: 5vw;
		font-size: 1.5vw;
		margin-bottom: 1.5vw;
	}
	.top-slider .item .text {
		font-size: 2vw;
		margin-bottom: 3vw;
	}
	.top-slider .btn svg {
		display: none;
	}
	.top-slider .slick-dots {
		bottom: 15px;
	}
}

@media (max-width: 767px) {
	.top-slider .item-inner {
		height: 113vw;
	}
	.top-slider .item .title {
		font-size: 3.7vw;
		margin-bottom: 2vw;
		max-width: 70%;
	}
	.top-slider .item .text {
		font-size: 2.5vw;
		margin-bottom: 3vw;
		/*max-width: 70%;*/
	}
	.slider-buttons {
		width: 100%;
	}
	.top-slider .btn {
		height: 8vw;
		line-height: 8vw;
		font-size: 2.2vw;
		margin-bottom: 1.5vw;
	}
}


/* /. Top slider */
.container:before,
.container:after,
.row:before,
.row:after
{
  display: table;
  content: " ";
}
.container:after,
.row:after{
  clear: both;
}
.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.row.big .col-lg-1,.row.big .col-lg-10,.row.big .col-lg-11,.row.big .col-lg-12,.row.big .col-lg-2,.row.big .col-lg-3,.row.big .col-lg-4,.row.big .col-lg-5,.row.big .col-lg-6,.row.big .col-lg-7,.row.big .col-lg-8,.row.big .col-lg-9,.row.big .col-md-1,.row.big .col-md-10,.row.big .col-md-11,.row.big .col-md-12,.row.big .col-md-2,.row.big .col-md-3,.row.big .col-md-4,.row.big .col-md-5,.row.big .col-md-6,.row.big .col-md-7,.row.big .col-md-8,.row.big .col-md-9,.row.big .col-sm-1,.row.big .col-sm-10,.row.big .col-sm-11,.row.big .col-sm-12,.row.big .col-sm-2,.row.big .col-sm-3,.row.big .col-sm-4,.row.big .col-sm-5,.row.big .col-sm-6,.row.big .col-sm-7,.row.big .col-sm-8,.row.big .col-sm-9,.row.big .col-xs-1,.row.big .col-xs-10,.row.big .col-xs-11,.row.big .col-xs-12,.row.big .col-xs-2,.row.big .col-xs-3,.row.big .col-xs-4,.row.big .col-xs-5,.row.big .col-xs-6,.row.big .col-xs-7,.row.big .col-xs-8,.row.big .col-xs-9{padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1240px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}


@media (min-width: 768px) {
.item-inner .container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.text-left-sm {
		text-align: left;
	}
	.text-center-sm {
		text-align: center;
	}
	.text-right-sm {
		text-align: right;
	}
}

@media (min-width: 992px) {
.item-inner .container {
		width: 970px;
	}
	.text-left-md {
		text-align: left;
	}
	.text-center-md {
		text-align: center;
	}
	.text-right-md {
		text-align: right;
	}
}

@media (min-width: 1240px) {
.item-inner .container {
		width: 1210px;
	}
	.text-left-lg {
		text-align: left;
	}
	.text-center-lg {
		text-align: center;
	}
	.text-right-lf {
		text-align: right;
	}
}

@media (min-width: 1560px){
.item-inner .container {
    width: 1210px;
}}





/* top menu */
.pot-menu{
    display: flex;
    /*width: calc(100% - 650px);*/
        padding: 15px 0px;
    justify-content: center;
}
.pot-menu > ul {
    display: flex;
    /*visibility: hidden;
    opacity: 0;*/
}
.pot-menu.loaded > ul {
    visibility: visible;
    opacity: 1;
}
.pot-menu.loaded > ul {
    visibility: visible;
    opacity: 1;
}

.pot-menu li{
position: relative;
    line-height: 1.2;
        padding: 0px 15px;
    text-align: center;
}
.pot-menu a:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.pot-menu .last a:after {
    background: none;
}
.pot-menu a{    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.pot-menu li.active > a,
.pot-menu a:hover{
    color: #ffffff;
}
/*.pot-menu > ul > li > a{
    margin: 0 18px;
    white-space: nowrap;
        font-size: 13px;
}*/

.pot-menu li.down > a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    vertical-align: middle;
    margin: -5px 0 0 8px;
    transition: all ease-out 300ms;
}
.pot-menu ul ul li.down > a{
    position: relative;
    padding-right: 25px;
    width: 100%;
}
.pot-menu ul ul li.down > a:after {
    transform: rotate(-45deg);
    position: absolute;
    right: 12px;
    top: 18px;
}
.pot-menu li.down.active > a:after,
.pot-menu li.down > a:hover:after{
    border-color: #f7e33fed;
}
.pot-menu ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 240px;
    z-index: 300;
    background: #fff;
    padding: 15px 20px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.pot-menu ul ul:before{
    content: "";
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
}
.pot-menu li:hover > ul{
    display: block;
}
.pot-menu ul ul li + li{
    margin-top: 5px;
}
.pot-menu ul ul a{
    color: #000;
    display: inline-block;
    padding: 7px 0;
    font-size: 15px;
}
.pot-menu ul ul ul{
    top: 0;
    left: 100%;
    border-radius: 5px;
}

.pot-menu .top-menu-more-list {
    display: none;
}
.pot-menu .top-menu-more-list.active {
    display: block;
}
.top-menu-more-list > li > ul{
    left: auto;
    right: 0;
}
.top-menu-more-list > li:first-of-type {
    width: 40px;
    height: 100%;
}
.top-menu-more-list > li > span {
    display: block;
    width: 40px;
    height: 100%;
    cursor: pointer;
    background: url(../images/burger.svg) 50% 50% no-repeat;
}
@media(max-width: 1299px){
    .pot-menu{
        padding: 0 15px;
        /*width: calc(100% - 630px);*/
            padding: 10px 0px;
    }
    .pot-menu > ul > li > a {
       font-size: 15px;
        /*margin: 0 15px;*/
    }
    .pot-menu > ul > li.down > a:after {
        width: 5px;
        height: 5px;
        margin: -7px 0 0 6px;
    }
    .pot-menu ul ul a{
        font-size: 13px;
    }
    .pot-menu ul ul li.down > a:after{
        width: 5px;
        height: 5px;
    }
}
@media(max-width: 991px){
    .pot-menu{
        display: none;
    }
}
/* /. top menu */
.footer-policty-new{
color: #fff;
    font-size: 14px;
    margin-top: 40px;}