/****************************************************************
* @Author: CraftCoder
* @Date:   x x, 2021
* @Websites: www.craftcoder.ru
* @Telegram: @craftcoder
* @Description: SCSS
*****************************************************************/
/*******************  FONTS *****************/
/*@font-face {
    font-family: 'SourceSansProBold';
    src: url('../fonts/SourceSansProBold/SourceSansProBold.woff') format('woff'),
         url('../fonts/SourceSansProBold/SourceSansProBold.ttf') format('truetype');
         }*/
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/Raleway-Regular.woff2") format("woff2"); }

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/RalewayMedium.woff2") format("woff2"); }

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/RalewayBold.woff2") format("woff2"); }

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  src: url("../assets/RalewayExtraBold.woff2") format("woff2"); }

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 900;
  src: url("../assets/Raleway-Black.woff2") format("woff2"); }

/*********************  preloader  *******************/
/********************  VARS  *****************/
/**********************  MEDIA  *******************/
/*************************** BODY **************************/
html, body {
  height: 100%; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125em;
  line-height: 1.4;
  width: 100%;
  min-width: 320px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  font-weight: 500;
  background-color: #D8F1FF;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on; }

@media all and (max-width: 575px) {
  body {
    font-size: 1em;
    line-height: 1.5; } }

header,
footer {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none; }

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

ul {
  list-style: none;
  margin: 0; }

p {
  font-style: normal;
  margin: 0; }

.ninja {
  display: none; }

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  margin: 0; }

h1 {
  font-size: 30px; }

.heading {
  margin-bottom: 45px; }

.heading h2 {
  font-size: 36px;
  line-height: 42px; }

@media all and (max-width: 575px) {
  .heading h2 {
    font-size: 32px;
    line-height: 40px; } }

label {
  margin-bottom: 0; }

.btn {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  line-height: 21px;
  padding: 15px 35px;
  color: #000000;
  background-color: #EBE31B;
  border-radius: 3px;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border: none; }

.btn:hover {
  color: #000;
  background-color: #E1D910; }

.btn__blue {
  background-color: #D8F1FF;
  -webkit-box-shadow: none;
          box-shadow: none; }

.btn__blue:hover {
  background-color: #BAD4E3; }

a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }

a:hover, a:active, a:focus {
  text-decoration: none; }

button {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

button:active, button:focus {
  outline: none; }

*:focus {
  outline: none; }

* {
  margin: 0;
  padding: 0; }

img {
  max-width: 100%; }

.center {
  text-align: center; }

.stop-scrolling {
  height: 100%;
  overflow: hidden; }

input {
  border-radius: 0; }

input.wpcf7-submit {
  cursor: pointer;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all; }

/*****************  ARROW UP  **************/
#arrowup {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: url("../assets/icon_22.svg") no-repeat center center;
  width: 59px;
  height: 59px;
  cursor: pointer;
  display: none;
  opacity: 0.5;
  z-index: 1000; }

@media all and (max-width: 575px) {
  #arrowup {
    display: none !important; } }

#arrowup:hover {
  opacity: 0.8; }

/********************  MODAL  **********************/
body.fancybox-active {
  overflow: visible !important; }

.modal {
  opacity: 0;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  max-width: 450px;
  empty-cells: 99%; }

@media all and (max-width: 575px) {
  .modal {
    padding-left: 20px;
    padding-right: 20px; } }

.modal h2 {
  margin-bottom: 30px; }

.modal form .form__item input {
  width: 100%;
  height: 58px;
  padding-left: 20px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #000;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 16px;
  color: #000; }

@media all and (max-width: 575px) {
  .modal form .form__item input {
    margin-bottom: 20px; } }

.modal form .form__item input::-webkit-input-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::-moz-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::-ms-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::-webkit-input-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::-moz-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input:-ms-input-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::-ms-input-placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__item input::placeholder {
  color: #000;
  opacity: 1; }

.modal form .form__policy {
  text-align: center;
  margin-bottom: 20px; }

.modal form .form__policy p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400; }

.modal form .form__policy p a {
  font-weight: 700;
  color: #000; }

.modal form .form__policy p a:hover {
  text-decoration: underline; }

.modal form .form__submit .btn {
  max-width: 314px;
  width: 100%;
  margin: 0 auto;
  display: block; }

@media all and (max-width: 575px) {
  .modal form .form__submit .btn {
    max-width: 100%; } }

.fancybox-slide--complete .modal {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0); }

#modal_policy {
  max-width: 900px;
  width: 99%; }

/*********************  HEADER  ************************/
.header__fixed {
  position: fixed !important;
  width: 100%;
  left: 0;
  top: 0 !important;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.header__fixed .header__logo {
  display: none !important; }

.header__fixed .header__top {
  padding-top: 0;
  padding-bottom: 0; }

.header__fixed .header__top .header__contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

@media all and (max-width: 1199px) {
  .header__fixed .header__top .header__contacts {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333%;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
    max-width: 58.3333%; } }

@media all and (max-width: 991px) {
  .header__fixed .header__top .header__contacts {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6667%;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
    max-width: 41.6667%; } }

.header__fixed .header__top .header__contacts .contacts .writeus {
  margin-right: 0; }

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300; }

