/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import "https://use.typekit.net/cgt0gjg.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: gill-sans-nova, sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #434444;
  background-color: #ffffff;
}

section {
  padding: 60px 0;
}

.container {
  width: 950px;
  margin: 0 auto;
}

.title-wrap h1 {
  font-size: 45px;
  line-height: 1;
}
.title-wrap p {
  font-size: 20px;
}

h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 300;
  color: #05395b;
}

h3 {
  margin-bottom: 8px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #0055a5;
}

p.text {
  margin-bottom: 30px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.fa-phone {
  font-size: 26px;
  transform: rotate(90deg);
}

form {
  display: flex;
  flex-wrap: wrap;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #05395b;
}
form p {
  font-size: 20px;
}
form input {
  margin: 10px 0;
  padding: 0 10px;
  font-size: 15px;
  line-height: 38px;
  height: 38px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  color: #434444;
}
form input::-webkit-input-placeholder {
  color: #808080;
}
form input::-moz-placeholder {
  color: #808080;
}
form input:-moz-placeholder {
  color: #808080;
}
form input:-ms-input-placeholder {
  color: #808080;
}
form input[type='submit'] {
  background: #ef912c;
  border: none;
  border-radius: 20px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  cursor: hand;
  transition-duration: 0.5s;
  -webkit-appearance: none;
}

.note {
  font-size: 11px;
  text-align: center;
}
.note a {
  color: #00a4e4;
}

.or {
  width: 20px;
  position: relative;
}
.or::before {
  content: "";
  display: block;
  position: absolute;
}
.or::after {
  content: "";
  display: block;
  position: absolute;
}

.call-us {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}
.call-us .circle {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #ef912c;
  color: #ffffff;
  border-radius: 50%;
}
.call-us .circle i {
  font-size: 30px;
  line-height: 58px;
}
.call-us span {
  font-size: 20px;
}
.call-us .tel {
  font-size: 26px;
  white-space: nowrap;
  transition-duration: 0.5s;
}
.call-us .tel:hover {
  color: #ef912c;
  text-decoration: none;
}

.pulse {
  box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
  transition-duration: 0.5s;
  animation: pulse 2s infinite;
}

.pulse:hover {
  animation: none;
}

.cm-popup-close {
  display: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
    box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
  }
  70% {
    -moz-box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
    box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
    box-shadow: 0 0 0 0 rgba(239, 145, 44, 0);
  }
}
.ready-call {
  text-align: center;
}
.ready-call .ready {
  font-size: 18px;
  white-space: nowrap;
}
.ready-call .call {
  font-size: 19px;
  white-space: nowrap;
}

#to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: #1a6fa8;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.5s;
  line-height: 50px;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  cursor: hand;
}
#to-top.visible {
  visibility: visible;
  opacity: 1;
}
#to-top:hover {
  transform: scale(1.1);
}

.socials-links {
  display: flex;
  justify-content: flex-end;
}
.socials-links .social-link {
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.socials-links .social-link.facebook {
  background: url("../images/elastic/svg/facebook.svg") center no-repeat;
}
.socials-links .social-link.youtube {
  background: url("../images/elastic/svg/youtube.svg") center no-repeat;
}
.socials-links .social-link.linkedin {
  background: url("../images/elastic/svg/linkedin.svg") center no-repeat;
}

.contacts .tel,
.contacts .email {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
  color: #ffffff;
}
.contacts .tel:before,
.contacts .email:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 30px;
  background: url("../images/elastic/svg/chat.svg") center no-repeat;
  background-size: contain;
}
.contacts .email:before {
  background: url("../images/elastic/svg/mail.svg") center no-repeat;
  background-size: contain;
}

.invisible-on-desctop {
  display: none;
}

a.mobile-contact-menu {
  display: none;
}

