﻿@charset "UTF-8";
.bg-blue {
  background: #3ab9e5;
}

.bg-yellow {
  background: #ecb216;
}

.text-blue {
  color: #3ab9e5 !important;
}

.text-yellow {
  color: #ecb216 !important;
}

/*
0 - 576px:      Extra small devices (portrait phones, less than 576px)
577 - 768px:    Small devices (landscape phones, 576px and up)
769 - 992px:    Medium devices (tablets, 768px and up)
993 - 1200px:   Large devices (desktops, 992px and up)
1200px + :      Extra large devices (large desktops, 1200px and up)

$breakpoint arguement choices:
- phone
- phone-land
- tab-port
- tab-land
- desktop

*/

input::-webkit-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input::placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input::-o-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input::-webkit-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea::placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea::-o-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  color: #31404c;
  font-size: 15px;
}

input:focus::-webkit-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

input:focus:-ms-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

input:focus::placeholder {
  opacity: 0 !important;
  outline: none;
}

input:focus::-o-placeholder {
  opacity: 0 !important;
  outline: none;
}

input::focus::-webkit-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

input:focus:-ms-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea:focus::placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea:focus::-o-placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea::focus::-webkit-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0 !important;
  outline: none;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 24px;
}
@media only screen and (max-width: 400px) {
  body {
    font-size: 14px;
    line-height: normal;
  }
}

* {
  outline: none !important;
}

.wrapper {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.header .wrapper {
  overflow: visible;
}

.other-wrapper {
  max-width: 1370px;
  margin: 0 auto;
  min-width: 320px;
  padding: 0;
  position: relative;
}

img {
  max-width: 100%;
}

.h1, h1 {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .h1, h1 {
    font-size: 30px;
  }
}

.h2, h2 {
  font-size: 40px;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 992px) {
  .h2, h2 {
    font-size: 30px;
  }
}

.h3, h3 {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .h3, h3 {
    font-size: 20px;
  }
}

.h4, h4 {
  font-size: 20px;
  font-weight: 700;
  color: #083150;
}
@media only screen and (max-width: 992px) {
  .h4, h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .h4, h4 {
    font-size: 16px;
  }
}

.h5, h5 {
  font-size: 18px;
  font-weight: 700;
  color: #3ab9e5;
}
@media only screen and (max-width: 992px) {
  .h5, h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .h5, h5 {
    font-size: 14px;
  }
}

a {
  -webkit-transition: ease all 0.3s;
          transition: ease all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: #3ab9e5;
}

.benefits ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits ul li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 24px;
  color: #31404c;
}
@media only screen and (max-width: 400px) {
  .benefits ul li {
    font-size: 14px;
    line-height: normal;
    padding-left: 20px;
  }
}
.benefits ul li:before {
  content: "";
  background: url(../images/ico-check.svg) no-repeat;
  width: 15px;
  height: 15px;
  font-size: 15px;
  color: #3ab9e5;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
}
@media only screen and (max-width: 400px) {
  .benefits ul li:before {
    font-size: 14px;
    width: 12px;
    height: 12px;
  }
}
ul li {
  font-size: 15px;
  line-height: 24px;
}
@media only screen and (max-width: 400px) {
  ul li {
    font-size: 14px;
    line-height: normal;
  }
}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  height: 40px;
  line-height: 40px;
  border-radius: 35px;
  padding: 0 25px;
}
.form-control:focus {
  box-shadow: none;
}

/*Стрелки*/
.slick-prev {
  background: #000;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  z-index: 99;
}
.slick-prev::before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 25px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -12.5px;
  opacity: 1;
}
.slick-prev a {
  display: block;
}
.slick-prev:hover, .slick-prev:focus {
  background: #000;
}
.slick-prev.slick-disabled {
  background: #000;
}
.slick-prev.slick-disabled::before {
  opacity: 1;
}