header .header__top {
  padding-top: 21px;
  padding-bottom: 21px; }

@media all and (max-width: 767px) {
  header .header__top .header__logo {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1; } }

header .header__top .header__logo .logo {
  margin-left: 0;
}

header .header__top .header__logo .logo a, .footer__logo a {
  color: black;
  font-weight: 700;
}

@media all and (max-width: 1370px) {
  header .header__top .header__logo .logo {
    margin-left: 0; } }

header .header__top .header__logo .logo a img {
  height: auto; }

@media all and (max-width: 767px) {
  header .header__top .header__menu {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; } }

header .header__top .header__menu .menu {
  padding-left: 17px; }

@media all and (max-width: 767px) {
  header .header__top .header__menu .menu {
    display: none; } }

header .header__top .header__menu .menu ul li {
  display: inline-block; }

header .header__top .header__menu .menu ul li:not(:last-child) {
  margin-right: 16px; }

header .header__top .header__menu .menu ul li a, footer .menu ul li a {
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.05em;
  color: #000000;
  display: inline-block;
  padding: 3px 0;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EBE31B), to(#EBE31B));
  background-image: -o-linear-gradient(#EBE31B, #EBE31B);
  background-image: linear-gradient(#EBE31B, #EBE31B);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  -webkit-transition: background-size .3s;
  -o-transition: background-size .3s;
  transition: background-size .3s; }
footer .tarifs {
  font-weight: bold;
  font-size: 18px;
	
}
footer .menu ul li a {
    font-size: 16px;
    line-height: 16px;
}
header .header__top .header__menu .menu ul li a:hover {
  background-size: 100% 3px; }

header .header__top .header__menu .header_burger {
  position: relative;
  display: none;
  float: right; }

@media all and (max-width: 767px) {
  header .header__top .header__menu .header_burger {
    display: block; } }

header .header__top .header__menu .header_burger .burger_button {
  position: relative;
  top: 2px;
  width: 30px;
  height: 30px;
  display: block;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 20; }

header .header__top .header__menu .header_burger .burger_button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

header .header__top .header__menu .header_burger .burger_button span:nth-child(1) {
  top: 4px; }

header .header__top .header__menu .header_burger .burger_button span:nth-child(2) {
  top: 12px; }

header .header__top .header__menu .header_burger .burger_button span:nth-child(3) {
  top: 20px; }

header .header__top .header__menu .header_burger .burger_button.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg); }

header .header__top .header__menu .header_burger .burger_button.open span:nth-child(2) {
  opacity: 0;
  left: -60px; }

header .header__top .header__menu .header_burger .burger_button.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg); }

header .header__top .header__menu .header_burger .menu_toggle {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  margin: 0;
  overflow: auto;
  text-align: center;
  z-index: 11;
  padding-top: 50px;
  top: -70px;
  padding-bottom: 70px;
  -webkit-transform: translateY(70px);
      -ms-transform: translateY(70px);
          transform: translateY(70px); }

header .header__top .header__menu .header_burger .menu_toggle ul {
  margin-bottom: 30px; }

header .header__top .header__menu .header_burger .menu_toggle ul li {
  margin-bottom: 4px; }

header .header__top .header__menu .header_burger .menu_toggle ul li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #000000;
  display: inline-block;
  padding: 4px 0 2px 0;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EBE31B), to(#EBE31B));
  background-image: -o-linear-gradient(#EBE31B, #EBE31B);
  background-image: linear-gradient(#EBE31B, #EBE31B);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  -webkit-transition: background-size .3s;
  -o-transition: background-size .3s;
  transition: background-size .3s; }

header .header__top .header__menu .header_burger .menu_toggle ul li a:hover {
  background-size: 100% 3px; }

header .header__top .header__menu .header_burger .menu_toggle .writeus {
  font-weight: 700;
  font-size: 20px;
  line-height: 19px;
  color: #000000;
  border-bottom: 3px solid #EBE31B;
  padding-bottom: 3px;
  margin-right: -57px; }

@media all and (max-width: 1370px) {
  header .header__top .header__menu .header_burger .menu_toggle .writeus {
    margin-right: 0; } }

header .header__top .header__menu .header_burger .menu_toggle .writeus:hover {
  color: #EBE31B; }

@media all and (max-width: 767px) {
  header .header__top .header__contacts {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; } }

header .header__top .header__contacts .contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

@media all and (max-width: 767px) {
  header .header__top .header__contacts .contacts {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; } }

header .header__top .header__contacts .contacts .phone {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 56px; }

@media all and (max-width: 991px) {
  header .header__top .header__contacts .contacts .phone {
    font-size: 18px;
    margin-right: 0; } }

header .header__top .header__contacts .contacts .phone img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 8px; }

@media all and (max-width: 575px) {
  header .header__top .header__contacts .contacts .phone img {
    display: none; } }

header .header__top .header__contacts .contacts .writeus {
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  border-bottom: 3px solid #EBE31B;
  padding-bottom: 3px;
  margin-right: -57px; }

@media all and (max-width: 1370px) {
  header .header__top .header__contacts .contacts .writeus {
    margin-right: 0; } }

@media all and (max-width: 991px) {
  header .header__top .header__contacts .contacts .phone {
    display: none; } }

header .header__top .header__contacts .contacts .writeus:hover {
  color: #EBE31B; }

/****************************  mainblock  *************************/
#mainblock {
  margin-top: 69px;
  background: #D8F1FF;
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 95px;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: inherit;
  background-position: 100% 0;
  background-image: url("../assets/1_2.png"); }

@media all and (max-width: 1199px) {
  #mainblock {
    background-image: none; } }

@media all and (max-width: 991px) {
  #mainblock {
    padding-bottom: 64px; } }

