/***** Fonts *****/
@font-face {
   font-family: "TT Norms";
   font-display: swap;
   src: url("../fonts/TTNorms-Bold.eot");
   src: url("../fonts/TTNorms-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNorms-Bold.woff2") format("woff2"), url("../fonts/TTNorms-Bold.woff") format("woff"), url("../fonts/TTNorms-Bold.ttf") format("truetype");
   font-weight: bold;
   font-style: normal;
}
@font-face {
   font-family: "TT Norms";
   font-display: swap;
   src: url("../fonts/TTNorms-Light.eot");
   src: url("../fonts/TTNorms-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNorms-Light.woff2") format("woff2"), url("../fonts/TTNorms-Light.woff") format("woff"), url("../fonts/TTNorms-Light.ttf") format("truetype");
   font-weight: 300;
   font-style: normal;
}
@font-face {
   font-family: "TT Norms";
   font-display: swap;
   src: url("../fonts/TTNorms-Medium.eot");
   src: url("../fonts/TTNorms-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNorms-Medium.woff2") format("woff2"), url("../fonts/TTNorms-Medium.woff") format("woff"), url("../fonts/TTNorms-Medium.ttf") format("truetype");
   font-weight: 500;
   font-style: normal;
}
@font-face {
   font-family: "TT Norms";
   font-display: swap;
   src: url("../fonts/TTNorms-Regular.eot");
   src: url("../fonts/TTNorms-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNorms-Regular.woff2") format("woff2"), url("../fonts/TTNorms-Regular.woff") format("woff"), url("../fonts/TTNorms-Regular.ttf") format("truetype");
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: "TT Norms";
   font-display: swap;
   src: url("../fonts/TTNorms-ExtraBold.eot");
   src: url("../fonts/TTNorms-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNorms-ExtraBold.woff2") format("woff2"), url("../fonts/TTNorms-ExtraBold.woff") format("woff"), url("../fonts/TTNorms-ExtraBold.ttf") format("truetype");
   font-weight: 800;
   font-style: normal;
}
/***** Variables *****/
/***** Main Settings *****/
nav ul {
   display: flex;
}

a,
input,
button,
textarea,
select {
   transition: 0.5s;
}
a:focus,
input:focus,
button:focus,
textarea:focus,
select:focus {
   outline: none;
}

a {
   color: #000;
}
a:hover {
   text-decoration: none;
}

a,
span,
b {
   display: inline-block;
}

ul {
  
   list-style: none;
}

label,
select {
   cursor: pointer;
}

textarea {
   resize: none;
}

/*label {
   margin-bottom: 0;
   line-height: 1;
   -webkit-user-select: none;
           user-select: none;
}*/
.download_text p{
   margin-bottom: 1rem;
}
button {
   padding: 0;
   border: none;
   background-color: unset;
   cursor: pointer;
   -webkit-user-select: none;
           user-select: none;
}

input[type=submit] {
   border: none;
}

br {
   -webkit-user-select: none;
           user-select: none;
}

svg,
path,
rect {
   transition: 0.3s;
}

/***** Animations *****/
@keyframes fadeInUp {
   from {
      transform: translate3d(0, 100%, 0);
      opacity: 0;
   }
   to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
   }
}
@keyframes zoomOut {
   from {
      opacity: 1;
   }
   50% {
      transform: scale3d(0.3, 0.3, 0.3);
      opacity: 0;
   }
   to {
      opacity: 0;
   }
}
/***** Class Events *****/
#wrapper {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
   overflow: hidden;
}

#overlay {
   position: fixed;
   display: none;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: rgba(0, 0, 0, 0.8);
   z-index: 10;
}

.js-overflow {
   overflow: hidden;
}

.fadeInUp {
   animation-name: fadeInUp;
}

.zoomOut {
   animation-name: zoomOut;
}

/***** Other Settings *****/
#back-to-top {
   display: none;
   position: fixed;
   right: 23px;
   bottom: 17px;
   width: 43px;
   height: 43px;
   border-radius: 50%;
   overflow: hidden;
   background-color: rgba(255, 255, 255, 0.5);
   animation-duration: 1s;
   animation-fill-mode: both;
   z-index: 12;
}
#back-to-top svg {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}
#back-to-top svg path {
   fill: #ffcd00;
}
#back-to-top:after {
   content: "";
   position: absolute;
   top: 0;
   left: -80px;
   width: 0;
   height: 100%;
   transform: skewX(-55deg);
   opacity: 0.2;
   background-color: #ffcd00;
   transition: 0.3s;
   z-index: -1;
}
#back-to-top:hover {
   background-color: rgba(255, 255, 255, 0);
   border-color: #fff;
}
#back-to-top:hover path {
   fill: #fff;
}
#back-to-top:hover:after {
   left: -25px;
   width: 200%;
   opacity: 1;
}

/***** Styles *****/
body {
   font-family: "TT Norms", sans-serif;
}

#wrapper {
   padding-top: 125px;
}

.btn {
   padding: 20px 40px;
   font-size: 16px;
   font-weight: 700;
   text-align: center;
   background-color: #ffcd00;
   color: #000;
}
.btn:hover {
   color: #000;
   box-shadow: 0 6px 18px 0px rgba(255, 205, 0, 0.7);
}

.title h2 {
   font-size: 36px;
   font-weight: 700;
   color: #000;
}