@media (max-width: 1200px) {
  .title-wrap h1 {
    font-size: calc(47px + (47 - 32) * (100vw - 1200px) / (1200 - 320));
  }
  .title-wrap p {
    font-size: calc(20px + (20 - 16) * (100vw - 1200px) / (1200 - 320));
  }

  section {
    padding: calc(60px + (60 - 50) * (100vw - 1200px) / (1200 - 320)) 0;
  }

  .container {
    width: auto;
    margin: 0 calc(125px + (125 - 12) * (100vw - 1200px) / (1200 - 320));
  }

  #to-top {
    bottom: calc(50px + (50 - 10) * (100vw - 1200px) / (1200 - 720));
    right: calc(50px + (50 - 10) * (100vw - 1200px) / (1200 - 720));
  }
}
@media (max-width: 720px) {
  body {
    font-size: calc(16px + (16 - 14) * (100vw - 720px) / (720 - 320));
  }

  h2 {
    font-size: calc(20px + (20 - 18) * (100vw - 1200px) / (1200 - 320));
    text-align: center;
  }

  form input {
    margin: 8px 0;
  }

  .call-us .circle {
    width: calc(60px + (60 - 48) * (100vw - 720px) / (720 - 320));
    height: calc(60px + (60 - 48) * (100vw - 720px) / (720 - 320));
    transition-duration: 0.5s;
  }
  .call-us .circle i {
    font-size: calc(30px + (30 - 25) * (100vw - 720px) / (720 - 320));
    line-height: calc(58px + (58 - 47) * (100vw - 720px) / (720 - 320));
  }
  .call-us a {
    font-size: calc(26px + (26 - 20) * (100vw - 1200px) / (1200 - 320));
  }

  #to-top {
    bottom: 10px;
    right: 10px;
  }
  #to-top.visible {
    opacity: 0.6;
  }
  #to-top:hover {
    opacity: 1;
  }

  .invisible-on-desctop {
    display: block;
  }
}
@media (max-width: 400px) {
  .call-us br {
    display: none;
  }
}
header {
  color: #0290de;
  background-color: #bcd2de;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 120px;
  margin: 18px 0;
}
header .schedule {
  font-size: 18px;
}
header .phone {
  position: relative;
  padding-left: 30px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #0290de;
  transition-duration: 0.5s;
}
header .phone:hover {
  color: #015685;
  text-decoration: none;
}
header .phone .fa-phone {
  position: absolute;
  top: 1px;
  left: 0;
}
header.eb {
  position: relative;
  color: #0055a5;
}
header.eb .menu-and-socials {
  flex-grow: 1;
  margin-left: 5px;
}
header .socials-and-lang {
  display: flex;
  justify-content: flex-end;
}
header .socials-and-lang .lang {
  margin-left: 30px;
}
header .socials-and-lang .lang a {
  color: #0055a5;
  font-size: 14px;
}
header .socials-links .social-link {
  width: 21px;
  height: 21px;
}
header .contacts {
  display: none;
}
header .menu {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
}
header .menu li {
  position: relative;
  margin: 0 9px;
  white-space: nowrap;
  cursor: pointer;
}
header .menu li a {
  color: #0055a5;
}
header .menu li a:hover {
  text-decoration: none;
}
header .menu li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ef912c;
  opacity: 0;
  transition-duration: 0.5s;
}
header .menu li:hover:after {
  opacity: 1;
}
header .menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -35px;
  background: #ffffff;
  transition-duration: 0.5s;
}
header .menu li .sub-menu li:after {
  display: none;
}
header .menu li.has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
header .label {
  display: none;
  position: relative;
  padding-top: 25px;
  font-size: 12px;
  cursor: pointer;
}
header .label:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}
header .label.contact-label:before {
  background: url("../images/elastic/svg/mobile-contact.svg") center no-repeat;
  background-size: contain;
}
header .label.menu-label {
  margin-left: 30px;
}
header .label.menu-label:before {
  background: url("../images/elastic/svg/mobile-menu.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  header .logo {
    width: calc(120px + (120 - 100) * (100vw - 1200px) / (1200 - 320));
    margin: calc(18px + (18 - 15) * (100vw - 1200px) / (1200 - 320)) 0;
  }
  header .phone {
    font-size: calc(20px + (20 - 16) * (100vw - 1200px) / (1200 - 320));
  }
  header .fa-phone {
    font-size: calc(26px + (26 - 24) * (100vw - 1200px) / (1200 - 320));
  }
}
@media (max-width: 1100px) {
  header .menu-and-socials {
    display: flex;
    justify-content: flex-end;
  }
  header .socials-and-lang {
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 5px solid #259ed8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translate(0, -200%);
    transition-duration: 0.5s;
  }
  header .socials-and-lang.active {
    opacity: 1;
    transform: translate(0, 0);
    z-index: 2;
  }
  header .socials-and-lang .lang {
    display: none;
  }
  header .socials-and-lang .socials-links {
    width: 100%;
    justify-content: center;
    padding-bottom: 20px;
  }
  header .contacts {
    display: block;
    width: 100%;
    text-align: center;
  }
  header .contacts a.tel,
  header .contacts a.email {
    padding: 7px 0 10px;
    margin: 0;
    color: #0055a5;
  }
  header .contacts a.tel:before,
  header .contacts a.email:before {
    display: none;
  }
  header .label {
    display: block;
  }
  header .menu {
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: 100%;
    background: #ffffff;
    border-top: 5px solid #259ed8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translate(0, -200%);
    transition-duration: 0.5s;
  }
  header .menu.active {
    opacity: 1;
    transform: translate(0, 0);
    z-index: 2;
  }
  header .menu li {
    width: 100%;
    margin: 0 calc(100px + (100 - 15) * (100vw - 1100px) / (1100 - 320));
    padding: 14px 15px 10px;
    border-bottom: 1px solid #e5e5e5;
  }
  header .menu li:last-of-type {
    border-bottom: none;
  }
  header .menu li:hover:after {
    opacity: 0;
  }
  header .menu li .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
  }
  header .menu li .sub-menu li {
    margin: 0 0 0 15px;
  }
}
@media (max-width: 720px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
  }
  header .schedule {
    display: none;
  }
}
#banner {
  padding: 0;
  color: #05395b;
}
#banner .container {
  position: relative;
}
#banner .banner-wrap {
  position: relative;
  padding-top: 60px;
}
#banner .banner-wrap svg.desctop {
  display: block;
  width: 100%;
}
#banner .banner-wrap svg.mobile {
  display: none;
  width: 100%;
  height: auto;
}
#banner .banner-wrap .banner-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#banner .banner-wrap .banner-desctop {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  min-width: 1300px;
  height: auto;
}
#banner .title-wrap {
  margin: 0 200px 15px 100px;
  text-align: center;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
}
#banner .title-wrap .schedule {
  display: none;
}
#banner .title-wrap .stamp {
  position: absolute;
  top: 15px;
  right: -55px;
  transform: rotate(22deg);
  width: 230px;
  padding: 10px 30px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  color: #154d80;
  border: 2px solid #154d80;
}
#banner .title-wrap h1 {
  margin-bottom: 17px;
}
#banner .form-and-tel {
  display: flex;
  align-items: center;
}
#banner .form-and-tel .form-wrap {
  width: 430px;
}
#banner .form-and-tel .form-wrap .form-bg {
  padding: 20px 45px 50px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