.slick-next {
  background: #000;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  z-index: 99;
}
.slick-next::before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 25px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -12.5px;
  opacity: 1;
}
.slick-next a {
  display: block;
}
.slick-next:hover, .slick-next:focus {
  background: #000;
}
.slick-next.slick-disabled {
  background: #000;
}
.slick-next.slick-disabled::before {
  opacity: 1;
}

.btn-default {
  min-height: 40px;
  line-height: 35px;
  min-width: 147px;
  padding: 0 20px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  border: 2px solid transparent;
  font-size: 13px;
}
.btn-default:hover {
  color: #fff;
}
.header__nav .btn-default {
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .header__nav .btn-default {
    margin: 15px auto;
  }
}
.btn-default.bg-blue:hover {
  background: #ecb216;
  color: #000;
}
.btn-default.bg-yellow {
  color: #000;
}
.btn-default.bg-yellow:hover {
  background: #3ab9e5;
  color: #fff;
}
.btn-default.bg-transparent {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-default.bg-transparent:hover {
  border-color: #3ab9e5;
  color: #3ab9e5;
}

.header {
  background: #fff;
  padding: 15px 0;
}
@media only screen and (max-width: 500px) {
  .header {
    padding: 5px 0;
  }
}
.header__logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
}
.header .col-6,
.header .col-6 {
  position: static;
}

