/***** 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 {
   padding-left: 0;
   list-style: none;
}

label,
select {
   cursor: pointer;
}

textarea {
   resize: none;
}

label {
   margin-bottom: 0;
   line-height: 1;
   -webkit-user-select: none;
           user-select: none;
}

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);
}

.btn-2 {
   height: 54px;
   padding: 9px 50px;
   border: 2px solid #bababa;
   font-size: 20px;
   font-weight: 700;
   color: #000;
}
.btn-2:hover {
   border-color: #ffcd00;
   background-color: #ffcd00;
   color: #000;
   box-shadow: 0 6px 18px 0px rgba(255, 205, 0, 0.7);
}

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

.headerlend {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   padding-top: 40px;
   padding-bottom: 40px;
   background-color: #fff;
   transition: 0.2s;
   z-index: 15;
}
.headerlend__content {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.headerlend__content .headerlend__wrap {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   flex-basis: 100%;
}
.headerlend__content .headerlend__wrap a {
   position: relative;
}
.headerlend__content .headerlend__wrap a:first-child {
   margin-right: 75px;
}
.headerlend__content .headerlend__wrap a:before {
   content: "";
   position: absolute;
   top: 50%;
   left: -43px;
   transform: translateY(-50%);
}
.headerlend__content .headerlend__wrap a:hover {
   color: #ffcd00;
}
.headerlend__content .headerlend__wrap .email {
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
   color: #000;
}
.headerlend__content .headerlend__wrap .email:before {
   width: 29px;
   height: 23px;
   background: url("../img/headerlend/icon-email.png") center/cover no-repeat;
}
.headerlend__content .headerlend__wrap .phone {
   font-size: 23px;
   font-weight: 500;
   color: #000;
}
.headerlend__content .headerlend__wrap .phone:before {
   width: 32px;
   height: 32px;
   background: url("../img/headerlend/icon-phone.png") center/cover no-repeat;
}
.headerlend__content .headerlend__wrap button {
   margin-left: 40px;
   padding: 6px 40px;
   border: 3px solid #ffcd00;
   font-size: 18px;
   font-weight: 400;
   color: #000;
}
.headerlend__content .headerlend__wrap button:hover {
   background-color: #ffcd00;
   color: #fff;
   box-shadow: 0 6px 18px 0px rgba(255, 205, 0, 0.7);
}
.headerlend__content .headerlend__hamburger {
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
   width: 41px;
   height: 28px;
   transition: 0.5s ease-in-out;
   z-index: 14;
   cursor: pointer;
}
.headerlend__content .headerlend__hamburger span {
   position: absolute;
   left: 0;
   transform: rotate(0);
   width: 100%;
   height: 3px;
   border-radius: 9px;
   background-color: #ffcd00;
   transition: 0.25s ease-in-out;
}
.headerlend__content .headerlend__hamburger span:nth-child(1) {
   top: 0;
}
.headerlend__content .headerlend__hamburger span:nth-child(2), .headerlend__content .headerlend__hamburger span:nth-child(3) {
   top: 12px;
}
.headerlend__content .headerlend__hamburger span:nth-child(4) {
   top: 24px;
}
.headerlend__content .headerlend__hamburger.js-open span:nth-child(1), .headerlend__content .headerlend__hamburger.js-open span:nth-child(4) {
   top: 18px;
   left: 50%;
   transform: scale(0) rotate(0);
   width: 0%;
}
.headerlend__content .headerlend__hamburger.js-open span:nth-child(2) {
   transform: rotate(45deg);
   background-color: #bbb;
}
.headerlend__content .headerlend__hamburger.js-open span:nth-child(3) {
   transform: rotate(-45deg);
   background-color: #bbb;
}
.headerlend.js-fixed {
   padding-top: 20px;
   padding-bottom: 20px;
   box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.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 .head.head-thr .head__content .head__block .head__text ul li:before {
   content: "";
   position: absolute;
   top: 15px;
   left: 0;
   width: 20px;
   height: 20px;
   background: url(../img/proj/decor2.png) center/cover no-repeat;
}
.main .head.head-thr .head__content .head__block {
   align-items: unset;
}
.main .head.head-thr .head__content .head__block .head__text {
   width: 60%;
}
.main .head.head-thr .head__content .head__block .head__img {
   display: flex;
   align-items: flex-end;
   width: 40%;
}
.main .system {
   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 .advan.advan-sec {
   padding-bottom: 70px;
}
.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;
}
.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 h4 {
   font-size: 35px;
   font-weight: 700;
   color: #000;
}
.main .spare__content .spare__button span {
   display: block;
   margin-bottom: 50px;
   font-size: 18px;
   font-weight: 400;
   color: #000;
}
.main .spare__content .spare__button button {
   padding-left: 75px;
   padding-right: 75px;
}
.main .spare__content .spare-l {
   text-align: left;
}
.main .spare__content .spare-l button:last-child {
   margin-left: 150px;
}
.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 {
   padding-top: 90px;
   padding-bottom: 80px;
   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 .clock.clock-sec .clock__title {
   margin-bottom: 30px;
}
.main .clock.clock-sec .clock__content .clock__img {
   text-align: right;
}
.main .clock.clock-sec .clock__content .clock__img img {
   width: 80%;
}
.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__text .tech__box {
   display: flex;
   align-items: center;
}
.main .tech__content .tech__text .tech__box:not(:last-child) {
   margin-bottom: 40px;
}
.main .tech__content .tech__text .tech__box .tech__p {
   margin-left: 30px;
}
.main .tech__content .tech__text .tech__box .tech__p b {
   font-size: 22px;
   font-weight: 700;
   line-height: 24px;
   color: #000;
}
.main .tech__content .tech__text .tech__box .tech__p p {
   margin-bottom: 0;
   font-size: 18px;
   font-weight: 300;
   color: #000;
}
.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 {
   position: relative;
   width: calc(100% / 2 - 20px);
}
.main .real__content .real__block .real__img {
   position: relative;
}
.main .real__content .real__block .real__img p {
   display: none;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   padding-top: 20px;
   padding-bottom: 20px;
   font-size: 12px;
   font-weight: 300;
   background-color: #ffcd00;
   color: #fff;
}
.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 .real.real-sec .real__content .real__block p {
   margin-bottom: 15px;
}
.main .real.real-sec .real__content .real__block b {
   display: block;
}
.main .real.real-sec .button {
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   margin-top: 75px;
}
.main .real.real-sec a.btn-2 {
   margin-left: 25px;
}
.main .real.real-sec a.btn {
   padding: 15px 50px;
}
.main .real.real-three .real__content {
   align-items: unset;
}
.main .real.real-three .real__content .real__block {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.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;
}
.main .head-sec .head__content .head__block .head__text {
   width: 40%;
   margin-top: 0;
}
.main .head-sec .head__content .head__block .head__img {
   width: 55%;
}
.main .head-sec .head__content .head__block .head__img iframe {
   width: 100%;
   height: 340px;
}
.main .dec {
   padding-bottom: 37px;
}
.main .dec__title {
   margin-bottom: 65px;
}
.main .dec__content {
   margin-bottom: 40px;
}
.main .dec__content .swiper-container {
   padding-top: 20px;
   padding-bottom: 40px;
}
.main .dec__content .dec__box {
   text-align: center;
}
.main .dec__content .dec__box b {
   font-size: 32px;
   font-weight: 700;
   color: #000;
   transition: 0.3s;
}
.main .dec__content .dec__box span {
   display: block;
   min-height: 66px;
   font-size: 18px;
   font-weight: 300;
   line-height: 22px;
   color: #000;
   transition: 0.3s;
}
.main .dec__content .dec__box img {
   width: 100%;
   height: 270px;
   margin-top: 25px;
   border: 5px solid #9d9d9c;
   transition: 0.5s;
}
.main .dec__content .swiper-button-next,
.main .dec__content .swiper-button-prev {
   display: none;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background-color: #fecc0f;
}
.main .dec__content .swiper-button-next:after,
.main .dec__content .swiper-button-prev:after {
   font-size: 20px;
   font-weight: 700;
   color: #fff;
}
.main .dec__content .swiper-slide-active {
   z-index: 5;
}
.main .dec__content .swiper-slide-active .dec__box b,
.main .dec__content .swiper-slide-active .dec__box span {
   transform: translateY(-25px);
}
.main .dec__content .swiper-slide-active .dec__box img {
   transform: scale(1.3);
}
.main .dec__button {
   text-align: center;
}
.main .proj {
   padding-top: 80px;
   padding-bottom: 100px;
}
.main .proj__title {
   margin-bottom: 50px;
}
.main .proj__title h2:first-child {
   margin-bottom: 10px;
}
.main .proj__title h2:last-child {
   margin-top: 40px;
}
.main .proj__content {
   margin-bottom: 100px;
}
.main .proj__content .proj__box {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}
.main .proj__content .proj__box .proj__text {
   width: 70%;
   margin-left: 120px;
   text-align: center;
}
.main .proj__content .proj__box .proj__text p {
   font-size: 40px;
   font-weight: 300;
   line-height: 44px;
   text-align: left;
   color: #000;
}
.main .proj__content .proj__box .proj__text a {
   margin-top: 15px;
   padding: 12px 70px;
}
.main .proj p {
   font-size: 28px;
   font-weight: 700;
   line-height: 32px;
   text-align: center;
   color: #000;
}
.main .raz__content {
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.main .raz__content ul {
   position: relative;
   width: 60%;
}
.main .raz__content ul:before {
   content: "";
   position: absolute;
   top: 22.5px;
   left: -15px;
   width: 2px;
   height: calc(100% - 45px);
   background-color: #9d9d9c;
}
.main .raz__content ul li {
   display: flex;
   align-items: center;
}
.main .raz__content ul li:not(:last-child) {
   margin-bottom: 3px;
}
.main .raz__content ul li span {
   position: relative;
   min-width: 160px;
   max-height: 45px;
   margin-right: 7px;
   padding: 1px 27px;
   border: 5px solid #9d9d9c;
   font-size: 22px;
   font-weight: 300;
   color: #000;
}
.main .raz__content ul li span:before {
   content: "";
   position: absolute;
   top: 50%;
   right: 100%;
   width: 20px;
   height: 2px;
   background-color: #9d9d9c;
}
.main .raz__content ul li p {
   font-size: 15px;
   font-weight: 300;
   color: #000;
}
.main .raz__content img {
   width: 40%;
}
.main .raz__button {
   margin-top: 55px;
   text-align: center;
}
.main .sup {
   padding-top: 100px;
   padding-bottom: 100px;
}
.main .sup__title {
   margin-bottom: 17px;
}
.main .sup__content {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
}
.main .sup__content .sup__text {
   width: 55%;
}
.main .sup__content .sup__text span {
   margin-bottom: 20px;
   font-size: 20px;
   font-weight: 300;
   line-height: 22px;
   color: #000;
}
.main .sup__content .sup__text b {
   font-size: 20px;
   font-weight: 700;
   line-height: 22px;
   color: #000;
}
.main .sup__content .sup__text .mbb {
   margin-bottom: 55px;
}
.main .sup__content .sup__text .sup__box {
   margin-bottom: 45px;
}
.main .sup__content .sup__text .sup__box b {
   position: relative;
   padding-left: 30px;
}
.main .sup__content .sup__text .sup__box b:before {
   content: "";
   position: absolute;
   top: 4px;
   left: 0;
   width: 20px;
   height: 20px;
   background: url("../img/proj/decor2.png") center/cover no-repeat;
}
.main .sup__content .sup__text .sup__box p,
.main .sup__content .sup__text .sup__box li {
   margin-top: 10px;
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .sup__content .sup__text .sup__box ul {
   margin-top: 10px;
}
.main .sup__content .sup__text .sup__box ul li {
   margin-top: 0;
}
.main .sup__content .sup__img {
   width: 40%;
}
.main .sup__content .sup__img img {
   width: 100%;
}
.main .sup__button {
   margin-top: 40px;
   text-align: center;
}
.main .opt__content img {
   width: 100%;
}
.main .opt__content h2 {
   margin-top: -60px;
   padding-right: 80px;
   font-size: 36px;
   font-weight: 700;
   line-height: 40px;
   color: #000;
}
.main .opt__content b {
   margin-top: 10px;
   margin-bottom: 35px;
   font-size: 20px;
   font-weight: 700;
   color: #000;
}
.main .opt__content p {
   position: relative;
   margin-bottom: 35px;
   padding-left: 30px;
   font-size: 20px;
   font-weight: 300;
   line-height: 22px;
   color: #000;
}
.main .opt__content p:before {
   content: "";
   position: absolute;
   top: 4px;
   left: 0;
   width: 20px;
   height: 20px;
   background: url("../img/proj/decor2.png") center/cover no-repeat;
}
.main .opt__content i {
   display: block;
   margin-right: auto;
   margin-left: auto;
   width: 70%;
   margin-top: 50px;
   font-size: 20px;
   font-weight: 400;
   text-align: center;
   color: #000;
}
.main .rea {
   padding-top: 60px;
}
.main .rea__title h2 {
   font-size: 36px;
   font-weight: 700;
   color: #000;
}
.main .rea__content .rea__proj {
   padding-bottom: 100px;
}
.main .rea__content b {
   margin-bottom: 85px;
   position: relative;
   font-size: 28px;
   font-weight: 300;
   color: #000;
}
.main .rea__content b:before {
   content: "";
   position: absolute;
   top: 12px;
   left: -25px;
   width: 20px;
   height: 20px;
   background: url(../img/proj/decor2.png) center/cover no-repeat;
}
.main .rea__content img {
   display: block;
   margin-left: auto;
   margin-right: auto;
}
.main .rea__content .rea__wrap {
   display: flex;
   justify-content: center;
   margin-top: 85px;
}
.main .rea__content .rea__wrap .rea__box {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   width: calc(100% / 4);
   text-align: center;
}
.main .rea__content .rea__wrap .rea__box:not(:last-child) {
   margin-right: 70px;
}
.main .rea__content .rea__wrap .rea__box i {
   display: inherit;
   font-style: italic;
   font-size: 13px;
   line-height: 16px;
}
.main .rea__content .rea__wrap .rea__box p {
   font-size: 14px;
   font-weight: 500;
   color: #000;
}
.main .rea__content .rea__wrap .rea__box a {
   margin-top: 45px;
   font-size: 23px;
   font-weight: 700;
   color: #000;
}
.main .rea__content .rea__wrap .rea__box a:hover {
   color: #ffcd00;
}
.main .rea__content .rea__button {
   text-align: center;
   margin-top: 55px;
}
.main .gid {
   padding-bottom: 60px;
   background-color: #fff;
}
.main .gid__title {
   margin-bottom: 20px;
}
.main .gid__title h2 {
   margin-bottom: 25px;
   font-size: 36px;
   font-weight: 700;
   color: #000;
}
.main .gid__title p {
   font-size: 17px;
   font-weight: 300;
   color: #000;
}
.main .gid__content {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
}
.main .gid__content .gid__text {
   width: 55%;
}
.main .gid__content .gid__text b {
   margin-bottom: 15px;
   font-size: 28px;
   font-weight: 700;
   color: #000;
}
.main .gid__content .gid__text p {
   margin-bottom: 30px;
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .gid__content .gid__img {
   width: 45%;
   text-align: center;
}
.main .gid__button {
   margin-top: 40px;
   text-align: center;
}
.main .chem {
   padding-top: 40px;
   padding-bottom: 50px;
   background-color: #f7f7f7;
}
.main .chem__title {
   width: 50%;
   margin-left: auto;
   margin-bottom: 25px;
}
.main .chem__title h2 {
   font-size: 30px;
   font-weight: 700;
   color: #000;
}
.main .chem__content {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
}
.main .chem__content .chem__img {
   width: 47%;
}
.main .chem__content .chem__img img {
   width: 100%;
}
.main .chem__content .chem__text {
   width: 50%;
}
.main .chem__content .chem__text p {
   margin-bottom: 35px;
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .chem__button {
   margin-top: 40px;
   text-align: center;
}
.main .dos {
   padding-top: 63px;
   padding-bottom: 20px;
   background-color: #fff;
}
.main .dos__title {
   margin-bottom: 35px;
}
.main .dos__title h2 {
   font-size: 36px;
   font-weight: 700;
   color: #000;
}
.main .dos__content {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
}
.main .dos__content .dos__text {
   width: 45%;
}
.main .dos__content .dos__img {
   width: 55%;
   text-align: center;
}
.main .dos__content p {
   margin-bottom: 25px;
   font-size: 20px;
   font-weight: 300;
   color: #000;
}
.main .dos__content .dec {
   position: relative;
}
.popup-thanks {
   display: none;
   position: relative;
   background-color: #fff;
   padding: 33px 55px;
   text-align: center;
   border-top: 5px solid #ffcd00;
}
.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;
}
.main .dos__content .dec:before {
   content: "";
   position: absolute;
   top: 12px;
   left: -25px;
   width: 20px;
   height: 20px;
   background: url(../img/proj/decor2.png) center/cover no-repeat;
}

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

.popup {
   display: none;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background-color: #fff;
   box-shadow: 0px 2px 13px 5px rgba(0, 0, 0, 0.2);
   z-index: 15;
}
.popup .popup__close {
   position: absolute;
   display: flex;
   align-items: center;
   justify-content: center;
   top: 5px;
   right: 15px;
   width: 25px;
   height: 25px;
   border-radius: 50%;
   overflow: hidden;
   cursor: pointer;
   -webkit-user-select: none;
           user-select: none;
   z-index: 10;
}
.popup .popup__close span {
   position: absolute;
   top: 9px;
   left: 2px;
   font-size: 30px;
   line-height: 0;
   color: #6f6f6f;
   transition: 0.3s;
}
.popup .popup__close:hover span {
   color: #000;
}
.popup .popup__over {
   display: none;
}
.popup .popup__content {
   width: 65vw;
   height: 90vh;
   padding: 60px 80px;
   text-align: center;
   overflow-y: auto;
}
.popup .popup__content b {
   font-size: 25px;
   font-weight: 700;
   color: #000;
}
.popup .popup__content p {
   font-size: 25px;
   font-weight: 300;
   color: #000;
}
.popup .popup__content p:not(:last-child) {
   margin-bottom: 35px;
}
.popup .popup__wrap {
   position: relative;
   max-width: 1400px;
   width: 85vw;
   padding: 40px 100px;
}
.popup .popup__wrap:before {
   content: "";
   position: absolute;
   top: 5px;
   right: 139px;
   width: 84px;
   height: 104px;
   background: url("../img/three/pop-logo.jpg") center/cover no-repeat;
}
.popup .popup__wrap .popup__proj {
   padding: 40px 40px;
}
.popup .popup__wrap .popup__proj .popup__tit {
   margin-bottom: 20px;
}
.popup .popup__wrap .popup__proj .popup__tit h2 {
   font-size: 34px;
   font-weight: 700;
   line-height: 42px;
}
.popup .popup__wrap .popup__cont {
   position: relative;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   padding-top: 35px;
   border-top: 1px solid #989898;
   overflow-y: auto;
   max-height: 750px;
}
.popup .popup__wrap .popup__cont:before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   width: 459px;
   height: 8px;
   background: url("../img/three/pop-decor.jpg") center/auto no-repeat;
}
.popup .popup__wrap .popup__cont:after {
   content: "";
   position: absolute;
   top: 8px;
   right: 0;
   width: 82px;
   height: 501px;
   background: url("../img/three/pop-right.jpg") center/auto no-repeat;
}
.popup .popup__wrap .popup__cont .popup__img {
   width: 49%;
}
.popup .popup__wrap .popup__cont .popup__img img {
   border: 4px solid #dcdcdc;
   box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.popup .popup__wrap .popup__cont .popup__textt {
   width: 49%;
   padding-right: 100px;
}
.popup .popup__wrap .popup__cont .popup__textt .decorrr {
   position: relative;
   margin-left: 27px;
}
.popup .popup__wrap .popup__cont .popup__textt .decorrr:before {
   content: "";
   position: absolute;
   top: 4px;
   left: -25px;
   width: 11px;
   height: 13px;
   background: url("../img/three/pop-mi.png") center/cover no-repeat;
}
.popup .popup__wrap .popup__cont .popup__textt b {
   margin-bottom: 20px;
   font-size: 18px;
   font-weight: 700;
   line-height: 20px;
}
.popup .popup__wrap .popup__cont .popup__textt p {
   margin-bottom: 20px;
}
.popup .popup__wrap .popup__cont .popup__textt p,
.popup .popup__wrap .popup__cont .popup__textt li {
   font-size: 16px;
   font-weight: 400;
   line-height: 22px;
}
.popup .popup__wrap .popup__cont .popup__textt ul {
   padding-left: 20px;
   list-style: disc;
}
.popup .popup__wrap .popup__cont .popup__textt ul li {
   margin-bottom: 10px;
}

/***** Responsive *****/
@media (max-width: 1200px) {
   .popup .popup__wrap .popup__cont {
      flex-direction: column;
   }

   .popup .popup__wrap .popup__cont .popup__img {
      width: 100%;
      text-align: center;
      margin-bottom: 50px;
   }

   .popup .popup__wrap .popup__cont .popup__textt {
      width: 100%;
      padding-right: 0;
   }

   .popup .popup__wrap .popup__cont:after {
      display: none;
   }

   .popup .popup__wrap .popup__cont .popup__img img {
      width: 70%;
      height: auto;
   }

   .headerlend__content .headerlend__wrap .phone {
      font-size: 18px;
   }

   .headerlend__content .headerlend__wrap a:first-child {
      margin-right: 65px;
   }

   .headerlend__content .headerlend__wrap .email {
      font-size: 16px;
   }

   .headerlend__content .headerlend__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);
   }

   .main .dec__content .dec__box img {
      height: 205px;
   }
}
@media (max-width: 991px) {
   .main .head.head-thr .head__content .head__block .head__img {
      width: 100%;
   }

   .main .rea__content img {
      width: 100%;
   }

   .main .real.real-three .button {
      display: flex;
      flex-direction: column;
   }
   .main .real.real-three .button a {
      width: 100%;
      margin-bottom: 15px;
      margin-left: 0 !important;
   }

   .popup .popup__content {
      padding: 50px 60px;
   }

   .main .dec__content .dec__box img {
      height: 250px;
   }

   .main .head-sec .head__content .head__block .head__text,
.main .head-sec .head__content .head__block .head__img {
      width: 100%;
   }

   .main .spare__content .spare__button button {
      width: 100%;
      margin-left: 0 !important;
      margin-top: 15px;
   }

   .main .proj__content .proj__box {
      flex-direction: column;
   }

   .main .proj__content .proj__box .proj__text {
      margin-left: 0;
      margin-top: 20px;
   }

   .main .proj__content .proj__box .proj__text p {
      font-size: 26px;
      text-align: center;
   }

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

   .main .raz__content ul {
      width: 100%;
   }

   .main .raz__content img {
      width: 70%;
   }

   .main .raz__button {
      margin-top: 0;
   }

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

   .main .opt__content h2 {
      margin-top: -30px;
      font-size: 32px;
   }

   .main .sup__content .sup__text {
      width: 100%;
   }

   .main .sup__content .sup__img {
      width: 100%;
   }

   .headerlend__content .headerlend__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%;
   }

   .footerlend__content .footerlend__top p {
      display: none;
   }
}
@media (min-width: 768px) {
   .headerlend .headerlend__content .headerlend__hamburger {
      display: none;
   }
}
@media (max-width: 767px) {
   .popup .popup__wrap {
      padding: 0;
   }

   .main .rea__content b {
      font-size: 22px;
      line-height: 24px;
   }
   .main .rea__content b:before {
      top: 3px;
   }

   .popup .popup__wrap {
      width: 100%;
   }

   .popup .popup__wrap .popup__cont {
      height: 100%;
      overflow: unset;
   }

   .popup .popup__wrap {
      height: 100%;
      overflow-y: scroll;
   }

   .popup {
      height: 100%;
   }

   .popup .popup__wrap .popup__proj .popup__tit h2 {
      font-size: 32px;
      line-height: 36px;
   }

   .popup .popup__wrap:before {
      display: none;
   }

   .popup .popup__wrap .popup__proj {
      padding-right: 25px;
      padding-left: 25px;
   }

   .popup .popup__wrap .popup__cont .popup__img img {
      width: 100%;
   }

   .main .head.head-thr .head__content .head__block .head__text {
      width: 100%;
   }

   .main .rea__title h2 {
      font-size: 34px;
      line-height: 38px;
      margin-bottom: 30px;
   }

   .main .rea__content b {
      margin-bottom: 60px;
   }

   .main .rea__content .rea__wrap {
      flex-wrap: wrap;
   }

   .main .rea__content .rea__wrap .rea__box {
      width: calc(100% / 2 - 30px);
      margin-bottom: 80px;
   }

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

   .main .gid__content .gid__text {
      width: 100%;
   }

   .main .gid__content .gid__img {
      width: 100%;
   }

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

   .main .chem__content .chem__img {
      width: 100%;
   }

   .main .chem__content .chem__text {
      width: 100%;
      margin-top: 50px;
   }

   .main .chem__title {
      width: 100%;
   }

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

   .main .dos__content .dos__text {
      width: 100%;
   }

   .main .dos__content .dos__img {
      width: 100%;
   }

   .main .rea__content .rea__wrap .rea__box:not(:last-child) {
      margin-right: 30px;
   }

   .main .rea__content .rea__button a {
      padding-right: 20px;
      padding-left: 20px;
      width: 100%;
   }

   .main .dec__content .swiper-slide-active .dec__box img,
.main .dec__content .swiper-slide-active .dec__box b, .main .dec__content .swiper-slide-active .dec__box span {
      transform: unset;
   }

   .main .dec__content .dec__box img {
      height: 380px;
      object-fit: cover;
   }

   .popup .popup__content p {
      font-size: 20px;
   }

   #wrapper {
      padding-top: 85px;
   }

   .main .clock.clock-sec .clock__content .clock__img {
      text-align: center;
   }

   .headerlend {
      padding-top: 20px;
      padding-bottom: 20px;
      background-color: #fff;
      box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
   }
   .headerlend .headerlend__content .headerlend__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;
   }
   .headerlend .headerlend__content .headerlend__wrap.js-open {
      left: 0;
      opacity: 1;
      box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
   }

   .headerlend__content .headerlend__wrap a {
      display: block;
      margin-left: 45px;
      margin-top: 25px;
   }

   .headerlend__content .headerlend__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%;
   }

   .footerlend__content .footerlend__bottom {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
   }

   .footerlend__copy {
      margin-bottom: 20px;
   }
}
@media (max-width: 575px) {
   .popup .popup__content {
      width: 100%;
   }

   .headerlend .headerlend__content .headerlend__hamburger {
      right: 5px;
   }
   .headerlend .headerlend__content .headerlend__wrap {
      width: 260px;
   }
}
@media (min-width: 426px) {
   .mobi-p {
      display: none;
   }

   .head__res .head__guar {
      display: none !important;
   }
}
@media (max-width: 425px) {
   .main .rea__title h2 {
      font-size: 28px;
      line-height: 34px;
   }

   .main .gid__content .gid__text b {
      font-size: 24px;
      line-height: 28px;
   }

   .main .chem__title h2,
.main .dos__title h2,
.main .test__title h2 {
      font-size: 28px;
      line-height: 32px;
   }

   .main .head.head-thr .head__content .head__block .head__img {
      display: none;
   }

   .main .gid__content .gid__img {
      display: none;
   }

   .main .dos__content .dec {
      margin-left: 20px;
   }

   .main .real.real-three .button {
      margin-top: 0px;
   }

   .main .rea__content b {
      margin-left: 20px;
   }

   .main .rea__content .rea__wrap .rea__box {
      width: 100%;
      margin-right: 0 !important;
      margin-bottom: 40px;
   }

   .main .rea__content .rea__wrap .rea__box p,
.main .rea__content .rea__wrap .rea__box i {
      font-size: 17px;
   }

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

   .main .real.real-sec a.btn {
      margin-top: 40px;
   }

   .main .dec__content .dec__box img {
      height: 222px;
   }

   .mobi-p {
      display: block;
   }

   .main .dec__content .swiper-button-next, .main .dec__content .swiper-button-prev {
      display: flex;
      top: 68%;
   }

   .main .dec__content .dec__box img {
      margin-top: 10px;
      width: 75%;
   }

   .main .sup__content .sup__img img {
      display: none;
   }

   .main .sup__content .sup__text .sup__box {
      margin-bottom: 20px;
   }

   .main .proj__content .proj__box .proj__text {
      width: 100%;
   }
   .main .proj__content .proj__box .proj__text p {
      font-size: 22px;
      line-height: 26px;
   }

   .main .raz__content img {
      width: 100%;
   }

   .main .raz__content ul {
      margin-left: 50px;
   }

   .main .raz__content ul li p {
      margin-top: 10px;
      margin-bottom: 20px;
      font-size: 14px;
   }

   .main .proj p {
      font-size: 22px;
      line-height: 28px;
   }

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

   .main .raz__content ul li span {
      font-size: 20px;
   }

   .main .spec__content .spec__text h3 {
      font-size: 26px;
      line-height: 30px;
   }

   .main .opt__content p,
.main .opt__content i {
      font-size: 18px;
   }

   .main .raz__content ul li span:before {
      right: 102%;
   }

   .main .raz__content ul:before {
      top: 25.5px;
   }

   .main .raz__content ul li {
      position: relative;
      padding-right: 20px;
   }
   .main .raz__content ul li:last-child p {
      position: relative;
   }
   .main .raz__content ul li:last-child:after {
      content: "";
      position: absolute;
      top: 48.5px;
      left: -22px;
      width: 20px;
      height: 31px;
      background-color: #fff;
   }

   .main .raz__content ul:before {
      left: -19px;
   }

   .main .opt__content h2 {
      font-size: 26px;
      line-height: 30px;
      margin-top: 0;
      padding-right: 0;
   }

   .main .opt__content i {
      width: 100%;
   }

   .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 {
      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 {
      display: none;
   }

   .main .downl__content .downl__block form i {
      display: block;
      text-align: center;
   }

   .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: #2b2a29;
   }

   .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;
   }

   .main .real__content .real__block {
      margin-bottom: 50px;
   }

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

   .main .real__content .real__block .real__img p {
      display: block;
   }

   .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;
   }

   .footerlend__content .footerlend__top {
      flex-direction: column;
      align-items: flex-start;
   }

   .footerlend__content .footerlend__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;
   }

   .footerlend {
      padding-top: 30px;
   }

   .footerlend__info {
      margin-top: 30px;
   }

   .main .head-sec .head__content .head__block .head__guar {
      display: none;
   }

   .main .dec__title {
      margin-bottom: 23px;
      text-align: center;
   }

   .main .dec__content .dec__box span {
      font-size: 14px;
   }

   .main .proj span {
      font-size: 18px;
      font-weight: 400;
      color: #000;
   }

   .main .proj__content .proj__box .proj__text a {
      width: auto !important;
   }

   .main .raz__content img {
      display: none;
   }

   .raz__button a {
      font-size: 12px;
   }

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

   .popup {
      width: 95%;
   }

   .popup .popup__close {
      right: 5px;
   }

   .popup .popup__content {
      padding: 40px 30px;
   }
   .popup .popup__content p {
      font-size: 18px;
      line-height: 28px;
   }
}
@media (max-width: 360px) {
   .main .dec__content .dec__box img {
      height: 185px;
   }

   .headerlend__logo img {
      width: 260px;
   }

   .headerlend .headerlend__content .headerlend__wrap {
      width: 240px;
   }
}
/*# sourceMappingURL=style.css.map */