html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*ШАБЛОНЫ*/
body,h1,h2,h3,h4,h5,h6,li,li a,p,span{font-family:'Montserrat',sans-serif;}
p,ul,ol {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 122%;
    color: #000000;
}
h1,h2,h3,h4 {
    font-style: normal;
    font-weight: normal;
    color: #000000;
}
a {
    text-decoration: none;
    transition: all .25s;
}
a:hover {
    text-decoration: underline;
    transition: all .25s;
}
p {
    margin: 0 0 20px 0;
}
p a {
    text-decoration: underline;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 900px) {
    .container {
        max-width: 900px;
    }
}
/*@media (min-width: 1200px) {
    .container {
        max-width: 1050px;
    }
}*/
@media (max-width: 1200px) {
    p,ul,ol {
        font-size: 14px;

    }
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}
img {
    max-width: 100%;
}
.flex-blok{
    display: flex!important; 
    position: relative;
}
.flex-right{
    justify-content: flex-end!important;   
}
.flex-left{
    justify-content: flex-start!important;  
}
.flex-center{
    justify-content: center!important;  
}
.flex-space-around{
    justify-content: space-around!important;  
}
.flex-space-between{
    justify-content: space-between!important;  
}
.flex-row{
    flex-direction:row!important;  
}
.flex-column{
    flex-direction:column!important; 
}
.flex-wrap {
    flex-wrap: wrap!important; 
}
.align-center {
    align-items: center;
}
.wrapper-just-2{
    width: calc(50% - 15px);
}
.wrapper-just-3{
    width: calc(33.33333% - 22.5px);
}
.wrapper-just-4{
    width: calc(25% - 20px);
}
.wrapper-just-5{
    width: calc(20% - 20px)!important;
}
.wrapper-2{
    width: 50%;
}
.wrapper-3{
    width: 33.33333%;
}
.wrapper-4{
    width: 25%;
}
.wrapper-5{
    width: 20%;
}
.mg-0{
    margin: 0!important;   
}
.mgt-0 {
    margin-top: 0!important;  
}
.mgt-10 {
    margin-top: 10px!important;  
}
.mgt-15 {
    margin-top: 15px!important;  
}
.pg-0 {
    padding: 0!important;  
}
.pgt-0 {
    padding-top: 0!important;  
}
.pgb-0 {
    padding-bottom: 0!important;  
}
.bg-transparent {
    background: transparent;
}
.border-0 {
    border: 0;
}
section {
    margin: 40px 0;
    position: relative;
}
.yellow-bg {
    background: #F1D02B;
}
.yellow-bg h2,.yellow-bg h3,.yellow-bg .section-title{
    color: #ffffff;
}
.section-title{
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 122%;
    margin: 0 0 20px 0;
    color: #F1D02B;
}
section p:last-of-type{
    margin: 0;
}
.desktop-none {
    display: none!important; 
}
.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}
.width100{
    width: 100%!important;
}
.hidden {
    display: none!important;
}

/*ФОРМЫ*/
input, textarea, select{
    box-sizing: border-box;
    padding: 10px 20px;
    margin: 0;
    width: 100%;
    transition-duration: 0.25s;
    position: relative;
    border: 2px solid rgba(0,0,0,0.5);
    font-size: 16px;
    line-height: 123%;
    font-style: normal;
    font-weight: normal;
    background: #FFFFFF;
    border-radius: 10px;
    color: #000000;
    font-family: 'Montserrat',sans-serif;
    outline: none;
}
textarea {
    max-height: 120px;
}
input::placeholder, textarea::placeholder{
    color: #CCCCCC;
}
input:hover, input:focus,
textarea:hover, textarea:focus{
    border: 2px solid rgba(0,0,0,0.9);
    outline: none;
}
input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}
label {
    font-family:'Montserrat',sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 123%;
    letter-spacing: 0em;
    text-align: left;
    margin: 0 0 10px 0;
    display: block;
    color: #000000;
}
.single-checkbox {
    width: 21px;
    height: 21px;
    display: none;
}
input[type="submit"] {
    cursor: pointer;
    border: 3px solid #000000;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 900;
    line-height: 123%;
    text-align: center;
    margin: 0;
}
input[type="submit"]:hover {
    background: #000000;
    color: #ffffff;
}
input[type="search"] {
    -webkit-appearance: none;
}
.radio-checkbox-label{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 135%;
    letter-spacing: -0.3px;
    color: #909090;
    padding-left: 28px;
    margin: 0;
    cursor: pointer;
    display: flex;
}
.radio-checkbox-label:before {
    background-color: #fff;
    border: 1px solid #949494;
    /*    border-radius: 4px;*/
    box-sizing: border-box;
    content: "";
    display: block;
    height: 18px;
    width: 18px;
    left: 0;
    top: 0;
    position: absolute;
    transition: background-color .2s ease-in-out,border .2s ease-in-out;
}
input[type=radio] + .radio-checkbox-label:before {
    border-radius: 10px;
}
input[type=checkbox]:checked + .radio-checkbox-label:before {
    background-color: #000000;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='12' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><path d='M4.10351 8.89548L1.45582 6.09578L0 7.6352L4.13584 12L14 1.56934L12.5159 0L4.10351 8.89548Z' fill='rgb(255, 255, 255)' /></svg>");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px 10px;
    border-color: #000000;
}
input[type=radio]:checked + .radio-checkbox-label:before {
    background-color: #000000;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'><circle cx='7' cy='6' r='6' fill='white'/></svg>");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 18px 10px;
    border-color: #000000;
}
input.disabled {
    background-color: rgb(244, 245, 247);
    cursor: not-allowed;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}