.navbar {
  padding: 13px 0;
  position: static;
}
@media screen and (min-width: 768px) {
  .navbar-collapse {
    display: -webkit-box !important;
    display: flex !important;
    position: relative;
    padding: 0;
    border-bottom: 5px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 4;
    text-align: center;
  }
  .navbar-collapse.show {
    border-bottom: 5px solid lightgrey;
  }
}
@media screen and (min-width: 768px) {
  .navbar-toggler {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.navbar .nav-item {
  margin-left: 35px;
  padding: 0;
}
.navbar .nav-item:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .navbar .nav-item {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar .nav-item:last-child {
    border-bottom: none;
  }
}
.navbar .nav-link {
  color: #000;
  font-size: 14px;
}
.navbar .nav-link:hover, .navbar .nav-link:active {
  color: #3ab9e5;
}
@media screen and (max-width: 767px) {
  .navbar .nav-link {
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 0;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #3ab9e5;
}

.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: #3ab9e5;
}

@media screen and (min-width: 768px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    text-align: center;
    border: 0;
    margin: 0 0 25px;
    padding: 0;
  }
}

.dropdown-toggle:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  border: 0;
  margin-left: 7px;
  vertical-align: middle;
  width: auto;
  height: auto;
  font-size: 12px;
}
.dropdown-item {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.btn-default {
  text-transform: uppercase;
}

.page.book-demo {
  padding: 0;
  background: transparent;
}
.page.book-demo .footer {
  padding: 0;
}
.page.book-demo .footer__footnote {
  padding-bottom: 17px;
}

.footer {
  padding: 65px 0 25px;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 10px;
  }
}
@media only screen and (max-width: 576px) {
  .footer {
    text-align: center;
  }
}
.footer .h5 {
  margin-bottom: 8px;
}
.footer__row {
  padding: 0 0 70px;
}
@media only screen and (max-width: 768px) {
  .footer__row {
    padding: 0 0 10px;
  }
}
.footer__col {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .footer__col {
    -webkit-box-flex: 0;
            flex: 0 0 21.5%;
    max-width: 21.5%;
  }
}
.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav ul li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
  color: #31404c;
  margin-bottom: 3px;
}
.footer__nav ul li:before {
  display: none;
}
.footer__nav ul li a {
  color: #31404c;
}
.footer__nav ul li a:hover {
  color: #3ab9e5;
}
.footer__nav ul.contacts {
  margin-bottom: 25px;
}
.footer__nav ul.contacts li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 850px) and (min-width: 768px) {
  .footer__nav ul.contacts li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 576px) {
  .footer__nav ul.contacts li a {
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.footer__nav ul.contacts li a i {
  width: 15px;
  margin-right: 5px;
}
.footer__nav ul.social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 576px) {
  .footer__nav ul.social {
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.footer__nav ul.social li {
  font-size: 17px;
  color: #083150;
  margin-right: 25px;
}
@media only screen and (max-width: 576px) {
  .footer__nav ul.social li {
    margin: 0 10px;
  }
}
.footer__footnote {
  border-top: 1px solid #e6eaed;
  padding-top: 17px;
  font-size: 12px;
  color: #969696;
}
@media only screen and (max-width: 768px) {
  .footer__footnote {
    padding: 10px 0 0;
  }
}

.social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.social li {
  font-size: 17px;
  color: #083150;
  margin-right: 22px;
}

textarea.form-control {
  height: auto;
}

.extra-large-font {
  font-size: 55px;
}

a .fas {
  margin-right: 10px;
}

.information {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f3f8fa+0,ffffff+100 */
  background: #f3f8fa;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f3f8fa 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f3f8fa 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f3f8fa", endColorstr="#ffffff",GradientType=0 );
  /* IE6-9 */
  padding: 15px 0 30px;
}
@media only screen and (max-width: 768px) {
  .information {
    padding: 0;
  }
}
.information__row {
  padding: 85px 0px 75px 0px;
  border-bottom: 1px solid #e2ebee;
  -webkit-box-align: center;
          align-items: center;
}
.information__row:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 992px) {
  .information__row {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .information__row {
    padding: 30px 0px;
  }
}
.information__title {
  font-size: 32px;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .information__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.information p {
  color: #31404c;
  margin: 0 0 10px;
}
.information p:last-child {
  margin-bottom: 0;
}
.information ul {
  margin: 15px 0;
}
.information ul li {
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .information__col_img {
    -webkit-box-flex: 0;
            flex: 0 0 45%;
    max-width: 45%;
    position: relative;
  }
  .information__col_img img {
    max-height: 300px;
  }
  .information__col_img img.non-clip-art {
    max-height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .information__col_img {
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
}
@media only screen and (max-width: 992px) {
  .information__col_img img {
    max-width: 220px;
  }
}
@media screen and (min-width: 992px) {
  .information__col_text {
    -webkit-box-flex: 0;
            flex: 0 0 55%;
    max-width: 55%;
    padding-left: 50px;
  }
}
.information__col_text .btn-default {
  margin-top: 32px;
  padding: 0 30px;
}
@media only screen and (max-width: 768px) {
  .information__col_text .btn-default {
    padding: 0 15px;
  }
}

.home-banner {
  border-bottom: 10px solid #d1edf3;
}
.home-banner-carousel {
  margin-bottom: 0;
}
.home-banner__item {
  position: relative;
}
@media screen and (max-width: 700px) {
  .home-banner__item {
    max-height: none;
  }
}
.home-banner__img {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  max-height: 505px;
}
@media screen and (min-width: 701px) {
  .home-banner__img picture {
    width: 55%;
  }
  .home-banner__img picture img {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .home-banner__img {
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.home-banner__wrap {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .home-banner__wrap {
    position: relative;
    background: #083150;
    padding: 30px 15px 20px;
    text-align: center;
  }
}
.home-banner__wrap.gradient {
  height: 300px;
  position: relative;
}
.home-banner__wrap.gradient:after {
  height: 100%;
  width: 100%;
  background: url(../images/bg-gradient.webp) repeat-x;
}
@media only screen and (max-width: 768px) {
  .home-banner__wrap.gradient:after {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .home-banner__wrap.gradient:after {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .home-banner__wrap.gradient {
    height: 438px;
  }
}
@media only screen and (max-width: 400px) {
  .home-banner__wrap.gradient {
    height: 361.63px;
  }
}
.home-banner__wrap.gradient .home-banner__descr {
  padding: 0 15px;
  text-align: center;
}
.home-banner__wrap.gradient .home-banner__descr p {
  margin-bottom: 0;
}
.home-banner__wrap.gradient .banner-logo {
  margin: 0 auto;
  display: block;
}
.home-banner__wrap.gradient .banner-logo.logo-bg-white {
  background: #FFF;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}
.home-banner__wrap:after {
  content: "";
  background: url(../images/bg-header.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .home-banner__wrap:after {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .home-banner__wrap:after {
    display: none;
  }
}
.home-banner .banner-logo {
  max-width: 150px;
  margin-bottom: 20px;
}
.home-banner .banner-logo img {
  display: block;
}
@media only screen and (max-width: 600px) {
  .home-banner .banner-logo {
    margin: 0 auto;
    display: block;
  }
}
.home-banner__descr {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 33% 40px 15px;
}
@media screen and (max-width: 1470px) {
  .home-banner__descr {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1250px) {
  .home-banner__descr {
    padding-bottom: 0;
    padding-right: 53%;
    max-width: 1115px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner__descr {
    padding-right: 40%;
  }
}
@media screen and (max-width: 700px) {
  .home-banner__descr {
    padding: 0;
    max-width: none;
  }
}
.home-banner__descr p {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 50px;
}
@media only screen and (max-width: 992px) {
  .home-banner__descr p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.home-banner__title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  .home-banner__title br {
    display: none;
  }
}
.home-banner__btns {
  margin: 0 -8px;
}
.home-banner__btns a {
  margin: 0 8px 10px;
}

.stay {
  padding: 50px 0 70px;
}
@media only screen and (max-width: 768px) {
  .stay {
    padding: 30px 0;
  }
}
.stay__title {
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 400px) {
  .stay__title {
    margin-bottom: 20px;
  }
}
.stay__subtitle {
  text-align: center;
  margin: 0 auto 55px;
  max-width: 850px;
}
.stay__subtitle strong {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.stay__subtitle p {
  margin: 0;
  font-size: 16px;
  color: #31404c;
}
@media only screen and (max-width: 400px) {
  .stay__subtitle {
    margin-bottom: 35px;
  }
  .stay__subtitle strong {
    font-size: 14px;
  }
  .stay__subtitle p {
    font-size: 14px;
  }
}
.stay__row {
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .stay__row {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .stay__row {
    margin-bottom: 0;
  }
}
.stay__col {
  margin-bottom: 20px;
}
.stay__wrap {
  padding: 0 40px;
}
@media only screen and (max-width: 992px) {
  .stay__wrap {
    padding: 0;
  }
}
.stay__name {
  margin-bottom: 15px;
}
.stay__icon {
  margin-right: 10px;
  font-size: 20px;
  color: #3ab9e5;
}
@media only screen and (max-width: 400px) {
  .stay__icon {
    font-size: 16px;
    margin-right: 5px;
  }
}
.stay__text {
  font-weight: 700;
  color: #083150;
  font-size: 20px;
}
@media only screen and (max-width: 400px) {
  .stay__text {
    font-size: 16px;
  }
}
.stay__descr {
  color: #31404c;
  font-size: 15px;
}
@media only screen and (max-width: 400px) {
  .stay__descr {
    font-size: 14px;
  }
}
.stay__btn {
  text-align: center;
}

.statistics {
  background: #3ab9e5;
  padding: 45px 0 55px;
}
@media only screen and (max-width: 768px) {
  .statistics {
    padding: 30px 0;
  }
}
.statistics__row {
  margin-bottom: 30px;
}
@media screen and (max-width: 370px) {
  .statistics__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.statistics__icon {
  color: #083150;
  font-weight: 300;
  font-size: 45px;
  margin-right: 25px;
}
@media only screen and (max-width: 576px) {
  .statistics__icon {
    font-size: 30px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .statistics__icon {
    font-size: 20px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 370px) {
  .statistics__icon {
    margin: 0 0 5px;
  }
}
.statistics__descr h3 {
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .statistics__descr h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .statistics__descr h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .statistics__descr h3 {
    text-align: center;
  }
}
.statistics__descr p {
  font-size: 20px;
  font-weight: 700;
  color: #083150;
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .statistics__descr p {
    line-height: normal;
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .statistics__descr p {
    font-size: 14px;
  }
}
.statistics__footnote {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .statistics__footnote {
    font-size: 13px;
  }
}
@media screen and (max-width: 370px) {
  .statistics__footnote {
    font-size: 11px;
  }
}

.review {
    background: url(../images/bg-03.webp) no-repeat;
    background-size: cover;
}
.review-carousel {
  margin-bottom: 0;
}
.review__wrap {
    background: url(../images/bg-header2.webp) no-repeat;
    background-size: 100% 100%;
    width: 60%;
    margin-left: auto;
    height: 100%;
    padding: 87px 0 90px 200px;
    color: #fff;
}
@media screen and (max-width: 1250px) {
  .review__wrap {
    width: 65%;
    padding: 40px 10px 40px 100px;
  }
}
@media only screen and (max-width: 768px) {
  .review__wrap {
    padding: 30px 10px 30px 100px;
    width: 75%;
  }
}
@media only screen and (max-width: 600px) {
  .review__wrap {
    width: 100%;
    background: #083150;
    text-align: center;
    padding: 30px 0;
  }
}
.review__img {
  display: inline-block;
  width: 183px;
  height: 80px;
  border-radius: 10px;
  background: #FFF;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media only screen and (max-width: 600px) {
  .review__img {
    margin: 0 auto 20px;
  }
}
.review__img img {
  display: block;
  margin: 0 auto;
  max-width: 163px;
  max-height: 60px;
}
.review__text {
  max-width: 520px;
}
@media only screen and (max-width: 600px) {
  .review__text {
    margin: 0 auto;
  }
}
.review__text i {
  font-size: 17px;
  color: #bdd0d6;
  line-height: 26px;
  display: block;
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (max-width: 400px) {
  .review__text i {
    font-size: 15px;
  }
}
.review__text i:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 3px;
  background: #3ab9e5;
  border-radius: 2px;
}
@media only screen and (max-width: 600px) {
  .review__text i:before {
    left: 50%;
    margin-left: -39px;
  }
}
.review__text small {
  font-size: 14px;
  display: block;
  font-weight: 700;
}
@media only screen and (max-width: 400px) {
  .review__text small {
    font-size: 12px;
  }
}

.benefits {
  padding: 45px 0 55px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .benefits {
    padding: 30px 0 10px;
  }
}
.benefits__title {
  margin: 0 0 55px;
}
@media only screen and (max-width: 400px) {
  .benefits__title {
    margin-bottom: 20px;
  }
}
.benefits__row {
  text-align: left;
}
.benefits__box {
  padding: 0 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .benefits__box {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .benefits__box {
    margin-bottom: 50px;
  }
}
.benefits__box ul li {
  margin-bottom: 17px;
}
@media only screen and (max-width: 400px) {
  .benefits__box ul li {
    margin-bottom: 10px;
  }
}
.benefits__heading {
  font-size: 20px;
  margin-bottom: 10px;
}
.benefits__heading .h4 {
  margin: 0;
}
.benefits__icon {
  color: #3ab9e5;
  font-size: 20px;
  margin-right: 10px;
}

.choose {
  background: #f9fcfd;
  padding: 60px 0 5px;
}
@media only screen and (max-width: 768px) {
  .choose {
    padding: 30px 0 10px;
  }
}
.choose__title {
  text-align: center;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .choose__title {
    margin-bottom: 20px;
  }
}
.choose__subtitle {
  font-size: 16px;
  margin-bottom: 70px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .choose__subtitle {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .choose__subtitle {
    font-size: 14px;
  }
}
.choose__subtitle_top {
  font-weight: 700;
  margin: 0 0 10px;
}
@media only screen and (max-width: 992px) {
  .choose__wrap {
    max-width: 220px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  .choose__wrap {
    max-width: 100%;
  }
}
.choose__col {
  -webkit-box-flex: 0;
          flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .choose__col {
    -webkit-box-flex: 1;
            flex: 1 1 33.333%;
    max-width: none;
  }
}
@media only screen and (max-width: 768px) {
  .choose__col {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .choose__col {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
  }
}
.choose__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 24px;
  color: #31404c;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .choose__item {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: normal;
  }
}
.choose__icon {
  font-size: 20px;
  font-weight: 700;
  color: #3ab9e5;
  margin-right: 10px;
  min-width: 30px;
  text-align: center;
}
@media only screen and (max-width: 400px) {
  .choose__icon {
    min-width: 20px;
    font-size: 15px;
    margin-right: 5px;
  }
}

.book-demo {
  background: #083150;
  padding: 74px 0;
}
@media only screen and (max-width: 768px) {
  .book-demo {
    padding: 30px 0;
  }
}
.book-demo__title {
  color: #fff;
  margin: 0 0 20px;
}
.book-demo__descr {
  max-width: 500px;
  font-weight: 700;
  font-size: 17px;
}
@media only screen and (max-width: 576px) {
  .book-demo__descr {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .book-demo__descr {
    font-size: 14px;
  }
}
.book-demo__form {
  padding: 10px 35px 10px 85px;
}
@media screen and (max-width: 1250px) {
  .book-demo__form {
    padding: 10px 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .book-demo__form {
    padding: 10px 0 0;
  }
}
.book-demo__form .btn-default {
  margin-top: 5px;
}

.bg-gradient {
  background: url("/images/bg-gradient.webp") repeat-x center;
  background-size: 100% 100%;
}

.book-demo-addi {
    background: url(../images/bg-01.webp) no-repeat;
    background-size: cover;
    padding: 105px 0;
    position: relative;
}
.book-demo-addi:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(2, 52, 80, 0.5);
}
.book-demo-addi:after {
  content: "";
  background: url(../images/bg-header.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 57%;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .book-demo-addi:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .book-demo-addi {
    padding: 30px 0;
  }
}
.book-demo-addi__wrap {
  padding-right: 90px;
}
@media screen and (max-width: 1250px) {
  .book-demo-addi__wrap {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .book-demo-addi__wrap {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .book-demo-addi__wrap {
    padding: 0;
    margin-bottom: 50px;
  }
}
.book-demo-addi__title {
  color: #fff;
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
}
.book-demo-addi__descr {
  max-width: 500px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .book-demo-addi__descr {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .book-demo-addi__descr {
    font-size: 14px;
  }
}
.book-demo-addi__text {
  position: relative;
  z-index: 2;
  color: #fff;
}
.book-demo-addi__text p {
  margin: 0 0 15px;
}
.book-demo-addi__form {
  padding: 40px 65px 10px 155px;
}
@media screen and (max-width: 1250px) {
  .book-demo-addi__form {
    padding: 20px 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .book-demo-addi__form {
    padding: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .book-demo-addi__form {
    padding: 0;
  }
}
.book-demo-addi__form .btn-default {
  margin-top: 5px;
}
.book-demo-addi__form .h3 {
  font-weight: 300;
  font-size: 24px;
  margin: 0 0 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .book-demo-addi__form .h3 {
    padding: 0;
  }
}

.review-addi {
  background: #bce5ee;
  padding: 82px 0 80px;
}
@media only screen and (max-width: 600px) {
  .review-addi {
    padding: 30px;
  }
}
.review-addi__row {
  display: -webkit-box;
  display: flex;
}
@media only screen and (max-width: 600px) {
  .review-addi__row {
    flex-wrap: wrap;
  }
}
.review-addi__img {
  -webkit-box-flex: 0;
          flex: 0 0 183px;
  width: 183px;
  height: 80px;
  border-radius: 7px;
  overflow: hidden;
  margin-right: 70px;
}
@media only screen and (max-width: 768px) {
  .review-addi__img {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .review-addi__img {
    margin: 0 auto 20px;
  }
}
.review-addi__text {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  max-width: 600px;
}
.review-addi__text i {
  font-size: 17px;
  color: #083150;
  line-height: 26px;
  display: block;
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .review-addi__text i {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .review-addi__text i {
    font-size: 15px;
  }
}
.review-addi__text i:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 3px;
  background: #3ab9e5;
  border-radius: 2px;
}
@media only screen and (max-width: 600px) {
  .review-addi__text i:before {
    left: 50%;
    margin-left: -39px;
  }
}
.review-addi__text small {
  font-size: 14px;
  display: block;
  font-weight: 700;
  color: #083150;
}
@media only screen and (max-width: 600px) {
  .review-addi__text small {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .review-addi__text small {
    font-size: 12px;
  }
}

.archive-cards .card {
  -webkit-box-flex: 0;
          flex: 0 1 350px;
  margin: 0 15px 30px 15px;
}
.archive-cards .card .card-img, .archive-cards .card .card-img-top {
  height: 140px;
  position: relative;
}
.archive-cards .card .card-img img, .archive-cards .card .card-img-top img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
}
.archive-cards .card .card-body {
  background: #f7f7f7;
  text-align: center;
}
.archive-cards .card .card-title {
  color: #083150;
}
.archive-cards .card .btn-link {
  color: #3ab9e5;
}
.archive-cards .card .card-text-top {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.archive-cards .card .date::after {
  content: "|";
  margin: 0 10px;
}
.archive-cards .card .date .category a {
  color: #3ab9e5;
}

ul.hightlight-list li {
  font-size: 20px;
}

.paginator .number, .paginator .arrow {
  font-size: 16px;
  margin: 0 10px;
}
.paginator .arrow {
  color: #969696;
}
.paginator .arrow:hover {
  color: #3ab9e5;
}
.paginator .number {
  color: #083150;
}
.paginator .number.current, .paginator .number:hover {
  color: #3ab9e5;
}

.blog-banner {
  padding: 60px 15px;
  min-height: 350px;
}
.blog-banner .heading .date:after {
  content: "";
  margin: 0 10px;
  height: 10px;
  width: 1px;
  background: #FFF;
  display: inline-block;
}
.blog-banner .heading .title {
  font-size: 40px;
  font-weight: 400;
}
.blog-banner .heading .title:after {
  content: "";
  display: block;
  margin: 10px auto 20px;
  width: 60px;
  height: 3px;
  background: #3ab9e5;
}
@media only screen and (max-width: 768px) {
  .blog-banner {
    min-height: 0;
  }
  .blog-banner .heading .title {
    font-size: 30px;
  }
}

.blog-image {
  margin-top: -70px;
}
.blog-image img {
  max-width: 750px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .blog-image {
    margin-top: 25px;
  }
}

.blog-text .container-fluid, .case-study-text .container-fluid {
  max-width: 75vw;
  width: 650px;
}
@media only screen and (max-width: 600px) {
  .blog-text .container-fluid, .case-study-text .container-fluid {
    max-width: none;
    width: auto;
    text-align: justify;
  }
}

.case-study-text .information__row {
  padding-left: 0;
}


.featured {
    background: #3ab9e5;
    padding: 0px 0 30px;
}

.featured__title {
    margin: 0 0 55px;
    color: #ffffff;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 400px) {
    .featured__title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .featured {
        padding: 30px 0;
    }
}

.featured__row {
    margin-bottom: 30px;
}

@media screen and (max-width: 370px) {
    .featured__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

.featured__icon {
    color: #083150;
    font-weight: 300;
    font-size: 45px;
    margin-right: 25px;
}

@media only screen and (max-width: 576px) {
    .featured__icon {
        font-size: 30px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .featured__icon {
        font-size: 20px;
        margin-right: 5px;
    }
}

@media screen and (max-width: 370px) {
    .featured__icon {
        margin: 0 0 5px;
    }
}

.featured__descr h3 {
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .featured__descr h3 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .featured__descr h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 370px) {
    .featured__descr h3 {
        text-align: center;
    }
}

.featured__descr p {
    font-size: 20px;
    font-weight: 700;
    color: #083150;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .featured__descr p {
        line-height: normal;
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .featured__descr p {
        font-size: 14px;
    }
}

.featured__footnote {
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
}

@media only screen and (max-width: 576px) {
    .featured__footnote {
        font-size: 13px;
    }
}

@media screen and (max-width: 370px) {
    .featured__footnote {
        font-size: 11px;
    }
}


.comments {
    background: #3ab9e5;
    padding: 80px 0 80px;
}