/* ==========================  RESET ================================== */


*{
    margin: 0;
    padding: 0;
    list-style: none;
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-display: swap;
    font-family: 'museo-300';
    src: url('fonts/museosanscyrl_300.woff2') format('woff2'),
         url('fonts/museosanscyrl_300.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    
}
@font-face {
    font-display: swap;
    font-family: 'museo-500';
    src: url('fonts/museosanscyrl_500.woff2') format('woff2'),
         url('fonts/museosanscyrl_500.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'museo-700';
    src: url('fonts/museosanscyrl_700.woff2') format('woff2'),
         url('fonts/museosanscyrl_700.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'gilroy-bold-web';
    src: url('fonts/gilroy-bold-web.woff2') format('woff2'),
         url('fonts/gilroy-bold-web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'gilroy-medium-web';
    src: url('fonts/gilroy-medium-web.woff2') format('woff2'),
         url('fonts/gilroy-bold-web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'gilroy-light-web';
    src: url('fonts/gilroy-light-web.woff2') format('woff2'),
         url('fonts/gilroy-light-web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html{
    font-size: 10px;
}
body{
    line-height: 1;
    font-family: 'museo-300', sans-serif;
    color:#000000;
    background-color: #fff;
       overflow-x: hidden;
}
a{
    text-decoration: none;
}
.redlink{
    color: #74c34a;
}
.redlink:hover{
    color: #5fd520;
}
img{
    display: block;
}
iframe{
    border: none;
}
.button{
    font-size: 1.7rem;
    line-height: 2.3rem;
    padding: 0 15px;
    height: 91px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: 'museo-500', sans-serif;
    border-radius:8px;
    color:#fff;
    text-align: center;
    border: none;
    -webkit-user-select: none;
    user-select: none;
    overflow:hidden;
    box-sizing: border-box;

  
    background-image: -webkit-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -moz-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -o-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -ms-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: linear-gradient(to top, #ffd76a , #f6bd37);

    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align:center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    
    position: relative;
    cursor: pointer;
    transition: background-color 0.05s linear 0s, color 0.05s linear 0s;
    outline: none;
    white-space: normal;
}
.button:hover{
    background-image: -webkit-linear-gradient(bottom, #edb32a, #edb32a);
    background-image: -moz-linear-gradient(bottom, #edb32a, #edb32a);
    background-image: -o-linear-gradient(bottom, #edb32a, #edb32a);
    background-image: -ms-linear-gradient(bottom, #edb32a, #edb32a);
    background-image: linear-gradient(to top, #edb32a, #edb32a);
    border-color: #60b737;
}
.button small{
    display: block;
    font-size: 1.6rem;
    text-transform: none;
}
.button:disabled{
    border-bottom-color: #aaa;
}

 .flexwrap, .flexbot{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.flexbot{
    -webkit-box-align: flex-end;
        -ms-flex-align: flex-end;
            align-items: flex-end;  
}

.hide{
    display: none;
}
input[type=submit],
button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


























/* ==========================  TINGLE ================================== */

.tingle-modal * {
    box-sizing: border-box
}

.tingle-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.8);
    opacity: 0;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s ease
}

.tingle-modal--noClose .tingle-modal__close,.tingle-modal__closeLabel {
    display: none
}

.tingle-modal--confirm .tingle-modal-box {
    text-align: center
}

.tingle-modal--noOverlayClose {
    cursor: default
}

.tingle-modal__close {
    position: fixed;
    top: 10px;
    right: 28px;
    z-index: 1000;
    padding: 0;
    width: 5rem;
    height: 5rem;
    border: none;
    background-color: transparent;
    color: #f0f0f0;
    font-size: 6rem;
    font-family: monospace;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}

.tingle-modal__close:hover {
    color: #fff
}

.tingle-modal-box {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.175,.885,.32,1.275);
    transition: -webkit-transform .3s cubic-bezier(.175,.885,.32,1.275);
    transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
    transition: transform .3s cubic-bezier(.175,.885,.32,1.275),-webkit-transform .3s cubic-bezier(.175,.885,.32,1.275);
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.tingle-modal-box__content {
}

.tingle-enabled {
    position: fixed;
    overflow: hidden;
    margin-right: 16px;
    left: 0;
    right: 0
}

.tingle-enabled .tingle-content-wrapper {
    -webkit-filter: blur(8px);
    filter: blur(8px)
}

.tingle-modal--visible {
    visibility: visible;
    opacity: 1
}

.tingle-modal--visible .tingle-modal-box {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.tingle-modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh
}

@media (max-width :540px) {
    .tingle-modal {
        top: 0;
        display: block;
        padding-top: 0px;
        width: 100%
    }

    .tingle-modal-box {
        width: auto;
        border-radius: 0
    }

    .tingle-modal-box__content {
        overflow-y: scroll
    }

    .tingle-modal--noClose {
        top: 0
    }

    .tingle-modal--noOverlayClose {
        padding-top: 0
    }

    .tingle-modal-box__footer .tingle-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%
    }
}

.tingle-modal__close {
    display: none !important;
}

.modal__close {
    position: absolute;
    top: 10px;
    cursor: pointer;
    right: 5px;
    width: 20px;
    height: 36px;
    font-size: 2rem;
}

.modal__close:hover {
    color: #aaa;
}

.modal__body {
    padding: 30px;
    width: 500px;
    max-width: 100%;
    color: #000;
    min-height: 100px;
}






























/* ==========================  SITE ================================== */

.pop{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: url(../img/popup/phone.svg) #ffd76a center center no-repeat;
    -webkit-background-size: 35px auto;
    background-size: 35px auto;
    z-index: 12;
    border-radius: 50%;
    box-shadow: 1px 1px 10px #ffd76a;
    transition: all 0.1s linear 0s;
}
.pop1{
        background: url(../img/popup/phone.svg) center center no-repeat;
    -webkit-background-size: 35px auto;
}
.pop:hover{
    transform: scale(1.05);
}


 @media only screen and (min-width:1200px){
    .container{
        max-width: 1200px;
    }
    .pop{
        width: 80px;
        height: 80px;
        right: 25px;
        bottom: 25px;
    }
}
.monly{
    display: none;
}
.form-error{
    padding-top: 15px;
    text-align: center;
    color: red;
    font-size: 12px;
}
 @media only screen and (min-width:1020px){
    .scr1{
        background: url(../img/scr1-bg.jpg) center top no-repeat;
        min-height: 922px;
    }
}
.scr1__hdr{
    height: 75px;
    color: #000;
}
.scr1__firstcall{
    white-space: nowrap;
}
.scr1__logo{
    display: inline-block;
    vertical-align: bottom;
    width: 137px;
    margin-right: 18px;
    margin-bottom: -3px;
}
.scr1__logo img{
    display: block;
    width: 100%;
    height: auto;
}
.scr1__slogan{
    display: inline-block;
    vertical-align: bottom;
    font-size: 1.4rem;
    line-height: 2rem;
    padding-top: 10px;
/*    background: url(../img/topkart.png) left bottom no-repeat;*/
    margin-bottom:-10px;
}
.scr1__slogan strong{
    font-family: 'museo-700', sans-serif;
}
.scr1__loc{
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding-left: 70px;
    padding-top: 35px;
    background: url(../img/scr1-flag.png) left bottom no-repeat;
}
.scr1__time{
    font-size: 1.5rem;
    line-height: 2.1rem;
    padding-left: 20px;
    /* background: url(../img/scr1-clock.png) left 75% no-repeat; */
}
.scr1__time strong{
    display: block;
    font-family: 'museo-700', sans-serif;
}
.scr1__tel{
    text-align: right;
}
.scr1__telnum{
    display: block;
    font-size: 2rem;
    line-height: 1;
    font-family: 'museo-700', sans-serif;
    color:#000;
}
.scr1__callme{
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 10px;
    display: inline-block;
    border-bottom: 1px dotted #73c34a;
    font-family: 'museo-700', sans-serif;
    margin-bottom: -3px;
}
.scr1__main{
    padding-top: 98px;
    position: relative;
}
.scr1__gren-abs{
    position: absolute;
    z-index: 2;
    top: 270px;
    right: -40px;
    width: 233px;
    height: 233px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.4rem;
    color: #000;
    padding-top: 25px;
}
.scr1__gren-abs:after{
    content:'';
    position: absolute;
    top:-25%;
    left:50%;
    margin-left: -58px;
    background: url(../img/hdr-tester.png);
    width: 116px;
    height: 118px;
    z-index: 3;
}
.scr1__h1{
    max-width: 700px;
    color:#000;
    font-size: 5.2rem;
    line-height: 6rem;
    font-family: 'gilroy-medium-web', sans-serif;
}
.scr1__h1 span{
    color:#fc8147;
    font-family: 'gilroy-bold-web', sans-serif;  
}
.scr1__h2{
    color:#5d5d6d;
    font-family: 'gilroy-medium-web', sans-serif;
    padding: 30px 0px 15px;
    font-size: 2.4rem;
    line-height: 4rem;
}
.scr1__feats{
    max-width: 666px;
}
.scr1__feat{
    padding-top: 15px;
    font-size: 1.5rem;
    line-height: 2.5rem;
}
.scr1__feat span{
    display: block;
    float: left;
    height: 3rem;
    width: 110px;
    font-family: 'gilroy-bold-web', sans-serif;
}
.scr1__bott{
    padding-top: 42px;
    max-width: 430px;
    padding-right: 90px;
    /* background: url(../img/scr1-line.png) right 45px no-repeat; */
}
.button{
    
}
.scr1__banners{
    padding-top: 75px;
}
.scr1__banner{
    width: 286px;
    height: 156px;
    font-size: 1.6rem;
    line-height: 2.2rem;
    justify-content: flex-start;
    padding:50px 30px;
    border-radius: 8px;
}
.scr1__ban1{
    background: url(../img/scr1-bann1.png) left bottom no-repeat;
}
.scr1__ban2{
    background: url(../img/scr1-bann2.png) left bottom no-repeat;
}
.scr1__ban3{
    background: url(../img/scr1-bann3.png) left bottom no-repeat;
}
.scr1__ban4{
    background: url(../img/scr1-bann4.png) left bottom no-repeat;
}









.scr1x{
    padding-top: 120px;
    padding-bottom: 40px;
}
.scr1x__small{
    line-height: 3rem;
    padding-top: 60px !important;
}
.scr1x__row{
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
}
.scr1x__wrap{
    padding-top: 10px;
    font-size: 2rem;
    line-height: 3rem;
}
.scr1x__litera{
    font-size: 3rem;
    padding-bottom: 15px;
    padding-top: 30px;
    font-family: 'gilroy-bold-web', sans-serif;
}
.scr1x__brand{
}
.scr1x__bott{
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.1);
    padding: 10px;
    margin-top: 80px;
    text-align: left;
    font-size: 3rem;
    line-height: 4rem;
}
.scr1x__bott_inner{
    border: 1px solid #f2f4f8;
    border-radius: 5px;
    padding: 35px 20px 35px 35px;
}
.scr1x__bottl{
    font-family: 'gilroy-bold-web', sans-serif;
}
.scr1x__bottl span{
    color: #fc8147;
}
.scr1x__botxt{
    padding-top: 2rem;
    font-size: 1.7rem;
    line-height: 2.7rem;
}
.scr1x__botxtv strong{
    
}







.scr2{
    padding-top: 105px;
    padding-bottom: 20px;
}
.scr2 .container{
    position: relative;
}
 @media only screen and (min-width:1020px){
    .scr2 .container:before{
        content: "";
        display: block;
        position: absolute;
        top:-16px;
        right: -180px;
        width: 407px;
        height: 378px;
        z-index: 0;
        background:url(../img/scr2-clock.png) center center no-repeat;
    }
}

.ttl{
    font-size: 4.8rem;
    line-height: 5.8rem;
    font-family: 'gilroy-light-web', sans-serif;
    text-align: center;
}
.ttl strong{
    font-family: 'gilroy-bold-web', sans-serif;   
}
.scr2__small{
    text-align: center;
    color:#7b7b84;
    font-family: 'gilroy-light-web', sans-serif;
    font-size: 2.2rem;
    padding: 33px 0 0;
}
.scr2__test{
    position: relative;
    max-width: 1086px;
    padding: 10px;
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.08);
    background: #fff;
    margin: 100px auto 80px;
    border-radius: 20px;
}
 @media only screen and (min-width:1199px){
    .scr2__test:before{
        display: block;
        content: '';
        width: 100%;
        height: 140px;
        background: url(../img/scr2-virez.png) center top no-repeat;
        position: absolute;
        top:-95px;
        left: 0;
    }
 }
.scr2__test_in{
    margin:0 auto;
    border: 1px solid #f2f4f8;
    border-radius: 10px;
    padding-top: 60px;
}
.scr2__back{
	width:250px;
	padding-left:50px;
	font-size: 1.5rem;
	line-height: 50px;
	margin-top:-57px;
	height:50px;
	
}
.scr2__back a{
	display:inline-block;
	color:#000;
	display:none;
}
.scr2__test_in .swiper-slide{
    padding-bottom: 70px;
}
.scr2__ind{
    position: relative;
    width: 530px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 22px;
    margin: 0 auto;
    background-color: rgb(248, 248, 248);
    border-radius: 23px;
    padding: 5px;
}
.jsTestInd{
    height: 40px;
    width: 100%;
    background-color: transparent;
    border-radius: 23px;
    overflow: hidden;
    background:url(../img/content/loadbar.png) left center no-repeat;
}
.jsTestCounter{
    position: absolute;
    z-index: 5;
    width: 96px;
    height: 20px;
    left: 50%;
    top:50%;
    margin-left: -48px;
    margin-top: -10px;
    border-radius: 8px;
    background-color: rgba(248, 248, 248, 1);
    text-align: center;
    color: #707076;
    font-size: 1.4rem;
    line-height: 20px;
}


.scr2__testttl{
    padding-top: 55px;
    text-align: center;
    font-size: 3rem;
    font-family: 'museo-700', sans-serif;
}
.scr2__ansers{
    padding: 30px 45px 0;
}
.scr2__imglabel{
    display: block;
    min-height: 250px;
    cursor: pointer;
}
.scr2__imglabel>input{
    display: none;
}
.scr2__imglabel>input+span{
    text-align: center;
    position: relative;
    height: 200px;
}
.scr2__imglabel>input+span>img{
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}
.scr2__imglabel:hover img,
.scr2__imglabel>input:checked+span>img{
    opacity: 1;
}
.scr2__imglabel>input+span>small{
    display: block;
    position: absolute;
    top:100%;
    left: 0;
    width: 100%;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-family: 'museo-500', sans-serif;
}
.scr2__imglabel>input:checked+span:after{
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -25px;
    width: 51px;
    height: 51px;
    background: url(../img/content/icon-test-ok.png) center center no-repeat;
}

.scr2__ansimple{
    max-width: 850px;
    margin:70px auto 20px;
}
.scr2__label{
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 2.4rem;
    display: block;
    padding-bottom: 50px;
}
.scr2__label>input{
    display: none;
}
.scr2__label>input+span{
    padding-left: 50px;
    position: relative;
    display: block;
}
.scr2__label>input+span:before{
    display: block;
    position: absolute;
    top:0;
    left: 0;
    border-radius: 50%;
    content: "";
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 3px 4px 0px rgba(226, 226, 226, 0.47);
    width: 28px;
    height: 28px;
}
.scr2__label>input:checked+span:before{
    background-image: -moz-linear-gradient( 90deg, rgb(80,177,67) 0%, rgb(139,218,124) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(80,177,67) 0%, rgb(139,218,124) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(80,177,67) 0%, rgb(139,218,124) 100%);
}
.scr2__label>input:checked+span:after{
    display: block;
    position: absolute;
    top:9px;
    left: 9px;
    border-radius: 50%;
    content: "";
    background-color: #fff;
    width: 10px;
    height: 10px;
    z-index: 6;
}
.scr2__next{
    padding-top: 50px;
}
.scr2__next .button{
    max-width: 317px;
    width: 90%;
    height: 71px;
    margin: 0 auto;
    -webkit-background-size: 100% 100%;
    font-size: 1.45rem;
    background-size: 100% 100%;
}
.scr2__next .button:disabled{
    background: #dcdcdc !important;
    box-shadow: none;
    cursor: auto;
}








.scr2x{
    padding-top: 60px;
    padding-bottom: 100px;
}
.scr2x .scr2__small{

}
.scr2x__price{
    padding-top: 80px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.scr2x__h3{
    font-family: 'gilroy-bold-web', sans-serif;
    font-size: 2.4rem;
    line-height: 3rem;
    padding: 15px 45px 20px 20px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 35px;
    position: relative;
}
.scr2x__h3:hover{
    color:#333;
    background: #fcfcfc;
}
.scr2x__line{
    padding: 15px 20px 5px;
}
.scr2x__h3:after{
    display: block;
    content: "";
    position: absolute;
    top: 25px;
    right: 15px;
    width: 8px;
    height: 14px;
    background: url(../img/scr2x-arr.svg) center center no-repeat;
    z-index: 5;
    transition: transform 0.3s linear 0s;
    transform: none;
    transform-origin: 50% 50%;
}
.scr2x__h3.scr2x__active:after{
    transform: rotate(90deg);
}
.scr2x__block{
    display: none;
}
.scr2x__h3:first-child + .scr2x__block{
    display: block;
}
.scr2x__line small{
    font-size: 1.3rem;
    color: #7b7b84;
    max-width: 70%;
    padding: 15px 0;
    display: block;
}
.scr2x__line dl{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row nowrap;
}
.scr2x__line dt{
    max-width: 70%;
}
.scr2x__line dd{
    white-space: nowrap;
}
.scr2x__bott{
    margin-top: 60px;
    width: 320px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.scr2x__bott .button{

}





.scr3{
    border-top:1px solid #f2f4f8;
    padding-top: 80px;
    padding-bottom: 95px;
}
.scr3__content{
    padding-top: 70px;
}
.scr3__item{
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.08);
    border-radius: 10px;
    height: 700px;
    width: 369px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 50px;
    padding: 0 30px 0 30px;
}
.scr3__img{
    padding-left: 10px;
    height: 165px;
    justify-content: flex-start;
}
.scr3__h1{
    padding-top: 20px;
    padding-left: 10px;
    font-size: 2.6rem;
    line-height: 3rem;
    font-family: 'gilroy-bold-web', sans-serif;   
}
.scr3__h2{
    padding-top: 13px;
    margin-right: -15px;
    padding-left: 10px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    min-height: 5.8rem;  
}
.scr3__cloud{
    margin-top: 15px;
    background: url(../img/scr3-cloud.png);
    width: 314px;
    height: 152px;
    font-size: 1.5rem;
    line-height: 2.3rem;
    padding: 35px 25px 0 30px;
    font-family: 'museo-500', sans-serif;
}
.scr3__quest{
    padding-top: 0px;
    margin-top: 25px;
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-left: 35px;
    background: url(../img/scr3-quest.png) left 4px no-repeat;
}
.scr3__button{
    padding-top: 30px;
}
.scr3__button .button{
    width: 100%;
    height: 80px;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.scr3__2content{
	display:none;
}
.scr3__2content .scr3__item{
	padding-top:20px;
}
.scr3__2content .scr3__h2{
	min-height:8.5rem;
}
.scr3__2content .scr3__cloud{
	background:none;
	min-height:190px;
	padding: 25px 25px 0px;
	border: 1px dashed #ddd;
	border-radius:10px;
}
.scr3__bot{
    margin-top: 40px;
}
.scr3__loadbutton{
    width: 242px;
    height: 69px;
    padding-left: 35px;
    padding-top: 4px;
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    font-family: 'museo-500', sans-serif;
    color:#74c34a;
    text-transform: uppercase;
    border:1px solid #74c34a;
    border-radius: 6px;
    margin: 0 auto;
    background: url(../img/scr3-icon-load.png.svg) 48px center no-repeat;
}




.scr8_formitem input,
.callmodal__item input{
    color: #665b58;
    font-family: 'museo-300', sans-serif;
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 27px 15px 27px 74px;
    background: url(../img/scr4-inputcall.png) #fff 30px 50% no-repeat;
    border:none;
    border-radius: 10px;
    width: 100%;
    outline: none;
}
.form-submit{
    padding-top: 35px;
}
.form-submit .button{
    max-width: 368px;
    width: 100%;
}


.scr5{
    padding-top: 130px;
}
.scr5 .container{
    padding-top: 80px;
}
.scr5__img{
    float: left;
    margin-left: -35px;
    width: 468px;
    height: 548px;
}
@media only screen and (min-width:1020px){
    .scr5__img{
        background: url(../img/scr5-1.png.jpg) center center no-repeat;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
    }
}
.scr5__r{
    float: right;
    width: 670px;
    position: relative;
}
.scr5__txt{
    font-size: 1.8rem;
    line-height: 2.8rem;
}
.scr5__txt p{
    padding-bottom: 2.8rem;
    max-width: 380px;
}
.green-blk__num{
    color:#ffd76a;
    font-family: 'gilroy-bold-web', sans-serif;
    font-size: 10rem;
    line-height: 1;
    padding-bottom: 20px;
}
.green-blk__ttl{
    font-size: 4.2rem;
    line-height: 4.6rem;
    font-family: 'gilroy-bold-web', sans-serif;
    padding-bottom: 35px;
}
.green-blk__win{
    width: 236px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.08);
    position: absolute;
    right: -25px;
    top: 130px;
    padding: 8px;
}
.green-blk__inner{
    border:1px solid #f2f4f8;
    border-radius: 5px;
    padding: 28px 15px 20px 25px;
    color:#7b7b84;
    font-size: 1.4rem;
    line-height: 2rem;
}
.green-blk__inner img{
    display: block;
    margin-bottom: 10px;
}
.green-blk__inner p{
    margin-bottom: 2rem;
}
.scr5__act{
    padding-top: 20px;
}
.scr5__act .button{
    display: inline-flex;
    margin-right: 63px;
    vertical-align: middle;
    height: 81px;
    width: 281px;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
.scr5__actlink{
    font-size: 1.4rem;
    line-height: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: inline-block;
    border-bottom: 1px dotted #74c34a;
    vertical-align: middle;
    font-family: 'museo-700', sans-serif;
}



.scr6{
    clear: both;
    padding-top: 150px;
}
.scr6__l{
    position: relative;
    float: left;
    width: 470px;
}
 @media only screen and (min-width:1020px){
    .scr6__l:before{
        content: "";
        position: absolute;
        display: block;
        background: url(../img/scr6-line.svg) center center no-repeat;
        width: 145px;
        height: 186px;
        z-index: 3;
        top:-150px;
        left:278px;
    }
}
.scr6__txt{
    padding-left: 80px;
    font-size: 1.8rem;
    line-height: 2.8rem;
}
.scr6__txt p{
    margin-bottom: 2.8rem;
}
.scr6__feats{
    padding-top: 35px;
    font-size: 0;
    width: 530px;
}
.scr6__feat{
    display: inline-block;
    width: 50%;
    vertical-align: top;
    font-size: 1.7rem;
    line-height: 2.4rem;   
}
.scr6__feat img{
    display: block;
    float: left;
}
.scr6__feat span{
    display: block;
    padding-left: 100px;
    padding-top: 10px;
}
.scr6__r{
    float: right;
    margin-right: -50px;
    padding-top: 25px;
}
.scr6__r img{
    display: block;
}
.scr6__imgdescr{
    padding-left: 150px;
    padding-top: 30px;
    color: #7b7b84;
    font-size: 1.5rem;
    position: relative;
    line-height: 2.2rem;   
}
.scr6__imgdescr:after{
    content: "";
    position: absolute;
    display: block;
    background: url(../img/scr6-line2.svg) center center no-repeat;
    width: 49px;
    height: 46px;
    z-index: 3;
    top:25px;
    left:70px;
}
.scr6__imgdescr strong{
    color: #000000;
    display: block;
    font-size: 1.6rem;
    padding-bottom: 5px;  
}
.scr6__bott{
    position: relative;
    padding-top: 90px;
    clear: both;
    padding-left: 378px;
    background: url(../img/scr6.jpg) left 80px no-repeat;
    min-height: 450px;
}
.scr6__bott-ttl{
    font-size: 1.8rem;
    font-family: 'museo-500', sans-serif;
    line-height: 1;
    padding-bottom: 45px;
}
.scr6__li{
    display: block;
    color: #4f4f4f;
    font-size: 1.7rem;
    line-height: 2.6rem;
    position: relative;
    width: 380px;
    padding-left: 50px;
    padding-bottom: 36px;
}
.scr6__li i{
    display: block;
    float: left;
    margin-right: 15px;
    border-radius: 50%;
    color:#fff;
    width: 36px;
    height: 36px;
    background: #ffd76a;
    text-align: center;
    line-height: 36px;
    margin-left: -50px;
    margin-top: -4px;
}
.scr6__bott .green-blk__win{
    right: 120px;
    top:90px;
}



.scr7{
    padding-top: 21px;
    padding-bottom: 100px;
}
@media only screen and (min-width:1020px){
    .scr7 .container{
        background: url(../img/scr7-konst.jpg) right 40px no-repeat;
    }
}
.scr7__txt{
    padding-left: 80px;
    padding-top: 30px;
    max-width: 500px;
    position: relative;
}
.scr7__txt p{
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 2.8rem;
}
.scr7__txt strong{
    font-family: 'museo-700', sans-serif;
}
.scr7__txt .green-blk__win{
    display: block;
    top:285px;
    left:120%;
    width: 236px;
}
.scr7__txt .green-blk__win p{
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0;
}


.scr8{
    background: url(../img/scr8-bg.jpg) center top no-repeat;
    color:#fff;
    min-height: 865px;
    padding-top: 110px
}
.scr8__form{
    width: 505px;
    padding-left: 50px;
    color:#fff;
}
.scr8__formttl{
    font-size: 3.6rem;
    line-height: 4rem;
    font-family: 'gilroy-bold-web', sans-serif;
    padding-bottom: 25px;
}
.scr8__formsub{
    font-size: 2rem;
    line-height: 2.8rem; 
    padding-bottom: 35px;
}
.scr8__form_tag{
    max-width: 370px;
}
.scr8_formitem{
    margin-bottom: 40px;
}
.scr8_formcheck,
.scr8_formwhatsup{
    border:1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 4px 2px;
    font-size: 0;
}
.scr8_formcheck label,
.scr8_formwhatsup label{
    width: 50%;
    padding: 0 2px;
    display: inline-block;
}
.scr8_formcheck label input,
.scr8_formwhatsup label input{
    display: none;
}
.scr8_formcheck input+span,
.scr8_formwhatsup input+span{
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 6px;
    background-color: none;
    height: 57px;
    vertical-align: top;
    color:#fff;
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height:1.8rem;
    padding-top: 10px;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'museo-500', sans-serif;
    cursor: pointer;
}
.scr8_formcheck input+span:hover,
.scr8_formwhatsup input+span:hover{
    background-color: rgba(158, 141, 132, 0.4);
}
.scr8_formcheck input:checked+span,
.scr8_formwhatsup input:checked+span{
    background-color: rgb(158, 141, 132);
}
.scr8__hinp{
    padding-top: 30px;
    display: none;
}
.scr8__hinp input{
    color: #665b58;
    font-family: 'museo-300', sans-serif;
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 27px 15px 27px 30px;
    background: #fff;
    border:none;
    border-radius: 10px;
    width: 100%;
    outline: none;
}
.scr8_formsubmit{
    padding-top: 30px;
}
.scr8_formsubmit button{
    width: 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.scr8_formsubmit small{
    text-align: center;
    display: block;
    padding-top: 25px;
    color: #d4d3d3;
    font-size: 1.3rem;
    line-height: 2rem;
}
.scr8_formsubmit small a{
    color: #d4d3d3;
    text-decoration: underline;
}
.scr8__r{
    background: #fff;
    width: 512px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.1);
    padding: 10px;
    margin-top: 50px;
    margin-right: 45px;
    position: relative;
}
 @media only screen and (min-width:1199px){
    .scr8__r:before{
        display: block;
        content: '';
        width: 100%;
        height: 60px;
        background: url(../img/scr8-box.jpg.png) center top no-repeat;
        position: absolute;
        top:-20px;
        left: 0;
        z-index: 2;
    }
 }
.scr8__rin{
    border:1px solid #f2f4f8;
    border-radius: 5px;
    height: 570px;
    padding: 35px 20px 0 45px;
    color: #000;
    position: relative;
}
.scr8__ttl{
    text-align: left;
    font-size: 2.6rem;
    line-height: 3.4rem;
    font-family: 'museo-700', sans-serif;
    padding-bottom: 35px;
}
.scr8__rline{
    font-size: 1.7rem;
    line-height: 2.6rem; 
    position: relative;
    padding-left: 77px;
    padding-bottom: 25px;
}
.scr8__rline strong{
    font-family: 'museo-700', sans-serif;
}
.scr8__rline i{
    display: block;
    width: 4.6rem;
    height: 4.6rem;
    background: #ffb43f;
    color:#fff;
    line-height: 4.6rem;
    font-size: 1.8rem;
    text-align: center;
    position: absolute;
    top:10px;
    left: 0;
    font-family: 'museo-500', sans-serif;
    border-radius: 50%;
}




.scr9{
    padding-top: 80px;
    /* padding-bottom: 130px; */
    position: relative;
}
.scr9__h2{
    text-align: center;
    color: #7b7b84;
    font-size: 2.2rem;
    line-height: 2.8rem;
    padding-top: 15px;
}
.scr9__map{
    margin-top: 75px;
    min-height: 720px;
}
.scr9__mapover{
    position: relative;
    z-index: 10;
    top:-200px;
}
.scr9__mapwrap{
    width: 218px;
    position: absolute;
    top:-40px;
    left: 0;
}
.scr9__mapitem{
    width: 100%;
    margin-bottom: 18px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 57px 3px rgba(137, 137, 137, 0.08);  
    padding: 15px 15px 20px 45px;
}
.scr9__mapttl{
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-family: 'museo-700', sans-serif;
    padding-bottom: 5px;
    position: relative;
}
.scr9__mapitem .scr9__mapttl:after{
    display: block;
    content: "";
    border-radius: 50%;
    width: 6px;
    height: 6px;
    position: absolute;
    top:8px;
    left: -22px;
    background-color: #ff9054;
}
.scr9__mapitem:nth-child(2) .scr9__mapttl:after{
    background-color: #ff9054; 
}
.scr9__mapitem p{
    font-size: 1.5rem;
    line-height: 2.1rem;  
}
.scr9__mapitem strong{
    font-family: 'museo-500', sans-serif;  
}



.scr10{
    position: relative;
    padding-bottom: 120px;
}
@media only screen and (min-width:1020px){
    .scr10{
        background: url(../img/scr10-bg.jpg) center top no-repeat;
    }
}
.scr10 .container{
    min-height: 911px;
    position: relative;
}
.scr10__main{
    padding-top: 110px;
    padding-left: 75px;
    max-width: 540px;
}
.scr10__main .ttl{
    text-align: left;
}
.scr10__abs{
    position: absolute;
    z-index: 3;
    top:205px;
    left: 50%;
    padding-left: 20px;
    color: #7b7b84;
    font-size: 1.5rem;
    line-height: 2.2rem;    
}
.scr10__absttl{
    font-size: 1.7rem;
    line-height: 2.4rem;
    padding-bottom: 5px;
    color: #000000;
    font-family: 'museo-500', sans-serif;  
}
.scr10__h2{
    padding-top: 20px;
    padding-bottom: 45px;
    color: #7b7b84;
    font-size: 2rem;
    line-height: 2.8rem;
}
.scr10__main p{
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 2.8rem;  
}
.scr10__feats{
    position: absolute;
    bottom: -125px;
    z-index: 3;
    width: 100%;
    text-align: center;
    margin:0;
}
.scr10__feat{
    width: 336px;
    box-shadow: 0px 1px 7.4px 2.6px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    margin:0 25px;
    text-align: left;
}
.scr10__featin{
    border-radius: 6px;
    border:1px solid rgb(234, 236, 240);
    min-height: 154px;
    flex-flow: column nowrap;
    align-items: stretch;
    padding: 15px 15px 25px 35px;
    position: relative;
}
.scr10__featin:before{
    content: "";
    position: absolute;
    top:20px;
    left: -27px;
    border-radius: 50%;
    border: 5px solid #fff;
    width: 41px;
    height: 41px;
    background: url(../img/scr9-icon-ok.svg) center center no-repeat;
    background-color: #ffb43f;
}
.scr10__featttl{
    font-size: 1.7rem;
    line-height: 2.3rem;
    font-family: 'museo-500', sans-serif;  
    padding-bottom: 15px;
}
.scr10__feattxt{
    font-size: 1.6rem;
    line-height: 2.4rem;
}



.scr11{
    padding-top: 90px;
    border-bottom:1px solid #f2f4f8;
}
.scr11__ruler{
    padding-top: 55px;
}
.scr11__rul{
    border:2px dotted rgb(234, 236, 240);
    width: 231px;
    padding: 0 20px;
    height: 91px;
    margin:0 15px;
    border-radius: 10px;
    font-size: 1.7rem;
    line-height: 2.3rem;
    text-align: center;
    cursor: pointer;
}
.scr11__rul:hover,
.scr11__rul.active{
    background-image: -webkit-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -moz-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -o-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -ms-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: linear-gradient(to top, #ffd76a , #f6bd37);
  color:#fff;
  border:none;
  padding: 1px 21px;
}
.scr11 .swiper-container{
    max-width: 1000px;
    margin:90px auto 60px;
}
.scr11__nav{
    position: relative;
    z-index: 5;
    width: 100%;
}
.scr11__nav a{
    width: 74px;
    height: 74px;
    position: absolute;
    border-radius: 50%;
    border:1px solid rgb(234, 236, 240);
    top:325px;
    left: -35px;
    outline: none;
}
.scr11__nav a.scr11__next{
    right: -35px;
    left: auto;
}
.scr11__nav a:hover{
    background-image: -webkit-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -moz-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -o-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: -ms-linear-gradient(bottom, #ffd76a , #f6bd37);
    background-image: linear-gradient(to top, #ffd76a , #f6bd37);
}
.scr11__nav a path{
    fill:rgb(188, 196, 211);
}
.scr11__nav a:hover path{
    fill:rgb(255, 255, 255);
}
.scr11__slide{
    justify-content: space-between;
    align-items: flex-start;
}
.scr11__l{
}
.scr11__imgsub{
    margin-top: 30px;
    padding-top: 0;
    padding-left: 76px;
    background: url(../img/scr3-quest.png) 40px top no-repeat;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.scr11__imgsub strong{
    font-family: 'museo-700', sans-serif;  
}
.scr11__imgmin{
    padding-top: 10px;
    color: #7b7b84;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
.scr11__r{
    max-width: 380px;
    padding-right: 20px;
}
.scr11__slidettl{
    font-size: 3.6rem;
    line-height: 4.2rem;
    font-family: 'gilroy-bold-web', sans-serif;
    padding-bottom: 30px;
}
.scr11__r p{
    color: #181818;
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 2.8rem;  
}
.scr11__button{
    max-width: 366px;
}
.scr11__button .button{
    width: 100%;
    margin-bottom: 40px;
}



.scr12{
    padding-top: 100px;
}
.scr12 .container{
    padding-left: 0;
    padding-right: 0;
}
.scr12__main{
    max-width: 370px;
}
.scr12__main .ttl{
    text-align: left;
}
.scr12__quest{
    padding-top: 140px;
    background: url(../img/scr12-quest.jpg) 20% 35px no-repeat;
}
.scr12__questttl{
    font-size: 2.6rem;
    line-height: 3.2rem;
    font-family: 'gilroy-bold-web', sans-serif;
    padding-bottom: 10px;
}
.scr12__questxt{
    font-size: 1.6rem;
    line-height: 2.4rem;
    max-width: 250px;
    padding-bottom: 20px;
}
.scr12__questava{
    overflow: hidden;
}
.scr12__questava img{
    display: block;
    float: left;
}
.scr12__questname{
    padding-left: 125px;
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: 'gilroy-bold-web', sans-serif;
}
.scr12__questjob{
    padding-left: 125px;
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: #7b7b84;
}
.scr12__button{
    padding-top: 44px;
}
.scr12__button .button{
    width: 226px;
    height: 71px;
    font-size: 1.3rem;
}
.scr12__faqs{
    width: 774px;
    padding-top: 10px;
}
.scr12__faq{
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 57px 0px rgba(245, 246, 249, 1);
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding: 34px 105px 34px 50px;
    font-family: 'museo-500', sans-serif;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.scr12__faq:after{
    content: "";
    position: absolute;
    top:40px;
    right:35px;
    width: 8px;
    height: 14px;
    background: url(../img/scr12-arr.svg) center center no-repeat;
    z-index: 5;
    transition: transform 0.3s linear 0s;
    transform:none;
    transform-origin: 50% 50%;
}
.scr12__faq i{
    display: block;
    position: absolute;
    color:#f9f9f9;
    font-family: 'gilroy-bold-web', sans-serif;
    font-size: 5rem;
    line-height: 5rem;
    margin-top: -30px;
    top:100%;
    left: 25px;
}
.scr12__problem{
    position: relative;
}
.scr12__anser{
    display: none;
    padding-top: 20px;
    color: #7b7b84;
    font-size: 1.7rem;
    line-height: 2.6rem;
}
.scr12__faqopen:after{
    transform:rotate(90deg);
}




.scr13{
    padding-top: 110px;
    padding-bottom: 25px;
}
.scr13 .row{
    padding-top: 90px;
}
.scr13__c{
    padding-bottom: 40px;
}
 @media only screen and (min-width:1020px){
    .scr13__c{
		max-width: 330px;
	}
}
.scr13__i{
    width: 100%;
}
.scr13__h3{
    padding-top: 35px;
    padding-bottom: 25px;
    font-size: 3.2rem;
    line-height: 3.8rem;
    font-family: 'gilroy-bold-web', sans-serif;
}
.scr13__hi{
    min-height: 260px;
}
.scr13__hi p {
    font-size: 1.7rem;
    line-height: 2.6rem;
    padding-bottom: 2.6rem;
}
.scr13__of{
    display: block;
    text-align: left;
    font-size: 1.3rem;
    line-height: 2.2rem;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 30px;
    text-decoration: underline;
    text-transform: uppercase;
    font-family: 'museo-700', sans-serif;
    color:#74c34a;
}





.footer{
    border-top:1px solid #f2f4f8;
    padding-top: 60px;
    padding-bottom: 30px;
}
.footer__logo{
    display: block;
    width: 140px;
    float: left;
    margin-top: -10px;
}
.footer__logo img{
    display: block;
    width: 100%;
}
.footer__slogan{
    /* margin-left: 165px; */
    font-size: 1.4rem;
    line-height: 2.1rem;
}
.footer__soc{
    width: 50px;
    margin-right: 30px;
    justify-content: space-between;
}
.footer__soc a{
    opacity: 0.8;
}
.footer__soc a:hover{
    opacity: 1;
}
.footer__conf{
    width: 250px;
}
.footer__conf a{
    color: #7b7b84;
    font-size: 1.4rem;
    line-height: 2.3rem;
    display: block;
    text-decoration: underline;
}
.footer__studio{
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1; 
}
.footer__studio img{
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
}
.footer__right{
    width: 290px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__mess{
    width: 90px;
    justify-content: space-between;
}
.footer__mess a{
	display:none;
    width: 23px;
    height: 23px;
    background-image: url(../img/footer-soc.png);
}
.footer__watsup{
    background-position: 0 0;
}
.footer__viber{
    background-position: center 0;
}
.footer__telegram{
    background-position: right 0;
}
.footer__mess a:hover{
    -ms-background-position-y: bottom;
    background-position-y: bottom;
}
.footer__cont{
    text-align: right;
    font-family: 'museo-700', sans-serif;
}
.footer__telnum{
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color:#000;
}
.footer__callme{
    display: inline-block;
    border-bottom: 1px dotted #74c34a;
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.tingle-modal-box__content{
    border-radius: 10px;
}
.tingle-modal-box{
    border-radius: 10px;
}
.modal__close{
    position: absolute;
    top:0;
    right:-30px;
    display: block;
    width: 20px;
    height: 20px;
}
.modal__close img{
    display: block;
    width: 100%;
    height: 100%;
}
.callmodal{
    padding: 0;
    width: 1059px;
    max-width: 100%;
    min-height: 693px;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    background:url(../img/popup/man.jpg) #fff left top no-repeat;
}
.modal__ramka{
    border:1px solid #f2f4f8;
    border-radius: 5px;
    min-height: 673px;
    position: relative;
    justify-content: flex-end;
    align-items: center;
}
.callmodal .modal__ramka:after{
    content: "";
    position: absolute;
    top:35px;
    right: -11px;
    z-index: 4;
    background:url(../img/popup/card.png) center center no-repeat;
    width: 74px;
    height: 109px;
}

.callmodal__r{
    max-width: 370px;
    float: right;
    margin-right: 70px;
}
.callmodal__ttl{
    font-size: 3.6rem;
    line-height: 4.2rem;
    padding-bottom: 20px;
    font-family: 'gilroy-bold-web', sans-serif;
}
.callmodal__txt{
    font-size: 2rem;
    line-height: 2.8rem;
    color: #66686a;
    padding-bottom: 20px;
}
.callmodal__item{
    margin-bottom: 40px;
}
.callmodal__item input{
    border: 1px solid #ebedf1;
}
.callmodal__radio{
    border:1px solid #ebedf1;
    border-radius: 6px;
    padding: 4px 2px;
    font-size: 0;
}
.callmodal__radio label{
    width: 50%;
    padding: 0 2px;
    display: inline-block;
}
.callmodal__radio label input{
    display: none;
}
.callmodal__radio input+span{
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 6px;
    background-color: none;
    height: 57px;
    vertical-align: top;
    color:#000;
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height: 57px;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'museo-500', sans-serif;
    cursor: pointer;
}
.callmodal__radio input+span:hover{
    background-color: #9e8d84;
    color: #fff;
}
.callmodal__radio input:checked+span{
    background-color: #9e8d84;
    color: #fff;
}
.callmodal__hinp{
    padding-top: 30px;
    display: none;
}
.callmodal__hinp input{
    color: #665b58;
    font-family: 'museo-300', sans-serif;
    font-size: 1.8rem;
    line-height: 2rem;
    padding: 20px 15px 20px 30px;
    background: #fff;
    border:1px solid #ebedf1;
    border-radius: 10px;
    width: 100%;
    outline: none;
}
.callmodal__formsubmit{
    padding-top: 30px;
}
.callmodal__formsubmit button{
    width: 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.callmodal__formsubmit small{
    text-align: center;
    display: block;
    padding-top: 25px;
    color: #d4d3d3;
    font-size: 1.3rem;
    line-height: 2rem;
}
.callmodal__formsubmit small a{
    color: #d4d3d3;
    text-decoration: underline;
}



.pricemodal{
    width: 520px;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}
.pricemodal .modal__ramka{
}
.pricemodal__inner{
    max-width: 370px;
    margin:50px auto 30px;
}
.pricemodal__time{
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-bottom: 15px;
}



.susmodal{
    width: 520px;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}
.susmodal__img{
    border:5px solid #ffffff;
    border-radius: 50%;
    background-color: rgb(148, 212, 106);
    width: 74px;
    height: 74px;
    margin:-35px auto 35px;
}

.susmodal__block{
    margin:0 auto 35px;
    text-align: center;
    max-width: 400px;
}
.susmodal__quest{
    font-size: 1.7rem;
    line-height: 2.6rem;
    padding-bottom: 30px;
}
.susmodal__quest:before{
    content: "";
    background:url(../img/scr3-quest.png) center center no-repeat;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    display: inline-block;
}
.susmodal__micro{
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-bottom: 50px;
}
.susmodal__butt{
    
}
.susmodal__butt .button{
    width: 100%;
}
.susmodal__small{
    display: block;
    padding-top: 35px;
    color: #a0a0a0;
    font-size: 1.3rem;
    line-height: 2rem;
}
.form-error{
    text-align: center;
    line-height: 2rem;
    font-size: 1.1rem;
    color:red;
}
.form-error img{
    display: inline-block;
}

.okmodal{
    width: 842px;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}
.okmodal__img{
    border:5px solid #ffffff;
    border-radius: 50%;
    background-color: rgb(148, 212, 106);
    width: 74px;
    height: 74px;
    margin:70px auto 20px;
}
.callmodal__h1{
    font-size: 3.6rem;
    line-height: 4.2rem;
    font-family: 'gilroy-bold-web', sans-serif;
    padding-bottom: 20px;
}
.callmodal__h2{
    font-size: 2rem;
    line-height: 2.8rem;
    padding-bottom: 20px;
    color: #66686a;
}
.okmodal__h3{
    font-size: 1.7rem;
    line-height: 2.6rem;
    padding-bottom: 20px;
}
.okmodal__h3 strong{
    font-family: 'museo-500', sans-serif;
}
.okmodal__line{
    margin: 40px 0 0;
    border-top:1px solid #ebedf1;
    padding-top: 40px;
}
.okmodbot__ttl{
    font-size: 2.6rem;
    line-height: 3.2rem;
    font-family: 'gilroy-bold-web', sans-serif; 
}
.okmodbot__ttl span{
    color: #f55b3c;
}
.okmodbot__txt{
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding-bottom: 10px;
    padding-top: 25px;
}
.okmodal__txt strong{
    font-family: 'museo-700', sans-serif;
}
.okmodal__line .row{
    max-width: 750px;
    margin: 0 auto;
}
.okmodbot__item{
    color: #7b7b84;
    font-size: 1.4rem;
    line-height: 2rem;       
}
.okmodbot__itemimg{
    height: 120px;
}
.okmodbot__itemtxt{
    padding-top: 5px;
}
.okmodal__foot{
    overflow: hidden;
    padding-top: 150px;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.okmodal__foot_l{
    float: left;
    width: 380px;
    padding-bottom: 68px;
    position: relative;
}
.okmodal__foot_l img{
    display: block;
    width: 100%;
}
.okmodal__foot_l span{
    position: absolute;
    top:-60px;
    right: -23px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background-color: rgb(148, 212, 106);
    z-index: 4;
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: 'museo-500', sans-serif;
}



.okmodal__foot_r{
    float: right;
    width: 240px;
    margin-right: 25px;
    text-align: left;
}
.okmodal__foot_r img{
    margin-top: 40px;
    margin-bottom: 25px;
}
.okmodal__foot_ttl{
    font-size: 1.7rem;
    line-height: 2.3rem;
    font-family: 'museo-500', sans-serif;
    padding-bottom: 10px;
}
.okmodal__foot_txt{
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #171717
}
.okmodal__foot_txt span{
    color: #f55b3c;
    font-family: 'museo-700', sans-serif;
}








 @media only screen and (max-width:1199px) and (min-width: 1024px){
    html{
        font-size: 9px;
    }
    .scr1__hdr{
        height: auto;
    }
    .scr1__logo{
        display: block;
        margin: 0;
        margin-top: 20px;
    }
    .scr1__slogan{
        display: block;
    }
    .scr1__gren-abs{
        display: none;
    }
    .scr1__banner{
        margin-left: auto;
        margin-right: auto;
    }
    .scr2 .container:before{
        display: none;
    }
    .scr4__img{
        width: 350px;
    }
    .scr4__img img{
        width: 100%;
    }
    .scr5__img{
        width: 250px;
    }
    .scr5__img img{
        width: 100%;
    }
    .scr6__r{
        width: 450px;
        margin-right: 0;
    }
    .scr6__r img{
        width: 100%;
    }
    .scr6__bott .green-blk__win{
        right: 0;
    }
    .scr6__li{
        width: 300px;
    }
    .scr7 .container{
        -webkit-background-size: 500px;
        background-size: 500px;
    }
    .scr8__r{
        margin-right: 0;
        width: 420px;
        height: auto;
        margin-top: 0;
    }
    .scr10__feats{
        bottom: -50px;
    }
    .scr10__feat{
        width: 250px;
    }
    .scr10__main{
        max-width: 500px;
    }
    .scr11__l{
        width: 480px;
    }
    .scr11__l img{
        width: 100%;
    }
    .scr12__main{
        width: 320px;
    }
    .scr12__faqs{
        width: 590px;
    }
    .scr13__c{
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .footer__logo{
        float: none;
        padding-bottom: 10px;
    }
    .footer__slogan{
        padding-left: 0;
        margin-left: 0;
    }
 }
.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 90px;
    transform: translate(-50%, -50%);
/*    background: #25D366; цвет кнопки*/
    background: url(../img/popup/phone.svg)#25D366 center center no-repeat;
    -webkit-background-size: 35px auto;
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 53px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}
.whatsapp-button a {
    color: #fff;
}
.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; /*цвет анимированных волн от кнопки*/
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
 
.whatsapp-button:after{
    animation-delay: .5s;
}
 
@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}