select{
    padding: 10px 13px;
}
.form-group {
    margin-bottom: 25px;
	position:relative;
}
.btn-wrapper {
    display: flex;
}
.btn{
    background: #F1D02B;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px 65px;
    margin: 0;
    font-style: normal;
    font-weight: 900;
    border: 3px solid #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    font-size: 20px;
    line-height: 122%;
    color: #000000;
    box-sizing: border-box;
    transition-duration: 0.25s;
    position: relative;
    border-radius: 25px;
    width: auto;
}
.btn:hover {
    background: #000000;
    color: #F1D02B;
}
.btn:disabled {
    color: #FFFFFF;
    background: #616161;
    cursor: not-allowed;
}
.btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}
.form-modal-wrapper .btn{
    background: #1B467A;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.form-modal-wrapper .btn:hover{
    background: #FFFFFF;
    color: #1B467A;
    border: 1px solid #1B467A;
}
#preloader {
    position: fixed;
    z-index: 1001;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
#preloader:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
#preloader:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

#preloader:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;
    border: 15px solid rgba(255, 255, 255, 1.0);
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;
}
#preloader.hidden {visibility: hidden;opacity: 0;display: none;}
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#result_form {
	font-size: 35px;
    font-weight: 900;
    line-height: 122%;
    text-align: center;
    margin: 0;
    color: #000000;
}
.privacy_policy {
	font-size: 16px;
    font-weight: 400;
    line-height: 122%;
    margin: 0;
    color: #CCCCCC;
}

@media (max-width: 1200px) {
    .desktop-none {
        display: flex!important; 
    }
    .mob-none{
        display: none!important;
    }
    .wrapper-mob-100{
        width: 100%!important;
    }
    .mob-flex-column{
        flex-direction:column!important; 
    }

    .btn-wrapper {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .btn{
        width: 100%!important;
        padding: 14px 20px;
    }
    .btn svg{
        fill: #000000;
    }
    .btn svg path{
        stroke: #FFFFFF;
        fill: #FFFFFF;
    }
    .btn svg circle {
        stroke: #FFFFFF;
        fill: #000000;
    }
    .section-title{
        font-size: 30px;
    }
}
footer {
    background: #F1D02B;
    padding: 40px 0 40px 0;
}
footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer-wrapper a{
    font-size: 20px;
    font-weight: 400;
    line-height: 123%;
    color: #000;
}

@media (max-width: 768px){
    footer {
        padding: 20px 0;
    }
	footer .footer-wrapper {
		flex-direction:column;
	}
    .footer-wrapper .footer-logo{
        order: 1;
        margin-bottom: 20px;
    }
    .footer-wrapper .policy-wrapper{
        order: 2;
        margin-bottom: 0;
    }
}

.hero {
    position: relative;
    margin: 0;
    padding: 0;
}
.hero:after {
    content: "";
    position: absolute;
    background-color: #F1D02B;
    width: 100%;
    height: 100%;
    top:0;
    z-index: 0;
}
.hero .hero-container {
    height: 100%;
}
.hero .hero-content {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    padding: 0;
}
.hero .hero-content h1{
    font-size: 60px;
    font-weight: 800;
    line-height: 100%;
    margin: 0 0 20px 0;
    color: #FFFFFF;
    max-width: 603px;
}
.hero .hero-content .hero-content-text{
    font-size: 28px;
    font-weight: 600;
    line-height: 136%;
    color: #E31837;
    padding: 0;
    margin: 0 0 20px 0;
    max-width: 393px;
}
.hero>img{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top right;
    object-position: top right;
}
@media (max-width: 1200px){
    .hero {}
    .hero .hero-content {
        justify-content: flex-end;
    }
    .hero .hero-content h1{
        font-size: 32px;
        max-width: unset;
    }
    .hero .hero-content .hero-content-text{
        font-size: 20px;
        max-width: unset;
    }
}

.form-section {
	position:relative;
}
.form-section .contact-form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.form-section .title-wrapper {
    display: flex;
    justify-content: flex-start;
	align-items: flex-start;
}
.form-section h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 122%;
    text-align: left;
    margin: 0 0 44px 0;
    color: #000000;
}
.form-section .form-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.form-section .form-wrapper> div{
    width: 100%;
}
.form-section .form-wrapper form{
    text-align: left;
	width:100%;
}
.form-section .form-wrapper input[type=submit] {
    border: 3px solid #000000;
    border-radius: 25px;
    max-width: 270px;
    font-size: 20px;
    font-weight: 900;
    line-height: 123%;
    text-align: center;
    margin: 0;
}


@media (max-width: 1200px){
    .form-section {
        margin: 20px 0;
    }
    .form-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}