@media all and (max-width: 575px) {
  #mainblock {
    padding-top: 45px;
    padding-bottom: 50px; } }

#mainblock:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(169.89deg, rgba(0, 0, 0, 0.1) 5.44%, rgba(0, 0, 0, 0) 98.47%);
  background: linear-gradient(280.11deg, rgba(0, 0, 0, 0.1) 5.44%, rgba(0, 0, 0, 0) 98.47%);
  mix-blend-mode: color-burn;
  z-index: -1; }

#mainblock .main__title {
  margin-bottom: 13px; }

#mainblock .main__title .title h1 {
  font-weight: bold;
  font-size: 42px;
  line-height: 49px; }

@media all and (max-width: 575px) {
  #mainblock .main__title .title h1 {
    font-size: 36px;
    line-height: 42px;
    text-align: center; } }

#mainblock .main__title .title h1 strong {
  font-weight: 900;
  display: block; }

#mainblock .main__list .list {
  padding-top: 25px; }

@media all and (max-width: 991px) {
  #mainblock .main__list .list {
    padding-top: 15px;
    margin-bottom: 35px; } }

#mainblock .main__list .list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px; }

#mainblock .main__list .list ul li .icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80px;
  height: 80px;
  width: 100%; }

#mainblock .main__list .list ul li .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

#mainblock .main__list .list ul li .content h6 {
  font-size: 22px;
  line-height: 26px; }

@media all and (max-width: 575px) {
  #mainblock .main__list .list ul li .content h6 {
    font-size: 18px;
    line-height: 26px; } }

#mainblock .main__list .list ul li .content h6 strong {
  font-weight: 900; }

#mainblock .main__list .list ul li .content p {
  font-size: 18px;
  line-height: 21px; }

@media all and (max-width: 575px) {
  #mainblock .main__list .list ul li .content p {
    font-size: 16px;
    line-height: 22px; } }

#mainblock .main__special .special {
  border: 1px solid #000000;
  max-width: 438px;
  width: 100%;
  margin-right: 37px;
  margin-left: auto;
  padding: 34px 49px; }

@media all and (max-width: 991px) {
  #mainblock .main__special .special {
    margin-left: 0;
    margin-right: auto; } }

@media all and (max-width: 575px) {
  #mainblock .main__special .special {
    padding: 30px; } }

#mainblock .main__special .special h5 {
  font-size: 36px;
  line-height: 42px;
  max-width: 258px;
  width: 100%;
  margin-bottom: 70px; }

@media all and (max-width: 575px) {
  #mainblock .main__special .special h5 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 100%; } }

#mainblock .main__special .special .box_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

#mainblock .main__special .special .box_btn img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 15px; }

@media all and (max-width: 575px) {
  #mainblock .main__special .special .box_btn img {
    display: none; } }

#mainblock .main__special .special .box_btn .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all; }

@media all and (max-width: 575px) {
  #mainblock .main__special .special .box_btn .btn {
    width: 100%; } }

/*************************  advantages  ********************/
#advantages {
  padding-top: 70px;
  padding-bottom: 60px;
  background-color: #fff; }

@media all and (max-width: 991px) {
  #advantages {
    padding-top: 50px; } }

#advantages .row {
  margin-right: -10px;
  margin-left: -10px; }

#advantages .box {
  margin-bottom: 16px;
  padding-right: 10px;
  padding-left: 10px; }

#advantages .box .box__inner {
  background: #EEF9FF;
  border-radius: 5px;
  padding: 24px 18px 20px 18px;
  min-height: 329px;
  -webkit-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all; }

@media all and (max-width: 767px) {
  #advantages .box .box__inner {
    min-height: auto; } }

#advantages .box .box__inner:hover {
  background-color: #EBE31B; }

#advantages .box .box__inner .icon {
  margin-bottom: 22px; }

#advantages .box .box__inner .content h6 {
  font-size: 22px;
  line-height: 26px; }

#advantages .box .box__inner .content hr {
  max-width: 161px;
  width: 100%;
  height: 1px;
  margin: 26px auto 22px auto;
  background-color: #000;
  border: none; }