#banner .form-and-tel .form-wrap form {
  justify-content: center;
}
#banner .form-and-tel .form-wrap form input {
  flex-basis: 100%;
}
#banner .form-and-tel .form-wrap form input[type='submit'] {
  box-shadow: 4px 5px 10px rgba(127, 83, 20, 0.35);
}
#banner .form-and-tel .form-wrap form input[type='submit']:hover {
  box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
}
#banner .form-and-tel .form-wrap .note {
  margin: 10px 6px 0;
}
#banner .form-and-tel .or {
  margin: 50px;
  color: #ffffff;
}
#banner .form-and-tel .or::before {
  width: 1px;
  height: 122px;
  top: -150px;
  left: 50%;
  background-color: #ffffff;
}
#banner .form-and-tel .or::after {
  width: 1px;
  height: 122px;
  left: 50%;
  bottom: -150px;
  background-color: #ffffff;
}
#banner .form-and-tel .call-us span, #banner .form-and-tel .call-us .tel {
  color: #05395b;
}
#banner .form-and-tel .call-us .tel:hover {
  color: #ef912c;
}
#banner .free-kit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 435px;
  margin: -34px auto 110px;
  text-align: center;
}
#banner .free-kit img {
  width: 150px;
}
#banner .free-kit .text-wrap {
  position: relative;
}
#banner .free-kit .text-wrap::before {
  content: "";
  display: block;
  width: 111px;
  height: 2px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #05395b;
}
#banner .free-kit .text-wrap::after {
  content: "";
  display: block;
  width: 111px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  background-color: #05395b;
}
#banner .free-kit h3 {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
}
#banner .free-kit span {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}

