@charset "utf-8";
body{
    font-family: 'Open Sans', sans-serif;
    color: #383838;
    font-size: 16px;
    line-height: 1.6;
}
h1,
.title-h1 {
    font-size: 42px;
    line-height: 1.17;
    font-weight: 600;
    margin-bottom: 30px;
}

h2,
.title-h2 {
    font-size: 32px;
    line-height: 1.17;
    font-weight: 600;
    margin-bottom: 30px;
}

h3,
.title-h3 {
    font-size: 24px;
    line-height: 1.17;
    font-weight: 600;
    margin-bottom: 20px;
}

h4,
.title-h4 {
    font-size: 20px;
    line-height: 1.17;
    font-weight: 600;
    margin-bottom: 20px;
}

h5,
.title-h5 {
    font-size: 18px;
    line-height: 1.17;
    font-weight: 600;
    margin-bottom: 15px;
}

@media(max-width: 991px) {
    h1,
    .title-h1 {
        font-size: 32px;
    }

    h2,
    .title-h2 {
        font-size: 24px;
    }

    h3,
    .title-h3 {
        font-size: 20px;
    }

    h4,
    .title-h4 {
        font-size: 18px;
    }
    h5,
    .title-h5 {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    body{
        font-size: 14px;
    }
    h1,
    .title-h1 {
        font-size: 24px;
    }

    h2,
    .title-h2 {
        font-size: 20px;
    }

    h3,
    .title-h3 {
        font-size: 18px;
    }

    h4,
    .title-h4 {
        font-size: 16px;
    }
}

a {
    color: #00CABC;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #00CABC;
}

.btn{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: radial-gradient(at top, #02eddd, #00cabc);
    text-align: center;
    transition: all 300ms ease-out;
}
.btn:hover {
    filter: brightness(110%);
    color: #fff;
}
.btn.btn-transparent{
    background: transparent;
}
.btn.btn-transparent:hover{
    background: #00CABC;
}
.btn.btn-color{
    color: #00CABC;
}
.btn.btn-color:hover{
    color: #fff;
}
.btn.btn-min{
    padding: 8px 9px;
    font-size: 12px;
}
.btn.big {
    min-width: 260px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 30px;
}
.btn.btn-lg {
    height: 90px;
    font-size: 15px;
    padding: 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    min-width: 280px;
    max-width:100%;
}
.anim-link{
    position: relative;
    overflow: hidden;
}
.anim-link:before{
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
    background: -webkit-gradient(linear, right top, left top, from(rgba(121, 117, 117, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(121, 117, 117, 0))) no-repeat -2em 0%;
    background: linear-gradient(to left, rgba(121, 117, 117, 0), rgba(255, 255, 255, 0.8), rgba(121, 117, 117, 0)) no-repeat -2em 0%;
    background-size: 3em 100%;
    -webkit-animation: move-blick 10.5s linear infinite;
    animation: move-blick 8s linear infinite;
    animation-delay: 2s;
}
@keyframes move-blick {
    0% {
         background-position: 0% 0%;
    }
    7% {
         background-position: 130% 0%;
    }
    100% {
         background-position: 130% 0%;
    }
}

.btn-beauty{
    background: radial-gradient(at top, #02eddd, #00cabc);
    /*box-shadow: 1px 15px 20px 0px rgba(0,202,188, .5), 0px 5px 0 #00cabc;*/
    border: none;
}
.btn-beauty:hover{
    transform: translateY(-5px);
    filter: brightness(105%);
}

@media(max-width: 991px){
    .btn.btn-lg {
        height: 80px;
        padding: 0 30px;
    }
}
@media(max-width: 767px){
    .btn.btn-lg {
        height: 60px;
        font-size: 13px;
        padding: 0 20px;
        letter-spacing: -0.5px;
    }
}
@media(max-width: 400px){
    .btn.btn-lg {
        width: 100%;
    }
}
.footer {
    background: #fff;
}
.footer .footer-inner{
    padding: 10px 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .footer-company-info{
    font-size: 13px;
    padding: 0 40px;
    color: #999999;
}
.footer .development{
    font-size: 13px;
    color: #999999;
    text-align: right;
}
@media(max-width: 767px){
    .footer .footer-inner{
        display: block;
    }
    .footer .footer-company-info{
        padding: 20px 0;
    }
    .footer .development{
        text-align: left;
    }
    .footer .footer-inner{
        padding-bottom: 40px;
    }
}

/* MODULES */
.template-section{
    padding: 80px 0 100px;
}
.template-section.ovh{
    width: 100%;
    overflow: hidden;
}
.template-section.pt0{
    padding-top: 0;
}
.template-section.pb0{
    padding-bottom: 0;
}
.gray-bg{
    background: #F5F5F5;
}
.template-section-title{
    font-size: 42px;
    line-height: 1.3;
    margin: 0;
    font-weight: 300;
}
.template-section-title span{
    font-weight: 600;
}
.template-section-title + .after-section-title-block,
.template-section-sub-title + .after-section-title-block{
    padding-top: 50px;
}
.template-section-title + .template-section-sub-title{
    padding-top: 30px;
}
.template-section-sub-title{
    font-size: 24px;
    font-weight: 300;
}
.grid{
    display: grid;
    grid-gap: 30px;
}
@media(max-width: 991px){
    .template-section{
        padding: 70px 0 90px;
    }
    .template-section-title{
        font-size: 32px;
    }
}
@media(max-width: 767px){
    .template-section{
        padding: 60px 0 80px;
    }
    .template-section-title{
        font-size: 26px;
    }
}


/* header-type-1 */
.header-type-1{
    position: relative;
}
.header-type-1 .header-top{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header-type-1 .header-top .inner{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-type-1 .header-top .left-part{
    display: flex;
    align-items: center;
}
.header-type-1 .header-top .right-part-first{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-type-1 .header-messengers{
    text-align: right;
    padding-top: 8px;
}
.header-type-1 .header-messengers a{
    width: 65px;
    height: 28px;
    display: inline-flex;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    box-shadow: 0 0 5px rgb(0 0 0 / 17%);
    vertical-align: middle;
}
.header-type-1 .header-messengers .telegram-link{
    background: #2CA3DF;
}
.header-type-1 .header-messengers .whatsapp-link{
    background: #2AC54E;
}
.header-type-1 .header-messengers .viber-link{
    background: #7360F2;
}
.header-type-1 .header-messengers .header-feedback-link{
    display: none;
    background: #00CABC;
    color: #fff;
}
.header-type-1 .header-messengers a img{
    height: 17px;
}
.header-type-1 .header-messengers a:hover{
    filter: brightness(110%);
}
.header-type-1 .site-logo-type-1{
    margin-right: 30px;
}
.site-logo-type-1 .logo-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.site-logo-type-1 .logo-body{
    padding-left: 12px;
    color: #383838;
    line-height: 1.3;
}
.site-logo-type-1 .logo-title{
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 4px;
}
.site-logo-type-1 .logo-text{
    font-size: 13px;
}
.header-type-1 .header-address {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.3;
    padding: 10px 15px 10px 7px;
    background: rgba(255,255,255,.2);
    border-radius: 10px;
    border: 1px dashed #ddd;
    max-width: 320px;
}
.header-type-1 .header-address svg,
.header-type-1 .header-address img{
    width: 50px;
    margin-right: 5px;
}
.header-type-1 .header-contacts{
    text-align: right;
}
.header-type-1 .header-callback-btn{
    background: rgba(255, 255, 255, .5);
    border: 2px solid #00CABC;
}
.header-type-1 .header-contacts + .header-callback-btn{
    margin-left: 14px;
}
.header-type-1 .header-phone{
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.5px;
}
.header-type-1 .header-contacts-description{
    font-size: 12px;
    padding-top: 3px;
}
@media(min-width:1230px){
    .header-type-1 .header-phone.phones{
        font-size: 17px;
    }
}

.header-type-1 .header-phone.phones .item1 + .item2{
    margin-top: 4px;
}
.header-type-1 .header-phone.phones + .header-contacts-description{
    display: none;
}

.header-type-1 .header-body{
    position: relative;
    z-index: 10;
}
.header-type-1 .header-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #F9F9FB;
    background-size:cover;
}
.header-type-1 .header-bg:after{
    content: "";
    background: url(../images/sky.png) 0 0/cover no-repeat;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 200px;
}
.header-type-1 .header-body{
    height: 820px;
    padding-top: 200px;
}
.base-template .header-type-1 .header-body{
    height: auto;
    padding-top: 100px;
}
.header-type-1 .header-body .section-title{
    font-size: 42px;
    line-height: 1.3;
    font-weight: 300;
}
.header-type-1 .header-body .section-title span{
    font-weight: 600;
}
.header-type-1 .header-body .section-text{
    margin-top: 30px;
    font-size: 22px;
    position: relative;
    letter-spacing: 1px;
}
.header-type-1 .header-body .section-btn{
    margin-top: 50px;
}

@media(max-width: 1349px){
    .header-type-1 .header-top .inner{
        padding-right: 75px;
    }
}
@media(max-width: 1229px){
    .header-type-1 .header-phone {
        font-size: 19px;
        letter-spacing: 0;
    }
    .header-type-1 .header-phone a{
        color: #383838;
    }
    .header-type-1 .header-contacts-description{
        font-size: 11px;
    }
    .header-type-1 .header-top .right-part-first{
        display: block;
        text-align: right;
    }
    .header-type-1 .btn.header-callback-btn{
        display: none;
    }
    .header-type-1 .header-messengers .header-feedback-link{
        display: inline-flex;
    }
    .header-type-1 .header-messengers a{
        width: 40px;
        height: 30px;
        margin-left: 5px;
    }
    .header-type-1 .header-messengers .header-feedback-link img,
    .header-type-1 .header-messengers .viber-link img{
        height: 15px;
    }
    .header-type-1 .header-body .section-title{
        font-size: 36px;
    }
}
@media(max-width: 991px){
    .header-type-1 .header-top{
        position: relative;
    }
    .header-type-1 .header-top .inner{
        height: auto;
        padding-top: 15px;
        align-items: flex-start;
    }
    .header-type-1 .header-top .left-part{
        display: block;
    }
    .header-type-1 .site-logo-type-1{
        margin-right: 0;
        margin-bottom: 15px;
        background: rgba(255,255,255,0.7);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #ebe8e8;
    }
    .header-type-1 .header-address {
        background: rgba(255,255,255,.7);
        border: 1px solid #ebe8e8;
        font-size: 13px;
        max-width: inherit;
    }
    .header-type-1 .header-top .right-part {
        background: rgba(255,255,255,0.7);
        padding: 14px 15px 13px;
        border-radius: 10px;
        border: 1px solid #ebe8e8;
    }
    .header-type-1 .header-contacts {
        margin-bottom: 7px;
    }
    .header-type-1 .header-body{
        height: auto;
        padding: 50px 0 200px;
    }
    .base-template .header-type-1 .header-body{
        padding: 0;
    }
    .header-type-1 .header-bg:after{
        height: 95px;
    }
    .header-type-1 .header-body .section-title{
        font-size: 32px;
    }
    .header-type-1 .header-body .section-text{
        font-size: 18px;
    }
    .header-type-1 .header-bg{
        background-position: top 0 right -100px;
    }
    .header-type-1 .header-messengers{
        padding-top: 0;
    }
}
@media(max-width: 767px){
    .header-type-1 .header-top .inner{
        display: block;
    }
    .header-type-1 .header-address{
        margin-bottom: 15px;
    }
    .header-type-1 .header-top .right-part,
    .header-type-1 .header-contacts{
        text-align: left;
    }
    .site-logo-type-1 .logo-inner{
        display: block;
    }
    .header-type-1 .site-logo-type-1{
        padding: 10px;
        margin-right: 65px;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
    }
    .site-logo-type-1 .logo-body{
        padding: 5px 0;
    }
    .site-logo-type-1 .logo-title{
        font-size: 16px;
    }
    .site-logo-type-1 .logo-text {
        font-size: 12px;
    }
    .site-logo-type-1 .logo-text  br{
        display: none;
    }
    .header-type-1 .header-address br{
        display: none;
    }
    .header-type-1 .header-address{
        padding: 10px 10px 10px 3px;
        font-size: 12px;
    }
    .header-type-1 .header-top .right-part{
        padding: 10px;
    }
    .header-type-1 .header-contacts{
        margin-bottom: 0;
    }
    .header-type-1 .header-top .inner {
        padding-right: 0;
    }
    .header-type-1 .header-body .section-title {
        font-size: 24px;
    }
    .header-type-1 .header-body .section-text {
        font-size: 15px;
    }
    .header-type-1 .header-bg{
        background: #F9F9FB !important;
    }
    .header-type-1 .header-body{
        padding-bottom: 20px;
    }
    .header-type-1 .header-img{
        margin: 30px 0 0;
        border: 1px solid #ebe8e8;
        border-radius: 10px;
        overflow: hidden;
    }
    .header-type-1 .header-messengers{
        padding-top: 10px;
        text-align: left;
    }
    .header-type-1 .header-messengers a{
        margin-left: 0;
        margin-right: 6px
    }
    .header-type-1 .header-messengers a:last-of-type{
        margin-right: 0;
    }
}
/* /. header-type-1 */


/* features-type1 */
.features-section{
    position: relative;
}
.header-object{
    display: none;
}
@media(min-width: 1800px){
    .header-object{
        display: block;
        position: absolute;
        z-index: 10;
    }
}
.features-type1{
    width: 100%;
    overflow: hidden;
}
.features-type1 .flex {
    margin-left: -15px;
    margin-right: -15px;
}
.features-type1 .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
}
.features-type1 .item{
    text-align: center;
    max-width: 100%;
}
.features-type1.columns-5 .item{
    width: 210px;
}
.features-type1.columns-4 .item{
    width: 270px;
}
.features-type1.columns-3 .item{
    width: 370px;
}
.features-type1.columns-2 .item{
    width: 570px;
}
.features-type1 .item-icon{
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 auto 20px;
}
.features-type1 .item-title{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.3;
}
.features-type1 .item-text{
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
}
@media(max-width: 991px){
    .features-type1 .item-icon{
        margin-bottom: 10px;
    }
}
@media(max-width: 767px){
    .features-type1 .flex{
        display: block;
    }
    .features-type1 .item{
        margin-left: auto;
        margin-right: auto;
    }
}
/* /. features-type1 */


/* wedo-type3 */
.wedo-type3 .grid{
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
}
.wedo-type3 .item{
    text-align: center;
    position: relative;
    border-radius: 10px;
    height: 100%;
    background: #fff;
}
.wedo-type3 .item:before{
    content: "";
    height: 50px;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -8px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(87,87,87,.1);
}
.wedo-type3 .item-inner{
    position: relative;
    box-shadow: 0px 0px 30px 0px rgba(87,87,87,.1);
    border-radius: 10px;
    height: 100%;
    background: #fff;
    z-index: 3;
}
.wedo-type3 .item-img{
    position: relative;
}
.wedo-type3 .item-img img{
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.wedo-type3 .item-body{
    background: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}
.wedo-type3 .item-title{
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.3;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wedo-type3 .item-price{
    line-height: 1;
    font-size: 17px;
    padding: 10px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.wedo-type3 .item-btn{
    padding: 15px 0 10px;
}
.wedo-type3 .item-btn .btn{
    position: relative;
    z-index: 10;
}

@media(max-width: 1229px){
    .wedo-type3 .item-title{
        font-size: 16px;
        min-width: 42px;
    }
    .wedo-type3 .item-btn .btn{
        font-size: 13px;
    }
}
@media(max-width: 991px){
    .wedo-type3 .grid{
        grid-row-gap: 40px;
        grid-column-gap: 20px;
    }
    .wedo-type3 .item-body{
        padding: 10px;
    }
    .wedo-type3 .item-title{
        font-size: 14px;
        min-width: 38px;
    }
    .wedo-type3 .item-btn{
        padding: 10px 0 5px;
    }
    .wedo-type3 .item-btn .btn{
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0;
    }
    .wedo-type3 .item-price{
        padding: 7px 12px;
        bottom: 10px;
    }
}
@media(max-width: 767px){
    .wedo-type3 .grid{
        grid-template-columns: 1fr;
    }
}
/* /. wedo-type3 */

/* call-to-action-type1 */
.call-to-action-type1{
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
/* /. call-to-action-type1 */

/* works-type1 */
.works-type1{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 50px;
}
.works-type1 .grid{
    grid-template-columns: repeat(4, 1fr);
}
.works-type1 .item{
    overflow: hidden;
    border-radius: 5px;
}
.works-type1 .item a{
    display: block;
    position: relative;
}
.works-type1 .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;
}
.works-type1 .item a:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/zoom.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.works-type1 .item a:hover:before{
    opacity: 1;
}
.works-type1 .item a:hover:after{
    opacity: 1;
    transform: scale(1);
}

@media(max-width: 991px){
    .works-type1{
        padding: 50px 0 0;
    }
    .works-type1 .grid{
        grid-gap: 20px;
    }
}
@media(max-width: 767px){
    .works-type1 .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /. works-type1 */


/* feedback-type-2 */
.feedback-type-2{
    position: relative;
    border-radius: 10px;
    margin-top: 15px;
}
.feedback-type-2:before{
    content: "";
    height: 50px;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -8px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(87,87,87,.1);
}
.feedback-type-2-inner{
    background: #fff;
    padding: 60px 200px 60px 60px;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    position: relative;
    z-index: 3;
}
.feedback-type-2-inner .item-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: 10px;
}
.feedback-type-2 .item-content .grid{
    grid-gap: 0;
    grid-template-columns: repeat(3, 1fr);
}
.feedback-type-2 .item-content .grid .col:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 3;
}
.feedback-type-2 .item-title{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 20px;
}
.feedback-type-2 .item-title strong{
    font-weight: 600;
}
.feedback-type-2 .item-text{
    margin-bottom: 40px;
    font-size: 18px;
}
.feedback-type-2 form .grid{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.feedback-type-2 .form-control {
    height: 95px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    margin-bottom: 0;
    border-radius: 10px;
}
.feedback-type-2 .form-control.error{
    border-color: #ff0000;
}
.feedback-type-2 .btn{
    height: 95px;
    border-radius: 10px;
    font-size: 15px;
    padding-left: 0;
    padding-right: 0;
}
@media(max-width: 1229px){
    .feedback-type-2-inner{
        padding: 60px;
    }
}
@media(max-width: 991px){
    .feedback-type-2 form .grid{
        grid-gap: 15px;
    }
    .feedback-type-2-inner{
        padding: 40px;
    }
    .feedback-type-2 .form-control{
        height: 85px;
    }
    .feedback-type-2 .btn{
        height: 80px;
    }
    .feedback-type-2 .btn{
        font-size: 13px;
    }
    .feedback-type-2 .item-title{
        font-size: 32px;
    }
    .feedback-type-2 .item-text{
        font-size: 16px;
    }
}
@media(max-width: 767px){
    .feedback-type-2 .item-title{
        font-size: 25px;
    }
    .feedback-type-2 .item-text{
        font-size: 14px;
    }
    .feedback-type-2-inner .item-bg{
        opacity: 0;
    }
    .feedback-type-2 form .grid,
    .feedback-type-2 .item-content .grid{
        grid-template-columns: 1fr;
    }
    .feedback-type-2-inner{
        padding: 30px 20px 40px;
    }
    .feedback-type-2 .form-control{
        height: 65px;
    }
    .feedback-type-2 .btn{
        height: 60px;
    }
}
/* /. feedback-type-2 */


/* faq-type1 */
.faq-section{
    position: relative;
}
.faq-section-object{
    display: none;
}
@media(min-width: 1800px){
    .faq-section-object{
        display: block;
        position: absolute;
    }
}
.accordeon .item-body {
    display: none;
    padding-bottom: 35px;
    font-weight: 300;
}
.accordeon.type1 .item{
    border-bottom: 1px solid #E5E5E5;
}
.accordeon.type1 .item:first-child{
    border-top: 1px solid #E5E5E5;
}
.accordeon.type1 .item-head{
    min-height: 90px;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordeon.type1 .item-title{
    font-size: 24px;
    line-height: 1.35;
    width: calc(100% - 60px);
}
.accordeon.type1 .item-icon{
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-out 300ms;
}
.accordeon.type1 .item-icon svg g{
    stroke: #000;
    transition: all ease-out 200ms;
}
.accordeon.type1 .item-head:hover .item-icon{
    background: #00CABC;
}
.accordeon.type1 .item-head:hover .item-icon svg g{
    stroke: #fff;
}
.accordeon.type1 .item.active .item-icon{
    transform: rotate(45deg);
}
@media(max-width: 991px){
    .accordeon.type1 .item-head{
        min-height: 80px;
        padding: 12px 0;
    }
    .accordeon.type1 .item-title{
        font-size: 20px;
    }
    .accordeon .item-body {
        padding-bottom: 30px;
        font-size: 14px;
    }
}
@media(max-width: 767px){
    .accordeon.type1 .item-head{
        min-height: 70px;
        padding: 10px 0;
    }
    .accordeon.type1 .item-title{
        font-size: 16px;
    }
    .accordeon .item-body {
        padding-bottom: 25px;
        font-size: 13px;
    }
}
/* /. faq-type1 */



/* salutation-type1 */
.salutation-type1{
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    overflow: hidden;
}
.salutation-type1-inner{
    position: relative;
}
.salutation-type1 .text-block {
    width: 490px;
    min-height:530px;
    padding: 40px;
    padding-right: 90px;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    background: url(../images/block.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.salutation-type1 .text-block-end{
    border-top: 1px solid #F2F2F2;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.salutation-type1 .text-block-end-title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.salutation-type1 .text-block-end-subtitle{
    font-size: 13px;
}
.salutation-type1 .text-block-end .signature{
    width: 100px;
}
.salutation-type1 .text-block-end .left-part{
    width: calc(100% - 110px);
}
.salutation-type1 .text-block-tooth{
    height: 40px;
    width: 10px;
    background: #fff;
    position: absolute;
    right: -10px;
    top: 100px;
    z-index: 10;
}
.salutation-type1-boss{
    position: absolute;
    left: 430px;
    bottom: -100px;
    width: 360px;
    height: 595px;
}
.salutation-type1-boss img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.salutation-type1-license{
    position: absolute;
    right: 110px;
    top: 100px;
    width: 220px;
}
.salutation-type1-license .item-img{
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 53px rgb(64 64 64 / 10%);
    margin-bottom: 15px;
}
.salutation-type1-license .item-text{
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 300;
}
.salutation-type1-license:after{
    content: "";
    background: url(../images/shtamp.png);
    width: 100px;
    height: 139px;
    position: absolute;
    bottom: 80px;
    right: -70px;
    transform: rotate(15deg);
}
@media(max-width: 1129px){
    .salutation-type1-license{
        right: 85px;
    }
    .salutation-type1 .text-block {
        width: 400px;
        padding: 30px;
        padding-right: 80px;
        font-size: 13px;
    }
    .salutation-type1-boss {
        left: 360px;
    }
    .salutation-type1 .text-block-end-title {
        font-size: 14px;
    }
    .salutation-type1 .text-block-end-subtitle {
        font-size: 11px;
    }
}
@media(max-width: 1029px){
    .salutation-type1-boss {
        left: 340px;
        width: 320px;
        height: 530px;
    }
}
@media(max-width: 991px){
    .salutation-type1{
        padding-top: 0;
        padding-bottom: 0;
        border: none;
    }
    .salutation-type1-inner{
        border: 10px solid #F2F2F2;
        padding: 50px 50px 0;
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    .salutation-type1 .text-block{
        width: 100%;
        background: transparent;
        padding: 0;
        font-size: 18px;
    }
    .salutation-type1-boss{
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 381px;
        height: 625px;
    }
    .salutation-type1-license {
        position: relative;
        left: auto;
        right: 0;
        top: auto;
        bottom: 60px;
    }
    .salutation-type1-inner-bottom {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: -200px;
    }
    .salutation-type1 .text-block-end {
        margin-bottom: 50px;
        padding-top: 45px;
        margin-top: 60px;
        width: 400px;
    }
    .salutation-type1 .text-block-end-title{
        font-size: 18px;
    }
    .salutation-type1 .text-block-end-subtitle{
        font-size: 14px;
    }
    .salutation-type1 .text-block-end .left-part {
        width: calc(100% - 120px);
    }
}
@media(max-width: 839px){
    .salutation-type1-boss{
        right: -70px;
    }
}
@media(max-width: 767px){
    .salutation-type1-inner{
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px !important;
    }
    .salutation-type1 .text-block{
        font-size: 16px;
    }
    .salutation-type1 .text-block-end {
        margin-bottom: 84px;
        padding-top: 30px;
        margin-top: 40px;
        width: 400px;
        max-width: 100%;
    }
}
@media(max-width: 689px){
    .salutation-type1-inner-bottom {
        margin-top: 0;
        height: 404px;
    }
    .salutation-type1-boss {
        position: absolute;
        right: -14px;
        width: 304px;
        height: 504px
    }
    .salutation-type1-license:after {
        width: 60px;
        height: 82px;
        bottom: 86px;
        right: -18px;
        background-size: contain;
    }
    .salutation-type1 .text-block-end-title {
        font-size: 16px;
    }
    .salutation-type1 .text-block-end-subtitle{
        font-size: 12px;
    }
    .salutation-type1-license {
        bottom: 145px;
        width: 180px;
    }
    .salutation-type1 .text-block-end{
        margin-bottom: 100px;
        padding-top: 21px;
        margin-top: 24px;
    }
    .salutation-type1 .text-block {
        font-size: 14px;
    }
}
@media(max-width: 539px){
    .salutation-type1 .text-block {
        font-size: 13px;
    }
    .salutation-type1-inner {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px !important;
    }
    .salutation-type1 .text-block-end .signature{
        width: 50px;
    }
    .salutation-type1 .text-block-end .left-part {
        width: calc(100% - 60px);
    }
    .salutation-type1 .text-block-end-title {
        font-size: 13px;
    }
    .salutation-type1 .text-block-end-subtitle{
        font-size: 10px;
    }
    .salutation-type1-boss {
        right: -20px;
        width: 209px;
        height: 345px;
    }
    .salutation-type1-license{
        width: 120px;
    }
    .salutation-type1-license:after{
        display: none;
    }
    .salutation-type1-license .item-text{
        font-size: 9px;
    }
    .salutation-type1-license{
        bottom: 210px;
        z-index: 15;
    }
    .salutation-type1-inner-bottom{
        height: 340px;
    }
}
/* /. salutation-type1 */


/* reviews-type1 */
.reviews-type1-section{
    position: relative;
}
.reviews-section-object{
    display: none;
}
@media(min-width: 1800px){
    .reviews-section-object{
        display: block;
        position: absolute;
    }
}
.reviews-type1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.reviews-type1 .item{
    display: flex;
    height: 100%;
    flex-direction: column;
}
.reviews-type1 .item-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*margin-bottom: 30px;*/
    justify-content: space-between;
    flex: 0 0 130px;
}
.reviews-type1 .item-header .item-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}
.reviews-type1 .item-header .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews-type1 .item-header-info{
    width: calc(100% - 100px);
}
.reviews-type1 .item-header-info .item-title{
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.reviews-type1 .item-rating svg{
    width: 20px;
    height: 20px;
    margin-right: 3px;
    fill: #ccc;
}
.reviews-type1 .item-rating.rating1 > span:nth-of-type(1) svg{
    fill:#FAC917;
}
.reviews-type1 .item-rating.rating2 > span:nth-of-type(1) svg,
.reviews-type1 .item-rating.rating2 > span:nth-of-type(2) svg{
    fill:#FAC917;
}
.reviews-type1 .item-rating.rating3 > span:nth-of-type(1) svg,
.reviews-type1 .item-rating.rating3 > span:nth-of-type(2) svg,
.reviews-type1 .item-rating.rating3 > span:nth-of-type(3) svg{
    fill:#FAC917;
}
.reviews-type1 .item-rating.rating4 > span:nth-of-type(1) svg,
.reviews-type1 .item-rating.rating4 > span:nth-of-type(2) svg,
.reviews-type1 .item-rating.rating4 > span:nth-of-type(3) svg,
.reviews-type1 .item-rating.rating4 > span:nth-of-type(4) svg{
    fill:#FAC917;
}
.reviews-type1 .item-rating.rating5 > span:nth-of-type(1) svg,
.reviews-type1 .item-rating.rating5 > span:nth-of-type(2) svg,
.reviews-type1 .item-rating.rating5 > span:nth-of-type(3) svg,
.reviews-type1 .item-rating.rating5 > span:nth-of-type(4) svg,
.reviews-type1 .item-rating.rating5 > span:nth-of-type(5) svg{
    fill:#FAC917;
}

.reviews-type1 .item-body{
    position: relative;
    background: #F5F5F5;
    padding: 30px;
    border-radius: 5px;
    flex: 1 0 130px;
}
.reviews-type1 .item-body:before {
    content: "";
    position: absolute;
    left: 89px;
    top: -37px;
    border-left: 1px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 57px solid whitesmoke;
    transform: rotate(-45deg);
}
.reviews-type1 .item-body-text{
    position: relative;
    background: #F5F5F5;
    font-size: 14px;
    line-height: 1.8;
    z-index: 10;
}


.reviews-type1-section .carousel-wrapper{
    position: relative;
}
.reviews-type1-section .carousel-inner{
    width: 100%;
    overflow: hidden;
}
.reviews-type1-section .slick-prev {
    left: auto;
    right: 50px;
    top: -72px;
}
.reviews-type1-section .slick-next {
    right: 0;
    top: -72px;
}
.reviews-type1.reviews-type1-carousel{
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}
.reviews-type1.reviews-type1-carousel > div{
    display: none;
}
.reviews-type1.reviews-type1-carousel.slick-slider > div{
    display: block;
}
.reviews-type1.reviews-type1-carousel .item{
    margin-left: 15px;
    margin-right: 15px;
}
.reviews-type1-carousel .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.reviews-type1-carousel .slick-slide {
    height: inherit;
}

@media(max-width: 991px){
    .reviews-type1-section .slick-prev,
    .reviews-type1-section .slick-next{
        top: -68px;
    }
}
@media(max-width: 767px){
    .reviews-type1-section .slick-prev,
    .reviews-type1-section .slick-next{
        top: -10px;
        right: auto;
    }
    .reviews-type1-section .slick-prev{
        left: 0;
    }
    .reviews-type1-section .slick-next{
        left: 50px;
    }
    .reviews-type1-section .carousel-wrapper{
        padding-top: 40px;
    }
}
/* /. reviews-type1 */


/* logotypes-type2 */
.logotypes-type2 .grid{
    grid-gap: 1px;
    background: #E5E5E5;
    grid-template-columns: repeat(4, 1fr);
}
.logotypes-type2 .grid .item{
    background: #fff;
}
.logotypes-type2 .grid .item img{
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all ease-out 300ms;
}
.logotypes-type2 .grid .item img:hover{
    filter: none;
    opacity: 1;
}
@media(max-width: 767px){
    .logotypes-type2 .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /. logotypes-type2 */


/* price-section-type1 */
.price-section-type1{
    position: relative;
}
.price-section-type1 .price-block{
    margin-bottom: 60px;
}
.price-section-type1 .price-block:last-child{
    margin-bottom: 0;
}
.price-section-object{
    display: none;
}
@media(min-width: 1800px){
    .price-section-object{
        display: block;
        position: absolute;
    }
}
.price-section-type1 .price-point{
    display: flex
}
.price-section-type1 .price-gage{
    flex-grow: 1
}
.price-section-type1 .price-unite{
    margin-right: 14.90em
}
.price-section-type1 .price-rap{
    color: #303b43;
    font-size: 1.25em;
    font-weight: 600
}
.price-section-type1 .price-txt {
    color: #00cabc;
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
}
.price-section-type1 .price-the{
    background-image: url(../images/price-type1-arrow.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 6.40em;
    margin-left: 9.50em;
    margin-top: 5.20em
}
.price-section-type1 .price {
    display: grid;
    grid-template-columns: 1fr 130px;
    padding-left: 6.9em;
    padding-right: 5.3em;
    font-size: 0.94em;
    font-weight: 500;
    grid-column-gap: 0.2em;
    grid-row-gap: 1.06em;
    padding-top: 1.8em;
}
.price-section-type1 .price-have {
    font-size: 1.13em;
    font-weight: 700;
}
.price-section-type1 .price-item {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.price-section-type1 .price-term {
    flex-shrink: 0;
}
.price-section-type1 .price-faith {
    overflow: hidden;
    margin: 0 5px;
    font-weight: 300;
}
.price-section-type1 .price-faith:after {
    content: '..............................................................................................................................................................................................';
}
@media(max-width: 991px){
    .price-section-type1 .price{
        padding-left: 0;
        padding-right: 0;
        font-weight: normal;
        font-size: 13px;
        line-height: 1.2;
    }
    .price-section-type1 .price-unite{
        margin-right: 8em;
    }
}
@media(max-width: 767px){
    .price-section-type1 .price-gage{
        display: none;
    }
    .price-section-type1 .price-unite{
        margin-right: 0;
    }
    .price-section-type1 .price-txt{
        font-size: 1.8em;
    }
    .price-section-type1 .price-txt br{
        display: none;
    }
    .price-section-type1 .price-term {
        flex-shrink: 1;
        margin-right: 35px;
    }
    .price-section-type1 .price-term span{
        background: #fff;
        position: relative;
        z-index: 10;
        padding-right: 4px;
    }
    .price-section-type1 .price {
        grid-template-columns: 1fr 90px;
        align-items: end;
        font-size: 12px;
    }
    .price-section-type1 .price-item{
        position: relative;
    }
    .price-section-type1 .price-faith {
        position: absolute;
        bottom: 0;
    }
}
/* /. price-section-type1 */


/* contacts-section-type2 */
.contacts-section-type2 .map-wrapper{
    height: 800px;
    position: relative;
}
.contacts-section-type2 .map-inner{
    height: 100%;
}
.contacts-section-type2 .map-wrapper .top-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: 3;
    pointer-events: none;
}
.contacts-section-type2 .map-wrapper .bottom-bg{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: 3;
    pointer-events: none;
}
.contacts-section-type2 .map-wrapper .top-bg img,
.contacts-section-type2 .map-wrapper .bottom-bg img{
    width: 100%;
    height: 100%;
    object-fit: 100%;
}
.contacts-section-type2 .contacts-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.contacts-section-type2 .contacts-container .inner{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.contacts-section-type2 .contacts-container .item{
    width: 440px;
    max-width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    pointer-events: initial;
    /*box-shadow: 0px 5px 30px 0px rgb(32 31 31 / 10%);*/
}
.contacts-section-type2 .contacts-container .item-inner{
    padding: 30px;
    /*border: 1px solid #E5E5E5;
    border-radius: 5px;*/
}
.contacts-section-type2 .contacts-item{
    margin-top: 12px;
    font-size: 15px;
}
.contacts-section-type2 .item-title{
    font-size: 24px;
    line-height: 1.2;
    margin-top: -4px;
}
.contacts-section-type2 .contacts-item strong{
    font-size: 16px;
}
.contacts-section-type2 .messengers-item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.contacts-section-type2 .messengers-item-title{
    font-size: 13px;
    width: 110px;
}
.contacts-section-type2 .messengers-item-buttons{
    width: calc(100% - 110px);
    padding-left: 20px;
}
.contacts-section-type2 .messengers-item-buttons a {
    width: 67px;
    height: 38px;
    display: inline-flex;
    background: #ffffff;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
}
.contacts-section-type2 .messengers-item-buttons a:last-of-type{
    margin-right: 0;
}
.contacts-section-type2 .messengers-item-buttons a img{
    height: 18px;
}
.contacts-section-type2 .messengers-item-buttons a:hover{
    box-shadow: 0 0 0 2px rgb(0 0 0 / 15%);
}
@media(max-width: 991px){
    .contacts-section-type2 .contacts-container .item-inner {
        padding: 10px;
    }
    .contacts-section-type2 .contacts-container .item{
        width: 340px;
    }
    .contacts-section-type2 .contacts-item {
        font-size: 14px;
    }
    .contacts-section-type2 .contacts-item strong {
        font-size: 15px;
    }
    .contacts-section-type2 .messengers-item {
        display: block;
        margin-top: 15px;
    }
    .contacts-section-type2 .messengers-item-title {
        font-size: 14px;
        width: 100%;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .contacts-section-type2 .messengers-item-buttons {
        width: 100%;
        padding-left: 0;
    }
    .contacts-section-type2 .messengers-item-buttons a {
        width: 60px;
        height: 32px;
    }
    .contacts-section-type2 .item-title{
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .contacts-section-type2 .map-wrapper{
        height: auto;
        padding-top: 60px;
        width: 100%;
        overflow: hidden;
    }
    .contacts-section-type2 .map-inner{
        height: 350px;
        width: 768px;
        margin-right: -384px;
    }
    .contacts-section-type2 .map-wrapper .top-bg,
    .contacts-section-type2 .map-wrapper .bottom-bg{
        display: none;
    }
    .contacts-section-type2 .contacts-container{
        position: static;
        width: 100%;
    }
    .contacts-section-type2 .contacts-container .item{
        width: 100%;
        padding: 30px 0;
    }
	@media screen and (max-width: 600px) {
  .hidemobile {
    visibility: hidden;
    display: none;
  }
}
}
/* /. contacts-section-type2 */