#advantages .box .box__inner .content p {
  font-size: 14px;
  line-height: 25px; }

#advantages .box__btn {
  margin-top: 40px; }

/***************************  tariffs  ************************/
#tariffs {
  padding-top: 70px;
  padding-bottom: 60px; }

@media all and (max-width: 991px) {
  #tariffs {
    padding-top: 50px; } }

#tariffs .heading {
  margin-bottom: 25px; }

#tariffs .subheading {
  max-width: 700px;
  width: 100%;
  margin-bottom: 50px; }

@media all and (max-width: 575px) {
  #tariffs .subheading {
    margin-bottom: 40px; } }

#tariffs .row {
  margin-right: -10px;
  margin-left: -10px; }

@media all and (max-width: 991px) {
  #tariffs .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; } }

#tariffs .box {
  margin-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px; }

#tariffs .box .box__inner {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 32px 38px 62px 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media all and (max-width: 575px) {
  #tariffs .box .box__inner {
    padding: 30px; } }

#tariffs .box .box__inner .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 120px;
  height: 59px;
  margin-bottom: 40px;
  width: 100%; }

@media all and (max-width: 575px) {
  #tariffs .box .box__inner .icon {
    margin-bottom: 25px; } }

#tariffs .box .box__inner .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

#tariffs .box .box__inner .content {
  border-bottom: 1px solid #D8F1FF;
  margin-bottom: 30px;
  padding-bottom: 23px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

#tariffs .box .box__inner .content h6 {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 16px; }

#tariffs .box .box__inner .content ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px; }

#tariffs .box .box__inner .content ul li:after {
  position: absolute;
  content: '';
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../assets/icon_15.svg");
  width: 23px;
  height: 23px;
  top: 0;
  left: 0; }

#tariffs .box .box__inner .content .price {
  display: inline-block;
  position: relative;
  padding-bottom: 4px; }

#tariffs .box .box__inner .content .price:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -o-linear-gradient(357.07deg, #39D0A3 58.7%, #39D075 97.91%);
  background: linear-gradient(92.93deg, #39D0A3 58.7%, #39D075 97.91%); }

#tariffs .box_cons {
  padding-right: 10px;
  padding-left: 10px; }

#tariffs .box_cons .cons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  padding: 36px 39px; }

@media all and (max-width: 767px) {
  #tariffs .box_cons .cons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; } }

@media all and (max-width: 575px) {
  #tariffs .box_cons .cons {
    padding: 25px; } }

#tariffs .box_cons .cons p {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  max-width: 415px;
  width: 100%; }

#tariffs .box_cons .cons .btn__blue {
  margin-left: 10px; }

@media all and (max-width: 767px) {
  #tariffs .box_cons .cons .btn__blue {
    margin: 20px auto 0 auto; } }

/*************************  cases  *********************/
#cases {
  background-color: #EEF9FF;
  padding-top: 70px;
  padding-bottom: 140px; }

@media all and (max-width: 1599px) {
  #cases {
    padding-bottom: 90px; } }

@media all and (max-width: 991px) {
  #cases {
    padding-top: 50px;
    padding-bottom: 60px; } }

#cases .heading {
  margin-bottom: 25px; }

#cases .subheading {
  max-width: 700px;
  width: 100%;
  margin-bottom: 55px; }

@media all and (max-width: 575px) {
  #cases .subheading {
    margin-bottom: 40px; } }

#cases .subheading p {
  margin-bottom: 16px; }

#cases .cases__main {
  background-color: #fff;
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative; }

#cases .cases__main:after {
  position: absolute;
  content: '';
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../img/2_1.png");
  width: 400px;
  height: 200px;
  top: -199px;
  right: 66px; }

@media all and (max-width: 1199px) {
  #cases .cases__main:after {
    right: 0;
    width: 350px;
    height: 180px;
    top: -176px; } }

@media all and (max-width: 991px) {
  #cases .cases__main:after {
    display: none; } }

#cases .cases__slider {
  max-width: 900px;
  width: 100%;
  margin: 0 auto; }

#cases .cases__slider .slide .slide__inner {
  padding: 24px 10px 50px 10px; }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner {
    padding: 24px 0px 50px 0px; } }

#cases .cases__slider .slide .slide__inner .site__desc {
  margin-bottom: 50px; }

@media all and (max-width: 767px) {
  #cases .cases__slider .slide .slide__inner .site__desc {
    margin-bottom: 30px; } }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .site__desc {
    margin-bottom: 20px; } }

#cases .cases__slider .slide .slide__inner .site__desc .url {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #000000;
  display: inline-block;
  margin-bottom: 8px; }

@media all and (max-width: 767px) {
  #cases .cases__slider .slide .slide__inner .site__desc .url {
    font-size: 28px;
    line-height: 36px; } }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .site__desc .url {
    font-size: 24px;
    line-height: 32px; } }

