@charset "utf-8";

:root {
  --accent-color1: #206EA5;
  --accent-color2: #298DD5;
  --accent-color-font: #fff;
}
.map-section-contacts-block path{
    stroke: var(--accent-color1);
}
.theme-color,
.color-theme{
    color: var(--accent-color1);
}


body{
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}

h1,
.title-h1 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}
h2,
.title-h2 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}
h3,
.title-h3 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}
h4,
.title-h4 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}
h5,
.title-h5{
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
h6,
.title-h6{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
.section h2 small{
    font-size: 22px;
    font-weight: normal;
    display: block;
    line-height: 1.3;
    margin-top: 20px;
}
@media(max-width: 991px) {
    h1,
    .title-h1 {
        font-size: 32px;
    }
    h2,
    .title-h2 {
        font-size: 32px;
    }
    h3,
    .title-h3 {
        font-size: 27px;
        margin-bottom: 20px;
    }
    h4,
    .title-h4 {
        font-size: 21px;
        margin-bottom: 20px;
    }
    h5,
    .title-h5{
        font-size: 19px;
    }
    h6,
    .title-h6{
        font-size: 17px;
    }
    .section h2 small{
        font-size: 17px;
    }
    .section h2 small br{
        display: none;
    }
}

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

@media(max-width: 499px) {
    h1 br,
    .title-h1 br,
    h2 br, 
    .title-h2 br,
    h3 br,
    .title-h3 br{
        display: none;
    }
    h1,
    .title-h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    h2,
    .title-h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    h3,
    .title-h3 {
        font-size: 21px;
    }
    h4,
    .title-h4 {
        font-size: 18px;
    }
    h5,
    .title-h5{
        font-size: 16px;
        margin-bottom: 15px;
    }
    h6,
    .title-h6{
        font-size: 15px;
        margin-bottom: 15px;
    }
}

a {
    color: var(--accent-color1);
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: var(--accent-color1);
}

.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: 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--accent-color-font);
    background-image: linear-gradient(80deg, var(--accent-color2) 0%, var(--accent-color1) 100%);
    text-align: center;
    transition: all 300ms ease-out;
}
.btn:hover {
    background-image: linear-gradient(80deg, var(--accent-color1) 0%, var(--accent-color2) 100%);
    color: var(--accent-color-font);
}
.btn.btn-md {
    height: 50px;
    font-size: 17px;
    padding: 0 30px;
    border-radius: 30px;
}
.btn.btn-lg {
    height: 60px;
    font-size: 18px;
    padding: 0 35px;
    border-radius: 30px;
}
.btn.btn-xlg {
    height: 80px;
    font-size: 20px;
    padding: 0 45px;
    min-width: 300px;
    max-width: 100%;
    border-radius: 40px;
}
.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%;
    animation: move-blick 6s linear infinite;
    animation-delay: 1s;
}
.anim-link span{
    position: relative;
    z-index: 5;
}
@keyframes move-blick {
    0% {
         background-position: 0% 0%;
    }
    30% {
         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;
        min-width: 100%;
    }
    .btn.btn-lg{
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
    }
}
@media(max-width: 399px){
    .btn.btn-xlg{
        height: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .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;
}
.section-description{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 40px;
}
.section h2 + h3{
    margin-top: -10px;
    margin-bottom: 40px;
}
.section-gradient-top_white-to-bottom_gray{
    background: linear-gradient(0deg, #F6F6F6 0, rgba(248, 248, 248, 0) 100%);
}
.section-gradient-top_gray-to-bottom_white{
    background: linear-gradient(0deg, rgba(248, 248, 248, 0) 0, #F6F6F6 100%);
}
.white-bg{
    background: #fff;
}
.gray-bg{
    background: #F6F6F6;
}
.dark-bg{
    background: #333;
    color: #fff;
}
.theme-color-bg{
    background: var(--accent-color1);
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}

.index-template .main-content > .section:first-child:not(.pt0){
    padding-top: 50px;
}
@media(max-width: 1559px){
    .index-template .main-content > .section:first-child:not(.pt0){
        padding-top: 40px;
    }
}
@media(max-width: 767px){
    .section-description{
        font-size: 18px;
    }
    .section-description br{
        display: none;
    }
    .index-template .main-content > .section:first-child:not(.pt0){
        padding-top: 30px;
    }
}
@media(max-width: 499px){
    .section-description{
        font-size: 16px;
    }
}

.more-link{
    text-transform: uppercase;
    position: relative;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.more-link-arrow{
    display: inline-block;
    width: 27px;
    height: 27px;
    margin-left: 9px;
    position: relative;
    top: -1px;
    transition: all ease-out 300ms;
}
.more-link:hover .more-link-arrow{
    transform: translateX(5px);
}
.grid-carousel.slick-slider{
    display: block;
}
.grid-carousel > div:not(:first-of-type){
    display: none;
}
.grid-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.grid-carousel .slick-slide {
    height: inherit;
}
.grid-carousel .slick-slide > div {
    height: 100%;
}

/** Header **/
.header{
    position: relative;
    background: linear-gradient(180deg, rgb(249 250 251) 0, rgba(248, 248, 248, 0) 100%);
}
.header-media{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
.header-inner.fullheight{
    min-height: 100vh;
}
.header-img{
    height: 100%;
    position: relative;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.header-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-media.width-gradient .header-img{
    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);
}
.header-inner{
    position: relative;
    display: flex;
    flex-direction: column;
}
.header-main{
    padding: 20px 0 10px;
}
.header-main-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 5px 20px;
    border-radius: 10px;
    outline: 1px solid #eee;
    background: #fff;
}
.header-main-full-width{
    padding: 0;
}
.header-main-wrapper{
    position: relative;
    z-index: 800;
}
.header-main-full-width  .header-main-wrapper:not(.fixed) .header-main-wrapper-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}
.header-main-wrapper .container{
    position: relative;
}
.header-main-full-width .header-main-wrapper .header-main-wrapper-bg{
    outline: 1px solid #eee;
}
.header-main-full-width .header-main-inner{
    border-radius: 0;
    outline: none;
    padding-left: 0;
    padding-right: 0;
    background: transparent !important;
}
.header-main-shadow-false .header-main-wrapper-bg{
    outline: none !important;
}
.header-main-wrapper.fixed .header-main-inner,
.header-main-wrapper.pred_fixed .header-main-inner{
    background: transparent !important;
}
.header-main.header-main-shadow-false .header-main-wrapper,
.header-main.header-main-shadow-false .header-main-inner{
    outline: none;
}

.header-logo{
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    color: #333;
}
.header-logo a{
    color: #333;
}
.header-main-wrapper:not(.fixed) .header-logo,
.header-main-wrapper:not(.pred_fixed) .header-logo,
.header-main-wrapper:not(.fixed) .header-logo a,
.header-main-wrapper:not(.pred_fixed) .header-logo a{
    color: inherit;
}
.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);
}
.header-logo .logo-inner img + .logo-body{
    padding-left: 10px;
}
.header-logo .logo-title{
    font-weight: 800;
    font-size: 24px;
}
.header-logo .logo-title span{
    color: var(--accent-color1);
}
.header-contacts{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 270px;
}

.header-contacts > .btn{
    margin-left: 30px;
}
.header-contacts .social-nav{
    margin-left: 15px;
}
.header-contacts-dropdown .title-h6{
    margin-bottom: 10px;
}
.header-contacts-dropdown-close{
    display: none;
}
.header-contacts-dropdown .social-nav{
    margin-left: 0;
}

.header-contacts-title{
    position: relative;
}
.header-contacts-title a{
    color: #333;
}
.header-contacts-title:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.header-contacts-title a{
    font-weight: 600;
    font-size: 17px;
    padding-right: 15px;
    position: relative;
}
.index-template .header-main-wrapper:not(.fixed) .header-contacts-title a,
.index-template .header-main-wrapper:not(.pred_fixed) .header-contacts-title a{
    color: inherit;
}
.header-contacts-title a:after{
    content: "";
    border-top: 4px solid;
    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;
    color: #333;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    padding: 20px;
    width: 290px;
    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;
        outline: none;
    }
    .fix-panel-true .header-main-wrapper.pred_fixed + .header-main-wrapper-push{
        display: block;
    }
}

.header-phone{
    margin-bottom: 10px;
}
.header-phone a{
    font-weight: 600;
    font-size: 17px;
}
.header-phone a:hover{
    color: #333;
}
.header-phone-description{
    font-size: 0.8em;
    line-height: 1.584em;
    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;
    font-weight: 500;
    margin-bottom: 2px;
}
.header-contacts-dropdown-items .item-value{
    line-height: 1.2;
    font-size: 15px;
}
.social-nav {
    display: flex;
}
.social-nav li{
    margin-right: 8px;
    display: inline-block;
}
.social-nav li:last-of-type{
    margin-right: 0;
}
.social-nav a {
    position: relative;
    width: 36px;
    height: 36px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    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: #2CC54E;
}
.social-nav .viber-btn a{
    background-color: #7360F2;
}
.social-nav .vk-btn a{
    background-color:#0077FF;
}
.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 .youtube-btn a {
    background-color: #FF0000;
}
.social-nav a:hover{
    transform: scale(1.03);
    filter: brightness(110%);
}
.social-nav .telegram-btn a:hover {
  animation: radial-pulse-telegram 1.4s infinite;
}
.social-nav .whatsapp-btn a:hover {
  animation: radial-pulse-whatsapp 1.4s infinite;
}

.social-nav .vk-btn a:hover {
  animation: radial-pulse-vk 1.4s infinite;
}
.social-nav .inst-btn a:hover {
  animation: radial-pulse-inst 1.4s infinite;
}
.social-nav .youtube-btn a:hover {
  animation: radial-pulse-youtube 1.4s infinite;
}

