@import url("../css/normalize.css");
@import url("../css/fonts.css");
@import url("../css/grid.css");
/*
@import url("../css/slick.css");
@import url("../css/jquery.fancybox.css");
@import url("../css/nice-select.css");
*/


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

*,*:before,*:after { -webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
b, strong { font-weight: bold; }
input { outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; vertical-align: top;}
iframe{ border:0; }
a { text-decoration: none; 	-webkit-transition:opacity .3s ease-out; -o-transition:opacity .3s ease-out; transition:opacity .3s ease-out; }
a:hover { text-decoration: none; }
*:focus{outline:none}

body {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	font-weight:normal;
	color:#000;
	background:#FFF;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}



/*** HEADER ***/

.header-top {
    background: #007A37;
    padding: 13px 0;
}

header .adress {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 14px;
}

header .adress img {
    margin-right: 5px;
}

header .header-block {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

header .header-block .logo {
    display: flex;
    align-items: center;
}

header .header-block .logo img {
    margin-right: 12px;
}

header .header-block .logo span {
    font-weight: 900;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #660000;
}

header .header-block .phone {
    margin-left: auto;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

header .header-bottom {
    border-bottom: 3px solid #007A37;
}

header .header-block .phone a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    color: #1D1D1B;
    margin: 0 0 5px;
}

header .header-block .phone span {
    font-size: 12px;
    color: #1D1D1B;
}

header .header-block .phone a:before {
    content: '';
    width: 29px;
    height: 29px;
    background: url(../img/phone.svg) no-repeat center center;
    background-size: contain;
    margin-right: 10px;
}

/*** MAIN ***/

.main {
    padding: 35px 0;
    background: url(../img/main.jpg) no-repeat center center;
    background-size: cover;
}

.main-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.main-block .info .title {
    font-size: 52px;
    font-weight: 500;
    margin: 0 0 48px;
}

.main-block .info .title span {
    font-weight: 600;
    color: #600;
}

.main-block .info .btn-block {
    width: 375px;
    max-width: 100%;
}

.main-block .info .btn-block .btn {
    padding: 22px 65px 26px;
    color: #FFF;
    background: #007a36;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin: 0 0 10px;
}

.main-block .info .btn-block .text {
    color: #5E5E5E;
    line-height: 120%;
    font-size: 14px;
}

.main-block .advantages {
    margin-left: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
}

.main-block .advantages ul {
    display: flex;
    flex-wrap: wrap;
}

.main-block .advantages ul li {
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 20px 16px;
    width: calc(100%/3 - 30px*2/3);
    margin-right: 30px;
}

.main-block .advantages ul li:last-child {
    margin: 0;
}

.main-block .advantages ul li img {
    margin-right: 10px;
}

.main-block .video {
    width: 370px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px #00000030;
}

.main-block .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.main-block .video .screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.main-block .video .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-block .video .screen:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: url(../img/play.png) no-repeat center center #007a36;
    border-radius: 50%;
    background-size: contain;
}

.main-block .image-top {
    width: 370px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.main-block .image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*** QUIZ ***/

.quiz-section {
    background: url(../img/quiz-bg.png) no-repeat center right -90px;
    padding: 30px 0 0;
}

.quiz-section .section-title {
    margin: 0 0 23px;
    width: 850px;
    max-width: 100%;
}

.quiz-section .section-title .title {
    font-size: 38px;
    line-height: 45px;
    color: #292929;
    margin: 0 0 7px;
}

.quiz-section .section-title .subtitle {
    color: #ababab;
    font-size: 18px;
}

.quiz-section .section-title .title b {
    font-weight: 500;
}

#quiz {
    display: flex;
    flex-wrap: wrap;
}

.quiz-box {
    padding: 32px 30px;
    background: url(../img/gerb_small.svg) no-repeat right 50px bottom #F0ECE6;
    border-radius: 0;
    width: 850px;
    max-width: 100%;
    min-height: 440px;
    position: relative;
}

.quiz-box .quiz-top {
    margin: 0 0 35px;
    position: relative;
}

.quiz-box .quiz-top .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #3C3C3C;
    margin: 0 0 5px;
    padding: 2px 4px;
    border-radius: 5px;
}

.quiz-box .quiz-top .line {
    background: #FFF;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.quiz-box .quiz-top .line span {
    width: 20%;
    background: #007A37;
    display: block;
    height: 100%;
}

.quiz-box .quiz-middle {
    min-height: 236px;
}

.quiz-box .quiz-middle .item {
    display: none;
}

.quiz-box .quiz-middle .item:first-child {
    display: block;
}

.quiz-box .quiz-middle .item .question {
    display: flex;
    margin: 0 0 30px;
    justify-content: flex-start;
    color: #3C3C3A;
    font-size: 22px;
}

.quiz-box .quiz-middle .item .question b {
    font-weight: normal;
}

.quiz-box .quiz-middle .item .answers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.quiz-box .quiz-middle .item .answers .answer {
    background: #FFF;
    box-shadow: 0px 10px 14px rgb(0 0 0 / 8%);
    border-radius: 0;
    margin-right: 15px;
    width: 161px;
    overflow: hidden;
}

.quiz-box .quiz-middle .item .answers .answer:last-child {
    margin-right: 0;
}

.quiz-box .quiz-middle .item .answers.type-2 .answer {
    width: calc(80%/2 - 15px/2);
    margin-bottom: 15px;
    background: #CAE6F5;
}

.quiz-box .quiz-middle .item .answers.type-2 .answer label span {
    padding: 20px 42px;
    font-size: 17px;
    border: 1px solid #FFF;
    border-radius: 0;
    background: #FFF;
}

.quiz-box .quiz-middle .item .answers.type-2 .answer:nth-child(2n)  {
    margin-right: 0;
}

.quiz-box .quiz-middle .item .answers .answer input:checked + label span {
    border-color: #007a37;
    background: #FFF;
}

.quiz-box .quiz-middle .item .answers .answer input {
    display: none;
}

.quiz-box .quiz-middle .item .answers .answer label {
    display: flex;
    flex-flow: column;
    cursor: pointer;
    height: 100%;
}

.quiz-box .quiz-middle .item .answers .answer label img {
    width: 100%;
}

.quiz-box .quiz-middle .item .answers .answer label span {
    display: block;
    padding: 19px 42px 17px;
    font-size: 14px;
    line-height: 14px;
    color: #3C3C3A;
    position: relative;
    height: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    height: 100%;
}

.quiz-box .quiz-middle .item .answers .answer label span:before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 100px;
    border: 1px solid #d7d7d7;
    background: #FFF;
    background-position: center;
}