#cases .cases__slider .slide .slide__inner .site__desc p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .site__desc p {
    font-size: 14px;
    line-height: 18px; } }

#cases .cases__slider .slide .slide__inner .site__desc p img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 15px; }

#cases .cases__slider .slide .slide__inner .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 50px;
  margin-bottom: 38px; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content {
    padding-bottom: 25px;
    margin-bottom: 30px; } }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .content {
    padding-bottom: 15px;
    margin-bottom: 20px; } }

#cases .cases__slider .slide .slide__inner .content .image {
  position: relative;
  z-index: 2; }

@media all and (max-width: 767px) {
  #cases .cases__slider .slide .slide__inner .content .image {
    display: none; } }

#cases .cases__slider .slide .slide__inner .content .image:after {
  position: absolute;
  content: '';
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../assets/icon_17.svg");
  top: -22px;
  left: -10px;
  width: 253px;
  height: 256px;
  z-index: -1; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content .image:after {
    width: 200px;
    height: 200px; } }

#cases .cases__slider .slide .slide__inner .content .image .img {
  width: 234px;
  height: 234px;
  border-radius: 50%;
  overflow: hidden; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content .image .img {
    width: 180px;
    height: 180px; } }

#cases .cases__slider .slide .slide__inner .content .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%; }

#cases .cases__slider .slide .slide__inner .content .table {
  max-width: 470px;
  width: 100%; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content .table {
    max-width: 350px; } }

@media all and (max-width: 767px) {
  #cases .cases__slider .slide .slide__inner .content .table {
    max-width: 100%; } }

#cases .cases__slider .slide .slide__inner .content .table table {
  width: 100%; }

#cases .cases__slider .slide .slide__inner .content .table table td {
  padding: 5px; }

#cases .cases__slider .slide .slide__inner .content .table table thead tr td {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  padding-bottom: 10px; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content .table table thead tr td {
    font-size: 20px; } }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .content .table table tbody tr td {
    font-size: 15px; } }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .content .table table tbody tr td {
    font-size: 14px;
    line-height: 18px; } }

@media all and (max-width: 575px) {
  #cases .cases__slider .slide .slide__inner .content .table table tbody tr td:last-child {
    text-align: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; } }

#cases .cases__slider .slide .slide__inner .content .table table tbody tr td strong {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33px;
  height: 33px;
  background: -o-linear-gradient(357.07deg, #39D0A3 58.7%, #39D075 97.91%);
  background: linear-gradient(92.93deg, #39D0A3 58.7%, #39D075 97.91%);
  border-radius: 30px;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: #fff; }

@media all and (max-width: 767px) {
  #cases .cases__slider .slide .slide__inner .content .table table tbody tr td strong {
    width: 26px;
    height: 26px;
    font-size: 18px; } }

#cases .cases__slider .slide .slide__inner .results {
  max-width: 600px;
  width: 100%; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .results {
    max-width: 500px; } }

#cases .cases__slider .slide .slide__inner .results h6 {
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 18px; }

#cases .cases__slider .slide .slide__inner .results p {
  line-height: 23px; }

@media all and (max-width: 991px) {
  #cases .cases__slider .slide .slide__inner .results p {
    font-size: 16px;
    line-height: 24px; } }

#cases .cases__slider .slick-prev, #cases .cases__slider .slick-next {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  bottom: 50px;
  margin: auto;
  width: 50px;
  height: 50px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }

#cases .cases__slider .slick-prev:hover, #cases .cases__slider .slick-next:hover {
  opacity: .6; }

#cases .cases__slider .slick-prev {
  background-image: url("../img/arrow.svg");
  background-size: 49px;
  right: 75px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

#cases .cases__slider .slick-next {
  background-image: url("../img/arrow.svg");
  background-size: 49px;
  right: 0; }

#cases .cases__slider .slick-dots {
  position: absolute;
  margin: auto;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center; }

#cases .cases__slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

#cases .cases__slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: none;
  background: #cacaca; }

#cases .cases__slider .slick-dots li.slick-active button {
  background: #EBE31B; }

/*************************  clients  *********************/
#clients {
  padding-top: 70px;
  padding-bottom: 60px; }

@media all and (max-width: 991px) {
  #clients {
    padding-top: 50px;
    padding-bottom: 50px; } }

#clients .heading {
  margin-bottom: 25px; }

#clients .subheading {
  margin-bottom: 50px; }

@media all and (max-width: 575px) {
  #clients .subheading {
    margin-bottom: 40px; } }

#clients .clients__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

#clients .clients__main .image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18.5%;
      -ms-flex: 0 0 18.5%;
          flex: 0 0 18.5%;
  max-width: 16.5%;
  padding: 15px 10px;
  text-align: center; }

@media all and (max-width: 991px) {
  #clients .clients__main .image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    padding: 15px; } }

@media all and (max-width: 575px) {
  #clients .clients__main .image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 10px; } }

/**************************  staff  *******************/
#staff {
  padding-top: 70px;
  padding-bottom: 30px;
  background-color: #fff; }

@media all and (max-width: 991px) {
  #staff {
    padding-top: 50px; } }

@media all and (max-width: 575px) {
  #staff {
    padding-bottom: 20px; } }