.main {
   flex-grow: 1;
}
.main .head {
   padding-top: 40px;
   padding-bottom: 100px;
   background-color: #fff;
}
.main .head__content .head__block {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
}
.main .head__content .head__block:nth-child(2) {
   align-items: center;
   margin-top: 47px;
}
.main .head__content .head__block .head__text {
   width: 49%;
   margin-top: 78px;
}
.main .head__content .head__block .head__text h1 {
   margin-bottom: 80px;
   font-size: 36px;
   font-weight: 800;
   color: #000;
}
.main .head__content .head__block .head__text h1 span {
   color: #fecc0f;
}
.main .head__content .head__block .head__text ul li {
   position: relative;
   padding-left: 48px;
   font-size: 19px;
   font-weight: 500;
   color: #000;
}
.main .head__content .head__block .head__text ul li:not(:last-child) {
   margin-bottom: 20px;
}
.main .head__content .head__block .head__text ul li:before {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   width: 35px;
   height: 12px;
   background: url("../img/head/icon-decor.png") center/cover no-repeat;
}
.main .head__content .head__block .head__text button {
   margin-top: 85px;
}
.main .head__content .head__block .head__img {
   position: relative;
   width: 49%;
}
.main .head__content .head__block .head__img img {
   width: 100%;
}
.main .head__content .head__block .head__img p {
   font-size: 21px;
   font-weight: 300;
   color: #000;
}
.main .head__content .head__block .head__box {
   display: flex;
   align-items: center;
   width: calc(100% / 3 - 20px);
   min-height: 166px;
   padding: 15px;
   border: 1px solid #9d9d9c;
}
.main .head__content .head__block .head__box .head__texts {
   margin-left: 20px;
}
.main .head__content .head__block .head__box .head__texts b {
   margin-bottom: 10px;
   font-size: 20px;
   font-weight: 500;
   line-height: 22px;
   color: #000;
}
.main .head__content .head__block .head__box .head__texts p {
   font-size: 16px;
   font-weight: 300;
   line-height: 20px;
   color: #7f7e7c;
}
.main .head__content .head__block .head__guar {
   position: absolute;
   top: 25px;
   left: 25px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 105px;
   height: 105px;
   border-radius: 50%;
   font-size: 14px;
   font-weight: 500;
   text-align: center;
   line-height: 24px;
   background-color: #ffcd00;
   color: #000;
}
.main .head__content .head__block .head__guar b {
   font-size: 27px;
   font-weight: 700;
}
.main .system-land {
   padding-top: 105px;
   padding-bottom: 70px;
   background-color: #f7f7f7;
}
.main .system__title {
   margin-bottom: 115px;
}
.main .system__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .system__content .systeam__box {
   display: flex;
   align-items: center;
   width: calc(100% / 4 - 20px);
   min-height: 106px;
   margin-bottom: 20px;
   padding: 15px;
   background-color: #fff;
}
.main .system__content .systeam__box b {
   margin-left: 3px;
   font-size: 16px;
   font-weight: 500;
   line-height: 20px;
   color: #000;
}
.main .advan {
   padding-top: 70px;
   padding-bottom: 200px;
   background-color: #fff;
}
.main .advan__title {
   margin-bottom: 60px;
}
.main .advan__content .advan__block .advan__box {
   display: flex;
   align-items: center;
}
.main .advan__content .advan__block .advan__box:not(:last-child) {
   margin-bottom: 55px;
}
.main .advan__content .advan__block .advan__box .advan__text {
   margin-left: 30px;
}
.main .advan__content .advan__block .advan__box .advan__text b {
   font-size: 22px;
   font-weight: 700;
   color: #000;
}
.main .advan__content .advan__block .advan__box .advan__text p {
   font-size: 18px;
   font-weight: 300;
   color: #000;
}
.main .advan__content .advan__button {
   margin-top: 60px;
}
.main .series {
   padding-top: 90px;
   padding-bottom: 100px;
   background-color: #e3e3e3;
}
.main .series__title {
   margin-bottom: 100px;
}
.main .series__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .series__content .series__box {
   width: calc(100% / 3 - 20px);
   text-align: center;
}
.main .series__content .series__box .series__top {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   min-height: 526px;
   padding: 30px 20px;
   background-color: #fff;
}
.main .series__content .series__box .series__top .series__img {
   display: flex;
   align-items: center;
   height: 400px;
}
.main .series__content .series__box .series__top img {
   width: 100%;
}
.main .series__content .series__box .series__top p {
   font-size: 19px;
   font-weight: 500;
   line-height: 22px;
   color: #000;
}
.main .series__content .series__box span {
   margin-top: 23px;
   margin-bottom: 20px;
   font-size: 16px;
   font-weight: 700;
   color: #000;
}
.main .series__content .series__box a {
   width: 100%;
   text-align: center;
}
.main .perfo {
   padding-top: 87px;
   padding-bottom: 55px;
   background-color: #fff;
}
.main .perfo__title {
   margin-bottom: 72px;
}
.main .perfo__content .perfo__block {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
   margin-bottom: 90px;
}
.main .perfo__content .perfo__block .perfo__box {
   width: calc(100% / 3 - 25px);
   text-align: center;
}
.main .perfo__content .perfo__block .perfo__box:nth-child(1) img {
   margin-left: auto;
}
.main .perfo__content .perfo__block .perfo__box:nth-child(2) img {
   margin-left: auto;
   margin-right: auto;
}
.main .perfo__content .perfo__block .perfo__box:nth-child(3) img {
   margin-right: auto;
}
.main .perfo__content .perfo__block .perfo__box img {
   display: block;
   width: 130px;
   height: 130px;
   border-radius: 50%;
   border: 5px solid #ffcd00;
   overflow: hidden;
   object-fit: cover;
}
.main .perfo__content .perfo__block .perfo__box b {
   margin-top: 35px;
   font-size: 24px;
   font-weight: 700;
   color: #000;
}
.main .perfo__content .perfo__bottom {
   margin-bottom: 150px;
}
.main .perfo__content .perfo__bottom h3 {
   font-size: 30px;
   font-weight: 700;
   color: #000;
}
.main .perfo__content .perfo__bottom .perfo__wrap {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   margin-top: 80px;
}
.main .perfo__content .perfo__bottom .perfo__wrap img {
   width: 50%;
   height: 206px;
   margin-right: 40px;
   object-fit: cover;
}
.main .perfo__content .perfo__bottom .perfo__wrap p {
   display: inline-block;
   width: 90%;
   font-size: 23px;
   font-weight: 300;
   color: #000;
}
.main .perfo__content .perfo__button a {
   padding-left: 120px;
   padding-right: 120px;
}
.main .downl {
   max-width: 1920px;
   margin-left: auto;
   margin-right: auto;
   padding-left: 0 !important;
   padding-right: 0 !important;
}
.main .downl__content {
   display: flex;
}
.main .downl__content .downl__block {
   width: 60%;
}
.main .downl__content .downl__block:first-child {
   padding: 60px 35px 100px;
   background: #2b2a29 url("../img/download/download-img.jpg") bottom right/auto no-repeat;
}
.main .downl__content .downl__block:nth-child(2) {
   width: 40%;
   padding: 80px 60px 20px;
   background-color: #f6f6f6;
}
.main .downl__content .downl__block h2 {
   margin-bottom: 40px;
   font-size: 30px;
   font-weight: 700;
   color: #fff;
}
.main .downl__content .downl__block ul li {
   position: relative;
   padding-left: 60px;
   font-size: 17px;
   font-weight: 700;
   color: #fff;
}
.main .downl__content .downl__block ul li:not(:last-child) {
   margin-bottom: 15px;
}
.main .downl__content .downl__block ul li:before {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   width: 35px;
   height: 12px;
   background: url("../img/head/icon-decor.png") center/cover no-repeat;
}
.main .downl__content .downl__block form input {
   width: 100%;
   padding: 15px 18px;
   border: 1px solid #bdbdbd;
   font-size: 25px;
   font-weight: 300;
   background-color: #fff;
   color: #9c9c9c;
}
.main .downl__content .downl__block form span {
   margin-top: 100px;
   font-size: 14px;
   font-weight: 400;
   line-height: 20px;
   color: #a0a0a0;
}
.main .downl__content .downl__block form span a {
   color: #017bff;
}
.main .downl__content .downl__block form span a:hover {
   text-decoration: underline;
}
.main .downl__content .downl__block form i {
   display: none;
   font-size: 16px;
   font-style: normal;
   font-weight: 300;
   color: #fff;
}
.main .downl__content .downl__block form a.btn {
   width: 100%;
   margin-top: 25px;
   text-align: center;
}
.main .spare {
   padding-top: 80px;
   padding-bottom: 95px;
   background: #f7f7f7 url("../img/spare/spare-bg.jpg") center bottom/auto no-repeat;
}
.main .spare__title {
   margin-bottom: 150px;
}
.main .spare__title h2 {
   margin-bottom: 30px;
   line-height: 42px;
}
.main .spare__title p {
   font-size: 18px;
   font-weight: 300;
   color: #000;
}
.main .spare__content h5 {
   margin-bottom: 65px;
   font-size: 28px;
   font-weight: 700;
   line-height: 22px;
   text-align: center;
   color: #000;
}
.main .spare__content .spare__wrap {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   padding-right: 100px;
   padding-left: 100px;
}
.main .spare__content .spare__wrap .spare__box {
   width: calc(100% / 3 - 100px);
   text-align: center;
}
.main .spare__content .spare__wrap .spare__box span {
   display: block;
   margin-top: 15px;
   font-size: 18px;
   font-weight: 400;
   color: #000;
}
.main .spare__content .spare__button {
   margin-top: 60px;
   text-align: center;
}
.main .spare__content .spare__button button {
   padding-left: 75px;
   padding-right: 75px;
}
.main .test {
   padding-top: 80px;
   padding-bottom: 90px;
   background-color: #fff;
}
.main .test__title {
   margin-bottom: 55px;
   text-align: center;
}
.main .test__title h2 {
   margin-bottom: 35px;
   font-size: 38px;
   font-weight: 700;
   color: #000;
}
.main .test__title p {
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .test__content {
   text-align: center;
}
.main .test__content h5 {
   margin-bottom: 20px;
   font-size: 23px;
   font-weight: 700;
   color: #000;
}
.main .test__content p {
   font-size: 16px;
   font-weight: 300;
   color: #000;
}
.main .test__content form {
   display: flex;
   flex-direction: column;
   width: 400px;
   margin-left: auto;
   margin-right: auto;
   margin-top: 55px;
}
.main .test__content form input {
   margin-bottom: 10px;
   padding: 10px 20px;
   border: none;
   font-size: 18px;
   font-weight: 300;
   color: #000;
   background-color: #e3e3e3;
}
.main .test__content form input::placeholder {
   opacity: 1;
   color: #9c9c9c;
}
.main .test__content form input:-ms-input-placeholder {
   color: #9c9c9c;
}
.main .test__content form input::-ms-input-placeholder {
   color: #9c9c9c;
}
.main .test__content form button {
   margin-top: 25px;
}
.main .test__content span {
   margin-top: 55px;
   font-size: 16px;
   font-weight: 300;
   color: #9c9c9c;
}
.main .matr__text ul{
   padding-left:0;
}
.main .downl__block ul{
   padding-left:0; 
}
.inf {
   max-width: 1000px !important;
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
   float: left;
}
.col-xs-12 {
   width: 100%;
}
.inf .ttt {
   font-size: 12px;
   max-width: 50%;
   float: left;
    padding: 10px;
}
.q-w-hr, .q-w-result-view-img, .q-w-public-logo{
   display: none!important;
}
.head__res ul{
   padding-left: 0;
}
.q-w-send{
   display: block!important;
    width: 100%!important;
    padding: 10px!important;
    max-width: 300px!important;
    font-size: 14px!important;
    flex: unset!important;
    background-color: #ffcd00!important;
    color: #000!important;
    border: none!important;
}
.q-w-close{
   border: none!important;
   background-color: unset!important; 
}
.q-w-public-next{
   background-color: #ffcd00!important;
   color: #000!important;  
   border: none!important;
}
.q-w-progress-bg .item.active {
   background-color: #ffcd00!important;
}
.q-w-public-left{
   display: block!important;
   width: 100%!important;
   flex: unset!important;
   margin-bottom: 0!important;
}
.q-w-public-description{
   display: block!important;
    width: 100%!important;
    flex: unset!important;
}
@media (max-width: 1200px){
.col-lg-5 {
    width: 41.66666667%;
}
.inf .ttt {
   font-size: 12px;
   max-width: 100%;
}
}
.main .matr {
   padding: 35px;
   background-color: #f7f7f7;
}
.main .matr__content {
   display: flex;
}
.main .matr__content .matr__text {
   width: 65%;
}
.main .matr__content .matr__text h2 {
   margin-bottom: 55px;
   font-size: 36px;
   font-weight: 700;
   color: #000;
}
.main .matr__content .matr__text ul li {
   position: relative;
   padding-left: 60px;
   font-size: 17px;
   font-weight: 700;
   color: #000;
}
.main .matr__content .matr__text ul li:not(:last-child) {
   margin-bottom: 15px;
}
.main .matr__content .matr__text ul li:before {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   width: 35px;
   height: 12px;
   background: url("../img/head/icon-decor.png") center/cover no-repeat;
}
.main .matr__content .matr__form {
   width: 35%;
}
.main .matr__content .matr__form form input {
   width: 100%;
   margin-bottom: 28px;
   padding: 17px 20px;
   border: 1px solid #9d9d9c;
   font-size: 18px;
   font-weight: 300;
   background-color: #fff;
   color: #9c9c9c;
}
.main .matr__content .matr__form form button {
   width: 100%;
}
.main .matr__content .matr__form span {
   margin-top: 40px;
   font-size: 16px;
   font-weight: 300;
   color: #9c9c9c;
}
.main .matr__content .matr__form span a {
   color: #000;
}
.main .matr__content .matr__form span a:hover {
   text-decoration: underline;
}
.main .clock {
   padding-top: 80px;
   padding-bottom: 60px;
   background-color: #fff;
}
.main .clock__title {
   margin-bottom: 65px;
}
.main .clock__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .clock__content .clock__text {
   width: 47%;
}
.main .clock__content .clock__text h4 {
   margin-bottom: 40px;
   font-size: 30px;
   font-weight: 700;
   color: #000;
}
.main .clock__content .clock__text > p {
   margin-bottom: 25px;
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .clock__content .clock__text .clock__box {
   display: flex;
   align-items: center;
   margin-bottom: 60px;
   margin-left: -20px;
}
.main .clock__content .clock__text .clock__box p {
   margin-left: 8px;
   font-size: 16px;
   font-weight: 300;
   color: #000;
}
.main .clock__content .clock__img {
   width: 50%;
}
.main .clock__content .clock__img img {
   width: 100%;
}
.main .spec {
   padding-top: 88px;
   padding-bottom: 90px;
   background-color: #f7f7f7;
}
.main .spec__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .spec__content .spec__img {
   width: 40%;
}
.main .spec__content .spec__img img {
   width: 100%;
}
.main .spec__content .spec__text {
   width: 55%;
}
.main .spec__content .spec__text h3 {
   margin-bottom: 60px;
   font-size: 30px;
   font-weight: 700;
   color: #000;
}
.main .spec__content .spec__text ul {
   margin-bottom: 25px;
}
.main .spec__content .spec__text li,
.main .spec__content .spec__text p {
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .spec__content .spec__text a {
   margin-top: 30px;
}
.main .tech {
   padding-top: 100px;
   padding-bottom: 70px;
}
.main .tech__title {
   margin-bottom: 105px;
}
.main .tech__title h2 {
   font-size: 35px;
   font-weight: 700;
   color: #000;
}
.main .tech__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .tech__content .tech__text {
   width: 52%;
}
.main .tech__content .tech__text p {
   margin-bottom: 25px;
   font-size: 21px;
   font-weight: 300;
   color: #000;
}
.main .tech__content .tech__text a {
   margin-top: 40px;
}
.main .tech__content .tech__img {
   width: 45%;
}
.main .tech__content .tech__img iframe {
   width: 100%;
   height: 300px;
   border: 5px solid #ffcd00;
}
.main .real {
   padding-top: 70px;
   padding-bottom: 65px;
}
.main .real__title {
   margin-bottom: 75px;
}
.main .real__title span {
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .real__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .real__content .real__block {
   display: flex;
   flex-direction: column;
   position: relative;
   width: calc(100% / 2 - 20px);
}
.main .real__content .real__block .real__img {
   position: relative;
}
.main .real__content .real__block .mobile-text {
   display: none;
   margin-top: 40px;
   font-size: 18px;
   font-weight: 300;
   color: #000;
}
.main .real__content .real__block img {
   width: 100%;
   height: 346px;
   object-fit: cover;
}
.main .real__content .real__block h6 {
   margin-top: 30px;
   font-size: 25px;
   font-weight: 300;
   color: #000;
}
.main .real__content .real__block b {
   margin-top: 35px;
   margin-bottom: 25px;
   font-size: 18px;
   font-weight: 500;
   color: #000;
}
.main .real__content .real__block ul {
   padding-left: 20px;
   list-style: decimal;
}
.main .real__content .real__block li,
.main .real__content .real__block p {
   font-size: 18px;
   font-weight: 300;
   color: #000;
}
.main .video {
   padding-top: 50px;
   padding-bottom: 50px;
   background-color: #f7f7f7;
   text-align: center;
}
.main .video__title {
   margin-bottom: 40px;
}
.main .video__title h2 {
   font-size: 29px;
   font-weight: 700;
   color: #000;
}
.main .video__content iframe {
   width: 575px;
   height: 330px;
}
.main .video__content p {
   margin-top: 50px;
   font-size: 29px;
   font-weight: 300;
   color: #000;
}
.main .ques {
   padding-top: 110px;
   padding-bottom: 100px;
   background-color: #fff;
}
.main .ques__content {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   justify-content: space-between;
}
.main .ques__content .ques__author {
   width: 40%;
}
.main .ques__content .ques__author img {
   width: 100%;
}
.main .ques__content .ques__author .ques__text {
   position: relative;
   margin-top: 50px;
   padding-left: 30px;
}
.main .ques__content .ques__author .ques__text:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   width: 6px;
   background-color: #ffcd00;
}
.main .ques__content .ques__author .ques__text b {
   margin-bottom: 25px;
   font-size: 22px;
   font-weight: 500;
   color: #000;
}
.main .ques__content .ques__author .ques__text ul li {
   font-size: 19px;
   font-weight: 300;
   color: #000;
}
.main .ques__content .ques__form {
   width: 55%;
}
.main .ques__content .ques__form h2 {
   margin-bottom: 60px;
   font-size: 29px;
   font-weight: 500;
   line-height: 33px;
}
.main .ques__content .ques__form h2 b {
   font-weight: 700;
}
.main .ques__content .ques__form p {
   margin-bottom: 30px;
   font-size: 22px;
   font-weight: 300;
   color: #000;
}
.main .ques__content .ques__form form {
   width: 70%;
   margin-top: 70px;
   text-align: center;
}
.main .ques__content .ques__form form input {
   display: block;
   width: 100%;
   margin-bottom: 10px;
   padding: 14px 20px;
   border: none;
   font-size: 18px;
   font-weight: 300;
   background-color: #e3e3e3;
   color: #000;
}
.main .ques__content .ques__form form input::placeholder {
   opacity: 1;
   color: #9c9c9c;
}
.main .ques__content .ques__form form input:-ms-input-placeholder {
   color: #9c9c9c;
}
.main .ques__content .ques__form form input::-ms-input-placeholder {
   color: #9c9c9c;
}
.main .ques__content .ques__form form button {
   width: 100%;
   margin-top: 30px;
}
.main .ques__content .ques__form form span {
   margin-top: 50px;
   font-size: 16px;
   font-weight: 300;
   color: #e3e3e3;
}
.main .certi {
   padding-top: 95px;
   padding-bottom: 130px;
   background-color: #f7f7f7;
}
.main .certi__title {
   margin-bottom: 70px;
   text-align: center;
}
.main .certi__title h2 {
   font-size: 29px;
   font-weight: 700;
   color: #000;
}
.main .certi__content {
   position: relative;
}
.main .certi__content .certi__box img {
   width: 100%;
   cursor: pointer;
}
.main .certi__content .swiper-pagination {
   bottom: -55px;
   left: 50%;
   transform: translateX(-50%);
}
.main .certi__content .swiper-pagination span {
   margin-right: 10px;
   background-color: #bdbdbd;
}
.main .certi__content .swiper-pagination span:focus {
   outline: none;
}
.main .part {
   padding-top: 90px;
   padding-bottom: 110px;
   background-color: #fff;
}
.main .part__title {
   margin-bottom: 40px;
   text-align: center;
}
.main .part__title h2 {
   font-size: 29px;
   font-weight: 700;
   color: #000;
}
.main .part__content {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
}
.main .part__content .partners__box {
   width: calc(100% / 6 - 20px);
   margin-bottom: 45px;
   text-align: center;
}
.main .part__content .partners__box img {
   max-width: 100%;
}
.main .revi {
   padding-bottom: 90px;
   background-color: #fff;
}
.main .revi__title {
   margin-bottom: 75px;
   text-align: center;
}
.main .revi__title h2 {
   font-size: 29px;
   font-weight: 700;
   color: #000;
}
.main .revi__content .swiper-container {
   width: 60%;
   margin-left: auto;
   margin-right: auto;
}
.main .revi__content .revi__box {
   text-align: center;
}
.main .revi__content img {
   width: 460px;
   height: 630px;
   object-fit: cover;
   cursor: pointer;
}
.main .revi__content .swiper-button-next,
.main .revi__content .swiper-button-prev {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background-color: #fecc0f;
}
.main .revi__content .swiper-button-next:after,
.main .revi__content .swiper-button-prev:after {
   font-size: 20px;
   font-weight: 700;
   color: #fff;
}

.footer {
   flex-shrink: 0;
   padding-top: 50px;
   border-top: 2px solid #ebebeb;
}
.footer__content .footer__top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 35px;
}
.footer__content .footer__top .footer__logo span {
   display: block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #000;
}
.footer__content .footer__top p {
   width: calc(100% / 4 - 10px);
   font-size: 14px;
   font-weight: 400;
   line-height: 17px;
   color: #000;
}
.footer__content .footer__top .footer__info a {
   display: block;
   font-size: 14px;
   font-weight: 400;
   line-height: 16px;
   color: #000;
}
.footer__content .footer__top .footer__info a:first-child {
   margin-bottom: 10px;
   font-weight: 700;
}
.footer__content .footer__top .footer__info a:hover {
   text-decoration: underline;
}
.footer__content .footer__bottom {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 10px;
   padding-bottom: 10px;
   background-color: #c4c4c4;
}
.footer__content .footer__bottom:before {
   content: "";
   position: absolute;
   top: 0;
   left: -50vw;
   bottom: 0;
   width: 150vw;
   height: 100%;
   background-color: #c4c4c4;
}
.footer__content .footer__bottom > * {
   position: relative;
}
.footer__content .footer__bottom span,
.footer__content .footer__bottom a {
   display: block;
   font-size: 12px;
   font-weight: 400;
   line-height: 14px;
   color: #212529;
}
.footer__content .footer__bottom a:hover {
   text-decoration: underline;
}

.popup-thanks {
	display: none;
    position: relative;
	background-color: #fff;
        padding: 33px 55px;
    text-align: center;
    border-top: 5px solid #ffcd00;
}
.popup-thanks h2 {
	font-size: 24px;
	color: #000;
	font-weight: 700;
}


/***** Responsive *****/
@media (max-width: 1200px) {
   .header__content .header__wrap .phone {
      font-size: 18px;
   }

   .header__content .header__wrap a:first-child {
      margin-right: 65px;
   }

   .header__content .header__wrap .email {
      font-size: 16px;
   }

   .header__content .header__wrap button {
      margin-left: 30px;
      padding-right: 20px;
      padding-left: 20px;
   }

   .main .head__content .head__block .head__box {
      flex-direction: column;
      justify-content: center;
      min-height: 232px;
      text-align: center;
   }
   .main .head__content .head__block .head__box img {
      margin-bottom: 15px;
   }

   .main .system__content .systeam__box {
      width: calc(100% / 2 - 20px);
   }

   .main .advan {
      padding-bottom: 100px;
   }

   .main .series__content .series__box {
      width: calc(100% / 2 - 20px);
      margin-bottom: 40px;
   }

   .main .spare__content .spare__wrap .spare__box {
      width: calc(100% / 3 - 40px);
   }
}
@media (max-width: 991px) {
   .header__content .header__wrap a {
      display: none;
   }

   .main .head__content .head__block {
      flex-direction: column;
   }

   .main .head__content .head__block .head__text {
      width: 100%;
      margin-bottom: 50px;
   }

   .main .head__content .head__block .head__img {
      width: 100%;
   }
   .main .head__content .head__block .head__img img {
      display: block;
      width: 70%;
      margin-left: auto;
      margin-right: auto;
   }

   .main .head__content .head__block .head__box {
      flex-direction: row;
      justify-content: flex-start;
      width: 100%;
      min-height: 126px;
      margin-bottom: 15px;
      text-align: left;
   }
   .main .head__content .head__block .head__box img {
      min-width: 70px;
      margin-bottom: 0;
      object-fit: none;
   }

   .main .system__title {
      margin-bottom: 70px;
   }

   .main .matr__content {
      flex-direction: column;
   }

   .main .matr__content .matr__text {
      width: 100%;
   }

   .main .matr__content .matr__form {
      width: 100%;
      margin-top: 50px;
   }

   .main .spare__content .spare__wrap {
      padding-right: 0;
      padding-left: 0;
   }

   .main .perfo__content .perfo__bottom .perfo__wrap {
      flex-direction: column;
   }

   .main .spare__content .spare__wrap .spare__box {
      width: calc(100% / 3 - 10px);
   }

   .main .clock__content .clock__text {
      width: 100%;
   }

   .main .clock__content .clock__img {
      width: 100%;
      margin-top: 50px;
      text-align: center;
   }
   .main .clock__content .clock__img img {
      width: 60%;
   }

   .main .spec__content .spec__img {
      width: 100%;
      margin-bottom: 50px;
      text-align: center;
   }
   .main .spec__content .spec__img img {
      width: 70%;
   }

   .main .spec__content .spec__text {
      width: 100%;
   }

   .main .tech__content .tech__text {
      width: 100%;
   }

   .main .tech__content .tech__img {
      width: 100%;
      margin-top: 50px;
   }
   .main .tech__content .tech__img iframe {
      height: 380px;
   }

   .main .real {
      padding-top: 40px;
   }

   .main .video__content p {
      font-size: 22px;
   }

   .main .ques__content .ques__author {
      width: 100%;
   }
   .main .ques__content .ques__author img {
      display: block;
      width: 70%;
      margin-left: auto;
      margin-right: auto;
   }

   .main .ques__content .ques__form {
      width: 100%;
      margin-top: 50px;
   }

   .main .part {
      padding-bottom: 80px;
   }

   .main .part__content .partners__box {
      width: calc(100% / 4 - 20px);
   }

   .main .revi__content .swiper-container {
      width: 90%;
   }

   .footer__content .footer__top p {
      display: none;
   }
}
@media (min-width: 768px) {
   .header .header__content .header__hamburger {
      display: none;
   }
}
@media (max-width: 767px) {
   #wrapper {
      padding-top: 85px;
   }

   .header {
      padding-top: 20px;
      padding-bottom: 20px;
      background-color: #fff;
      box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
   }
   .header .header__content .header__wrap {
      position: fixed;
      display: block;
      align-items: unset;
      justify-content: unset;
      flex-basis: unset;
      top: 0;
      left: -110vh;
      width: 280px;
      height: 100vh;
      padding: 50px 10px 20px 10px;
      opacity: 0;
      overflow-y: auto;
      background-color: #fff;
      transition: 0.3s;
   }
   .header .header__content .header__wrap.js-open {
      left: 0;
      opacity: 1;
      box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
   }

   .header__content .header__wrap a {
      display: block;
      margin-left: 45px;
      margin-top: 25px;
   }

   .header__content .header__wrap button {
      width: 100%;
      margin-left: 0;
      margin-top: 35px;
   }

   .main .head__content .head__block .head__text {
      margin-top: 0;
   }

   .main .system__content .systeam__box {
      width: 100%;
   }

   .main .series__content .series__box {
      width: 100%;
   }

   .main .perfo__content .perfo__block .perfo__box {
      width: 100%;
      margin-bottom: 40px;
   }
   .main .perfo__content .perfo__block .perfo__box img {
      margin-right: auto !important;
      margin-left: auto !important;
   }
   .main .perfo__content .perfo__block .perfo__box b {
      margin-top: 15px;
   }

   .main .perfo__content .perfo__bottom {
      margin-bottom: 50px;
   }

   .main .downl__content {
      flex-direction: column;
   }

   .main .downl__content .downl__block {
      width: 100% !important;
   }

   .main .real__content .real__block {
      width: 100%;
      margin-bottom: 60px;
   }

   .main .ques__content .ques__form form {
      width: 100%;
   }

   .main .part {
      padding-bottom: 40px;
   }

   .main .part__content .partners__box {
      width: calc(100% / 3 - 20px);
   }

   .main .revi__content .swiper-container {
      width: 100%;
   }

   .footer__content .footer__bottom {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
   }

   .footer__copy {
      margin-bottom: 20px;
   }
}
@media (max-width: 575px) {
   .header .header__content .header__hamburger {
      right: 5px;
   }
   .header .header__content .header__wrap {
      width: 260px;
   }
}
@media (min-width: 426px) {
   .head__res .head__guar {
      display: none !important;
   }
}
@media (max-width: 425px) {
	.popup-thanks {
width: 95%;
padding-left: 20px;
padding-right: 20px;
}
.popup-thanks h2 {
font-size: 22px;
	}
   .head__res {
      position: relative;
   }
   .head__res .head__guar {
      left: unset !important;
      right: 25px !important;
   }

   .main .head__content .head__block .head__text h1 {
      font-size: 26px;
      line-height: 32px;
      text-align: center;
   }

   .main .head__content .head__block .head__text button {
      display: block;
      margin-top: 50px;
      margin-left: auto;
      margin-right: auto;
   }

   .main .head__content .head__block .head__img {
      display: none;
   }

   .main .head {
      padding-bottom: 30px;
   }

   .main .system-land {
      padding-top: 20px;
      padding-bottom: 20px;
   }

   .main .system__title {
      margin-bottom: 25px;
   }

   .main .system__content .systeam__box img {
      width: 87px;
      object-fit: none;
   }

   .main .advan {
      padding-top: 45px;
      padding-bottom: 25px;
   }

   .main .advan__content .advan__button {
      text-align: center;
   }

   .title h2 {
      font-size: 26px;
      line-height: 30px;
   }

   .main .advan__content .advan__block .advan__box:not(:last-child) {
      margin-bottom: 30px;
   }

   .main .advan__content .advan__block .advan__box .advan__text {
      margin-left: 15px;
   }

   .main .advan__content .advan__block .advan__box .advan__text b {
      font-size: 16px;
   }

   .main .advan__content .advan__block .advan__box .advan__text p {
      font-size: 16px;
   }

   .main .series {
      padding-top: 35px;
      padding-bottom: 45px;
   }

   .main .series__title {
      margin-bottom: 45px;
   }

   .main .perfo {
      padding-top: 50px;
      padding-bottom: 30px;
   }

   .main .perfo__title {
      margin-bottom: 50px;
   }

   .main .perfo__content .perfo__bottom .perfo__wrap p {
      display: none;
   }

   .main .perfo__content .perfo__block {
      margin-bottom: 50px;
   }

   .main .perfo__content .perfo__bottom .perfo__wrap {
      margin-top: 40px;
   }

   .main .perfo__content .perfo__bottom h3 {
      font-size: 18px;
      line-height: 20px;
   }

   .main .perfo__content .perfo__bottom .perfo__wrap img {
      width: 100%;
      height: auto;
      margin-right: 0;
   }

   .perfo__button {
      text-align: center;
   }

   .main .downl__content .downl__block:first-child {
      display: none;
   }

   .main .downl__content .downl__block form span {
      display: none;
   }

   .main .downl__content .downl__block form input {
		margin-bottom: 20px;
   }

   .main .downl__content .downl__block form i {
      display: block;
      text-align: center;
color: #000;
		margin-bottom: 15px;
   }

   .main .downl__content .downl__block form a.btn {
      margin-top: 33px;
   }

   .main .downl__content .downl__block:nth-child(2) {
      padding: 50px 15px 65px;
      background-color: #ececec;
   }

   .main .test__content form {
      width: 100%;
   }

   .main .matr {
      padding-top: 50px;
      padding-bottom: 50px;
   }

   .btn {
      width: 100% !important;
      padding-left: 20px;
      padding-right: 20px;
   }

   .main .spare__content .spare__wrap {
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }
   .main .spare__content .spare__wrap .spare__box {
      width: 100%;
      margin-bottom: 25px;
   }

   .main .spare {
      padding-top: 35px;
      padding-bottom: 45px;
   }

   .main .spare__title h2 {
      line-height: 28px;
   }
   .main .spare__title h2 br {
      display: none;
   }

   .main .spare__title p {
      font-size: 14px;
   }

   .main .spare__title {
      margin-bottom: 45px;
   }

   .main .clock__content {
      flex-direction: column-reverse;
   }

   .main .clock__content .clock__img {
      margin-bottom: 50px;
   }

   .main .clock__title {
      margin-bottom: 20px;
   }

   .main .spec__content .spec__text li, .main .spec__content .spec__text p {
      font-size: 22px;
   }

   .main .spec {
      padding-top: 50px;
      padding-bottom: 40px;
   }

   .main .tech__content {
      flex-direction: column-reverse;
   }

   .main .tech__title h2 {
      font-size: 30px;
      line-height: 34px;
   }

   .main .tech__content .tech__text {
      margin-top: 30px;
   }

   .main .real__content .real__block img {
      height: 250px;
   }

   .main .real__content .real__block h6 {
      font-size: 24px;
		margin-top: 10px;
	   margin-bottom: 30px;
      order: -1;
   }
	.main .real__content .real__block .real__img {
	 order: -2;
	}
   .main .real__content .real__block {
      margin-bottom: 50px;
   }

   .main .tech__title {
      margin-bottom: 0;
   }

   .main .real__content .real__block .mobile-text {
      display: block;
		margin-top: 0;
   }

   .main .tech__content .tech__img iframe {
      height: 250px;
   }

   .main .spec__content .spec__img img {
      width: 100%;
   }

   .main .spec__content .spec__text p {
      text-align: center;
   }

   .main .clock__content .clock__text .clock__box {
      flex-direction: column;
      text-align: center;
   }
   .main .clock__content .clock__text .clock__box img {
      width: 30%;
      margin-left: -20px;
   }

   .main .real__title span {
      margin-top: 15px;
   }

   .main .video__content iframe {
      width: 100%;
      height: 250px;
   }

   .main .video__content p {
      font-size: 18px;
   }

   .main .ques__content .ques__author img {
      width: 80%;
   }

   .certi__box {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
   }

   .main .part__content .partners__box {
      width: calc(100% / 2 - 20px);
   }

   .main .revi__content .revi__box {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
   }

   .main .revi__content img {
      width: 100%;
      height: 500px;
      object-fit: cover;
   }

   .main .revi {
      padding-bottom: 40px;
   }

   .footer__content .footer__top {
      flex-direction: column;
      align-items: flex-start;
   }

   .footer__content .footer__top p {
      display: block;
      width: 100%;
      margin-top: 35px;
   }

   .main .real {
      padding-bottom: 30px;
   }

   .main .ques {
      padding-top: 70px;
      padding-bottom: 50px;
   }

   .main .certi {
      padding-top: 50px;
      padding-bottom: 100px;
   }

   .main .part {
      padding-top: 50px;
   }

   .footer {
      padding-top: 30px;
   }

   .footer__info {
      margin-top: 30px;
   }

   #back-to-top {
      right: 15px;
      bottom: 15px;
   }

   .popup {
      width: 95%;
      padding: 25px 20px;
   }
   .popup .popup__close:before {
      display: none;
   }
   .popup .popup__content .popup__title {
      margin-bottom: 40px;
   }
   .popup .popup__content .popup__title h2 {
      font-size: 24px;
   }
   .popup .popup__content .popup__form .popup__input input,
.popup .popup__content .popup__form .popup__input textarea {
      font-size: 14px;
   }
   .popup .popup__content .popup__form .popup__robot label {
      font-size: 13px;
   }
   .popup .popup__content .popup__form button {
      padding-top: 9px;
      padding-bottom: 10px;
      font-size: 16px;
   }
}
@media (max-width: 360px) {
   .header .header__content .header__wrap {
      width: 240px;
   }

   .popup {
      padding: 25px 15px;
   }
   .popup .popup__content .popup__title h2 {
      font-size: 22px;
   }
}
/*# sourceMappingURL=style.css.map */