@media (max-width: 1200px) {
  #banner .banner-wrap {
    padding-top: calc(60px + (60 - 20) * (100vw - 1200px) / (1200 - 320));
  }
  #banner .title-wrap {
    margin: 0 calc(200px + (200 - 100) * (100vw - 1200px) / (1200 - 720)) 15px calc(100px + (100 - 30) * (100vw - 1200px) / (1200 - 720));
  }
  #banner .form-and-tel .form-wrap form h2 {
    font-size: calc(20px + (20 - 16) * (100vw - 1200px) / (1200 - 720));
  }
  #banner .form-and-tel .or {
    margin: calc(50px + (50 - 22) * (100vw - 1200px) / (1200 - 720));
  }
}
@media (max-width: 720px) {
  #banner .banner-wrap {
    padding-top: 70px;
  }
  #banner .banner-wrap svg.desctop {
    display: none;
  }
  #banner .banner-wrap svg.mobile {
    display: block;
  }
  #banner .banner-wrap .banner-mobile {
    display: block;
  }
  #banner .banner-wrap .banner-desctop {
    display: none;
  }
  #banner .title-wrap {
    margin: 0 0 15px 0;
  }
  #banner .title-wrap .schedule {
    display: block;
    margin-bottom: 10px;
  }
  #banner .title-wrap .stamp {
    position: static;
    transform: rotate(0);
    margin: 0 auto 20px;
    width: 85%;
  }
  #banner .form-and-tel {
    flex-wrap: wrap;
  }
  #banner .form-and-tel .form-wrap {
    flex-basis: 100%;
  }
  #banner .form-and-tel .form-wrap form {
    padding: 20px calc(45px + (45 - 12) * (100vw - 720px) / (720 - 320)) 40px;
  }
  #banner .form-and-tel .form-wrap form h2 {
    font-size: calc(18px + (18 - 16) * (100vw - 720px) / (720 - 320));
  }
  #banner .form-and-tel .or {
    margin: 20px auto;
  }
  #banner .form-and-tel .or::before {
    width: 111px;
    height: 1px;
    top: 50%;
    left: -130px;
  }
  #banner .form-and-tel .or::after {
    width: 111px;
    height: 1px;
    top: 50%;
    right: -130px;
    left: auto;
  }
  #banner .form-and-tel .call-us {
    flex-basis: 100%;
  }
  #banner .free-kit {
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin: calc(-75px + (-75 - -20) * (100vw - 720px) / (720 - 320)) auto 85px;
  }
  #banner .free-kit img {
    margin-bottom: 28px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #banner .banner-wrap svg.mobile {
    height: calc(306px + (306 - 131) * (100vw - 720px) / (720 - 320));
  }
}
#quality-of-life {
  background: #e9e9e9;
}
#quality-of-life p {
  padding-bottom: 28px;
}
#quality-of-life a {
  color: #31b0f7;
}
#quality-of-life ul {
  font-size: 15px;
  line-height: 22px;
  list-style-type: none;
}
#quality-of-life ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
}
#quality-of-life ul li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  font-size: 23px;
  color: #31b0f7;
}
#quality-of-life .container {
  padding: 0 30px;
}

@media (max-width: 720px) {
  #quality-of-life .container {
    padding: 0;
  }
}
#history p {
  padding-bottom: 28px;
}

#what-is {
  background: #e9e9e9;
}
#what-is p {
  padding-bottom: 28px;
}
#what-is strong {
  font-weight: 700;
}
#what-is ul {
  padding-left: 15px;
  font-size: 15px;
  line-height: 22px;
  list-style-type: disc;
}
#what-is ul li {
  margin-bottom: 15px;
}
#what-is .container {
  display: flex;
  justify-content: space-between;
}
#what-is .container .column {
  width: 48%;
  padding: 30px;
  background: #ffffff;
}