#staff .heading {
  margin-bottom: 25px; }

@media all and (max-width: 767px) {
  #staff .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; } }

#staff .subheading {
  margin-bottom: 50px; }

@media all and (max-width: 575px) {
  #staff .subheading {
    margin-bottom: 40px; } }

#staff .box {
  margin-bottom: 40px; }

#staff .box .box__inner {
  max-width: 270px;
  width: 100%;
  margin: 0 auto; }

#staff .box .box__inner .image {
  margin-bottom: 22px; }

@media all and (max-width: 767px) {
  #staff .box .box__inner .image {
    margin-bottom: 16px; } }

#staff .box .box__inner .name {
  display: block;
  margin: 0 auto 27px auto;
  font-weight: bold;
  font-size: 19px;
  line-height: 22px; }

@media all and (max-width: 767px) {
  #staff .box .box__inner .name {
    margin-bottom: 16px; } }

/***********************  faq  ******************/
#faq {
  padding-top: 100px;
  padding-bottom: 70px;
  background-color: #EEF9FF; }

@media all and (max-width: 1599px) {
  #faq {
    padding-top: 70px; } }

@media all and (max-width: 991px) {
  #faq {
    padding-bottom: 50px; } }

#faq .faq__main {
  background-color: #fff;
  border-radius: 15px;
  max-width: 1127px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 25px 60px 25px; }

@media all and (max-width: 1199px) {
  #faq .faq__main {
    padding-top: 40px;
    padding-bottom: 50px; } }

@media all and (max-width: 575px) {
  #faq .faq__main {
    padding-left: 10px;
    padding-right: 10px; } }

#faq .faq__main .faq_tabs {
  max-width: 1010px;
  width: 100%;
  margin: 0 auto; }

#faq .faq__main .faq_tabs .tabs_item:not(:last-child) {
  margin-bottom: 55px; }

@media all and (max-width: 1199px) {
  #faq .faq__main .faq_tabs .tabs_item:not(:last-child) {
    margin-bottom: 35px; } }

#faq .faq__main .faq_tabs .title {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  padding-right: 45px; }

#faq .faq__main .faq_tabs .title span {
  font-size: 19px;
  line-height: 22px;
  padding-bottom: 6px;
  display: inline-block;
  border-bottom: 3px solid #EBE31B; }

@media all and (max-width: 1199px) {
  #faq .faq__main .faq_tabs .title span {
    font-size: 18px; } }

@media all and (max-width: 575px) {
  #faq .faq__main .faq_tabs .title span {
    display: block;
    border-bottom: 2px solid #EBE31B; } }

#faq .faq__main .faq_tabs .title:after {
  position: absolute;
  content: '';
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("../assets/icon_18.svg");
  width: 40px;
  height: 40px;
  top: -4px;
  right: 0;
  -webkit-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all; }

@media all and (max-width: 1199px) {
  #faq .faq__main .faq_tabs .title:after {
    width: 32px;
    height: 32px;
    top: 0; } }

#faq .faq__main .faq_tabs .title.active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }

#faq .faq__main .faq_tabs .tab_content {
  display: none;
  padding-top: 15px;
  padding-right: 45px;
  font-size: 16px;
  line-height: 24px; }

@media all and (max-width: 1199px) {
  #faq .faq__main .faq_tabs .tab_content {
    font-size: 14px; } }

/************************  mainform  *********************/
#mainform {
  padding-top: 58px;
  padding-bottom: 85px;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: inherit;
  background-position: 100% 100%;
  background-image: url("../assets/6_1.png"); }

@media all and (max-width: 1199px) {
  #mainform {
    background-image: none;
    padding-bottom: 60px; } }

@media all and (max-width: 991px) {
  #mainform {
    padding-top: 50px; } }

#mainform .box__content {
  margin-bottom: 45px; }

#mainform .box__content .content {
  padding-top: 42px; }

@media all and (max-width: 767px) {
  #mainform .box__content .content {
    padding-top: 0; } }

#mainform .box__content .content h2 {
  font-weight: bold;
  font-size: 42px;
  line-height: 49px;
  max-width: 300px;
  width: 100%; }

@media all and (max-width: 575px) {
  #mainform .box__content .content h2 {
    font-size: 32px;
    line-height: 40px; } }

#mainform .box__content .content h2 strong {
  font-weight: 900; }

#mainform .box__content .content hr {
  max-width: 161px;
  width: 100%;
  height: 1px;
  background-color: #000;
  padding: 0;
  border: none;
  margin: 36px auto 36px 0; }

@media all and (max-width: 575px) {
  #mainform .box__content .content hr {
    margin-top: 20px;
    margin-bottom: 20px; } }

#mainform .box__content .content h6 {
  font-size: 19px;
  line-height: 22px;
  max-width: 280px;
  width: 100%;
  margin-bottom: 35px; }