.quiz-box .quiz-middle .item .answers .answer input:checked + label span:before {
    background: url(../img/check.svg) no-repeat center center;
    border-color: #007A37;
}

.quiz-box .quiz-bottom {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.quiz-box .quiz-bottom .control .next {
    padding: 20px 32px;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #FFF;
    background: #007a36;
    border-radius: 0;
    border: none;
    position: relative;
    cursor: pointer;
}

.quiz-box .quiz-bottom .control .next:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 175.58px;
    height: 45.8px;
    background: #cbb647;
    filter: blur(75px);
    border-radius: 12px;
    margin: 34px 0 0;
    opacity: .2;
}

.quiz-box .quiz-bottom .title {
    margin-left: auto;
    font-size: 30px;
    font-weight: 600;
    color: #494949;
}

.quiz-box .quiz-bottom .title span:first-child {
    font-size: 50px;
    color: #DF3A38;
}

[data-quiz-send] {
    display: none;
}

.quiz-final {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F0ECE6;
}

.form-group {
    margin: 0 0 16px;
}

.form-group input {
    width: 280px;
    max-width: 100%;
    padding: 18px 15px;
    border: none;
    border: 1px solid #FFF;
    transition: .3s border-color;
	font-size: 16px;
}

.form-group input:focus {
    border-color: #0c7b36;
}

.quiz-final .image {
    position: absolute;
    right: 40px;
    bottom: 30px;
}

.quiz-final .info {
    padding: 141px 40px;
    width: 480px;
    color: #3f3f3f;
    max-width: 100%;
}

.quiz-final .info .title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px;
}

.quiz-final .info .text {
    font-size: 16px;
}


/*** FOOTER ***/

footer {
	padding: 80px 0 30px;
}

footer .links {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
}

footer .links ul {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.6;
}

footer .links ul li {
    margin-right: 12px;
    color: #b2b2b2;
}

footer .links ul:last-child {
    justify-content: flex-start;
}

footer .links ul:last-child li {
    margin-right: 0;
}

footer .links ul li a {
    color: #b2b2b2;
    border-bottom: 1px solid #CCC;
    transition: .3s border-color;
}

footer .links ul li a:hover {
    border-color: transparent;
}

footer .links ul:last-child li:first-child {
    margin-right: 15px;
}

footer .links ul:last-child li:last-child {
    margin-right: 0;
}

footer .text {
    text-align: left;
    margin: 10px 0 0;
    color: #afafae;
}

.g-recaptcha {
    padding: 15px 0;
}
.recaptcha-error {
    font-size: 18px;
    color: red;
    width: 100%;
}