@media (max-width: 720px) {
  #what-is .container {
    flex-wrap: wrap;
  }
  #what-is .container .column {
    width: 100%;
  }
  #what-is .container .column:first-of-type {
    margin-bottom: 40px;
  }
}
#features {
  background-color: #e9e9e9;
}
#features h2 {
  margin-bottom: 40px;
  color: #000000;
}
#features .features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#features .features .feature {
  flex-basis: 40%;
  margin-bottom: 80px;
  text-align: center;
}
#features .features .feature .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 25px;
  border: 1px solid #01b2cc;
  border-radius: 50%;
  position: relative;
  color: #01b2cc;
}
#features .features .feature .icon::before {
  content: "";
  display: block;
  width: 75px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -90px;
  background-color: #01b2cc;
}
#features .features .feature .icon::after {
  content: "";
  display: block;
  width: 75px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 65px;
  background-color: #01b2cc;
}
#features .features .feature .icon i {
  font-size: 28px;
  line-height: 52px;
  text-align: center;
}
#features .features .feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 1200px) {
  #features .features .feature {
    margin-bottom: calc(50px + (50 - 25) * (100vw - 1200px) / (1200 - 320));
  }
  #features .features .feature .icon {
    margin-bottom: calc(25px + (25 - 20) * (100vw - 1200px) / (1200 - 320));
  }
}
@media (max-width: 720px) {
  #features .features .feature {
    flex-basis: 100%;
  }
  #features .features .feature h3 {
    font-size: calc(20px + (20 - 18) * (100vw - 720px) / (720 - 320));
  }
}
#brands h3 {
  color: #0055a5;
}
#brands .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 140px;
}
#brands .logos .logo {
  width: 160px;
}
#brands .logos .logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  #brands .logos {
    margin-top: calc(140px + (140 - 40) * (100vw - 1200px) / (1200 - 320));
  }
  #brands .logos .logo {
    width: calc(160px + (160 - 105) * (100vw - 1200px) / (1200 - 320));
  }
}
#call-us {
  background: url("../images/background-2.jpg") center no-repeat;
  background-size: cover;
}
#call-us .call-us {
  color: #ffffff;
}
#call-us .call-us a {
  color: #ffffff;
}
#call-us .call-us .tel:hover {
  color: #ef912c;
}
#call-us .or {
  margin: 40px auto;
  color: #ef912c;
}
#call-us .or::before {
  width: 186px;
  height: 1px;
  top: 50%;
  left: -220px;
  background-color: #ef912c;
}
#call-us .or::after {
  width: 186px;
  height: 1px;
  top: 50%;
  right: -220px;
  background-color: #ef912c;
}
#call-us form {
  justify-content: space-between;
}
#call-us form input {
  flex-basis: 23%;
}
#call-us form input[type='submit'] {
  flex-basis: 350px;
  margin: 10px auto;
  box-shadow: 3px 4px 10px rgba(253, 224, 204, 0.4);
}
#call-us form input[type='submit']:hover {
  box-shadow: 0 0 5px 5px rgba(239, 145, 44, 0.4);
}
#call-us .note {
  width: 450px;
  margin: 10px auto 0;
}

