@charset "utf-8";

:root {
  --accent-color1: #CB111A;
  --accent-color2: #B30F17;
  --accent-color3: #EA131E;
  --accent-color-font: #fff;
}
.map-section-contacts-block path{
    stroke: var(--accent-color1);
}
.theme-color,
.color-theme{
    color: var(--accent-color1);
}
.header-title .span{
    color: var(--accent-color1);
}

body{
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 18px;
    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: 80px 0 70px;
}
.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, #EFF3F5 0, rgba(248, 248, 248, 0) 100%);
}
.section-gradient-top_gray-to-bottom_white{
    background: linear-gradient(0deg, rgba(248, 248, 248, 0) 0, #EFF3F5 100%);
}
.white-bg{
    background: #fff;
}
.gray-bg{
    background: #EFF3F5;
}
.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: 991px){
    .section{
        padding: 60px 0 50px;
    }
    .pt0{
        padding-top: 0;
    }
    .pb0{
        padding-bottom: 0;
    }
}
@media(max-width: 767px){
    .section-description,
    .section-description span[class^="f1"],
    .section-description span[class^="f2"],
    .section-description span[class^="f3"],
    .section-description span[class^="f4"],
    .section-description strong[class^="f1"],
    .section-description strong[class^="f2"],
    .section-description strong[class^="f3"],
    .section-description strong[class^="f4"]{
        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,
    .section-description span[class^="f1"],
    .section-description span[class^="f2"],
    .section-description span[class^="f3"],
    .section-description span[class^="f4"],
    .section-description strong[class^="f1"],
    .section-description strong[class^="f2"],
    .section-description strong[class^="f3"],
    .section-description strong[class^="f4"]{
        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-media:after {
    content: "";
    background: url(../images/clouds.png) 50% / cover no-repeat;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 148px;
    pointer-events: none;
}
.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: 100px;
}
.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 .max-btn a{
    background-color: #717BFF;
}
.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 .max-btn a:hover {
    animation: radial-pulse-max 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-max {
    0% {
        box-shadow: 0 0 0 0px rgba(113, 123, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}
@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 120px;
}
.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 #007C30;
    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-content-inner{
        background: rgba(255,255,255,.6);
        padding: 8vw;
        border-radius: 5vw;
    }
    .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;
        font-size: 2.5vw;
    }
}
@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: 3.5vw;
        padding-left: 3.5vw;
        padding-right: 3.5vw;
    }
}
@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 .btn{
        font-size: 5vw;
    }
    .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,
.header-main-wrapper:not(.fixed) .top-menu > ul > li > span{
    color: inherit;
}
.top-menu a:hover,
.top-menu li.active > a{
    color: var(--accent-color1) !important;
}
.top-menu > ul > li > a,
.top-menu > ul > li > span{
    font-size: 14px;
    margin: 0 18px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-menu li.down > a:after,
.top-menu li.down > span: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,
.top-menu ul ul li.down > span{
    position: relative;
    padding-right: 25px;
    width: 100%;
}
.top-menu ul ul li.down > a:after,
.top-menu ul ul li.down > span:after {
    transform: rotate(-45deg);
    position: absolute;
    right: 12px;
    top: 18px;
}
.top-menu li.down.active > a:after,
.top-menu li.down > a:hover:after,
.top-menu li.down.active > span:after,
.top-menu li.down > span: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: #EFF3F5;
}
.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: #EFF3F5;
        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 40px;
    border-radius: 30px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #EFF3F5;
}
.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: #EFF3F5;
}
.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: 20px;
}
.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 .item{
    border-bottom: 1px solid #E7E7E7;
}
.accordion .item:last-child{
    border-bottom: none;
}
.accordion .item-head {
    min-height: 80px;
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    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;
    transition: all ease-out 300ms;
}
.accordion .item-icon:after{
    content: "+";
    font-size: 35px;
    font-weight: normal;
    position: relative;
    z-index: 2;
}
.accordion .item.active .item-icon{
    transform: rotate(45deg);
}
.accordion .item:hover .item-head,
.accordion .item.active .item-head{
    color: var(--accent-color1);
}
.accordion .item-body {
    display: none;
    padding: 0 0 15px;
    font-size: 20px;
}
@media(max-width: 991px){
    .accordion .item-title{
        font-size: 20px;
    }
    .accordion .item-body{
        font-size: 15px;
        padding: 0 0 5px;
    }
}
@media(max-width: 767px){
    .accordion .item-head{
        padding: 10px 0;
    }
    .accordion .item-title{
        font-size: 16px;
    }
    .accordion .item-body {
        padding: 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);
}
.mod1 .services .item{
    background: #EFF3F5;
    border: none;
}
.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: 1.1em;
    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 */

/* 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: #EFF3F5;
    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%, rgba(0,0,0,0.7) 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 */


/* 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;
}
.mod1 .info-accent-section-inner{
    background-size: auto !important;
    background-position: right 0 bottom 0 !important;
}
.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 #cb111a;
    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: 20px;
        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 */

/* contacts page */
.contacts-page-columns{
    display: flex;
    flex-wrap: wrap;
    background: #EFF3F5;
    border-radius: 30px;
    overflow: hidden;
}
.map-section-contacts-block {
    width: 570px;
    background: #EFF3F5;
    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 */

/* modifications */
.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: 499px){
    .features-type1-section.mod1 .col{
        width: 100%;
    }
}

/* /. modifications */

/* garanty-items */
.garanty-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 50px;
    width: 1200px;
    max-width: 100%;
}
.garanty-items .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.garanty-items .item{
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}
.garanty-items .item-num{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color-font);
    background-color: #007c30;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}
.garanty-items .item-body{
    width: calc(100% - 36px);
    padding-left: 15px;
}
.garanty-items .item-title{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.garanty-items .item-text{
    line-height: 1.4;
    font-size: 16px;
}
.footer-social svg {
    width: 40px;
    height: 40px;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h1 span,
h2 span,
h3 span,
h4 span{
    color: #007c30;
}
@media(max-width: 1199px){
    .garanty-items .item-title{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .garanty-items .item-text{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .garanty-items .col{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .info-accent-section.mod1 .info-accent-section-inner{
        text-align: left;
    }
}
/* /. garanty-items */








