html {
  font-size: 16px;
}
body {
  font-family: 'HelveticaNeueCyr', Arial;
  font-size: 16px;
  line-height: 1.3;
  color: #262626;
  margin: 0;
  background: #FFF;
}
a {
  color: #428bca;
}
a:hover,
a:active,
a:focus {
  color: #2a6496;
}
a,
input,
button {
  transition: all 0.2s ease-in-out;
}
a:active,
a:focus,
input:active,
input:focus,
button:active,
button:focus {
  outline: none !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: 'HelveticaNeueCyr', Arial;
  line-height: 1.15;
  font-weight: 400;
  color: inherit;
}
h1,
.h1 {
  font-size: 2em;
}
h2,
.h2 {
  font-size: 2em;
}
h3,
.h3 {
  font-size: 2em;
}
h4,
.h4 {
  font-size: 2em;
}
h5,
.h5 {
  font-size: 1em;
}
img {
  max-width: 100%;
}
form ::-webkit-input-placeholder {
  color: #555;
  opacity: 1;
}
form ::-moz-placeholder {
  color: #555;
  opacity: 1;
}
form :-moz-placeholder {
  color: #555;
  opacity: 1;
}
form :-ms-input-placeholder {
  color: #555;
  opacity: 1;
}
form label.error {
  display: none !important;
}
form input,
form textarea,
form select {
  display: inline-block;
  width: 100%;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  line-height: 72px;
  height: 74px;
  padding: 0 25px;
  font-size: 0.94em;
  font-weight: 400;
  color: #333;
}
form input.error,
form textarea.error,
form select.error {
  border-color: #E76767;
  box-shadow: 0 0 4px #CC0000;
}
form textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.3;
  resize: none;
  height: auto;
  min-height: 150px;
}
form .controls {
  text-align: center;
}
form .controls button,
form .controls input {
  width: 100%;
}
form .check-inp {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 12px;
  color: #333;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  line-height: 20px;
}
form .check-inp .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #FFF;
  border: 1px solid #D0D0D0;
}
form .check-inp input:checked ~ .checkmark {
  background: url(../images/check.svg) no-repeat center center #FFF;
}
form .check-inp input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form .check-inp a {
  color: #333;
  text-decoration: underline;
}
@media (max-width: 767px) {
  form input,
  form textarea,
  form select {
    line-height: 60px;
    height: 58px;
  }
}
.page-404 {
  min-height: 100vh;
}
.page-404 .info {
  text-align: center;
}
.page-404 .t1 {
  font-size: 10em;
}
.page-404 .t2 {
  font-size: 1.4em;
  margin: 0 0 20px;
}
.page-404 .t3 {
  font-size: 0.9em;
}
.section-serv-text {
  padding: 2em 0;
}
@media (min-width: 992px) {
  .section-serv-text .container {
    max-width: 860px;
  }
}
.toggle-nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #FFF;
  background: #33A8E2;
  color: #FFF;
  position: fixed;
  right: 5px;
  bottom: 10%;
  z-index: 999;
}
.toggle-nav svg {
  width: 20px;
}
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  padding: 0 15px;
  transition: 0.3s all;
  max-height: 0px;
  opacity: 0;
  z-index: 9999;
  overflow: hidden;
}
.mobile-nav.active {
  max-height: 900px;
  opacity: 1;
}
.mobile-nav .mav-top {
  padding: 20px 0 10px;
  border-bottom: 1px solid #474747;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}
.mobile-nav .close-nav {
  border: none;
  background: none;
  color: #474747;
  padding: 0;
}
.mobile-nav .close-nav svg {
  width: 30px;
}
.mobile-nav nav {
  margin-top: 20px;
  padding: 0 0 20px;
}
.mobile-nav nav a {
  font-size: 16px;
  display: block;
  color: #FFF;
  margin: 0 0 15px;
  text-decoration: none;
}
.mobile-nav nav a:hover {
  color: #F24726;
}
.cl-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 74px;
  text-decoration: none;
  color: #212121;
  padding: 0 25px;
  border: none;
  border-radius: 74px;
  background: #e2e6ea;
  font-weight: 700;
  font-size: 1em;
  line-height: 1;
  text-transform: uppercase;
}
.cl-btn:hover,
.cl-btn:active,
.cl-btn:focus {
  text-decoration: none;
}
.cl-btn.c-green {
  background: #28a745;
  color: #FFF;
}
.cl-btn.c-green:hover,
.cl-btn.c-green:active,
.cl-btn.c-green:focus {
  background: #208637;
  color: #FFF;
}
.cl-btn.c-orange {
  background: #F24726;
  color: #FFF;
}
.cl-btn.c-orange:hover,
.cl-btn.c-orange:active,
.cl-btn.c-orange:focus {
  background: #DC2E0D;
  color: #FFF;
}
@media (max-width: 767px) {
  .cl-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60px;
    text-decoration: none;
    font-size: 14px;
    padding: 0 15px;
  }
}
.title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .title {
    font-size: 16px;
    line-height: 1.3;
  }
}
.txt-bold {
  font-size: 1.13em;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .txt-bold {
    font-size: 12px;
    line-height: 1.4;
  }
}
.c-blue {
  color: #33A8E2;
}
.h3-text {
  font-size: 1.19em;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .h3-text {
    font-size: 14px;
    line-height: 1.3;
  }
}
.h4-text {
  font-size: 0.94em;
  font-weight: 700;
  line-height: 1.5;
}
.text {
  font-size: 0.94em;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .text {
    font-size: 12px;
    line-height: 1.4;
  }
}
.small-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .small-text {
    font-size: 10px;
  }
}
.text-18 {
  font-size: 1.13em;
  line-height: 1.5;
}
.bold,
b {
  font-weight: 700;
}
.sq-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sq-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.94em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .sq-list li {
    font-size: 12px;
    line-height: 1.4;
  }
}
.sq-list li:last-child {
  margin: 0;
}
.sq-list li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #33A8E2;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.num-list {
  margin: 0;
  padding: 0 0 0 20px;
}
.num-list li {
  position: relative;
  font-size: 0.94em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .num-list li {
    font-size: 12px;
    line-height: 1.4;
  }
}
.num-list li::marker {
  font-weight: 700;
}
.num-list li:last-child {
  margin: 0;
}
.header {
  padding: 20px 0;
  background: url(../images/bg1_d1.jpg) no-repeat center center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 915px;
  color: #FFF;
  text-align: center;
}
.header .cl-btn {
  width: 100%;
  max-width: 358px;
}
.header .title {
  margin: 0 0 30px;
}
.header .img {
  margin: 0 0 30px;
}
.header .desc {
  font-size: 1.13em;
  font-weight: 700;
  line-height: 1.5;
  margin: 10px 0 0;
}
@media (max-width: 767px) {
  .header .desc {
    font-size: 12px;
    line-height: 1.4;
  }
}
.header .t1 {
  max-width: 555px;
  margin: 40px auto 20px;
  font-weight: 700;
  font-size: 1.38em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .header {
    min-height: auto;
    padding: 30px 0;
  }
  .header .title {
    font-size: 18px;
  }
  .header .logo {
    text-align: center;
    margin: 0 0 20px;
  }
  .header .row > div {
    margin-bottom: 25px;
  }
  .header .t1 {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .header .controls {
    margin: 0 0 35px;
  }
}
.header-th {
  padding: 20px 0;
  background: url(../images/bg1_d1.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #FFF;
  text-align: center;
}
.header-th .title {
  margin: 0 0 30px;
}
.header-th .t1 {
  max-width: 555px;
  margin: 40px auto 20px;
  font-weight: 700;
  font-size: 1.38em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .header-th {
    min-height: auto;
    padding: 30px 0;
  }
  .header-th .title {
    font-size: 18px;
  }
  .header-th .t1 {
    font-size: 16px;
    margin: 0 auto 20px;
  }
}
.sec-1 {
  padding: 90px 0 50px;
}
.sec-1 .title {
  text-align: center;
  margin: 0 0 40px;
}
.sec-1 .col-img {
  margin-right: 30px;
}
.sec-1 .h3-text {
  margin: 0 0 15px;
}
.sec-1 .r1 > div {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .sec-1 .h3-text {
    margin: 10px 0 15px;
  }
}
@media (max-width: 767px) {
  .sec-1 {
    padding: 30px 0 10px;
  }
  .sec-1 .title {
    margin: 0 0 30px;
  }
  .sec-1 .title br {
    display: none;
  }
  .sec-1 .col-img {
    margin-right: 0;
  }
  .sec-1 .r1 {
    text-align: center;
  }
}
.sec-2 {
  padding: 70px 0;
  background: #F6F6F6;
}
.sec-2 .title {
  text-align: center;
  margin: 0 0 40px;
}
.sec-2 .media {
  margin-bottom: 20px;
}
.sec-2 .media:last-child {
  margin-bottom: 0;
}
.sec-2 .t1 {
  max-width: 590px;
  margin: 35px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .sec-2 {
    padding: 30px 0;
  }
  .sec-2 .media:first-child {
    margin-top: 30px;
  }
}
.sec-3 {
  padding: 30px 0 70px;
  background: url(../images/bg2.jpg) no-repeat center bottom #F6F6F6;
}
.sec-3 .title {
  text-align: center;
  margin: 0 0 60px;
}
.sec-3 .form-block {
  max-width: 510px;
  margin: 0 auto;
  padding: 50px 15px 25px;
  background: #FFF;
  text-align: center;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
}
.sec-3 .form-block .text-18 {
  max-width: 390px;
  margin: 0 auto 30px;
}
.sec-3 .form-block form {
  max-width: 390px;
  margin: 0 auto;
}
.sec-3 .form-block .check-bl {
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .sec-3 {
    padding: 30px 0 30px;
    background-size: 1600px auto;
  }
  .sec-3 .form-block {
    padding: 30px 15px 25px;
  }
}
.sec-4 {
  padding: 60px 0;
  background: url(../images/bg3.jpg) no-repeat right bottom;
}
.sec-4 .title {
  text-align: center;
  margin: 0 0 60px;
}
.sec-4 .col-img {
  margin-right: 30px;
}
.sec-4 .h3-text {
  margin: 0 0 15px;
}
.sec-4 .r1 > div {
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .sec-4 {
    background-size: 560px auto;
  }
}
@media (max-width: 991px) {
  .sec-4 {
    background-size: 460px auto;
  }
  .sec-4 .h3-text {
    margin: 15px 0 15px;
  }
}
@media (max-width: 767px) {
  .sec-4 {
    padding: 30px 0;
    background: none;
  }
  .sec-4 .title {
    margin: 0 0 30px;
  }
  .sec-4 .col-img {
    margin-right: 0;
    text-align: center;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.2);
  }
  85% {
    -webkit-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0.2);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  }
  85% {
    -moz-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
    box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
@keyframes pulse2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  }
  85% {
    -moz-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
    box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
@-webkit-keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
@keyframes pulse3 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  }
  85% {
    -moz-box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
    box-shadow: 0 0 0 5.000em rgba(255,255,255,0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
.sec-5 {
  padding: 60px 0 140px;
  background: radial-gradient(50% 50% at 50% 50%,#D2E2FF 0%,#DDEAFF 100%);
}
.sec-5 .title {
  text-align: center;
  margin: 0 0 100px;
}
.sec-5 .spider {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 25.25em;
  max-width: 36.25em;
  background: url(../images/circle_arrows.svg) no-repeat center center;
  background-size: 100% auto;
  margin: 0 auto;
  position: relative;
}
.sec-5 .spider .asuks {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 6em;
  height: 6em;
  background: radial-gradient(50% 50% at 50% 50%,#54CCFF 0%,#33A8E2 100%);
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
  border-radius: 50%;
  font-weight: bold;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #FFF;
  position: relative;
  animation: pulse 3s infinite;
}
.sec-5 .spider .asuks:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  animation: pulse2 3s -1s infinite;
  border-radius: 50%;
}
.sec-5 .spider .asuks:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  animation: pulse3 3s -2s infinite;
  border-radius: 50%;
}
.sec-5 .spider .txt {
  position: absolute;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.5;
  display: inline-block;
}
.sec-5 .spider .txt.t1 {
  left: -0.833em;
  top: -0.833em;
  text-align: right;
}
.sec-5 .spider .txt.t2 {
  left: -7.083em;
  top: 4.583em;
  text-align: right;
}
.sec-5 .spider .txt.t3 {
  left: -12.083em;
  top: 10.542em;
  text-align: right;
}
.sec-5 .spider .txt.t4 {
  left: -9.083em;
  top: 16.1em;
  text-align: right;
}
.sec-5 .spider .txt.t5 {
  right: -5.5em;
  top: -0.7em;
}
.sec-5 .spider .txt.t6 {
  right: -10.9em;
  top: 4.7em;
}
.sec-5 .spider .txt.t7 {
  right: -9.6em;
  top: 10.6em;
}
.sec-5 .spider .txt.t8 {
  right: -10.2em;
  top: 16.1em;
}
@media (max-width: 1199px) {
  .sec-5 .spider {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .sec-5 .spider {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .sec-5 {
    padding: 30px 0 30px;
    overflow-x: hidden;
  }
  .sec-5 .title {
    margin: 0 0 40px;
  }
  .sec-5 .spider {
    font-size: 6px;
    background-size: 145px;
  }
  .sec-5 .spider .txt {
    position: absolute;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5;
    display: inline-block;
  }
  .sec-5 .spider .txt.t1 {
    left: 2.167em;
    top: 1.167em;
    text-align: right;
  }
  .sec-5 .spider .txt.t2 {
    left: -4.083em;
    top: 5.283em;
    text-align: right;
  }
  .sec-5 .spider .txt.t3 {
    left: -6.083em;
    top: 8.442em;
    text-align: right;
    max-width: 90px;
  }
  .sec-5 .spider .txt.t4 {
    left: -5.083em;
    top: 14.1em;
  }
  .sec-5 .spider .txt.t5 {
    right: -2.5em;
    top: 1.3em;
  }
  .sec-5 .spider .txt.t6 {
    right: -5.9em;
    top: 4.0em;
    max-width: 80px;
  }
  .sec-5 .spider .txt.t7 {
    right: -5.6em;
    top: 9.0em;
  }
  .sec-5 .spider .txt.t8 {
    right: -7em;
    top: 14.0em;
    max-width: 100px;
  }
}
.sec-6 {
  padding: 60px 0 110px;
  background: url(../images/bg4.jpg) no-repeat center bottom #DCEAFF;
}
.sec-6 .title {
  text-align: center;
  margin: 0 0 60px;
}
.sec-6 .form-block {
  max-width: 510px;
  margin: 0 auto;
  padding: 50px 15px 25px;
  background: #FFF;
  text-align: center;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
}
.sec-6 .form-block .text-18 {
  max-width: 390px;
  margin: 0 auto 30px;
}
.sec-6 .form-block form {
  max-width: 390px;
  margin: 0 auto;
}
.sec-6 .form-block .check-bl {
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .sec-6 {
    padding: 30px 0 40px;
    background-size: 1500px auto;
  }
  .sec-6 .title {
    margin: 0 0 30px;
  }
  .sec-6 .form-block {
    padding: 30px 15px 25px;
  }
}
.sec-7 {
  padding: 60px 0 65px;
  position: relative;
  overflow-x: hidden;
}
.sec-7:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: #F6F6F6;
}
.sec-7 .container {
  position: relative;
  z-index: 9;
}
.sec-7 .title {
  text-align: center;
  margin: 0 0 15px;
}
.sec-7 .sub-title {
  font-size: 0.94em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 767px) {
  .sec-7 .sub-title {
    font-size: 12px;
    line-height: 1.4;
  }
}
.sec-7 .carousel .carousel-inner {
  background: #FFFFFF;
  border: 10px solid #F6F6F6;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
}
.sec-7 .carousel .carousel-control-next,
.sec-7 .carousel .carousel-control-prev {
  width: 90px;
  color: #fff;
  opacity: 1;
}
.sec-7 .carousel .carousel-control-next:hover .sicn,
.sec-7 .carousel .carousel-control-prev:hover .sicn {
  background: #F24726;
  border-color: #F24726;
  color: #FFF;
}
.sec-7 .carousel .carousel-control-next {
  right: -45px;
}
.sec-7 .carousel .carousel-control-prev {
  left: -45px;
}
.sec-7 .carousel .sicn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90px;
  height: 90px;
  background: #FFF;
  color: #F24726;
  transition: 0.2s all;
  border: 1px solid #F6F6F6;
}
.sec-7 .carousel .sicn svg {
  height: 30px;
}
.sec-7 .carousel .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  padding: 0;
  margin: 0 auto;
}
.sec-7 .carousel .carousel-indicators li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 4px;
  margin-left: 4px;
  background: #F6F6F6;
}
.sec-7 .carousel .carousel-indicators li.active {
  background: #F24726;
}
.sec-7 .carousel-item {
  padding: 50px 0 80px;
}
.sec-7 .carousel-item .h3-text {
  margin: 0 auto 45px;
  max-width: 740px;
}
.sec-7 .carousel-item img {
  margin-right: 30px;
}
.sec-7 .carousel-item .h4-text {
  margin: 0 0 10px;
}
.sec-7 .carousel-item .r1 {
  margin: 0 auto 40px;
  max-width: 740px;
}
.sec-7 .carousel-item .r1:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sec-7 {
    padding: 30px 0 30px;
  }
  .sec-7::before {
    display: none;
  }
  .sec-7 .sub-title {
    margin: 0 0 30px;
  }
  .sec-7 .carousel {
    padding: 0 0 50px;
  }
  .sec-7 .carousel .carousel-inner {
    border: 5px solid #F6F6F6;
    box-shadow: none;
  }
  .sec-7 .carousel .carousel-item {
    padding: 20px 15px 30px;
  }
  .sec-7 .carousel .carousel-item .h3-text {
    margin: 0 auto 25px;
  }
  .sec-7 .carousel .carousel-item .h4-text {
    margin: 10px 0 10px;
  }
  .sec-7 .carousel .carousel-control-next,
  .sec-7 .carousel .carousel-control-prev {
    width: 30px;
    color: #fff;
    opacity: 1;
    height: 30px;
    top: -85px;
  }
  .sec-7 .carousel .carousel-control-next.c-bottom,
  .sec-7 .carousel .carousel-control-prev.c-bottom {
    top: auto;
    bottom: 0px;
  }
  .sec-7 .carousel .carousel-control-next:hover .sicn,
  .sec-7 .carousel .carousel-control-prev:hover .sicn {
    background: #F24726;
    border-color: #F24726;
    color: #FFF;
  }
  .sec-7 .carousel .carousel-control-next {
    right: 0px;
  }
  .sec-7 .carousel .carousel-control-prev {
    left: 0px;
  }
  .sec-7 .carousel .sicn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    background: #FFF;
    color: #F24726;
    transition: 0.2s all;
    border: 1px solid #F6F6F6;
  }
  .sec-7 .carousel .sicn svg {
    height: 15px;
  }
  .sec-7 .carousel .carousel-indicators {
    bottom: 5px;
    right: 40px;
    left: 40px;
  }
}
.sec-8 {
  padding: 20px 0 20px;
  background: #F6F6F6;
  text-align: center;
  border-bottom: 1px solid #FFF;
}
.sec-8 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 99px;
}
.sec-8 .title {
  margin: 0 0 80px;
}
.sec-8 .h3-text {
  margin: 10px 0 15px;
}
.sec-8 .text {
  max-width: 340px;
  margin: 0 auto;
}
.sec-8 .row > div {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .sec-8 .title {
    margin: 0 0 30px;
  }
  .sec-8 .row > div {
    margin-bottom: 35px;
  }
}
.sec-9 {
  padding: 50px 0;
  background: #F6F6F6;
  text-align: center;
}
.sec-9 .title {
  margin: 0 0 50px;
}
.sec-9 .controls a,
.sec-9 .controls button {
  width: 100%;
  max-width: 390px;
}
@media (max-width: 767px) {
  .sec-9 {
    padding: 30px 0;
  }
  .sec-9 .title {
    margin: 0 0 20px;
  }
}
a.g-plus {
  position: relative;
  display: inline-block;
}
a.g-plus:after {
  content: '';
  background: url(../images/plus.svg) no-repeat center center;
  background-size: auto 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.2s all;
  cursor: pointer;
}
a.g-plus:hover:after {
  opacity: 1;
}
.sec-10 {
  padding: 70px 0;
}
.sec-10 .title {
  margin: 0 0 50px;
}
.sec-10 .r1 {
  margin-bottom: 25px;
}
.sec-10 .r1 > div {
  margin-bottom: 35px;
}
.sec-10 .h3-text {
  margin: 0 0 20px;
}
.sec-10 .img-list {
  margin: 15px 0 40px;
}
.sec-10 .controls a {
  font-size: 1em;
  font-weight: 700;
  color: #33A8E2;
  text-decoration: none;
  line-height: 26px;
}
.sec-10 .controls a img {
  margin-right: 5px;
}
.sec-10 .controls a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
  color: #33A8E2;
}
@media (max-width: 991px) {
  .sec-10 a.g-plus {
    margin: 0 3px;
  }
}
@media (max-width: 767px) {
  .sec-10 {
    padding: 30px 0;
  }
  .sec-10 .g-plus:after {
    opacity: 1;
  }
  .sec-10 .title {
    margin: 0 0 30px;
  }
  .sec-10 .h3-text {
    margin: 0 0 10px;
  }
  .sec-10 .img-list {
    margin: 15px 0 10px;
  }
  .sec-10 .controls a {
    line-height: 17px;
  }
  .sec-10 .controls a img {
    height: 17px;
  }
  .sec-10 .r1 > div {
    margin-bottom: 15px;
  }
  .sec-10 .row .text-right {
    text-align: left !important;
    order: 2;
  }
}
.sec-11 {
  padding: 60px 0;
  background: #F6F6F6;
  text-align: center;
}
.sec-11 .title {
  margin: 0 0 50px;
}
.sec-11 .h3-text {
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .sec-11 {
    padding: 30px 0;
  }
  .sec-11 .title {
    margin: 0 0 30px;
  }
  .sec-11 .title br {
    display: none;
  }
  .sec-11 .row > div {
    margin-bottom: 30px;
  }
}
.sec-12 {
  padding: 60px 0;
}
.sec-12 .container {
  max-width: 730px;
}
.sec-12 .title {
  text-align: center;
  margin: 0 0 50px;
}
.sec-12 .line {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 2px;
  background: #F6F6F6;
  margin: 0 30px;
}
.sec-12 .line:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../images/plug.svg) no-repeat center center #F6F6F6;
  color: #FFF;
  position: absolute;
  top: 0;
  left: -9px;
  margin: 0 auto;
  z-index: 999;
  transition: 0.3s all;
}
.sec-12 .line:after {
  content: '';
  background: #33A8E2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  z-index: 99;
  transition: 1.0s all;
}
.sec-12 .line.active:before {
  background: url(../images/plug.svg) no-repeat center center #33A8E2;
}
.sec-12 .line.active:after {
  height: 100%;
}
.sec-12 .line.last {
  background: none;
}
.sec-12 .line.last:after {
  display: none;
}
.sec-12 .img {
  margin-bottom: 65px;
}
.sec-12 .h3-text {
  position: relative;
  margin: 0 0 20px;
}
.sec-12 .controls {
  margin: 30px 0 0;
}
.sec-12 .controls a,
.sec-12 .controls button {
  width: 100%;
}
@media (max-width: 767px) {
  .sec-12 {
    padding: 30px 0;
  }
  .sec-12 .title {
    margin: 0 0 30px;
  }
  .sec-12 .title br {
    display: none;
  }
  .sec-12 .line {
    margin: 0 10px;
  }
  .sec-12 .line:before {
    width: 12px;
    height: 12px;
    background-size: 4px auto;
    left: -5px;
  }
  .sec-12 .line.active:before {
    background: url(../images/plug.svg) no-repeat center center #33A8E2;
  }
  .sec-12 .line.active:after {
    height: 100%;
  }
  .sec-12 .line.last {
    background: none;
  }
  .sec-12 .line.last:after {
    display: none;
  }
  .sec-12 .r1 {
    margin-bottom: 0px;
  }
  .sec-12 .r1 .col {
    padding-bottom: 30px;
  }
  .sec-12 .img img {
    width: 60px;
  }
  .sec-12 .h3-text {
    margin: 0 0 20px;
  }
}
.sec-13 {
  padding: 60px 0;
  background: #F6F6F6;
}
.sec-13 .title {
  margin: 0 0 15px;
  text-align: center;
}
.sec-13 .sub-title {
  text-align: center;
  margin: 0 0 50px;
}
.sec-13 .row > div {
  margin-bottom: 60px;
}
.sec-13 .media {
  max-width: 440px;
  margin: 0 auto;
}
.sec-13 .img {
  width: 115px;
}
.sec-13 .h3-text {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .sec-13 {
    padding: 30px 0;
  }
  .sec-13 .title {
    margin: 0 0 5px;
  }
  .sec-13 .sub-title {
    margin: 0 0 30px;
  }
  .sec-13 .row > div {
    margin-bottom: 35px;
  }
  .sec-13 .media {
    display: block;
    text-align: center;
  }
  .sec-13 .media .img {
    width: 100%;
    margin: 0 0 10px;
  }
  .sec-13 .media .img img {
    height: 50px;
  }
  .sec-13 .h3-text {
    margin: 0 0 15px;
  }
}
.sec-14 {
  padding: 60px 0;
}
.sec-14 .container {
  max-width: 960px;
}
.sec-14 .title {
  text-align: center;
  margin: 0 0 60px;
}
.sec-14 .row > div {
  margin-bottom: 50px;
}
.sec-14 .num {
  font-size: 6em;
  line-height: 1.2;
  color: #33A8E2;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
  font-weight: 700;
}
.sec-14 .info-bl {
  max-width: 335px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec-14 {
    padding: 30px 0;
  }
  .sec-14 .title {
    margin: 0 0 30px;
  }
  .sec-14 .num {
    font-size: 4em;
  }
  .sec-14 .row > div {
    margin-bottom: 30px;
  }
  .sec-14 .info-bl {
    margin: 0 -7px;
  }
}
.sec-15 {
  padding: 60px 0;
  background: #F6F6F6;
  text-align: center;
}
@media (min-width: 1260px) {
  .sec-15 .container {
    max-width: 1260px;
  }
}
.sec-15 .title {
  margin: 0 0 50px;
}
.sec-15 .form-block {
  padding: 50px 15px 25px;
  background: #FFF;
  text-align: center;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
}
.sec-15 .form-block .text-18 {
  margin: 0 auto 30px;
}
.sec-15 .form-block form {
  max-width: 1100px;
  margin: 0 auto;
}
.sec-15 .form-block form .cl-btn {
  border-radius: 5px;
  padding: 0 10px;
  width: 100%;
}
.sec-15 .form-block .check-bl {
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .sec-15 {
    padding: 30px 0;
  }
  .sec-15 .title {
    margin: 0 0 30px;
  }
  .sec-15 .form-block {
    padding: 30px 15px 25px;
  }
  .sec-15 .form-block .inputblock {
    margin-bottom: 15px;
  }
}
.footer {
  padding: 50px 0;
}
@media (min-width: 1200px) {
  .footer .container {
    max-width: 1200px;
  }
}
.footer .small-text {
  margin: 0 0 5px;
}
.footer .policy {
  color: #33A8E2;
  font-size: 12px;
  text-align: center;
}
.footer .copy-1 {
  text-align: center;
  margin: 20px 0 10px;
}
.footer .copy-1 a {
  text-decoration: none;
}
.footer .copy-2 {
  text-align: center;
  font-size: 12px;
}
.footer a {
  color: #33A8E2;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0;
    text-align: center;
  }
  .footer .orgn {
    margin: 20px 0 10px;
  }
  .footer .policy {
    margin: 20px 0 0;
    font-size: 9px;
  }
}
.modal.modal-form .modal-dialog {
  max-width: 510px;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.05), 0px 2px 2px rgba(0,0,0,0.05), 0px 4px 4px rgba(0,0,0,0.05), 0px 8px 8px rgba(0,0,0,0.05), 0px 16px 16px rgba(0,0,0,0.05), 0px 32px 32px rgba(0,0,0,0.05);
  background: #FFF;
}
.modal.modal-form .modal-content {
  border: none;
  background: none;
}
.modal.modal-form .modal-body {
  padding: 50px 15px 25px;
}
.modal.modal-form .close {
  position: absolute;
  opacity: 1;
  z-index: 999;
  top: 10px;
  right: 10px;
}
.modal.modal-form .form-block {
  text-align: center;
}
.modal.modal-form .form-block .text-18 {
  margin: 0 auto 30px;
  max-width: 390px;
}
.modal.modal-form .form-block form {
  max-width: 390px;
  margin: 0 auto;
}
.modal.modal-form .form-block form .cl-btn {
  border-radius: 5px;
  padding: 0 10px;
  width: 100%;
}
.modal.modal-form .form-block .check-bl {
  margin: 15px 0 0;
}
@media (max-width: 1199px) {
  body,
  html {
    font-size: 14px;
  }
  .title {
    font-size: 2em;
  }
}
@media (max-width: 991px) {
  body,
  html {
    font-size: 13px;
  }
  .title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  body,
  html {
    font-size: 12px;
  }
  .title {
    font-size: 16px;
  }
  body.modal-open .wrapper {
    display: none;
  }
  .container {
    max-width: 320px !important;
  }
}