@keyframes radial-pulse-telegram {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 136, 204, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}
@keyframes radial-pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0px rgba(76,175,80, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}
@keyframes radial-pulse-vk {
  0% {
    box-shadow: 0 0 0 0px rgba(0,119,255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}
@keyframes radial-pulse-inst {
  0% {
    box-shadow: 0 0 0 0px rgba(227,86,61, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}
@keyframes radial-pulse-youtube {
  0% {
    box-shadow: 0 0 0 0px rgba(255,0,0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}

.header-content{
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 0 70px;
}
.header-content.white_color{
    color: #fff;
}
.header-content-inner-columns{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-content-inner-columns .col1{
    width: 44%;
    padding-right: 25px;
}
.header-content-inner-columns .col2{
    width: 56%;
    padding-left: 25px;
}
.header-subtitle{
    font-size: 26px;
    line-height: 1.5;
}
.header-features{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
    position: relative;
}

.header-features .col{
    width: 100%;
    margin: 15px 0;
}
.header-features .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-features .item-icon {
    width: 39px;
    height: 39px;
    text-align: center;
}
.header-features .item-icon.item-icon-false{
    background: url(../images/check-feature-icon.svg) 50% 50% no-repeat var(--accent-color1);
    border-radius: 50%;
}
.header-features .item-body{
    width: calc(100% - 39px);
    padding-left: 15px;
}
.header-features .item-title{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
}
.header-content h1{
    font-weight: 600;
}
.header-content h1 span{
    color: var(--accent-color1);
    font-weight: bold;
}

.header-bottom{
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header-bottom .btn{
    margin-right: 30px;
}
.header-bottom .call-time{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header-bottom .call-time-icon{
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.header-bottom .call-time-title{
    max-width: calc(100% - 42px);
    text-transform: uppercase;
    font-weight: 600;
}


@media(max-width: 1299px){
    .header-contacts > .btn{
        margin-left: 15px;
    }
}
@media(max-width: 1199px){
    .header-features .item-title{
        font-size: 17px;
    }
    .header-features .item-title br{
        display: none;
    }
    .header-features .item-body{
        padding-left: 10px;
        width: calc(100% - 30px);
    }
    .header-features .item-icon {
        width: 30px;
        height: 30px;
    }
}
@media(max-width: 991px){
    .header-media{
        background-color: #fff;
    }
    .header-img,
    .header-media.width-gradient .header-img{
        background-position: right 0 top 0;
        background-size: cover;
    }
    .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;
        outline: none;
    }
    .header-contacts{
        width: auto;
    }
    
    .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-subtitle br{
        display: none;
    }
    .header-content-inner-columns .col1 {
        width: 45%;
        padding-right: 20px;
    }
    .header-content-inner-columns .col2 {
        width: 55%;
        padding-left: 20px;
    }
    .header-bottom .btn {
        padding: 0 15px;
    }
    .header-logo,
    .header-logo a,
    .header-main-wrapper:not(.fixed) .header-contacts-title a, 
    .header-main-wrapper:not(.pred_fixed) .header-contacts-title a{
        color: #333 !important;
    }
}
@media(max-width: 767px){
    .header-features .item-title{
        font-weight: 500;
    }
    .header-logo .logo-inner img {
        width: 35px;
    }
    .header-logo .logo-inner img + .logo-body{
        width: calc(100% - 35px);
        padding-left: 5px;
    }
    .header-logo .logo-title{
        font-size: 20px;
    }
    .header-subtitle{
        font-size: 18px;
    }
    .header-bottom .btn {
        margin-right: 0;
        width: 100%;
        font-size: 2.5vw;
    }
    .header-bottom .call-time{
        width: 100%;
        margin-top: 5vw;
        text-align: center;
        justify-content: center;
    }
}
@media(max-width: 699px){
    .header-content-inner-columns .col1 {
        width: 100%;
        padding-right: 0;
    }
    .header-content-inner-columns .col2 {
        width: 100%;
        padding-left: 0;
    }
    .header-content-inner-columns .col1 + .col2{
        margin-top: 4vw;
    }
    .header-bottom .btn{
        font-size: 5vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }
}
@media(max-width: 599px){
    .header-contacts-title a{
        font-size: 12px;
    }
    .header-contacts-title a:after{
        top: 5px;
    }
    .header-main-inner{
        height: 60px;
    }
    .header-inner{
        padding-top: 60px;
    }
    .header-contacts-dropdown{
        top: 60px;
    }
}
@media(max-width: 499px){
    .header-bottom .call-time-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }
    .header-bottom .call-time-title{
        font-size: 13px;
        max-width: calc(100% - 30px);
    }
    .header-logo{
        width: 200px;
    }
    .header-logo .logo-title{
        font-size: 18px;
    }
}
@media(max-width: 399px){
    .header-logo{
        width: 150px;
    }
    .header-logo .logo-title{
        font-size: 15px;
    }
}
@media(max-width: 359px){
    .header-logo .logo-inner img {
        width: 25px;
    }
    .header-logo .logo-inner img + .logo-body{
        width: calc(100% - 25px);
    }
    .header-logo{
        width: 100px;
    }
    .header-logo .logo-inner img + .logo-body .logo-title{
        font-size: 13px;
    }
    .header-contacts-title a{
        font-size: 10px;
    }
    .header-contacts-title a:after{
        top: 4px;
    }
}

/* top menu */
.top-menu{
    display: flex;
    width: calc(100% - 520px);
    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: #333;
    font-weight: 500;
}
.header-main-wrapper:not(.fixed) .top-menu > ul > li > a{
    color: inherit;
}
.top-menu a:hover,
.top-menu:not(.anchor-menu) li.active > a{
    color: var(--accent-color1) !important;
}
.top-menu > ul > li > a {
    font-size: 14px;
    margin: 0 18px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.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: var(--accent-color1);
}
.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;
    line-height: 0.2;
    cursor: pointer;
    font-size: 1.5em;
    letter-spacing: 2px;
}
.header-main-wrapper.pred_fixed .top-menu-more-list > li > span,
.header-main-wrapper.fixed .top-menu-more-list > li > span{
    color: #333;
}
@media(max-width: 1299px){
    .top-menu{
        padding: 0 15px;
    }
    .top-menu > ul > li > a {
        font-size: 13px;
        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 */

/** /. Header **/


/* num-section */
.nums{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.nums .col{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.nums .item{
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    background: #F6F6F6;
}
.nums .item-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 76px;
    line-height: 1.2;
    color: var(--accent-color1);
}
.nums .item-text{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}
@media(max-width: 1559px){
    .nums{
        margin-left: -8px;
        margin-right: -8px;
    }
    .nums .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
}
@media(max-width: 1299px){
    .nums .item{
        padding: 25px;
    }
    .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 .col{
        width: 50%;
    }
    .nums .item{
        padding: 20px 25px;
        border-radius: 2vw;
    }
    .nums .item-title{
        font-size: 46px;
    }
    .nums .item-text{
        font-size: 15px;
    }
}
@media(max-width: 767px){
    .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;
    }
    .nums .item-title{
        font-size: 12vw;
    }
    .nums .item-text{
        font-size: 4vw;
    }
}
@media(max-width: 499px){
    .nums .item-title{
        font-size: 14vw;
    }
    .nums .item-text{
        font-size: 4.2vw;
    }
}
/* /. num-section */


/* about-section */
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about-section-inner .btn{
    margin-bottom: 20px;
}
.about-section-inner .content-block{
    width: calc(100% - 700px);
    padding-right: 50px;
}
.about-section-inner .content-block.full-width{
    padding-right: 0;
    width: 100%;
}
.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%;
    position: relative;
}
.about-section-inner .img-block .img1 img{
    border-radius: 30px;
}
.about-section-inner .img-block .img2 img{
    border-radius: 30px 0 30px 30px;
}
.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%;
}
.about-section-inner .img-block-inner{
    position: relative;
    padding-bottom: 160px;
}

.about-section-inner .img-block.img-block-single .img-block-inner{
    width: 100%;
    padding-bottom: 0;
}
.about-section-inner .img-block.img-block-single .img1,
.about-section-inner .img-block.img-block-single .img2{
    width: 100%;
    height: auto;
}
.about-section-inner .img-block.img-block-single .img1 img,
.about-section-inner .img-block.img-block-single .img2 img{
    border-radius: 30px;
}

@media(max-width:1559px){
    .about-section-inner .content-block{
        width: calc(100% - 560px);
        padding-right: 30px;
        padding-top: 10px;
    }
    .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%;
    }
    .about-section-inner .img-block.img-block-single{
        width: 100%;
    }
    .about-section-inner .img-block-single .img-block-inner{
        padding-bottom: 0;
    }
}
@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: 10px;
    }
}
/* / about-section */

/* video btn */
.about-section .video-holder{
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(50% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.about-section .video-holder-icon{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 100%;
}
.about-section .video-holder-icon a{
    display: block;
    height: 100%;
    position: relative;
    border-radius: 100%;
    background: rgba(255,2,2, 0.8);
    z-index: 5;
}
.about-section .video-holder-icon a:hover{
    background: rgba(255,2,2,1);
}
.about-section .video-holder-icon .play-icon{
    display: inline-block;
    border-left: 36px solid #fff;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -23px;
    margin-left: -12px;
    transition: all 200ms ease-out;
}
.about-section .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(max-width: 767px){
    .about-section .video-holder{
        right: calc(50% - 7.5vw);
    }
    .about-section .video-holder-icon{
        width: 15vw;
        height: 15vw;
    }
    .about-section .video-holder-icon .play-icon {
        border-left-width: 4.5vw;
        border-top-width: 3vw;
        border-bottom-width: 3vw;
        margin-top: -3vw;
        margin-left: -1.5vw;
    }
}
/* /. video btn */

/* 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;
}
.mobile-tab-header-wrapper {
    display: none;
}
@media(max-width: 767px){
    .mobile-tab-header-wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        height: 60px;
        padding: 0 20px;
        color: var(--accent-color-font);
        background: var(--accent-color1);
        width: 100%;
        position: relative;
        font-weight: 600;
        font-size: 16px;
        border-radius: 2vw;
    }
    .mobile-tab-header{
        width: calc(100% - 36px);
        padding-right: 10px;
        line-height: 1.3;
    }
    .mobile-tab-header-wrapper .item-icon{
        position: relative;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        color: #fff;
        transition: all ease-out 300ms;
    }
    .mobile-tab-header-wrapper .item-icon:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background-color: #fff;
        animation: pulse_2_small 2s linear infinite;
    }
    .mobile-tab-header-wrapper .item-icon:after{
        content: "+";
        font-size: 26px;
        font-weight: normal;
        position: relative;
        z-index: 2;
        color: #333;
    }
    .mobile-tab-header-wrapper.active .item-icon{
        transform: rotate(45deg);
    }
    .gallery-section ul.tabs {
        position: relative;
        display: none;
        border: none;

    }
    .gallery-section ul.tabs li{
        width: 100%;
        margin-bottom: 10px;
    }
    .gallery-section ul.tabs li.current{
        display: none;
    }
    .gallery-section ul.tabs li span{
        height: 50px;
        background: #F6F6F6;
        border: 1px solid #eee;
        border-radius: 2vw;
    }
    .gallery-section .mobile-tab-header-wrapper.active + ul.tabs{
        display: block;
    }
}
@media(min-width: 768px){
    .gallery-section .tabs{
        display: flex !important;
    }
}
/* /. tabs */


/* Reviews */
.reviews{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.reviews .col{
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 30px;
    width: 50%;
}
.reviews .item {
    padding: 30px 40px 30px 140px;
    border-radius: 30px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #F6F6F6;
}
.reviews .item-img{
    position: absolute;
    left: 30px;
    top: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}
.reviews .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews .item-letter{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 500;
    color: #aaa;
}
.fancybox_modal .reviews .item-letter{
    background: #F6F6F6;
}
.reviews .item-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.fancybox_modal .reviews .item-header{
    justify-content: flex-start;
    align-items: flex-start;
}
.reviews .star-block{
    line-height: 0;
    position: relative;
    top: -2px;
}
.reviews .item-body{
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews .item-footer{
    display: flex;
    align-items: center;
    margin: 30px 0 0;
}
.reviews .video-block{
    position: relative;
    width: 40px;
    height: 40px;
    background: #ff4343;
    border-radius: 50%;
    overflow: hidden;
    transition: all ease-out 300ms;
}
.reviews .btn + .video-block{
    margin-left: 10px;
}
.reviews .video-block a{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    display: flex;
    align-items: center;
}
.reviews .video-block a:after {
    content: "";
    background: url(../images/play2.svg) 0 0 no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 13px;
    transition: all ease-out 300ms;
}
.reviews .video-block-long{
    width: 190px;
    border-radius: 30px;
}
.reviews .video-block-long a{
    padding: 0 30px 0 55px;
}
.reviews .video-block-long a:after{
    left: 25px;
}
.reviews .video-block:hover{
    background: #FF1212;
}

.reviews .item-date,
.reviews-modal .item-date{
    color: #999;
    font-size: 16px;
}
.reviews .item-title,
.reviews-modal .item-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.reviews .item-subtitle,
.reviews-modal .item-subtitle{
    color: var(--accent-color1);
    font-weight: 600;
}
.reviews .item-body,
.reviews-modal .item-body{
    padding-top: 10px;
}
.reviews-modal .item-body{
    padding-left: 110px;
}
.reviews-carousel > div:not(:first-of-type){
    display: none;
}
.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%;
}
.reviews-carousel .col{
    margin-bottom: 0;
}
.star-block .icon {
    color: #ced4da;
}
.star-block[data-rating="1"] .icon:nth-child(-n+1),
.star-block[data-rating="2"] .icon:nth-child(-n+2),
.star-block[data-rating="3"] .icon:nth-child(-n+3),
.star-block[data-rating="4"] .icon:nth-child(-n+4),
.star-block[data-rating="5"] .icon:nth-child(-n+5) {
    color: #f5b04d
}

.fancybox_modal .reviews .item{
    box-shadow: none;
    padding: 0;
    display: block;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.fancybox_modal .reviews .item-img{
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
    margin-top: 0;
}
.fancybox_modal .reviews .item-img img{
    width: 100%;
}
.fancybox_modal .reviews .item-header-right{
    width: calc(100% - 200px);
    padding-left: 20px;
}
.fancybox_modal .reviews .item-date{
    margin-bottom: 5px;
}
.fancybox-slide{
    transition: none;
}
.fancybox_modal .fancybox-close-small {
    background: #fff;
    opacity: 1;
    border-radius: 50%;
}

@media(max-width: 1299px){
    .reviews{
        margin-left: -10px;
        margin-right: -10px;
    }
    .reviews .item-body{
        font-size: 14px;
    }
    .reviews .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .reviews .item {
        padding: 30px 20px 30px 150px;
    }
    .reviews .item-img {
        left: 20px;
        top: 20px;
    }
}
@media(max-width: 1199px){
    .reviews .item {
        padding: 30px 20px 30px 140px;
    }
    .fancybox_modal .reviews .item-header-right{
        width: calc(100% - 150px);
    }
}
@media(max-width:991px){
    .reviews .col{
        width: 100%;
    }
    .reviews .item{
        border-radius: 4vw;
    }
}
@media(max-width: 599px){
    .reviews-modal{
        padding-top: 40px;
        padding-bottom: 6vw;
    }
    .reviews .item-body{
        font-size: 16px;
    }
}
@media(max-width:499px){
    .reviews .item-img{
        width: 60px;
        height: 60px;
        left: 15px;
        top: 15px;
    }
    .reviews .item {
        padding: 20px 20px 20px 90px;
    }
    .reviews .item-letter{
        font-size: 32px;
    }
    .fancybox_modal .reviews{
        margin-left: 0;
        margin-right: 0;
    }
    .reviews-modal .item-body{
        padding-left: 80px;
        font-size: 13px;
    }
    .reviews .item-text,
    .reviews .item-date, 
    .reviews-modal .item-date{
        font-size: 13px;
    }
    
    .reviews .item-title, 
    .reviews-modal .item-title{
        font-size: 20px;
    }
    .reviews .item-subtitle, 
    .reviews-modal .item-subtitle{
        font-size: 14px;
    }
}
@media(max-width: 379px){
    .reviews .item-title, 
    .reviews-modal .item-title{
        font-size: 18px;
    }
    .fancybox_modal .reviews .item-header-right{
        width: 100%;
        padding-left: 0;
    }
    .reviews-modal .item-body{
        padding-left: 0;
        padding-top: 0;
    }
    .reviews .item{
        padding: 15px;
    }
    .reviews .item-img{
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 10px;
    }
    .reviews .item-header{
        display: block;
        position: absolute;
        top: 18px;
        left: 90px;
    }
    .fancybox_modal .item-header{
        position: static;
    }
    .reviews .item-date{
        margin-bottom: 7px;
    }
    .reviews-modal .item-date{
        position: absolute;
        top: 3px;
        left: 80px;
    }
    .reviews-modal .star-block{
        position: absolute;
        top: 30px;
        left: 80px;
    }
    .reviews-modal .push20{
        display: none;
    }
}

.slick-arrows-top-section .slick-slider{
    padding-top: 20px;
}
.slick-arrows-top-section .section-header{
    padding-right: 120px;
}
.slick-arrows-top-section .slick-next{
    right: 10px;
    top: -82px;
}
.slick-arrows-top-section .slick-prev{
    left: auto;
    right: 64px;
    top: -82px;
}
@media(max-width:991px){
    .slick-arrows-top-section .slick-next,
    .slick-arrows-top-section .slick-prev{
        top: -72px;
    }
}
@media(max-width:767px){
    .slick-arrows-top-section .section-header{
        padding-right: 0;
    }
    .slick-arrows-top-section .slick-slider{
        padding-top: 70px;
    }
    .slick-arrows-top-section .slick-next{
        right: auto;
        top: 0;
        left: 60px;
    }
    .slick-arrows-top-section .slick-prev{
        left: 5px;
        right: auto;
        top: 0;
    }
}

/* /. Reviews */


/* 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: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--accent-color1);
    color: var(--accent-color-font);
    border-radius: 12px;
    font-weight: 600;
    transition: all ease-out 300ms;
}
.accordion .item-title{
    font-size: 22px;
    line-height: 1.35;
    width: calc(100% - 50px);
}
.accordion .item-icon{
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-color1);
    color: #fff;
    transition: all ease-out 300ms;
}
.accordion .item-icon:after{
    content: "+";
    font-size: 26px;
    font-weight: normal;
    position: relative;
    z-index: 2;
}
.accordion .item.active .item-icon{
    transform: rotate(45deg);
}
.accordion .item-icon:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--accent-color1);
    animation: pulse_2_small 2s linear infinite;
}
@keyframes pulse_2_small {
    0% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: .8
    }

    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0
    }
}
.accordion .item:hover .item-head,
.accordion .item.active .item-head{
    background: var(--accent-color2);
}

@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;
    }
}
/* /. faq */

/* services */
.services{
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
}
.services .col{
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.services .item{
    border: 1px solid #eee;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #333;
    background: #fff;
    transition: all ease-out 300ms;
    overflow: hidden;
}
.services a.item:hover{
    border-color: var(--accent-color1);
    box-shadow: 0 0 0 1px var(--accent-color1);
    transform: translateY(-10px);
}
.services .item-img{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services .item-img.view_icon{
    padding: 25px 25px 0;
}
.services .item-img img{
    max-height: 100%;
}
.services .item-img.view_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services .item-inner{
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}
.services .item-title{
    line-height: 1.3;
    font-weight: 600;
}

.services .item-text{
    font-size: 0.8em;
    margin-top: 15px;
}
.services .item-text p{
    margin-bottom: 5px;
}
.services .item-text ul{
    margin-top: 5px;
    margin-bottom: 5px;
}

.services .item-footer{
    padding-top: 25px;
}
.services .btn{
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1;
}
.services .btn span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.services-item-modal-columns{
    display: flex;
    flex-wrap: wrap;
}
.services-item-modal-columns .modal-col{
    width: 100%;
}
.services-item-modal-columns .modal-col1{
    width: 240px;
}
.services-item-modal-columns .modal-col1 + .modal-col2{
    width: calc(100% - 240px);
    padding-left: 30px;
}
.services-item-modal-columns .modal-col1 img{
    border-radius: 10px;
}
.services-carousel .slick-list{
    padding-top: 12px;
    margin-top: -12px;
}
.services .item-price{
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--accent-color1);
}

.span5 .services .col{
    width: 20%;
}
.span4 .services .col{
    width: 25%;
}
.span3 .services .col{
    width: 33.3333%;
}
.span5 .services .item-img{
    height: 200px;
}
.span4 .services .item-img{
    height: 250px;
}
.span3 .services .item-img{
    height: 333px;
}
.span5 .services .item-title{
    font-size: 19px;
}
.span4 .services .item-title{
    font-size: 21px;
}
.span3 .services .item-title{
    font-size: 25px;
}
.span4 .services .btn{
    height: 50px;
    font-size: 18px;
    border-radius: 30px;
}
.span3 .services .btn{
    height: 60px;
    font-size: 20px;
    border-radius: 30px;
}
.span5 .services .item-price{
    font-size: 23px;
}
.span4 .services .item-price{
    font-size: 25px;
}
.span3 .services .item-price{
    font-size: 27px;
}

.services-item-modal-columns .item-price{
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--accent-color1);
}


@media(max-width: 1559px){
    .services{
        margin-left: -8px;
        margin-right: -8px;
    }
    .services .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
    .services .item{
        border-radius: 1.28vw;
    }
    .services .item-inner{
        padding: 1.6vw;
    }
    .services .item-img.view_icon{
        padding: 1.6vw 1.6vw 0;
    }
    .services .item-footer{
        padding-top: 1.6vw;
    }
    
    .span5 .services .item-img{
        height: 12.82vw;
    }
    .span4 .services .item-img{
        height: 16.025vw;
    }
    .span3 .services .item-img{
        height: 21.346vw;
    }
    .span5 .services .item-title{
        font-size: 1.218vw;
    }
    .span4 .services .item-title{
        font-size: 1.346vw;
    }
    .span3 .services .item-title{
        font-size: 1.6vw;
    }
    .span5 .services .btn{
        font-size: 1.1vw;
        height: 2.564vw;
    }
    .span4 .services .btn{
        height: 3.2vw;
        font-size: 1.15vw;
        border-radius: 1.92vw;
    }
    .span3 .services .btn{
        height: 3.846vw;
        font-size: 1.28vw;
        border-radius: 1.92vw;
    }
    .span5 .services .btn{
        border-radius: 1.92vw;
    }
    .span5 .services .item-price{
        font-size: 1.48vw;
    }
    .span4 .services .item-price{
        font-size: 1.62vw;
    }
    .span3 .services .item-price{
        font-size: 1.82vw;
    }
}


@media(max-width: 1199px){
    .span5 .services .col{
        width: 25%;
    }
    .services .item{
        border-radius: 1.785vw;
    }
    .services .item-inner{
        padding: 2.23vw;
    }
    .services .item-img.view_icon{
        padding: 2.23vw 2.23vw 0;
    }
    .services .item-footer{
        padding-top: 2.23vw;
    }
    .span5 .services .item-img,
    .span4 .services .item-img{
        height: 16.6666vw;
    }
    .span5 .services .item-title,
    .span4 .services .item-title{
        font-size: 1.58vw;
    }
    .span5 .services .item-price,
    .span4 .services .item-price{
        font-size: 1.9vw;
    }
    .span5 .services .btn,
    .span4 .services .btn{
        font-size: 1.34vw;
        height: 3.33vw;
    }
    
    .span_mobile1 .services .col{
        width: 33.3333%;
    }
    
    .span_mobile1 .services .item-img{
        height: 25vw;
    }
    .span_mobile1 .services .item-title{
        font-size: 2vw;
    }
    .span_mobile1 .services .item-price{
        font-size: 2.4vw;
    }
    .span_mobile1 .services .btn{
        height: 5vw;
        font-size: 2vw;
    }
    
}


@media(max-width: 991px){
    .span3 .services .item-title{
        font-size: 2vw;
    }
    .span3 .services .item-price{
        font-size: 2.36vw;
    }
    .span3 .services .btn{
        font-size: 1.6666vw;
        height: 5vw;
        border-radius: 3vw;
    }
}
@media(max-width: 899px){
    .services-item-modal-columns .modal-col1{
        width: 30%;
    }
    .services-item-modal-columns .modal-col1 + .modal-col2{
        width: 70%;
        padding-left: 3vw;
    }
    .services-item-modal-columns .content{
        font-size: 16px;
    }
}
@media(max-width: 767px){
    .span5 .services .col,
    .span4 .services .col,
    .span3 .services .col{
        width: 33.3333%;
    }
    .services .item{
        border-radius: 2.6vw;
    }
    .services .item-inner{
        padding: 3.243vw;
    }
    .span5 .services .item-img,
    .span4 .services .item-img,
    .span3 .services .item-img{
        height: 21.346vw;
    }
    .services .item-img.view_icon {
        padding: 3.24vw 3.24vw 0;
    }
    .services .item-footer{
        padding-top: 3.24vw;
    }
    .span5 .services .item-title,
    .span4 .services .item-title,
    .span3 .services .item-title{
        font-size: 2.47vw;
    }
    .span5 .services .item-price,
    .span4 .services .item-price,
    .span3 .services .item-price{
        font-size: 2.9vw;
    }
    .span5 .services .btn,
    .span4 .services .btn,
    .span3 .services .btn{
        height: 5.2vw;
        font-size: 1.95vw;
        padding: 0 1.5vw;
        border-radius: 2.6vw;
    }
    
    .span_mobile1 .services .col{
        width: 50%;
    }
    
    .span_mobile1 .services .item-img{
        height: 35vw;
    }
    .span_mobile1 .services .item-title{
        font-size: 3.5vw;
    }
    .span_mobile1 .services .item-price{
        font-size: 4vw;
    }
    .span_mobile1 .services .btn{
        height: 7.5vw;
        font-size: 2.8vw;
        border-radius: 4vw;
    }
    
}

@media(max-width: 499px){
    .services{
        margin-left: -5px;
        margin-right: -5px;
    }
    .services .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .span5 .services .col,
    .span4 .services .col,
    .span3 .services .col{
        width: 50%;
    }
    .services .item {
        border-radius: 4vw;
    }
    .services .item-inner{
        padding: 4vw;
    }
    .span5 .services .item-img,
    .span4 .services .item-img,
    .span3 .services .item-img{
        height: 35vw;
    }
    .services .item-img.view_icon {
        padding: 4vw 4vw 0;
    }
    .services .item-footer{
        padding-top: 4vw;
    }
    .span5 .services .item-title,
    .span4 .services .item-title,
    .span3 .services .item-title{
        font-size: 4vw;
    }
    .span5 .services .item-price,
    .span4 .services .item-price,
    .span3 .services .item-price{
        font-size: 4.6vw;
    }
    .span5 .services .btn,
    .span4 .services .btn,
    .span3 .services .btn{
        height: 8vw;
        font-size: 3vw;
        border-radius: 4vw;
    }
    .services-item-modal-columns .content{
        font-size: 15px;
    }
    
    .span_mobile1 .services .col{
        width: 100%;
    }
    
    .span_mobile1 .services .item-img{
        height: 70vw;
    }
    .span_mobile1 .services .item-title{
        font-size: 6vw;
    }
    .span_mobile1 .services .item-price{
        font-size: 6.75vw;
    }
    .span_mobile1 .services .btn{
        height: 13vw;
        font-size: 5vw;
        border-radius: 6vw;
    }
}
@media(max-width: 429px){
    .services-item-modal-columns .modal-col1{
        width: 100%;
        text-align: center;
    }
    .services-item-modal-columns .modal-col1 + .modal-col2{
        width: 100%;
        padding-left: 0;
        margin-top: 6vw;
        text-align: center;
    }
    .services-item-modal-columns .content{
        font-size: 17px;
    }
}
/* /. services */

/* .logotypes */
.logotypes{
    margin: 0 -8px 0;
    display: flex;
    flex-wrap: wrap;
}
.logotypes .col{
    width: 20%;
    padding: 0 8px;
    margin-bottom: 16px;
}
.logotypes .item{
    height: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5vw;
    border: 1px solid #eee;
    border-radius: 15px;
    background: #fff;
}
.logotypes a.item:hover{
    border-color: var(--accent-color1);
}
.logotypes .item img{
    max-height: 100%;
}
@media(max-width: 991px){
    .logotypes .col{
        width: 20%;
    }
}
@media(max-width: 767px){
    .logotypes .col{
        width: 25%;
    }
}
@media(max-width: 599px){
    .logotypes .col{
        width: 33.3333%;
    }
}
@media(max-width: 499px){
    .logotypes .col{
        width: 50%;
    }
    .logotypes .item{
        height: 36vw;
    }
}
/* /. logotypes */


/* scroll-features section */
.scroll-features-section-inner{
    display: flex;
    flex-wrap: wrap;
}
.scroll-features-section-inner .col1{
    width: 50%;
    padding-right: 15px;
}
.scroll-features-section-inner .col2{
    width: 50%;
    padding-left: 15px;
}
.scroll-features-section-content{
    position: sticky;
    top: 30px;
}
.fix-panel-true .scroll-features-section-content{
    top: 120px;
}
.scroll-features .item{
    background: #F6F6F6;
    border-radius: 20px;
    margin-bottom: 16px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
}
.scroll-features .item:last-child{
    margin-bottom: 0;
}
.scroll-features .item-body{
    width: 100%;
}
.scroll-features .item-icon{
    width: 70px;
}
.scroll-features .item-icon + .item-body{
    width: calc(100% - 70px);
    padding-left: 20px;
}
.scroll-features .item-num{
    font-weight: bold;
    font-size: 54px;
    line-height: 1;
    color: var(--accent-color1);
}
.scroll-features .item-title{
    font-weight: bold;
    font-size: 28px;
    line-height: 1.3;
}
.scroll-features .item-title + .item-text{
    margin-top: 15px;
}
.scroll-features .item-text{
    font-size: 18px;
}

.scroll-features-section-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.scroll-features-section-head-img{
    width: 225px;
    overflow: hidden;
    border-radius: 30px;
}
.scroll-features-section-head-info{
    width: calc(100% - 225px);
    padding-left: 40px;
}
.scroll-features-section-head-title{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}
.scroll-features-section-head-subtitle{
    opacity: 0.7;
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.2;
}
@media(max-width: 1299px){
    .scroll-features-section-head-img{
        width: 150px;
    }
    .scroll-features-section-head-info{
        width: calc(100% - 150px);
        padding-left: 25px;
    }
    .scroll-features-section-head-title{
        font-size: 30px;
    }
}
@media(max-width: 991px){
    .scroll-features-section-inner .col1{
        width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }
    .scroll-features-section-inner .col2{
        width: 100%;
        padding-left: 0;
    }
    .scroll-features-section-content{
        position: static;
    }
    .fix-panel-true .scroll-features-section-content{
        top: 100px;
    }
    .scroll-features .item {
        border-radius: 2vw;
        margin-bottom: 3vw;
        padding: 3vw;
    }
    .scroll-features .item-title{
        font-size: 2.8vw;
    }
    .scroll-features .item-text {
        font-size: 2vw;
    }
    .scroll-features .item-title + .item-text {
        margin-top: 1.5vw;
    }
}

@media(max-width: 767px){
    .scroll-features-section-inner .col1{
        margin-bottom: 6vw;
    }
    .scroll-features .item-title{
        font-size: 3.5vw;
    }
    .scroll-features .item-text {
        font-size: 2.5vw;
    }
    .scroll-features .item-title + .item-text {
        margin-top: 2vw;
    }
    .scroll-features-section .btn{
        width: 100%;
    }
    
    .scroll-features-section-head-img{
        width: 100px;
        border-radius: 10px;
    }
    .scroll-features-section-head-info{
        width: calc(100% - 100px);
    }
    .scroll-features-section-head-title{
        font-size: 24px;
    }
    .scroll-features-section-head-subtitle{
        font-size: 14px;
        margin-top: 5px;
    }
    .scroll-features-section .section-description{
        font-size: 16px;
    }
}

@media(max-width: 599px){
    .scroll-features .item-title{
        font-size: 4.5vw;
    }
    .scroll-features .item-text {
        font-size: 3vw;
    }
}
@media(max-width: 499px){
    .scroll-features .item{
        padding: 6vw;
    }
    .scroll-features .item-title{
        font-size: 22px;
    }
    .scroll-features .item-text {
        font-size: 16px;
    }
    
    .scroll-features .item-icon{
        width: 50px;
    }
    .scroll-features .item-icon + .item-body{
        width: calc(100% - 50px);
        padding-left: 15px;
    }
    .scroll-features .item-icon + .item-body .item-title{
        font-size: 20px;
    }
    .scroll-features .item-icon + .item-body .item-text{
        font-size: 14px;
    }
    .scroll-features .item-num{
        font-size: 36px;
    }
}
@media(max-width: 399px){
    .scroll-features-section-head{
        align-items: flex-start;
    }
    .scroll-features-section-head-img{
        width: 60px;
        border-radius: 50%;
    }
    .scroll-features-section-head-info{
        width: calc(100% - 60px);
        padding-left: 15px;
    }
}
/* /. scroll-features section */

/* application-block */
.application-block {
    background: #f4f4f4;
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
}
.application-block-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: right 0 top 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.application-block-inner{
    position: relative;
}
.application-block form{
    display: flex;
    flex-wrap: wrap;
    margin: 60px -8px 20px;
}
.application-block .form-col{
    width: 33.3333%;
    padding-left: 8px;
    padding-right: 8px;
}
.application-block .form-control{
    background: #fff;
    border: none;
}
.application-block .agreement-wrapper{
    padding-left: 30px;
}
.application-block h4{
    font-weight: normal;
}
@media(max-width: 1559px){
    .application-block{
        padding: 4vw;
    }
}
@media(max-width: 1229px){
    .application-block-bg{
        opacity: 0.6;
    }
}
@media(max-width: 991px){
    .application-block{
        border-radius: 4vw;
        padding: 6vw;
    }
    .application-block .form-col{
        width: 100%;
    }
    .application-block .form-col + .form-col{
        margin-top: 2vw;
    }
    .application-block form{
        margin: 6vw 0 2vw;
    }
    .application-block .agreement-wrapper{
        padding-left: 0;
        padding-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .application-block-bg{
        opacity: 0.3;
    }
    .application-block h4 br{
        display: none;
    }
}
@media(max-width: 499px){
    .application-block-bg{
        opacity: 0.2;
    }
}
/* /. application-block */

/* gallery-section */
.gallery-section .tabs{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    padding-top: 20px;
}
.gallery-section .tabs li{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.gallery-section .tabs li > span{
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F6F6F6;
    border-radius: 20px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    cursor: pointer;
    transition: all ease-out 300ms;
}

.gallery-section .tabs li.current > span,
.gallery-section .tabs li > span:hover{
    background: var(--accent-color1);
    color: var(--accent-color-font);
}
.gallery-section .box{
    padding: 30px 0 0;
}
.portfolio-gallery{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.portfolio-gallery .col{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.portfolio-gallery .item{
    display: block;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.portfolio-gallery .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-gallery .item > span {
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent-color1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
}
.portfolio-gallery .item > span svg {
    object-fit: cover;
    fill: #fff;
}
.portfolio-gallery .item:hover > span{
    opacity: 1;
}
.portfolio-gallery .item > span:hover{
    transform: translate(-50%, -50%) scale(1.2);
}
.portfolio-gallery .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(49, 185, 57, 0) 29.64%, var(--accent-color1) 100%);
    transition: 0.3s;
    opacity: 0;
}
.portfolio-gallery .item:hover:after{
    opacity: 1;
}

@media(max-width: 1559px){
    .gallery-section .tabs {
        margin-left: -8px;
        margin-right: -8px;
        padding-top: 16px;
    }
    .gallery-section .tabs li {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
    .gallery-section .tabs li > span {
        height: 70px;
        border-radius: 1vw;
        padding: 0 10px;
        font-size: 16px;
    }
    .gallery-section .box{
        padding-top: 5vw;
    }
    .portfolio-gallery{
        margin-left: -8px;
        margin-right: -8px;
    }
    .portfolio-gallery .col {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
    .portfolio-gallery .item{
        height: 18vw;
    }
}
@media(max-width: 991px){
    .gallery-section .tabs li {
        width: 50%;
    }
    .portfolio-gallery .item{
        border-radius: 2vw;
    }
}
@media(max-width: 499px){
    .gallery-section .tabs li {
        width: 100%;
    }
    .portfolio-gallery .col{
        width: 50%;
    }
    .portfolio-gallery .item {
        height: 36vw;
    }
}
/* /. gallery-section */


/* get-consultation-section */

.btn.telegram-btn {
    background: #0D83BE;
    color: #fff;
}
.get-consultation-section-inner{
    position: relative;
    min-height: 770px;
    padding: 60px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.get-consultation-section.full-width .get-consultation-section-inner{
    border-radius: 0;
}
.get-consultation-section .section-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.get-consultation-section .section-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.get-consultation-section .section-person{
    position: absolute;
    right: 10vw;
    top: 0;
    bottom: 0;
    width: 34%;
}
.get-consultation-section .section-person img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}
.get-consultation-section .person-information{
    position: absolute;
    bottom: 70px;
    left: 15px;
    background: rgba(255,255,255,.8);
    padding: 1vw;
    border-radius: 10px;
    text-align: right;
}
.get-consultation-section .person-name{
    text-transform: uppercase;
    font-size: 1.3vw;
    font-weight: bold;
}
.get-consultation-section .person-post{
    font-size: 1vw;
}
.get-consultation-section .section-body{
    position: relative;
    z-index: 10;
}
.get-consultation-section .section-body-inner{
    padding-right: 500px;
}
.get-consultation-section .form-title {
    color: #676767;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 30px;
    padding-top: 20px;
    font-weight: 600;
}
.get-consultation-section .form-control{
    height: 82px;
    border-color: #fff;
    background: #fff;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 0;
    border-radius: 40px;
}
.get-consultation-section .btn-xlg{
    height: 82px;
    min-width: 100%;
}
.get-consultation-section .form-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.get-consultation-section .form-row .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
}
.get-consultation-section .agreement{
    margin-top: 35px;
}
.get-consultation-section .agreement a{
    color: #000;
    text-decoration: underline;
}
.get-consultation-section .agreement a:hover{
    color: #000;
    text-decoration: none;
}
.get-consultation-section .mess-block{
    padding-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.get-consultation-section .mess-block-title{
    margin-right: 30px;
    color: #676767;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}
.get-consultation-section .mess-buttons a{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0 15px;
    margin-right: 7px;
}
.get-consultation-section .mess-buttons a svg{
    max-width: 100%;
    max-height: 100%;
}
.get-consultation-section .mess-buttons a:hover{
    transform: scale(1.03);
}
.get-consultation-section .mess-buttons a.telegram-btn:hover {
  animation: radial-pulse-telegram 1.4s infinite;
}
.get-consultation-section .mess-buttons a.whatsapp-btn:hover {
  animation: radial-pulse-whatsapp 1.4s infinite;
}

@media(max-width: 1559px){
    .get-consultation-section .section-person{
        width: 45%;
        right: 0;
    }
    .get-consultation-section .section-body{
        width: 75%;
    }
    .get-consultation-section .section-body-inner{
        padding-right: 0;
    }
    .get-consultation-section .person-information{
        left: auto;
        right: 15px;
        bottom: 60px;
    }
}
@media(max-width: 1399px){
    .get-consultation-section-inner{
        position: relative;
        min-height: 1px;
    }
    .get-consultation-section .section-person{
        bottom: 0;
    }
    .get-consultation-section .person-information{
        bottom: 50px;
    }
    .get-consultation-section h2{
        font-size: 3vw;
    }
    .get-consultation-section .form-title{
        padding-top: 0;
    }
    .get-consultation-section .form-control,
    .get-consultation-section .btn-xlg{
        height: 72px;
    }
    .get-consultation-section  .btn.btn-xlg{
        font-size: 1.5vw;
        padding-left: 10px;
        padding-right: 10px;
    }
    .get-consultation-section .form-title br{
        display: none;
    }
}
@media(max-width: 1199px){
    .get-consultation-section .form-wrapper{
        width: 550px;
        max-width: 100%;
    }
    .get-consultation-section .form-row .col{
        width: 100%;
        margin-bottom: 10px;
    }
    .get-consultation-section  .btn.btn-xlg{
        font-size: 18px;
    }
    .get-consultation-section .form-control{
        text-align: center;
    }
    .get-consultation-section .section-person{
        top: 2vw;
        width: 55%;
    }
    .get-consultation-section .section-body{
        width: 50%;
    }
}
@media(max-width: 1099px){
    .get-consultation-section .mess-block-title{
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }
}
@media(max-width: 991px){
    .get-consultation-section-inner{
        padding: 60px 6vw;
        border-radius: 4vw;
    }
    .get-consultation-section .section-person{
        top: 10vw;
    }
    .get-consultation-section .section-body{
        width: 55%;
    }
    .get-consultation-section .person-name{
        font-size: 2vw;
    }
    .get-consultation-section .person-post{
        font-size: 1.8vw;
    }
    .get-consultation-section .form-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-top: 10px;
    }
    .get-consultation-section .mess-block-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .get-consultation-section .mess-block{
        padding-top: 0;
    }
    .get-consultation-section h2 {
        font-size: 3.5vw;
    }
}
@media(max-width: 767px){
    .get-consultation-section .section-body{
        width: 100%;
    }
    .get-consultation-section .section-person{
        display: none;
    }
    .get-consultation-section .form-wrapper{
        width: 100%;
        text-align: center;
    }
    .get-consultation-section .form-control{
        border-color: #ddd;
    }
    .get-consultation-section h2 {
        font-size: 35px;
        text-align: center;
    }
    .get-consultation-section .mess-buttons{
        width: 100%;
    }
}
@media(max-width: 499px){
    .get-consultation-section h2 {
        font-size: 7vw;
    }
}
/* /. get-consultation-section*/

/* footer */
.footer{
    background: #fff;
}
.footer-top{
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.footer-bottom{
    margin-bottom: 90px;
}
.footer-bottom-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-inner .col1{
    width: calc(100% - 50px);
    padding-right: 20px;
}
.footer-bottom-inner .col2{
    width: 50px;
}
.footer-phone-wrapper{
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}
.footer-phone{
    margin-bottom: 0.5vw;
    display: inline-block;
    position: relative;
}
.footer-phone a,
.footer-phone .typed-cursor{
    font-weight: 600;
    font-size: 70px;
    color: var(--accent-color1);
}
.footer-phone a:hover,
.footer-phone a:hover + .typed-cursor{
    color: #000;
}

.footer-phone .item-animate{
    position: absolute;
    top: -30px;
    right: -100px;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background-color: var(--accent-color1);
    animation-name: wobble;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    white-space: nowrap;
    opacity: 0;
    transform: rotate(18deg);
    transition: all ease-out 300ms;
}
.footer-phone .item-animate:after{
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 16px;
    border-top-color: var(--accent-color1);
    border-width: 9px;
    margin-left: -1px;
    margin-top: -1px;
}
.footer-phone .item-animate.active{
    opacity: 1;
}
@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.footer-address{
    font-size: 25px;
    margin-bottom: 1vw;
    line-height: 1.4;
}
.footer-schedule{
    font-size: 25px;
    line-height: 1.4;
}
.footer-top-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer-top-inner .col1{
    width: 60%;
    padding-right: 25px;
}
.footer-top-inner .col2{
    width: 40%;
    padding-left: 25px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}
.footer-social-title{
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.footer-top-inner .social-nav{
    justify-content: flex-end;
}
.footer-top-inner .social-nav a{
    width: 60px;
    height: 60px;
}
.footer .social-nav li:not(:last-of-type){
    margin-right: 10px;
}
.typed-donor{
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.footer-bottom a{
    color: #777;
    text-decoration: underline;
    display: inline-block;
    line-height: 1.2;
}
.footer-bottom a:hover{
    color: #000;
    text-decoration: none;
}

@media(max-width: 1199px){
    .footer-phone a, 
    .footer-phone .typed-cursor{
        font-size: 5vw;
    }
    .footer-social-title,
    .footer-address,
    .footer-schedule{
        font-size: 20px;
    }
    .footer-top{
        margin-bottom: 40px;
    }
    .footer-bottom {
        margin-bottom: 60px;
    }
}
@media(max-width: 991px){
    .footer-top-inner .col1{
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .footer-top-inner .col2{
        width: 100%;
        padding-left: 0;
        justify-content: flex-start;
        text-align: left;
    }
    .footer-top-inner .social-nav{
        justify-content: flex-start;
    }
    .footer-phone{
        margin-bottom: 5vw;
    }
    .footer-phone a, 
    .footer-phone .typed-cursor{
        font-size: 8vw;
    }
    .footer-social-title{
        font-weight: 600;
    }
}
@media(max-width: 699px){
    .footer-phone .item-animate{
        display: none;
    }
    .footer-phone-wrapper{
        padding-top: 10px;
    }
    .footer-social-title, .footer-address, .footer-schedule,
    .copyright{
        font-size: 4vw;
    }
    .footer-social-title{
        margin-bottom: 4vw;
    }
    .footer-top{
        margin-bottom: 4vw;
    }
    .footer .social-nav{
        display: flex;
        margin-bottom: 4vw;
    }
}
/* /. footer */

/* Breadcrumbs */
.breadcrumb{
    margin: 25px 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 */

/* info-accent-section */
.info-accent-section-inner{
    border-radius: 30px;
    padding: 60px 50px 50px;
    overflow: hidden;
}
.info-accent-section.full-width .info-accent-section-inner{
    border-radius: 0;
}
.info-accent-section-description{
    margin-top: 50px;
}
.section-pattern{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.section-pattern-gradient{
    background: linear-gradient(180deg, rgb(0 0 0 / 39%) 19.5%, rgb(0 0 0 / 5%) 78.79%);
}
.section-width-pattern .container{
    position: relative;
    z-index: 10;
}
@media (max-width: 1559px) {
    .info-accent-section-inner{
        padding: 60px 4vw 50px;
    }
}
@media (max-width: 991px) {
    .info-accent-section-inner{
        border-radius: 4vw;
        padding: 60px 6vw 50px;
    }
}
/* /. info-accent-section */

/* features-type1 */
.features-type1{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.features-type1 .col{
    width: 33.3333%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.features-type1 .item{
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px;
    min-height: 136px;
}
.gray-bg .features-type1 .item{
    border: none;
}
.features-type1 .item.icon-position-left{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.features-type1 .item.vertical-align-flex-start{
    align-items: flex-start;
}

.features-type1 .item.icon-position-top .item-icon,
.features-type1 .item.icon-position-center .item-icon,
.features-type1 .item.icon-position-right .item-icon{
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}
.features-type1 .item.icon-position-top .item-icon-num,
.features-type1 .item.icon-position-right .item-icon-num{
    width: 60px;
    height: 60px;
    font-size: 26px;
}
.features-type1 .item.icon-position-center .item-icon-num{
    font-size: 30px;
}
.features-type1 .item.icon-position-center{
    text-align: center;
}
.features-type1 .item.icon-position-center .item-icon{
    margin-left: auto;
    margin-right: auto;
}
.features-type1 .item.icon-position-right .item-icon{
    margin-left: auto;
}

.features-type1 .item-icon-false{
    background: url(../images/check-feature-icon.svg) 50% 50% / 20px 20px no-repeat var(--accent-color1);
    border-radius: 50%;
}
.features-type1 .item-icon-num{
    background: var(--accent-color1);
    color: var(--accent-color-font);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 22px;
}
.features-type1 .item.icon-position-left .item-icon{
    width: 50px;
    height: 50px;
}
.features-type1 .item.icon-position-left .item-icon + .item-body{
    width: calc(100% - 50px);
    padding-left: 25px;
}
.features-type1 .item-icon-true img{
    width: 100%;
    max-height: 100%;
}
.features-type1 .item-title{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
}
.features-type1 .item-title + .item-text{
    margin-top: 10px;
}
.features-type1 .item-text{
    font-size: 16px;
}

@media(max-width: 1559px){
    .features-type1 .item {
        border-radius: 2vw;
        padding: 2vw;
        min-height: 12vw;
    }
    .features-type1 .item.icon-position-left .item-icon{
        width: 3.2vw;
        height: 3.2vw;
    }
    .features-type1 .item.icon-position-left .item-icon + .item-body{
        width: calc(100% - 3.2vw);
        padding-left: 1.6vw;
    }
    .features-type1 .item-title{
        font-size: 1.6vw;
    }
    .features-type1 .item-title + .item-text{
        margin-top: 0.64vw;
    }
    .features-type1 .item-text{
        font-size: 1vw;
    }
    .features-type1 .item-icon-false{
        background-size: 1.28vw 1.28vw;
    }
    .features-type1 .item.icon-position-top .item-icon{
        width: 70px;
        height: 70px;
    }
    .features-type1 .item-icon-num{
        font-size: 1.5vw;
    }
}
@media(max-width: 1229px){
    .features-type1 .item.icon-position-top .item-icon{
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
}
@media(max-width: 991px){
    .features-type1 .item.icon-position-left .item-icon{
        width: 3vw;
        height: 3vw;
    }
    .features-type1 .item.icon-position-left .item-icon + .item-body{
        width: calc(100% - 3vw);
        padding-left: 2vw;
    }
    .features-type1 .item-title{
        font-size: 2vw;
    }
    .features-type1 .item-title + .item-text{
        margin-top: 6px;
    }
    .features-type1 .item-text{
        font-size: 1.5vw;
    }
    .features-type1 .item.icon-position-top .item-icon{
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    .features-type1 .item.icon-position-top .item-icon-num,
    .features-type1 .item.icon-position-right .item-icon-num{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .features-type1 .item.icon-position-center .item-icon{
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
    }
}
@media(max-width: 767px){
    .features-type1 .col{
        width: 50%;
    }
    .features-type1 .item{
        padding: 3vw;
        min-height: 14vw;
    }
    .features-type1 .item.icon-position-left .item-icon{
        width: 4.5vw;
        height: 4.5vw;
    }
    .features-type1 .item.icon-position-left .item-icon + .item-body{
        width: calc(100% - 4.5vw);
    }
    .features-type1 .item-title{
        font-size: 3vw;
    }
    .features-type1 .item-text{
        font-size: 2vw;
    }
    .features-type1 .item-icon-false{
        background-size: 1.7vw 1.7vw;
    }
    .features-type1 .item-icon-num{
        font-size: 2.3vw;
    }
}
@media(max-width: 499px){
    .features-type1 .col{
        width: 100%;
    }
    .features-type1 .item{
        padding: 6vw 6vw 6vw 4vw;
        min-height: 20vw;
    }
    .features-type1 .item.icon-position-left .item-icon{
        width: 10vw;
        height: 10vw;
    }
    .features-type1 .item.icon-position-left .item-icon + .item-body{
        width: calc(100% - 10vw);
        padding-left: 4vw;
    }
    .features-type1 .item-title{
        font-size: 18px;
    }
    .features-type1 .item-text{
        font-size: 14px;
    }
    .features-type1 .item-title br{
        display: none;
    }
    .features-type1 .item-icon-false{
        background-size: 3.4vw 3.4vw;
    }
    .features-type1 .item-icon-num{
        font-size: 5vw;
    }
}
/* /. features-type1 */


/* product-categories */
.product-categories{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.product-categories .col{
    width: 14.28%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.product-categories .item{
    height: 100%;
    background-image: linear-gradient(80deg, var(--accent-color2) 0%, var(--accent-color1) 100%);
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all ease-out 300ms;
    cursor: default;
}
.product-categories .item:hover{
    transform: translateY(-5px);
}
.product-categories .item-img{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-categories .item-img img{
    max-height: 100%;
}
.product-categories .item-title{
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.3;
    font-size: 17px;
    width: 100%;
}
@media(max-width: 1559px){
    .product-categories .item{
        padding: 1vw;
    }
    .product-categories .item-img{
        height: 5vw;
    }
    .product-categories .item-title{
        margin-top: 1vw;
        font-size: 1.2vw;
    }
}
@media(max-width: 991px){
    .product-categories .col{
        width: 33.3333%;
    }
    .product-categories .item{
        padding: 2vw;
    }
    .product-categories .item-title{
        font-size: 2.5vw;
        margin-top: 2vw;
    }
    .product-categories .item-img{
        height: 7.5vw;
    }
}
@media(max-width: 767px){
    .product-categories {
        margin-left: -5px;
        margin-right: -5px;
    }
    .product-categories .col{
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .product-categories .item{
        padding: 3vw;
    }
    .product-categories .item-title{
        font-size: 3.5vw;
        margin-top: 3vw;
    }
    .product-categories .item-img{
        height: 12vw;
    }
}
@media(max-width: 499px){
    .product-categories .item-title{
        font-size: 4.5vw;
    }
    .product-categories .item-img{
        height: 14vw;
    }
}
/* /. product-categories */

/* compare */
.compare-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.compare-columns .col{
    width: calc(50% - 15px);
}
.compare-block{
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
}
.compare-block.block2{
    background: #F6F6F6;
    border: 1px solid #eee;
}
.compare-items .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.compare-items .item + .item{
    margin-top: 30px;
}
.compare-items .item-icon{
    width: 36px;
    height: 36px;
}
.compare-items .item-title{
    width: calc(100% - 36px);
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.4;
}
@media(max-width: 991px){
    .compare-columns .col{
        width: 100%;
    }
    .compare-columns .col + .col{
        margin-top: 30px;
    }
}
@media(max-width: 499px){
    .compare-items .block{
        padding: 6vw;
    }
    .compare-items .item + .item{
        margin-top: 20px;
    }
    .compare-items .item-title{
        font-size: 15px;
    }
}
/* /. compare */

/* price-section */

.price-items .item{
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    border: 1px solid #EEEEEE;
}
.price-items .col1{
    width: calc(50% - 25px);
}
.price-items .col2{
    width: calc(50% - 25px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.price-items .item-text{
    font-weight: normal;
    font-size: 17px;
    margin-top: 15px;
    color: #B4B4B4;
}
.price-items .item-price{
    width: calc(50% - 15px);
    text-align: center;
    white-space: nowrap;
    color: var(--accent-color1);
}
.price-items .item-btn{
    width: calc(50% - 15px);
}
.price-items .item-btn .btn{
    white-space: nowrap;
}
.mod1 .price-items .item{
    min-height: 150px;
}
@media(max-width: 1099px){
    .price-items .item-title br{
        display: none;
    }
}
@media(max-width: 991px){
    .price-items{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-left: -8px;
        margin-right: -8px;
    }
    .price-items .item{
        width: calc(50% - 8px);
        margin-bottom: 16px;
        padding: 25px 15px;
        font-size: 20px;
        text-align: center;
        flex-direction: column;
        justify-content: space-between;
    }
    .price-items .col1{
        width: 100%;
        margin-bottom: 20px;
    }
    .price-items .col2{
        width: 100%;
    }
    .price-items .item-price{
        width: 100%;
        margin-bottom: 15px;
    }
    .price-items .item-btn{
        width: 100%;
    }
    .price-items .item-btn .btn{
        width: auto;
        height: 40px;
        font-size: 14px;
    }
    .price-items .item-text{
        font-size: 15px;
    }
}

@media(max-width: 599px){
    .price-items{
        margin-left: 0;
        margin-right: 0;
    }
    .price-items .item{
        width: 100%;
    }
    .price-items .item{
        text-align: center;
        padding: 25px 15px;
    }
    .price-items .col1{
        width: 100%;
        margin-bottom: 15px;
    }
    .price-items .col2{
        width: 100%;
    }
    .price-items .item-btn .btn{
        font-size: 16px;
        height: 50px;
        width: auto;
    }
}
/* /. price-section */

/* price-list */
.price-list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.price-list .col{
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
.price-list .item{
    height: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #f9f9f9;
    border: 1px solid #EEEEEE;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all ease-out 300ms;
    line-height: 1.3;
    font-size: 18px;
}
.gray-bg .price-list .item,
.dark-bg .price-list .item,
.theme-color-bg .price-list .item{
    background: #fff;
}
.price-list .item-title{
    width: calc(100% - 160px);
    padding-right: 15px;
}
.price-list .item-price{
    width: 160px;
    text-align: right;
    white-space: nowrap;
    color: var(--accent-color1);
}
.price-list-all{
    display: none;
}
.price-list-all.active{
    display: flex;
}
.price-list-more-btn{
    width: 320px;
    max-width: 100%;
}

@media(max-width: 991px){
    .price-list .col{
        width: 100%;
        margin-bottom: 5px;
    }
    .price-list .item{
        min-height: 1px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 5px;
        padding: 12px 15px;
    }
}
@media(max-width: 767px){
    .price-list .item{
        font-size: 13px;
        min-height: 60px;
    }
    .price-list .item-title{
        width: calc(100% - 120px);
    }
    .price-list .item-price{
        width: 120px;
    }
}
@media(max-width: 499px){
    .price-list-more-btn{
        width: 100%;
    }
}
@media(max-width: 429px){
    .price-list .item{
        font-size: 12px;
        padding: 8px 10px;
        min-height: 66px;
    }
    .price-list .item-title{
        padding-right: 10px;
        width: calc(100% - 100px);
    }
    .price-list .item-price{
        width: 100px;
    }
}
/* /. price-list */

/* contacts page */
.contacts-page-columns{
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    background: #fff;
    border-radius: 30px;
    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 .map-wrapper{
        width: calc(100% - 500px);
    }
    .contacts-page-content-wrapper{
        padding: 60px;
    }
}
@media(max-width: 991px){
    .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{
        border-radius: 20px;
    }
    .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{
        background-color: transparent;
    }
    .contacts-page-columns .map{
        min-height: 300px;
        height: 300px;
    }
    .contacts-page-content-wrapper .content{
        font-size: 14px;
    }
}
/* /. contacts page */

/* slider-section */
.slider > div:not(:first-of-type){
    display: none;
}
.slider.container-width{
    margin-left: -10px;
    margin-right: -10px;
}
.slider.container-width .col{
    padding-left: 10px;
    padding-right: 10px;
}
.slider .item{
    position: relative;
}
.slider.container-width .item{
    overflow: hidden;
    border-radius: 30px;
}
.slider .item-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.slider .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .item-img-pattern{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.slider .item-content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 45px;
}
.vertical-text-top .slider .item-content{
    align-items: flex-start;
}
.vertical-text-bottom .slider .item-content{
    align-items: flex-end;
}
.dots_true .slider .item-content-inner{
    padding-bottom: 35px;
}
.slider .item-title{
    line-height: 1.1;
    font-weight: 600;
}
.slider .item-text{
    line-height: 1.4;
}
.slider .item-title + .item-text{
    margin-top: 50px;
}
.slider .item-btn{
    margin-top: 50px;
}

.slider.container-width .item-content{
    padding: 50px 35px;
}
.slider.container-width .item-title + .item-text{
    margin-top: 40px;
}
.slider.container-width .item-btn{
    margin-top: 40px;
}
.slider .item .btn{
    white-space: nowrap;
}
.slider .slick-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin-top: 0;
}
.slider .slick-dots li:not(.slick-active){
    background: #fff;
}

.arrows_false .slick-next,
.arrows_false .slick-prev{
    display: none !important;
}
.dots_false .slick-dots{
    display: none !important;
}
@media(max-width: 1799px){
    .arrows_true .slider .item-content-inner{
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media(max-width: 1559px){
    .slider.full-width .item-content{
        padding: calc(60vw / 15.6) calc(35vw / 15.6);
    }
    .slider.full-width .item-title + .item-text{
        margin-top: calc(50vw / 15.6);
    }
    .slider.full-width .item-btn{
        margin-top: calc(50vw / 15.6);
    }
    
    .slider.container-width .item{
        border-radius: calc(30vw / 15.6);
    }
    .slider.container-width .item-content{
        padding: calc(50vw / 15.6) calc(35vw / 15.6);
    }
    .slider.container-width .item-title + .item-text{
        margin-top: calc(40vw / 15.6);
    }
    .slider.container-width .item-btn{
        margin-top: calc(40vw / 15.6);
    }
}
@media(max-width: 991px){
    .slider .item-title br,
    .slider .item-text br{
        display: none;
    }
    .slider.full-width .item-title + .item-text{
        margin-top: calc(50vw / 12);
    }
    .slider.full-width .item-btn{
        margin-top: calc(50vw / 12);
    }
    .slider.container-width .item-title + .item-text{
        margin-top: calc(40vw / 12);
    }
    .slider.container-width .item-btn{
        margin-top: calc(40vw / 12);
    }
    .slider.container-width .item{
        border-radius: calc(30vw / 9);
    }
    .slider .item-content{
        align-items: flex-start;
    }
    .arrows_true .slider .item-content-inner{
        padding-left: 0;
        padding-right: 0;
    }
}
@media(max-width: 767px){
    .slider .item-content-inner{
        padding-top: 5vw;
        padding-bottom: 70vw;
    }
    .slider.full-width .item-title + .item-text{
        margin-top: calc(50vw / 10);
    }
    .slider.full-width .item-btn{
        margin-top: calc(50vw / 10);
    }
    .slider.container-width .item-title + .item-text{
        margin-top: calc(40vw / 10);
    }
    .slider.container-width .item-btn{
        margin-top: calc(40vw / 10);
    }
    .slider.container-width .item{
        border-radius: calc(30vw / 7);
    }
    .slider .slick-dots{
        bottom: 10px;
    }
    .slider .slick-dots li{
        width: 11px;
        height: 11px;
        margin: 0 6px 0;
    }
}
@media(max-width: 599px){
    .slider .item-content-inner{
        padding-top: 10vw;
        padding-bottom: 90vw;
    }
    .dots_true .slider .item-content-inner{
        padding-bottom: 25px;
    }
    .slider .slick-dots{
        bottom: 5px;
    }
}
/* /.slider-section */

/* news */
.news{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 20px;
}
.news .col{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.news .item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
    background: #F6F6F6;
}
.dark-bg .news .item,
.theme-color-bg .news .item,
.gray-bg .news .item{
    background: #fff;
}
.news .item-img{
    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;
    border-top: none;
}
.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 0 0 3px var(--accent-color1);
}
.news .item:hover .item-body{
    border-color: transparent;
}
.news .item:hover .item-img img{
    transform: scale(1.1);
}
.news .item:hover .item-title{
    color: var(--accent-color1);
}
.news-carousel .slick-list{
    padding-top: 5px;
    margin-top: -5px;
}
.news-carousel .col{
    margin-bottom: 5px;
}
@media(max-width:1559px){
    .news .item{
        border-radius: 1.28vw;
    }
}
@media(max-width:1299px){
    .news .col{
        width: 33.3333%;
    }
    .news .item-title{
        font-size: 18px;
    }
}
@media(max-width: 1199px){
    .news .item{
        border-radius: 1.785vw;
    }
}
@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 .col{
        width: 50%;
    }
    .news .item{
        border-radius: 2.6vw;
    }
    .news .item-body{
        padding: 10px;
    }
    .news .item-date {
        font-size: 12px;
    }
    .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: 3.5vw;
    }
}
/* /. 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: 100px;
}
.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: var(--accent-color1);
}
.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*/

/* video reviews */
.video-reviews{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.video-reviews .col{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.video-reviews .item{
    display: block;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.video-reviews .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-out 400ms;
}
.video-reviews .item:after{
    content: "";
    background: url(../images/play3.svg) 50% / contain no-repeat;
    width: 100px;
    height: 100px;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    transition: all ease-out 400ms;
}
.video-reviews .item:hover:after{
    transform: scale(1.2);
}

.video-reviews-carousel > div:not(:first-of-type){
    display: none;
}

@media(max-width: 1399px){
    .video-reviews{
        margin-left: -8px;
        margin-right: -8px;
    }
    .video-reviews .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
    .video-reviews .item:after{
        width: 7.1428vw;
        height: 7.1428vw;
        top: calc(50% - 3.5714vw);
        left: calc(50% - 3.5714vw);
    }
}
@media(max-width: 991px){
    .video-reviews .col{
        width: 33.3333%;
    }
    .video-reviews .item:after{
        width: 10vw;
        height: 10vw;
        top: calc(50% - 5vw);
        left: calc(50% - 5vw);
    }
}
@media(max-width: 599px){
    .video-reviews .col{
        width: 50%;
    }
    .video-reviews .item:after{
        width: 16.6666vw;
        height: 16.6666vw;
        top: calc(50% - 8.3333vw);
        left: calc(50% - 8.3333vw);
    }
    
    .slick-arrows-top-section .section-header{
        padding-right: 0;
    }
    .slick-arrows-top-section .slick-slider{
        padding-top: 70px;
    }
}
/* /. video reviews*/



/* twentytwenty было-стало */
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px; }

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px; }

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s; }

.twentytwenty-before-label, .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity; }

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em; }

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px; }

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px; }

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute; }

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px; }

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px; }

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }
  .twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block; }
  .twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0); }
    .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
    .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
    .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
      opacity: 0; }
  .twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box; }

.twentytwenty-before-label {
  opacity: 0; }
  .twentytwenty-before-label:before {
    content: attr(data-content); }

.twentytwenty-after-label {
  opacity: 0; }
  .twentytwenty-after-label:before {
    content: attr(data-content); }

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px; }

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px; }

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px; }

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px; }

.twentytwenty-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25; }
  .twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5); }
    .twentytwenty-overlay:hover .twentytwenty-after-label {
      opacity: 1; }
    .twentytwenty-overlay:hover .twentytwenty-before-label {
      opacity: 1; }

.twentytwenty-before {
  z-index: 20; }

.twentytwenty-after {
  z-index: 10; }

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer; }

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px; }

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px; }

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px; }

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

.twentytwenty-items{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.twentytwenty-items .col{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.twentytwenty-items .item{
    border-radius: 30px;
    overflow: hidden;
}
.twentytwenty-items .item img{
    width: 100%;
    opacity: 0;
}
.twentytwenty-item > img:last-of-type{
    display: none;
}
.twentytwenty-item.twentytwenty-container img{
    opacity: 1;
}
.twentytwenty-item.twentytwenty-container > img:last-of-type{
    display: block;
}

@media(max-width: 1559px){
    .twentytwenty-items{
        margin-left: -8px;
        margin-right: -8px;
    }
    .twentytwenty-items .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
}
@media(max-width: 699px){
    .twentytwenty-items .col{
        width: 100%;
    }
}
/* /. twentytwenty было-стало */

/* photo-consultation-section-inner */
.photo-consultation-section-inner{
    background: #F6F6F6;
    padding: 80px 590px 80px 80px;
    border-radius: 30px;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}
.photo-consultation-section-inner .item-img{
    position: absolute;
    right: 80px;
    top: -80px;
    height: calc(100% + 80px);
    width: 430px;
    overflow: hidden;
}
.photo-consultation-section-inner .item-title{
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.photo-consultation-section-inner .item-title span{
    font-weight: 700;
}
.photo-consultation-section-inner .item-subtitle{
    font-size: 22px;
    margin-bottom: 40px;
}
.photo-consultation-section-inner .item-buttons > div{
    display: inline-block;
}
.photo-consultation-section-inner .item-buttons > div + div{
    margin-left: 10px;
}
.photo-consultation-section-inner .item-buttons .btn svg{
    margin-right: 10px;
    position: relative;
    z-index: 10;
}
.photo-consultation-section-inner .item-buttons .btn span{
    position: relative;
    z-index: 10;
}

@media(max-width: 1559px){
    .photo-consultation-section-inner{
        padding: 5.128vw 37.82vw 5.128vw 5.128vw;
        min-height: 32vw;
    }
    .photo-consultation-section-inner .item-img{
        right: 5.128vw;
        top: -5.128vw;
        height: calc(100% + 5.128vw);
        width: 27.564vw;
    }
    .photo-consultation-section-inner .item-title{
        font-size: 2.9vw;
        margin-bottom: 2vw;
    }
    .photo-consultation-section-inner .item-subtitle{
        font-size: 1.42vw;
        margin-bottom: 2.6vw;
    }
    
    .photo-consultation-section-inner .item-buttons .btn{
        height: 5.128vw;
        font-size: 1.282vw;
        padding: 0 2.884vw;
        min-width: 19.23vw;
        border-radius: 2.564vw;
    }
    .photo-consultation-section-inner .item-buttons .btn svg{
        width: 1.923vw;
        margin-right: 0.64vw;
    }
}
@media(max-width: 767px){
    .photo-consultation-section{
        padding-top: 0;
    }
    .photo-consultation-section-inner{
        padding: 40px 25px;
        min-height: 1px;
        text-align: center;
        border-radius: 20px;
        margin-bottom: 0;
    }
    .photo-consultation-section-inner .item-img{
        position: static;
        width: 330px;
        max-width: 100%;
        margin: auto;
        margin-top: 40px;
    }
    .photo-consultation-section-inner .item-title {
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }
    .photo-consultation-section-inner .item-subtitle {
        font-size: 3vw;
        margin-bottom: 6vw;
        line-height: 1.4;
    }
    .photo-consultation-section-inner .item-buttons > div{
        display: block;
    }
    .photo-consultation-section-inner .item-buttons > div + div{
        margin-left: 0;
        margin-top: 15px;
    }
    .photo-consultation-section-inner .item-buttons .btn{
        height: 64px;
        font-size: 18px;
        padding: 0 35px;
        min-width: 300px;
        border-radius: 40px;
    }
    .photo-consultation-section-inner .item-buttons .btn svg{
        width: 30px;
        margin-right: 10px;
    }
}
@media(max-width: 429px){
    .photo-consultation-section-inner .item-buttons .btn{
        min-width: 100%;
        height: 54px;
        font-size: 16px;
        padding: 0 25px;
    }
    .photo-consultation-section-inner .item-title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .photo-consultation-section-inner .item-subtitle{
        font-size: 16px;
        margin-bottom: 30px;
    }
}
/* /. photo-consultation-section-inner*/

/* content-blocks */
.content-blocks .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.content-blocks .item:last-child{
    margin-bottom: 0;
}
.content-blocks .item-content{
    width: 55%;
    font-size: 18px;
    line-height: 1.8;
}
.content-blocks .item-img{
    width: 45%;
    padding: 0 50px 60px 30px;
    position: relative;
}
.content-blocks .item-img img{
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}
.content-blocks .item-img:before{
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 30px;
    right: 80px;
    background: #f6f6f6;
    border-radius: 30px;
}
.content-blocks .item:nth-child(even) .item-content{
    order: 1;
}
.content-blocks .item:nth-child(even) .item-img{
    order: 2;
    padding: 0 30px 60px 50px;
}
.content-blocks .item:nth-child(even) .item-img:before{
    right: 0;
    left: 80px;
}
.dark-bg .content-blocks .item-img:before{
    opacity: 0.1;
}
.gray-bg .content-blocks .item-img:before{
    background: var(--accent-color1);
}
@media(max-width: 1559px){
    .content-blocks .item-content{
        line-height: 1.6;
    }
}
@media(max-width:991px){
    .content-blocks .item{
        align-items: flex-start;
        margin-bottom: 50px;
    }
    .content-blocks .item-content{
        width: 65%;
    }
    .content-blocks .item-img{
        width: 35%;
        padding: 0 30px 0 0;
    }
    .content-blocks .item-img img{
        border-radius: 20px;
    }
    .content-blocks .item-img:before{
        display: none;
    }
    .content-blocks .item:nth-child(even) .item-img{
        padding: 0 0 0 30px;
    }
}
@media(max-width: 699px){
    .content-blocks .item{
        margin-bottom: 30px;
    }
    .content-blocks .item-img{
        width: 30%;
        padding: 0 20px 0 0;
        order: 1;
    }
    .content-blocks .item:nth-child(even) .item-img{
        padding: 0 20px 0 0;
        order: 1;
    }
    .content-blocks .item-content{
        order: 2;
    }
    .content-blocks .item-content,
    .content-blocks .item-content p{
        font-size: 13px;
    }
    .content-blocks .item h2{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .content-blocks .item-img img{
        border-radius: 10px;
    }
}
@media(max-width: 429px){
    .content-blocks .item-content {
        width: 100%;
        order:2;
    }
    .content-blocks .item-img{
        order:1;
        width: 100%;
        padding: 0 !important;
        margin-bottom: 30px;
    }
}
/* /. content-blocks */

/* team */
.team{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.team .col{
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.team .item{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    transition: all ease-out 300ms;
}
.team .item-img{
    height: 100%;
}
.team .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-out 300ms;
}
.team .item-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 115px;
    display: flex;
    padding: 20px;
    background: rgba(255,255,255,.9);
    color: #333;
    text-align: center;
}
.team .item-body-inner{
    position: relative;
    z-index: 2;
    width: 100%;
}
.team .item-title{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
}
.team .item-subtitle{
    margin-top: 10px;
    line-height: 1.2;
    font-size: 17px;
}
.team .item:hover{
    transform: translateY(-10px);
}
.team-carousel.slick-slider{
    display: block;
}
.team-carousel > div:not(:first-of-type){
    display: none;
}
.team-carousel .slick-list{
    padding: 10px 0 0;
}
.team-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.team-carousel .slick-slide {
    height: inherit;
}
.team-carousel .slick-slide > div {
    height: 100%;
}
.team-hidden-block-inner{
    display: flex;
    flex-wrap: wrap;
}

.team-hidden-block-img{
    width: 200px;
}
.team-hidden-block-img img{
    border-radius: 10px;
}
.team-hidden-block-body{
    width: calc(100% - 200px);
    padding-left: 30px;
}
.team-hidden-block-title{
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}
.team-hidden-block-subtitle{
    font-size: 22px;
    line-height: 1.4;
    margin-top: 10px;
}
.team-hidden-block-text{
    margin-top: 30px;
}

@media(max-width: 1559px){
    .team{
        margin-left: -10px;
        margin-right: -10px;
    }
    .team .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .team .item{
        border-radius: 2vw;
    }
    .team .item-body{
        padding: 1.282vw;
        min-height: 7vw;
    }
    .team .item-title{
        font-size: 1.1538vw;
    }
    .team .item-subtitle {
        margin-top: 0.641vw;
        font-size: 1.09vw;
    }
}
@media(max-width: 991px){
    .team .col{
        width: 33.3333%;
    }
    .team .item-body{
        padding: 1.92vw 1.92vw;
        min-height: 11vw;
    }
    .team .item-title{
        font-size: 1.73vw;
    }
    .team .item-subtitle {
        margin-top: 0.96vw;
        font-size: 1.635vw;
    }
}
@media(max-width: 767px){
    .team .col{
        width: 50%;
    }
    .team .item-body{
        padding: 2.88vw 2.88vw;
        min-height: 18vw;
    }
    .team .item-title{
        font-size: 2.595vw;
    }
    .team .item-subtitle {
        margin-top: 1.44vw;
        font-size: 2.4525vw;
    }
    .team-hidden-block-img{
        width: 100%;
        margin-bottom: 30px;
    }
    .team-hidden-block-body{
        width: 100%;
        padding-left: 0;
    }
    .team-more-btn .btn{
        width: 100%;
    }
}
@media(max-width: 429px){
    .team .col{
        width: 100%;
    }
    .team .item-body{
        padding: 5.76vw 5.76vw;
        min-height: 36vw;
    }
    .team .item{
        border-radius: 4vw;
    }
    .team .item-title{
        font-size: 5.19vw;
    }
    .team .item-subtitle {
        margin-top: 2.88vw;
        font-size: 4.95vw;
    }
}

/* /. team */

/* gallery-carousel-section */
.gallery-carousel-section{
    width: 100%;
    overflow: hidden;
}
.gallery-carousel{
    margin-left: -15px;
    margin-right: -15px;
}
.container .gallery-carousel{
    margin-left: -10px;
    margin-right: -10px;
}
.gallery-carousel:not(.slick-arrows-top) .slick-prev,
.gallery-carousel:not(.slick-arrows-top) .slick-next{
    display: none !important;
}
.gallery-carousel{
    position: relative;
    z-index: 6;
}
.gallery-carousel > div:not(:first-of-type){
    display: none;
}
.gallery-carousel .item{
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block;
    margin-bottom: 16px;
}
.gallery-carousel.slick-slider .item img{
    width: 100%;
}
.gallery-carousel .item a{
    display: block;
    position: relative;
    overflow: hidden;
}
.gallery-carousel .item a:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: ease-out all 300ms;
}
.gallery-carousel .item a:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.gallery-carousel .item a:hover:before{
    opacity: 1;
}
.gallery-carousel .item a:hover:after{
    opacity: 1;
    transform: scale(1);
}

.gallery-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.gallery-carousel .slick-slide {
    height: inherit;
}
.gallery-carousel .item-inner{
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.gallery-carousel .item-inner > a{
    display: block;
    height: 100%;
}
.gallery-carousel .item-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width: 1559px){
    .gallery-carousel .item-inner{
        border-radius: 2vw;
    }
}
@media(max-width: 991px){
    .gallery-carousel .item{
        margin-bottom: 0;
    }
}
@media(max-width: 429px){
    .gallery-carousel .item-inner{
        border-radius: 4vw;
    }
}
/* /. gallery-carousel-section */

/* certificates-gallery */
.certificates-gallery{
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
}
.certificates-gallery .col{
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
    width: 25%;
}
.certificates-gallery .item{
    box-shadow: 0 0 0 1px #D9D9D9;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.certificates-gallery .item img{
    width: 100%;
}
.certificates-gallery .col{
    padding-top: 2px;
    padding-bottom: 2px;
}
.certificates-carousel > div:not(:first-of-type){
    display: none;
}
.certificates-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.certificates-carousel .slick-slide {
    height: inherit;
}
.certificates-gallery .item:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: all ease 300ms;
}
.certificates-gallery .item:before{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg);
    z-index: 2;
    opacity: 0;
    transition: all ease 300ms;
    transform: scale(0);
}
.certificates-gallery .item:hover:after{
    opacity: 1;
}
.certificates-gallery .item:hover:before{
    opacity: 1;
    transform: scale(1);
}
.certificates-gallery .item:hover{
    border-color: transparent;
}
@media(max-width:991px){
    .certificates-gallery .col{
        width: 33.33333%;
    }
    .certificates-gallery{
        margin-left: -10px;
        margin-right: -10px;
    }
    .certificates-gallery .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width:767px){
    .certificates-gallery .col{
        width: 50%;
    }
    .certificates-gallery .item{
        padding: 5px;
    }
}
@media(max-width:599px){
    .certificates-gallery{
        margin-left: -5px;
        margin-right: -5px;
    }
    .certificates-gallery .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
}
/* /. certificates-gallery */ 

/* docs */
.docs-list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.docs-list .col{
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}
.docs-list .item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 17px 22px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    background: #fff;
}
.docs-list .item .download-icon{
    width: 12px;
}
.docs-list .item .item-inner{
    width: calc(100% - 12px);
    padding-right: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.docs-list .item .item-inner .doc-icon{
    width: 40px;
}
.docs-list .item .item-inner .doc-content{
    width: calc(100% - 40px);
    padding-left: 22px;
}
.doc-content .file{
    color:#000;
    display: inline-block;
    margin-bottom: 5px;
    text-decoration: none;
}
.docs-list .item .doc-size{
    font-size: 13px;
    color: #818181;
}
.docs-list .download-icon path{
	transition: all 200ms ease-out;
}
.doc-icon{
    background-image:url(../images/docs.svg);
    width: 40px;
    height: 40px;
    background-position: 0 -84px;
}
.doc-icon.pdf{
    background-position: 0 0;
}
.doc-icon.docx,
.doc-icon.doc{
    background-position: -42px 0;
}
.doc-icon.xls,
.doc-icon.xl{
    background-position: -84px 0;
}
.doc-icon.rtf{
    background-position: 0 -42px;
}
.doc-icon.tiff{
    background-position: -84px -42px;
}
.doc-icon.txt {
    background-position: -42px -84px;
}
.doc-icon.bmp {
    background-position: -42px -126px;
}
.doc-icon.ppt {
    background-position: -84px -126px;
}

.docs-list .item:hover{
    border-color: var(--accent-color1);
}
.docs-list .item:hover .file{
    color: var(--accent-color1);
}
.docs-list .item:hover .download-icon path{
    fill: var(--accent-color1);
}

@media(max-width: 991px){
    .docs-list .col{
        width: 100%;
    }
}
@media(max-width: 767px){
    .docs-list .item{
        font-size: 14px;
        padding: 15px;
    }
}
@media(max-width: 429px){
    .docs-list .item{
        font-size: 13px;
        padding: 12px;
    }
}
/* /. docs */

/* modifications */
.mod1 .news .item{
    background: #F6F6F6;
}
.num-section.mod1 .nums .item{
    background: var(--accent-color1);
    color: var(--accent-color-font);
    border: none;
}
.num-section.mod1 .nums .item-title{
    color: var(--accent-color-font);
}

.num-section.mod2 .nums .item{
    background: #fff;
    color: #333;
    border: none;
}

.about-section.mod1{
    background: url(/images/site/about-section-bg.png) bottom 0 left 0 no-repeat;
}
.reviews-carousel-section.mod1{
    position: relative;
}
.reviews-carousel-section.mod1 .container{
    position: relative;
}
.content-section.mod1 .content{
    font-size: 20px;
    line-height: 1.8;
}

.features-type1-section.mod1 .col{
    width: 25%;
}
.features-type1-section.mod1 .item-icon.item-icon-true{
    background: var(--accent-color1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 1559px){
    .content-section.mod1 .content{
        font-size: 18px;
        line-height: 1.6;
    }
}
@media(max-width: 1299px){
    .content-section.mod1 .content{
        font-size: 15px;
    }
    .features-type1-section.mod1 .item.icon-position-top .item-icon{
        width: 60px;
        height: 60px;
        padding: 10px;
    }
}
@media(max-width: 991px){
    .features-type1-section.mod1 .col{
        width: 50%;
    }
}

@media(max-width: 767px){
    
}
@media(max-width: 499px){
    .features-type1-section.mod1 .col{
        width: 100%;
    }
}

@media(min-width: 768px){
    .reviews-carousel-section.mod1:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0.5;
        background: url(/images/site/quote1.png) left 1% bottom 20px no-repeat,
                    url(/images/site/quote2.png) right 1% top 0 no-repeat;
    }
}
/* /. modifications */