@media (max-width: 1100px) {
  #call-us form input {
    flex-basis: 48%;
  }
}
@media (max-width: 720px) {
  #call-us .or {
    margin: calc(40px + (40 - 20) * (100vw - 720px) / (720 - 320)) auto;
  }
  #call-us .or::before {
    width: 111px;
    left: -130px;
  }
  #call-us .or::after {
    width: 111px;
    right: -130px;
  }
  #call-us form input {
    flex-basis: 100%;
  }
  #call-us .note {
    width: 100%;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #call-us form input {
    flex-basis: 22%;
  }
}
@media (max-width: 1100px) and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #call-us form input {
    flex-basis: 46%;
  }
}
#steps .steps {
  margin: 90px -1% 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  counter-reset: num;
}
#steps .steps .step {
  position: relative;
  flex-basis: 23%;
  margin-bottom: 60px;
  margin-right: 1%;
  padding: 20px 20px 40px;
  color: #ffffff;
  background-color: #00a2df;
}
#steps .steps .step::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  line-height: 60px;
  text-align: center;
  color: #05395b;
  background-color: #ffffff;
  border: 1px solid #00a2df;
  border-radius: 50%;
}
#steps .steps .step .name {
  padding: 0 10px 25px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  text-align: center;
}
#steps p {
  text-align: center;
}
#steps .quote {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  font-style: italic;
}
#steps .quote i {
  margin-right: 60px;
  font-size: 28px;
  color: #00a2df;
}
#steps .quote br {
  display: none;
}
#steps .name {
  margin-top: 40px;
}
#steps .position {
  margin-top: 5px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  #steps .steps {
    margin-top: calc(90px + (90 - 70) * (100vw - 1200px) / (1200 - 320));
  }
}
@media (max-width: 1000px) {
  #steps .steps .step {
    flex-basis: 48%;
  }
}
@media (max-width: 600px) {
  #steps .steps {
    margin-bottom: 0;
  }
  #steps .steps .step {
    flex-basis: 100%;
  }
  #steps .quote i {
    margin: 0 0 30px;
  }
  #steps .quote br {
    display: inline;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #steps .steps .step {
    flex-basis: 19%;
  }
}
@media (max-width: 1000px) and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #steps .steps .step {
    flex-basis: 41%;
  }
}
#types {
  padding-bottom: 100px;
  background-image: linear-gradient(to bottom, #e9e9e9 55%, #31b0f7 55%);
}
#types h3:nth-of-type(1) {
  margin: 70px 0 10px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #05395b;
  text-align: center;
}
#types .text {
  font-size: 20px;
  color: #434444;
  text-align: center;
}
#types .types {
  margin-top: 80px;
  margin-right: calc(-2.33%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#types .types .type {
  flex-basis: 31%;
  position: relative;
  margin: 0 2.33% 80px 0;
  background-color: #31b0f7;
  outline: 2px solid #ffffff;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.35);
}
#types .types .type .icon {
  height: 125px;
  padding: 25px;
  text-align: center;
  background-color: #ffffff;
}
#types .types .type .icon img {
  display: block;
  height: 100%;
  margin: 0 auto;
}
#types .types .type .name {
  padding-bottom: 15px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #05395b;
  background-color: #ffffff;
}
#types .types .type .description {
  padding: 25px 25px 70px;
  color: #ffffff;
}
#types .types .type .readmore {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  color: #31b0f7;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
#types .hl {
  width: 145px;
  height: 1px;
  margin: 50px auto 35px;
  background-color: #ffffff;
}
#types h3:nth-of-type(2) {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  text-align: center;
}
#types .othertypes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #ffffff;
}
#types .othertypes .othertype {
  padding: 25px 50px 0;
  text-align: center;
}
#types .othertypes .othertype .name {
  margin-bottom: 20px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 1200px) {
  #types h3:nth-of-type(1) {
    margin-top: calc(70px + (70 - 30) * (100vw - 1200px) / (1200 - 320));
  }
  #types .types {
    margin-top: calc(80px + (80 - 50) * (100vw - 1200px) / (1200 - 320));
  }
}
@media (max-width: 915px) {
  #types {
    background-image: linear-gradient(to bottom, #e9e9e9 80%, #31b0f7 80%);
  }
  #types .types {
    justify-content: space-around;
  }
  #types .types .type {
    flex-basis: 46%;
  }
}
@media (max-width: 600px) {
  #types {
    padding-bottom: 20px;
  }
  #types .types {
    justify-content: space-around;
  }
  #types .types .type {
    flex-basis: 100%;
  }
  #types .othertypes .othertype {
    flex-basis: 100%;
    margin-bottom: 50px;
  }
}
#solution .ready-call {
  width: 475px;
  padding: 20px;
  border: 2px solid #ef912c;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
}
#solution .ready-call a {
  color: #ef912c;
}