@media all and (max-width: 575px) {
  #mainform .box__content .content h6 {
    margin-bottom: 25px; } }

#mainform .box__content .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px; }

#mainform .box__content .content ul li {
  width: 150px;
  margin-bottom: 10px; }

#mainform .box__content .content ul li:not(:last-child) {
  margin-right: 20px; }

#mainform .box__content .content ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000; }

#mainform .box__content .content ul li a:hover {
  opacity: 0.7; }

#mainform .box__content .content ul li a img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px; }

#mainform .box__content .content ul li a p {
  font-size: 14px;
  line-height: 16px; }

#mainform .box__content .content .openchat {
  font-size: 14px;
  line-height: 16px; }

#mainform .box__form .form__inner {
  max-width: 458px;
  width: 100%;
  border: 1px solid #000000;
  padding: 40px 45px;
  margin-left: 30px; }

@media all and (max-width: 1199px) {
  #mainform .box__form .form__inner {
    margin-left: auto;
    margin-right: 0; } }

@media all and (max-width: 991px) {
  #mainform .box__form .form__inner {
    padding: 20px; } }

@media all and (max-width: 767px) {
  #mainform .box__form .form__inner {
    margin-left: 0;
    margin-right: auto; } }

#mainform .box__form .form__inner form .form__item input {
  width: 100%;
  height: 62px;
  padding-left: 30px;
  background: #FFFFFF;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 34px;
  color: #000;
  border: none; }

@media all and (max-width: 575px) {
  #mainform .box__form .form__inner form .form__item input {
    margin-bottom: 20px; } }

#mainform .box__form .form__inner form .form__item input::-webkit-input-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::-moz-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::-ms-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::-webkit-input-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::-moz-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input:-ms-input-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::-ms-input-placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .form__item input::placeholder {
  color: #000;
  opacity: 1; }

#mainform .box__form .form__inner form .policy {
  text-align: center;
  margin-bottom: 35px; }

@media all and (max-width: 991px) {
  #mainform .box__form .form__inner form .policy {
    margin-bottom: 30px; } }

@media all and (max-width: 575px) {
  #mainform .box__form .form__inner form .policy {
    margin-bottom: 20px; } }

#mainform .box__form .form__inner form .policy p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400; }

#mainform .box__form .form__inner form .policy p a {
  font-weight: 700;
  color: #000; }

#mainform .box__form .form__inner form .policy p a:hover {
  text-decoration: underline; }

#mainform .box__form .form__inner form .btn {
  max-width: 314px;
  width: 100%;
  margin: 0 auto;
  display: block; }

/***************************  block  *********************/
article img {
  /*width: auto;*/
  /*height: auto; */
  height: 100%; }

article img.centered, article .aligncenter, article div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

article img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline; }

article img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline; }

article .alignright {
  float: right; }

article .alignleft {
  float: left; }

article h2, article h3, article h4, article h5, article h6 {
  font-weight: 700;
  margin-bottom: 0.500em; }

article h2 {
  font-size: 32px;
  line-height: 38px; }

article h3 {
  font-size: 26px;
  line-height: 34px; }

article h4 {
  font-size: 22px; }

article h5 {
  font-size: 18px; }

article h6 {
  font-size: 16px; }

article p {
  margin-bottom: 1em; }

article a {
  color: #00a8d2; }

article ul, .faqul {
  margin-bottom: 1em; }

article ul li, .faqul li{
  position: relative;
  padding-left: 20px; }

article ul li:after, .faqul li:after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background-color: #EBE31B;
  top: 8px;
  left: 0; }

article ul li, article ol li, .faqul li{
  margin-bottom: 4px; }

article ol {
  margin-bottom: 1em;
  counter-reset: myCounter; }

article ol li {
  list-style: none; }

article ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  font-weight: 900;
  font-size: 14px;
  line-height: 25px;
  display: inline-block;
  text-align: center;
  margin-right: 9px; }

#block {
  background-color: #EEF9FF;
  padding-top: 60px;
  padding-bottom: 60px; }

@media all and (max-width: 991px) {
  #block {
    padding-top: 50px;
    padding-bottom: 50px; } }

#block .block__main {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 32px 39px; }

@media all and (max-width: 575px) {
  #block .block__main {
    padding: 20px 20px 15px 20px; } }

/*******************************  maps  ************************/
/**************************  contacts  ***********************/
#contacts .box {
  background-color: #edcc18;
  padding-top: 46px;
  padding-bottom: 46px;
  padding-left: 80px;
  padding-right: 40px; }

@media all and (max-width: 1199px) {
  #contacts .box {
    padding-left: 30px;
    padding-right: 30px; } }

@media all and (max-width: 767px) {
  #contacts .box {
    margin-bottom: 0; } }

#contacts .box:not(:last-child) {
  border-right: 1px solid #f3e33d; }