@media (max-width: 660px) {
  #solution .ready-call {
    width: 100%;
    padding: 15px 20px;
  }
}
#video {
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
}
#video .name-description-video {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}
#video .name-description-video .name-description {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#video .name-description-video .name-description h2 {
  color: #ffffff;
}
#video .name-description-video .name-description p {
  font-size: 16px;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#video .name-description-video .video {
  width: 460px;
  height: 259px;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  cursor: hand;
}
#video .name-description-video .video .video-thumbnail {
  display: block;
  height: 100%;
  transform: translateX(-9%);
}
#video .name-description-video .video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: #ffffff;
  opacity: 0.6;
  transition-duration: 0.5s;
}
#video .name-description-video .video .video-play:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  #video .name-description-video .video .video-play {
    font-size: calc(100px + (100 - 70) * (100vw - 1200px) / (1200 - 720));
  }
}
@media (max-width: 1100px) {
  #video .name-description-video {
    flex-wrap: wrap;
  }
  #video .name-description-video .name-description {
    flex-basis: 100%;
  }
  #video .name-description-video .name-description h2 {
    margin-bottom: 15px;
  }
  #video .name-description-video .video {
    margin: 35px auto 0;
  }
  #video .name-description-video .video .video-play {
    font-size: calc(100px + (100 - 70) * (100vw - 720px) / (720 - 320));
  }
}
@media (max-width: 900px) {
  #video {
    text-align: center;
  }
}
@media (max-width: 600px) {
  #video .name-description-video .video {
    width: 300px;
    height: 170px;
  }
  #video .name-description-video .video iframe {
    width: 300px !important;
    height: 170px !important;
  }
}
#benefits {
  padding: 30px 0 80px;
  background-color: #e9e9e9;
}
#benefits .benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -3.3%;
}
#benefits .benefits .benefit {
  flex-basis: 30%;
  margin-top: 40px;
  margin-right: 3.3%;
}
#benefits .benefits .benefit .icon {
  height: 48px;
}
#benefits .benefits .benefit .icon img {
  display: block;
  height: 100%;
  margin: 0 auto;
}
#benefits .benefits .benefit .name-description {
  position: relative;
  margin: 45px 0;
  text-align: center;
}
#benefits .benefits .benefit .name-description::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #05395b;
}
#benefits .benefits .benefit .name-description::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #05395b;
}
#benefits .benefits .benefit .name-description .name {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 21px;
  color: #05395b;
}
#benefits .benefits .benefit .name-description .description {
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #05395b;
}
#benefits .benefits .benefit ul {
  padding-left: 15px;
  font-size: 15px;
  line-height: 22px;
  list-style-type: disc;
}
#benefits .benefits .benefit ul li {
  margin-bottom: 15px;
}

@media (max-width: 660px) {
  #benefits {
    padding: 20px 0;
  }
  #benefits .benefits .benefit {
    flex-basis: 100%;
    padding: 20px 0;
    border-top: 1px solid #05395b;
  }
  #benefits .benefits .benefit .icon {
    display: inline-block;
    width: 80px;
  }
  #benefits .benefits .benefit .name-description {
    display: inline-block;
    width: calc(100% - 85px);
    margin: 15px 0;
    text-align: left;
  }
  #benefits .benefits .benefit .name-description::before, #benefits .benefits .benefit .name-description::after {
    display: none;
  }
  #benefits .benefits .benefit .name-description .name {
    font-size: calc(21px + (21 - 17) * (100vw - 660px) / (660 - 320));
  }
  #benefits .benefits .benefit:first-of-type {
    border: none;
  }
  #benefits .benefits .benefit ul li {
    margin-bottom: 8px;
  }
}
footer {
  padding: 70px 0 45px;
  color: #ffffff;
  background-color: #0055a5;
}
footer .ready-call {
  width: 530px;
  margin: 0 auto 35px;
  padding: 25px;
  border: 2px solid #ffffff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
}
footer .ready-call a {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  color: #ffffff;
}
footer .line {
  height: 1px;
  background-color: #ffffff;
}
footer .copyright {
  margin: 35px 0 30px;
  font-size: 11px;
  text-align: center;
}
footer .privacy-terms {
  font-size: 12px;
  text-align: center;
}
footer .privacy-terms a {
  color: #ffffff;
}
footer .privacy-terms .hl {
  margin: 0 15px;
}
footer .contacts-reviews-socials-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
footer .contacts-reviews-socials-wrap .contacts {
  flex-basis: 33.3%;
}
footer .contacts-reviews-socials-wrap .reviews {
  flex-basis: 33.3%;
}
footer .contacts-reviews-socials-wrap .socials-links {
  flex-basis: 33.3%;
}

@media (max-width: 900px) {
  footer .contacts-reviews-socials-wrap {
    flex-wrap: wrap;
    text-align: center;
  }
  footer .contacts-reviews-socials-wrap .contacts {
    flex-basis: 100%;
  }
  footer .contacts-reviews-socials-wrap .reviews {
    flex-basis: 100%;
    margin: 35px 0 40px;
  }
  footer .contacts-reviews-socials-wrap .socials-links {
    flex-basis: 100%;
    justify-content: center;
  }
}
@media (max-width: 660px) {
  footer {
    padding: calc(70px + (70 - 45) * (100vw - 660px) / (660 - 320)) 0 45px;
  }
  footer .ready-call {
    width: 100%;
    padding: 15px 25px;
  }
}
#eb-banner {
  margin-top: -70px;
  padding: 75px 0 175px;
  color: #ffffff;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #31c2d3;
}
#eb-banner h1 {
  width: 75%;
  font-family: itc-avant-garde-gothic-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#eb-banner .breadcrumbs {
  font-size: 12px;
  font-weight: 700;
  color: #0055a5;
}
#eb-banner .breadcrumbs a {
  font-weight: 300;
  color: #0055a5;
}
#eb-banner .title-wrap {
  margin: 80px 0 100px;
}
#eb-banner .title-wrap h1 {
  margin: 60px 0 10px;
}
#eb-banner .banner-link {
  position: relative;
  display: block;
  width: 52%;
  margin: 10px 0;
  padding: 10px 25px 15px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  background: #ef912d;
  box-shadow: 0 0 8px rgba(74, 54, 29, 0.5);
}
#eb-banner .banner-link:visited, #eb-banner .banner-link:active {
  color: #ffffff;
}
#eb-banner .banner-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../images/elastic/svg/arrow.svg") center no-repeat;
  background-size: contain;
}

@media (max-width: 900px) {
  #eb-banner {
    padding: 75px 0 calc(175px + (175 - 60) * (100vw - 900px) / (900 - 320));
    background-position: right 60px;
    background-size: auto calc(500px + (500 - 350) * (100vw - 900px) / (900 - 320));
  }
  #eb-banner h1 {
    width: 70%;
  }
  #eb-banner .banner-link {
    font-size: calc(24px + (24 - 19) * (100vw - 900px) / (900 - 320));
  }
}
@media (max-width: 720px) {
  #eb-banner {
    background-position: calc(-270px + (-270 - -330) * (100vw - 900px) / (900 - 320)) 50px;
  }
  #eb-banner .title-wrap {
    margin: calc(375px + (375 - 280) * (100vw - 720px) / (720 - 320)) 0 40px;
  }
  #eb-banner .title-wrap h1 {
    width: 100%;
    margin: 16px 0 10px;
  }
  #eb-banner .banner-link {
    width: 100%;
  }
}
#eb-description {
  background: #ffffff;
}
#eb-description h2 {
  margin-bottom: 0;
  font-size: 21px;
  text-align: left;
}
#eb-description h2 a {
  color: #00a4e4;
}
#eb-description p {
  margin-bottom: 30px;
}
#eb-description ul {
  padding-left: 15px;
  list-style-type: disc;
}
#eb-description .container {
  display: flex;
  align-items: center;
}
#eb-description .container .img-wrap {
  width: 430px;
  margin-right: 20px;
}
#eb-description .container img {
  display: block;
  width: 100%;
}
#eb-description .container .text {
  width: 50%;
}

@media (max-width: 900px) {
  #eb-description .container {
    flex-wrap: wrap;
  }
  #eb-description .container .img-wrap {
    width: 100%;
    margin-bottom: 35px;
    margin-right: 0;
  }
  #eb-description .container .text {
    width: 100%;
  }
}