@media all and (max-width: 767px) {
  #contacts .box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f3e33d; } }

#contacts .box:nth-child(2) {
  background-color: #f4d439; }

#contacts .box:nth-child(3) {
  background-color: #f7d84d; }

#contacts .box .box__inner h6 {
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px; }

/***************************  footer  ***********************/
#footer {
  padding-top: 33px;
  background-color: #EEF9FF;
  padding-bottom: 33px;
}

@media all and (max-width: 575px) {
  #footer {
    padding-top: 40px; } }

#footer .footer__item {
  margin-bottom: 25px; }

@media all and (max-width: 575px) {
  #footer .footer__item {
    margin-bottom: 35px; } }

#footer .footer__logo .logo .custom-logo-link {
  display: block;
  margin-bottom: 12px; }

#footer .footer__logo .logo .custom-logo-link img {
  height: auto; }

#footer .footer__logo .logo p {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  color: #B2B2B2;
  margin-right: 17px;
  margin-bottom: 4px; }

#footer .footer__logo .logo .policy {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  color: #B2B2B2;
  margin-bottom: 4px; }

#footer .footer__logo .logo .policy:hover {
  text-decoration: underline; }

#footer .footer__contacts .contacts h6 {
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 18px; }

@media all and (max-width: 767px) {
  #footer .footer__contacts .contacts h6 {
    margin-bottom: 10px; } }

#footer .footer__contacts .contacts .phone, #footer .footer__contacts .contacts .mail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

#footer .footer__contacts .contacts .phone a, #footer .footer__contacts .contacts .mail a {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  color: #000; }

@media all and (max-width: 991px) {
  #footer .footer__contacts .contacts .phone a, #footer .footer__contacts .contacts .mail a {
    font-size: 18px; } }

#footer .footer__contacts .contacts .phone button, #footer .footer__contacts .contacts .mail button {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border: none;
  background-color: transparent;
  margin-left: 16px; }

@media all and (max-width: 991px) {
  #footer .footer__contacts .contacts .phone button, #footer .footer__contacts .contacts .mail button {
    margin-left: 8px; } }

#footer .footer__contacts .contacts .phone button:active, #footer .footer__contacts .contacts .mail button:active {
  opacity: 0.5; }


  /*****************  contact form 7 style  *****************/

  .wpcf7-validation-errors {
    display: none!important;
  }

  .wpcf7-form .wpcf7-response-output {
    font-size: 13px;
    line-height: 17px;
    margin: 3px auto 10px auto!important;
  }


  select.wpcf7-not-valid, input[type=text].wpcf7-not-valid, input[type=email].wpcf7-not-valid, input[type=tel].wpcf7-not-valid, textarea.wpcf7-not-valid, #block-7 input[type=text].wpcf7-not-valid, #block-7 input[type=tel].wpcf7-not-valid, #block-15 input[type=tel].wpcf7-not-valid, #block-15 input[type=text].wpcf7-not-valid{
      border: 2px solid #ec3c06!important;
      position:relative;
  }

  body span.wpcf7-not-valid-tip {
    display: none!important;
    color: #ec3c06;
    border: none;
    background: none;
  }
  body span.wpcf7-not-valid-tip-no-ajax{
    display:inline-block;
    font-size:18px;
    margin:0 0 0 10px;
  }
  body div.wpcf7-validation-errors {
      background: #ffe2e2;
      border: 2px solid #ff8a8a;
      color: #ec3c06;
      font-size:18px;
      text-align:center;
      position:relative;
      z-index:12000;
  }
  .contact-inner-form .wpcf7-response-output{
    width:95%;
  }
  body div.wpcf7-response-output {
    padding: 6px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 3px;
  }

  body .wpcf7-mail-sent-ng {
      background: #fff2e2;
      border: 1px solid #ffbc8a;
      color: #e17731;
  }

  body .wpcf7-mail-sent-ok {
      border: 1px solid transparent;
      color: #ff5805;
      text-align:center;
  }
 
#secondary {display:none;}

#menu-main_menu .sub-menu {display:none;
 position: absolute;
/* top: 3em;
 left: 0;*/
 padding:15px 10px;
 z-index: 99999;
 width: 260px;
 background: #fff;
 box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}
#menu-main_menu li:hover > .sub-menu {
 display: block;
}

.fixbot {
	display: none;
	/*position: fixed;*/
	bottom: 0;
	width: 100%;
	background: #fff;
	height: 65px;
	border-top: 0px solid #fff;
	z-index: 999;
}

.fixbot .inner {
	display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 25px;
}

.fixbot a {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}
@media all and (max-width: 767px) {
	.fixbot {
		display: flex;
	}
}

#clients .clients__main .image img {
  border-radius: 10px;
}

#captchaModal.modal {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  opacity: 1;
  max-width: 100%;
}

#captchaModal.modal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 305px;
}

#captchaModal.modal p {
  font-weight: 700;
}

#submitCaptcha {
  background-color: #E1D910;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  margin: 10px auto;
}

article h1 {
  padding-bottom: 20px;
}

.portfolio-links {
  display: flex;
  flex-direction: column;
}