body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 400px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

body {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #9ca5a9;
}

.btn {
  box-sizing: border-box;
  height: 49px;
  border: 2px solid #3ae59f;
  background-color: #3ae59f;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  padding: 10px 30px 0 30px;
  font-family: Quicksand;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
}
.btn:hover {
  border: 2px solid #3c93db;
  background-color: #3c93db;
  color: white;
}

.btn-main-ghost {
  box-sizing: border-box;
  height: 49px;

  border: 2px solid #3ae59f;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  padding: 11px 30px 0 30px;
  font-family: Quicksand;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #3ae59f;
}
.btn-main-ghost:hover {
  border: 2px solid #3c93db;
  background-color: #3c93db;
  color: white;
}

a {
  text-decoration: none;
  color: #35c7fc;
}

h2 {
  font-weight: 600;
  font-family: Lato;
  font-size: 56px;
  color: #3c93db;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 560px) {
  h2 {
    font-size: 36px;
  }
}
h2 p::first-letter {
  color: #3ae59f;
}
h2 .circle-small {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background-color: #3ae59f;
  margin: 5px;
}
@media screen and (max-width: 560px) {
  h2 .circle-small {
    display: none;
  }
}
h2 .circle-middle {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #3ae59f;
  margin: 5px;
}
@media screen and (max-width: 560px) {
  h2 .circle-middle {
    display: none;
  }
}
h2 .circle-big {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #3ae59f;
  margin: 5px;
}
@media screen and (max-width: 560px) {
  h2 .circle-big {
    display: none;
  }
}
h2 .circle-big--single {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #3ae59f;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  h2 .circle-big--single {
    display: none;
  }
}

.field {
  border-radius: 4px;
  border: 2px solid rgba(53, 199, 252, 0.3);
  padding: 10px;
  padding-left: 55px;
  font-weight: 500;
  font-size: 24px;
  color: #35c7fc;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.field::placeholder {
  color: rgba(53, 199, 252, 0.3);
}
.field:focus {
  border: 2px solid #35c7fc;
  outline: none;
}

/*Special Sltyles*/

.first_screen_bg {
  display: none;
}

header.main-header {
  height: 700px;
  background-position: center;
  background-position-y: 58px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  header.main-header {
    background-image: none !important;
    background-image: url(../img/girl-bg-mobile.png) !important;
    background-position: center center;
    background-size: cover;
  }
}
/* header.main-header:after {
  content: "";
  position: absolute;
  top: 548px;
  width: 0;
  height: 0;
  border-bottom: 110px solid white;
  border-left: 100vw solid transparent;
}
@media screen and (max-width: 560px) {
  header.main-header:after {
    border-bottom: 70px solid white;
    border-left: 100vw solid transparent;
    display: none;
  }
} */
header.main-header nav {
  width: 100vw;
  height: 70px;
  position: fixed;
}
@media screen and (max-width: 960px) {
  header.main-header nav {
    height: 120px;
  }
}
@media screen and (max-width: 560px) {
  header.main-header nav {
    height: 40px;
  }
}
header.main-header nav .open-menu {
  position: absolute;
  /* height: 450px; */
  padding-bottom: 30px;
  background-color: #3074ad;
  z-index: 1000;
  width: 100%;
  display: none;
}
@media screen and (max-width: 560px) {
  header.main-header nav .open-menu {
    flex-direction: column;
    align-items: center;
  }
}
header.main-header nav .open-menu span {
  color: white;
  opacity: 0.5;
  font-size: 40px;
  align-self: flex-start;
  margin-left: 20px;
  margin-top: 15px;
}
header.main-header nav .open-menu .logo {
  color: #3ae59f;
  font-size: 32px;
  font-family: Lato;
  font-weight: 700;
  margin-top: 15px;
}
header.main-header nav .open-menu ul {
  text-align: center;
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.7;
}
header.main-header nav .open-menu ul a {
  color: white;
}
header.main-header nav .open-menu ul:active {
  color: #35c7fc;
}
header.main-header nav .container .row-fixed {
  max-width: 1200px;
}
header.main-header nav .container .row-fixed .row {
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 70px;
  max-width: inherit;
  display: flex;
  flex-wrap: wrap;
  transition: 1s;
  background: #f9f9f9;
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row-hidden {
    transition: 1s;
    transform: translateY(-65px);
  }
}

header.main-header nav .container .row-fixed .row .logo {
  color: #3ae59f;
  font-size: 22px;
  font-family: Lato;
  font-weight: 700;
  order: 1;
  margin-left: 15px;
}
@media screen and (max-width: 960px) {
  header.main-header nav .container .row-fixed .row .logo {
    margin-left: 18px;
  }
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .logo {
    order: 1;
    width: 100%;
    text-align: center;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 0;
  }
}
header.main-header nav .container .row-fixed .row ul {
  display: flex;
  order: 2;
}
@media screen and (max-width: 960px) {
  header.main-header nav .container .row-fixed .row ul {
    order: 3;
    margin-top: -15px;
  }
}
@media screen and (max-width: 768px) {
  header.main-header nav .container .row-fixed .row ul {
    margin: 5px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row ul {
    display: none;
  }
}
header.main-header nav .container .row-fixed .row ul li a {
  padding: 20px;
  font-family: Lato;
  color: #5c5c5c;
}
@media screen and (max-width: 1200px) {
  header.main-header nav .container .row-fixed .row ul li a {
    padding: 15px;
  }
}
header.main-header nav .container .row-fixed .row ul li a:hover {
  color: #3ae59f;
  font-weight: 600;
}
header.main-header nav .container .row-fixed .row .burger {
  display: none;
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .burger {
    display: flex;
    fill: white;
    width: 50%;
    height: 50px;
    order: 3;
    margin: 0;
    background: #3882c0;
    align-items: center;
    justify-content: center;
  }
  header.main-header nav .container .row-fixed .row .burger svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
header.main-header nav .container .row-fixed .row .contacts-top {
  display: flex;
  flex-wrap: wrap;
  max-width: 200px;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  order: 3;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  header.main-header nav .container .row-fixed .row .contacts-top {
    margin-top: 15px;
  }
}
@media screen and (max-width: 960px) {
  header.main-header nav .container .row-fixed .row .contacts-top {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  header.main-header nav .container .row-fixed .row .contacts-top {
    margin-right: 15px;
  }
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .contacts-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    order: 2;
    height: 50px;
    background: #24e495;
    max-width: none;
    width: 50%;
  }
}
header.main-header nav .container .row-fixed .row .contacts-top .primary-svg {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  fill: #3c93db;
  margin-top: 5px;
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .contacts-top .primary-svg {
    fill: white;
    margin: 0;
    margin-right: 15px;
  }
}
header.main-header
  nav
  .container
  .row-fixed
  .row
  .contacts-top:hover
  .primary-svg {
  fill: #3ae59f;
}

header.main-header nav .container .row-fixed .row .contacts-top .phone {
  color: #3c93db;
  font-size: 20px;
  font-family: Lato;
  font-weight: 600;
  margin-top: 0px;
  border-bottom: 2px solid #3c93db;
}
header.main-header nav .container .row-fixed .row .contacts-top .phone-mobile {
  display: none;
}
header.main-header nav .container .row-fixed .row .burger .phone-mobile {
  display: none;
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .burger .phone-mobile {
    display: inline;
    margin: 0;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    /* identical to box height */
    color: #ffffff;
  }
  header.main-header nav .container .row-fixed .row .contacts-top .phone {
    display: none;
    color: #9ca5a9;
    border-color: #9ca5a9;
  }
}
header.main-header nav .container .row-fixed .row .contacts-top:hover .phone {
  color: #3ae59f;
  border-color: #3ae59f;
}
header.main-header nav .container .row-fixed .row .contacts-top .callback {
  display: none;
  text-transform: uppercase;
  font-size: 15px;
  color: #3ae59f;
  border-bottom: 2px dashed #3ae59f;
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  header.main-header nav .container .row-fixed .row .contacts-top .callback {
    color: #9ca5a9;
    border-color: #9ca5a9;
  }
  header.main-header
    nav
    .container
    .row-fixed
    .row
    .contacts-top
    .phone-mobile {
    margin: 0;
    display: block;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    /* identical to box height */
    color: #ffffff;
  }
  header.main-header nav .container .row-fixed .row .burger p {
    margin: 0;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    /* identical to box height */
    color: #ffffff;
  }
}
header.main-header
  nav
  .container
  .row-fixed
  .row
  .contacts-top
  .callback:hover {
  font-weight: 600;
}
header.main-header .main-hero {
  flex-grow: 1;
  margin-top: 90px;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero {
    margin-top: 100px;
  }
}
header.main-header .main-hero .container {
  height: 80vh;
  display: flex;
}
header.main-header .main-hero .container .wrap {
  margin-top: 6vh;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap {
    margin-top: 20px;
    text-align: center;
  }
}
header.main-header .main-hero .container .wrap .logo-xs {
  display: none;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap .logo-xs {
    display: block;
    color: #3ae59f;
    font-size: 22px;
    font-family: Lato;
    font-weight: 700;
    margin-bottom: 20px;
  }
}
header.main-header .main-hero .container .wrap h1 {
  font-size: 56px;
  font-family: Lato;
  font-weight: 800;
  color: #3c93db;
  line-height: 1.05;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap h1 {
    font-size: 37px;
    text-align: center;
    margin-top: 80px;
  }
}
@media screen and (max-width: 374px) {
  header.main-header .main-hero .container .wrap h1 {
    font-size: 35px;
  }
}
header.main-header .main-hero .container .wrap .main-h2 {
  font-size: 32px;
  text-align: center;
  font-family: Quicksand;
  color: #5c5c5c;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 15px;
  justify-content: flex-start;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap .main-h2 {
    font-size: 24px;
    display: inline-block;
    color: #5c5c5c;
  }
}
header.main-header .main-hero .container .wrap p {
  width: 400px;
  margin-top: 20px;
  margin-bottom: 45px;
  color: #35c7fc;
  font-weight: 500;
  color: #5c5c5c;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap p {
    width: 320px;
    font-size: 18px;
    display: inline-block;
  }
}
header.main-header .main-hero .container .wrap .btn--main-ask {
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 11px 30px 0 30px;
}
@media screen and (max-width: 560px) {
  header.main-header .main-hero .container .wrap .btn--main-ask {
    width: 310px;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 11px 30px 0 30px;
  }
}
@media screen and (max-width: 560px) {
  .main-hero .container .wrap .logo-xs .custom-logo-link .custom-logo {
    display: none;
  }
}

.main-about {
  background: url("../img/blurs.jpg") center 35px no-repeat;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-about h2 {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .main-about h2 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 560px) {
  .main-about h2 {
    margin-top: 30px;
  }
}
.main-about .wrap {
  margin-top: 40px;
  max-width: 940px;
  display: flex;
}
@media screen and (max-width: 960px) {
  .main-about .wrap {
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .main-about .wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .main-about .wrap {
    max-width: 320px;
  }
}
.main-about .wrap .about_img {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .main-about .wrap .about_img {
    margin-right: 0;
    align-self: center;
  }
}
.main-about .wrap .about_img img {
  width: 300px;
  border-radius: 5px;
  margin-top: 5px;
}
.main-about .wrap .about_img .caption {
  margin-top: 15px;
  color: black;
  text-align: center;
}
.main-about .wrap .desc {
  max-width: 500px;
  font-weight: 400;
  line-height: 1.5;
}
.main-about .wrap .desc .btn-whatsup {
  display: none;
}
@media screen and (max-width: 960px) {
  .main-about .wrap .desc {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .main-about .wrap .desc {
    max-width: 500px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }
  .main-about .wrap .desc .btn-whatsup {
    display: flex;
    width: auto;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  .main-about .wrap .desc .btn-whatsup p {
    margin-bottom: 0;
    margin-top: -10px;
  }
  .main-about .wrap .desc .btn-whatsup svg {
    width: 30px;
    height: 30px;
    fill: #3ae59f;
    margin-right: 10px;
    margin-top: -10px;
  }
}
.main-about .wrap .desc p {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .main-about .wrap .desc p {
    margin-bottom: 15px;
  }
}
.main-about .wrap .btn--about {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .main-about .wrap .btn--about {
    display: none;
  }
}

.steps {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.steps h2 .title-steps {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
}
/* .steps h2 .title-steps:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 560px) {
  .steps h2 .title-steps:before {
    display: none;
  }
} */
.steps .desc {
  margin-top: 40px;
  margin-bottom: 110px;
  max-width: 735px;
  line-height: 1.7;
  align-self: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .steps .desc {
    max-width: 500px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  .steps .desc {
    max-width: 320px;
  }
}
.steps .wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .steps .wrap {
    justify-content: center;
  }
}
.steps .wrap .step {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(33.33333% - 30px);
  color: white;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .steps .wrap .step {
    width: calc(91.66667% - 30px);
    margin-top: 100px;
  }
}
.steps .wrap .step h3 {
  margin-top: 35px;
  font-family: Lato;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.steps .wrap .step p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  margin: 5px;
  margin-bottom: 25px;
  letter-spacing: 0.4px;
}
.steps .wrap .step img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.steps .wrap .step-1 {
  background-color: #71d6a3;
}
.steps .wrap .step-2 {
  background-color: #35c7fc;
}
.steps .wrap .step-3 {
  background-color: #3c93db;
}
.steps .wrap .step:before {
  content: "";
  position: absolute;
  bottom: 45%;
  border-top: 220px solid rgba(255, 255, 255, 0.15);
  border-right: 40vw solid transparent;
  margin-left: -20px;
}
@media screen and (max-width: 960px) {
  .steps .wrap .step:before {
    bottom: 60%;
  }
}
@media screen and (max-width: 768px) {
  .steps .wrap .step:before {
    bottom: 38%;
    border-top: 180px solid rgba(255, 255, 255, 0.15);
    border-right: 120vw solid transparent;
  }
}
@media screen and (max-width: 560px) {
  .steps .wrap .step:before {
    bottom: 55%;
  }
}

/* .advantages {
  background-image: url(../img/woman-bg.jpg), url(../img/doctor-bg2.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: -50px 1050px, 0px 100px;
} */
.advantages h2 {
  margin-top: 100px;
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
}
.advantages h2 p {
  display: flex;
  justify-content: flex-start;
  background-color: #fff;
}
/* .advantages h2 p:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 560px) {
  .advantages h2 p:before {
    display: none;
  }
} */
.advantages h2 p span::first-letter {
  color: #3ae59f;
}
.advantages h3 {
  font-family: Lato;
  font-size: 30px;
  font-weight: 600;
  color: #3c93db;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 560px) {
  .advantages h3 {
    font-size: 24px;
  }
}
.advantages h3 .vertical-line {
  width: 3px;
  height: 50px;
  border-radius: 100px;
  background-color: #3ae59f;
  margin-right: 25px;
}
.advantages .row-1,
.advantages .row-3,
.advantages .row-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .advantages .row-1,
  .advantages .row-3,
  .advantages .row-5 {
    flex-wrap: wrap;
  }
}
.advantages .row-1 .wrap,
.advantages .row-3 .wrap,
.advantages .row-5 .wrap {
  width: 550px;
  margin-left: 50px;
}
@media screen and (max-width: 960px) {
  .advantages .row-1 .wrap,
  .advantages .row-3 .wrap,
  .advantages .row-5 .wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  .advantages .row-1 .wrap,
  .advantages .row-3 .wrap,
  .advantages .row-5 .wrap {
    margin-left: 25px;
  }
}
.advantages .row-1 .wrap p,
.advantages .row-3 .wrap p,
.advantages .row-5 .wrap p {
  margin-left: 60px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .advantages .row-1 .wrap p,
  .advantages .row-3 .wrap p,
  .advantages .row-5 .wrap p {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 560px) {
  .advantages .row-1 .wrap p,
  .advantages .row-3 .wrap p,
  .advantages .row-5 .wrap p {
    margin-left: 0;
  }
}
.advantages .row-2,
.advantages .row-4 {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .advantages .row-2,
  .advantages .row-4 {
    flex-wrap: wrap;
  }
}
.advantages .row-2 .wrap,
.advantages .row-4 .wrap {
  width: 520px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .advantages .row-2 .wrap,
  .advantages .row-4 .wrap {
    order: 2;
    width: 550px;
    margin-right: 0;
    margin-left: 50px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  .advantages .row-2 .wrap,
  .advantages .row-4 .wrap {
    margin-left: 25px;
  }
}
.advantages .row-2 .wrap p,
.advantages .row-4 .wrap p {
  margin-left: 60px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .advantages .row-2 .wrap p,
  .advantages .row-4 .wrap p {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.advantages .row-2 .wrap .btn-main-ghost,
.advantages .row-4 .wrap .btn-main-ghost {
  margin-left: 60px;
  margin-top: 35px;
}
@media screen and (max-width: 560px) {
  .advantages .row-2 .wrap .btn-main-ghost,
  .advantages .row-4 .wrap .btn-main-ghost {
    margin-left: 25px;
  }
}
.numbers {
  background: linear-gradient(129deg, #3ae59f, #3ae59f);
  position: relative;
  overflow: hidden;
}
.number:before {
  content: "";
  position: absolute;
  top: -30%;
  border-top: 260px solid rgba(255, 255, 255, 0.15);
  border-right: 200vw solid transparent;
  margin-left: 0px;
}
@media screen and (max-width: 960px) {
  .numbers {
    padding: 20px;
  }
}
.numbers:before {
  content: "";
  position: absolute;
  top: -30%;
  border-top: 260px solid rgba(255, 255, 255, 0.15);
  border-right: 200vw solid transparent;
  margin-left: 0px;
}
@media screen and (max-width: 960px) {
  .numbers:before {
    top: -05%;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .numbers:before {
    top: 0%;
    border-top: 560px solid rgba(255, 255, 255, 0.08);
    border-right: 120vw solid transparent;
  }
}
.numbers .row {
  justify-content: space-around;
}
.numbers .row .item {
  max-width: 220px;
  font-size: 16px;
  margin-top: 50px;
  margin-bottom: 50px;
  color: white;
}
@media screen and (max-width: 960px) {
  .numbers .row .item {
    max-width: 300px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .numbers .row .item {
    max-width: 60%;
    text-align: center;
  }
}
.numbers .row .item span {
  font-family: Lato;
  font-weight: 600;
  font-size: 56px;
}

.consultation-main {
  background: url("../img/blurs.jpg") center 55px no-repeat;
  text-align: center;
}
.consultation-main h2 {
  margin-top: 60px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  .consultation-main h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
}
.consultation-main h2 p {
  display: flex;
  justify-content: flex-start;
  background-color: #fff;
}
.consultation-main .consultation-desc {
  font-size: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .consultation-main .consultation-desc {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  .consultation-main .consultation-desc {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media screen and (max-width: 560px) {
  .consultation-main h2 p {
    justify-content: center;
    margin-left: 0;
  }
}
/* .consultation-main h2 p:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .consultation-main h2 p:before {
    display: none;
  }
} */

.consultation-main h2 p span::first-letter {
  color: #3ae59f;
}
.consultation-main .wrap-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .consultation-main .wrap-form {
    margin-left: -50px;
  }
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.consultation-main .wrap-form form {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form {
    width: 100%;
  }
}
.consultation-main .wrap-form form button.btn {
  align-self: center;
  font-size: 18px;
  padding: 2px 30px 0 30px;
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form form button.btn {
    width: 90%;
  }
}
.consultation-main .wrap-form form .wrap-row {
  display: flex;
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form form .wrap-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row {
    width: 100%;
  }
}
.consultation-main .wrap-form form .wrap-row .x-ray-file {
  /* background: url("../img/contact-bg.jpg") no-repeat; */
  background-position: 250px 70%;
  margin-left: 60px;
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form form .wrap-row .x-ray-file {
    margin-left: 0;
    margin-bottom: 100px;
    background-position: 2500px 90%;
  }
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row .x-ray-file {
    width: 100%;
  }
}
.consultation-main .wrap-form form .wrap-row .x-ray-file img {
  height: 100%;
  width: auto;
}
.consultation-main .wrap-form form .wrap-row .wrap-column {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column input {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column input {
    width: 90%;
    margin-left: 0;
  }
}
.consultation-main .wrap-form form .wrap-row .wrap-column .wrap-file {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column .x-ray-file {
    display: none;
  }
  .consultation-main .wrap-form form .wrap-row .wrap-column .wrap-file {
    flex-wrap: wrap;
  }
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-file
    label {
    width: 100%;
    margin-bottom: 20px;
  }
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-file
    button {
    width: 100%;
  }

  .consultation-main .wrap-form form .wrap-row .x-ray-file {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column .wrap-file {
    justify-content: center;
  }
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-file
    label {
    margin-bottom: 25px;
  }
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-file
    label
    div {
    margin-top: 10px;
    margin-left: 0 !important;
  }

  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-file
    button {
    width: 90%;
  }
}

.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label {
  display: block;
  /* position: absolute;
  left: 0;
  right: 0; */
  width: 50%;
  height: 100%;
  cursor: pointer;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  #file-name {
  font-size: 16px;
  padding-left: 15px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  input[type="file"] {
  border: none;
  display: none;
  cursor: pointer;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  div {
  font-size: 18px;
  display: inline-block;
  font-family: Lato;
  font-weight: 600;
  color: #3ae59f;
  position: relative;
  margin-top: 10px;
  margin-left: 45px;
  border-bottom: 2px dashed #3ae59f;
  margin-bottom: 5px;
  margin-left: 60px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  div:hover {
  font-size: 20px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  div:hover
  svg {
  width: 25px;
  height: 25px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-file
  label
  div
  svg {
  position: absolute;
  width: 23px;
  height: 23px;
  top: 0;
  transform: rotate(10deg);
  left: -32px;
  fill: #3ae59f;
}
.consultation-main .wrap-form form .wrap-row .wrap-column .wrap-title {
  background-color: #fff;
  width: 400px;
  padding: 10px;
  border-bottom: 2px solid #35c7fc;
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-row .wrap-column .wrap-title {
    width: 320px;
  }
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-title
  h3 {
  font-family: Lato;
  font-weight: 400;
  font-size: 30px;
  color: #3c93db;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 560px) {
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-title
    h3 {
    font-size: 24px;
    width: 320px;
    margin-left: 20px;
  }
}
.consultation-main .wrap-form form .wrap-row .wrap-column .wrap-name {
  position: relative;
  margin-bottom: 30px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-name
  svg {
  position: absolute;
  width: 27px;
  height: 27px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 1;
  fill: rgba(53, 199, 252, 0.4);
}
@media screen and (max-width: 560px) {
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-name
    svg {
    left: 45px;
  }
}
.consultation-main .wrap-form form .wrap-row .wrap-column .wrap-phone {
  position: relative;
  margin-bottom: 30px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-phone
  svg {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 1;
  fill: rgba(53, 199, 252, 0.4);
}
@media screen and (max-width: 560px) {
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-phone
    svg {
    left: 45px;
  }
}
.consultation-main .wrap-form form .wrap-row .wrap-column .wrap-email {
  position: relative;
  margin-bottom: 30px;
}
.consultation-main
  .wrap-form
  form
  .wrap-row
  .wrap-column
  .wrap-email
  svg {
  position: absolute;
  width: 27px;
  height: 27px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 1;
  fill: rgba(53, 199, 252, 0.4);
}
@media screen and (max-width: 560px) {
  .consultation-main
    .wrap-form
    form
    .wrap-row
    .wrap-column
    .wrap-email
    svg {
    left: 45px;
  }
}
.consultation-main .wrap-form form .wrap-message {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-message {
    width: 100%;
  }
}
.consultation-main .wrap-form form .wrap-message svg {
  position: absolute;
  width: 29px;
  height: 29px;
  top: 15px;
  left: 16px;
  z-index: 1;
  fill: rgba(53, 199, 252, 0.4);
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-message svg {
    left: 45px;
    top: 28px;
  }
}
.consultation-main .wrap-form form .wrap-message .message {
  resize: none;
  width: 100%;
  height: 180px;
  padding: 10px;
  padding-left: 55px;
}
@media screen and (max-width: 560px) {
  .consultation-main .wrap-form form .wrap-message .message {
    width: 90%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.main-clients {
  background: url("../img/blurs.jpg") center 105px no-repeat;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  padding-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .main-clients {
    background: url("../img/blurs.jpg") center 145px no-repeat;
  }
}
.main-clients h2 {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
/* .main-clients h2:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main-clients h2:before {
    display: none;
  }
} */
.main-clients .wrap {
  margin-top: 40px;
  max-width: 1140px;
  display: flex;
  padding-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .main-clients .wrap {
    padding-bottom: 0px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-clients .wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .main-clients .wrap {
    flex-direction: column;
    width: 100%;
    /* padding: 0 30px; */
  }
}
/* .main-clients .wrap iframe {
  border-radius: 10px;
  margin-bottom: 30px;
  display: none;
} */
@media screen and (max-width: 560px) {
  .main-clients .wrap iframe {
    align-self: center;
  }
  .main-clients .wrap iframe[width] {
    width: 320px;
  }
}
.main-clients .wrap iframe.current {
  display: block;
}
.main-clients .wrap .wrap-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-clients .wrap .wrap-desc .desc-slider {
  max-width: 500px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 65px;
  display: none;
}
@media screen and (max-width: 960px) {
  .main-clients .wrap .wrap-desc .desc-slider {
    max-width: 280px;
    margin-left: 30px;
    padding-right: 15px;
  }
}
.main-clients .wrap .wrap-desc .current-desc {
  display: block;
}
.main-clients .wrap .wrap-desc .current-desc h3 {
  font-family: Lato;
  font-weight: 600;
  color: #3c93db;
  font-size: 27px;
  margin-bottom: 20px;
}
.main-clients .wrap .wrap-desc .current-desc p {
  margin-bottom: 15px;
}
.main-clients .wrap .wrap-desc .current-desc ul {
  margin-left: 20px;
}
.main-clients .wrap .wrap-desc .controls {
  display: flex;
  font-size: 30px;
  font-weight: 600;
  color: #3ae59f;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .main-clients .wrap .wrap-desc .controls {
    margin-top: 30px;
  }
}
.main-clients .wrap .wrap-desc .controls .prev .arrow-left {
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
  fill: #3ae59f;
  margin-right: 15px;
  cursor: pointer;
  padding-top: 8px;
}
.main-clients .wrap .wrap-desc .controls .next .arrow-right {
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
  fill: #3ae59f;
  margin-left: 15px;
  cursor: pointer;
  padding-top: 8px;
}

.main-price {
  margin-top: 60px;
  overflow: hidden;
  /* background: linear-gradient(160.01deg, #3C93DB 13.34%, #86DBFF 152.8%);
  background-position: 0 -200px; */
  background: linear-gradient(160.01deg, #3c93db 13.34%, #86dbff 152.8%);
  position: relative;
  height: auto;
  display: flex;
}
.main-price:before {
  content: "";
  position: absolute;
  top: 0;
  border-top: 1100px solid rgba(255, 255, 255, 0.15);
  border-right: 100vw solid transparent;
  margin-left: 0px;
  z-index: 1;
}
.main-price .container {
  /* background-color: rgba(255, 255, 255, 0.8); */
  background-color: white;
  margin-top: 35px;
  padding: 50px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border-radius: 27px;
  z-index: 2;
  
}
@media screen and (max-width: 768px) {
  .main-price .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 560px) {
  .main-price .container {
    width: 100%;
    padding: 0;
    margin-left: 0;
    background: transparent;
  }
}
.main-price .container h2 {
  margin-top: 0px;
}
.main-price .container h2 .title-steps {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
}
.main-price .container h2 .title-steps:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 560px) {
  .main-price .container h2 {
    display: none;
  }
  .main-price .container .desc {
    display: none;
  }
  .main-price .container h2 .title-steps:before {
    display: none;
  }
}
.main-price .container .desc {
  margin-top: 30px;
  margin-bottom: 40px;
  max-width: 735px;
  line-height: 1.7;
  align-self: center;
  font-weight: 500;
}
.main-price .container .wrap {
  margin: 0 auto;
  display: flex;
  /* margin-left: -10px;
  margin-right: -20px; */
}

.main-price .container .wrap .price-desc {
  width: 55%;
  border-left: 1px solid #35c7fc;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .main-price .container .wrap .price-desc {
    border: none;
    padding-left: 30px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc {
    width: 50%;
    font-size: 14px;
    font-family: "Open Sans";
  }
}
.main-price .container .wrap .price-desc .item {
  letter-spacing: 1px;
}
.main-price .container .wrap .price-desc .item p {
  font-weight: 500;
  line-height: 1.5;
  display: none;
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc .item p {
    line-height: 1.15;
  }
}
.main-price .container .wrap .price-desc .item p.current-p {
  display: block;
}
.main-price .container .wrap .price-desc .item .cost {
  margin-top: 25px;
  display: none;
}
@media screen and (max-width: 768px) {
  .main-price .container .wrap .price-desc .item .cost {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc .item .cost {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.main-price .container .wrap .price-desc .item .cost .new {
  font-size: 46px;
  font-weight: 600;
  color: #3ae59f;
  font-family: Lato;
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc .item .cost .new {
    font-size: 36px;
  }
}
.main-price .container .wrap .price-desc .item .current-cost {
  display: block;
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc .item .current-cost {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.main-price .container .wrap .price-desc .item .current-cost .old {
  font-size: 24px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .price-desc .item .current-cost .old {
    margin-right: 25px;
  }
}
.main-price .container .wrap .price-desc .item .current-cost .old:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #9ca5a9;
  top: 16px;
  left: -5px;
  transform: rotate(-17deg);
}
.main-price .container .buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  .main-price .container .buttons {
    width: 100%;
  }
  .main-price .container .buttons .btn-getquote {
    text-align: center;
    width: 90%;
    margin-bottom: 0;
    color: #3c93db;
    background-color: white;
    border-color: white;
  }
  .main-price .container .buttons a {
    width: 90%;
  }
  .main-price .container .buttons .btn-main-ghost {
    width: 100%;
    margin-top: 0;
    border-color: white;
    color: white;
  }
}

/* @media screen and (max-width: 560px) {
  .main-price .container   .buttons {
    display: none;
  }
} */
.main-price .container .buttons .btn,
a {
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  .main-price .container .buttons .btn {
    margin-bottom: 0px;
  }
}
.main-price .container .buttons-alt {
  display: none;
}
@media screen and (max-width: 560px) {
  .main-price .container .buttons-alt {
    display: flex;
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 16px;
  }
  .main-price .container .buttons-alt .btn-getquote {
    margin-right: 15px;
    padding: 12px 12px 12px 12px;
  }
  .main-price .container .buttons-alt .btn-fullprice {
    padding: 12px 12px 12px 12px;
  }
}

.suppliers {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
}
.suppliers h2 .wrap-title {
  background-color: #fff;
  display: block;
  position: relative;
}
.suppliers h2 .wrap-title:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  transform: translateX(-42%);
  background-color: #3ae59f;
  z-index: -1;
}
@media screen and (max-width: 560px) {
  .suppliers h2 .wrap-title:before {
    display: none;
  }
}
.suppliers .desc {
  margin-top: 40px;
  max-width: 735px;
  line-height: 1.7;
  align-self: center;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .suppliers .desc {
    width: 300px;
  }
}
.suppliers .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.suppliers .container .wrap {
  display: flex;
  align-items: center;
}
.suppliers .container .wrap .arrow-left {
  fill: #3ae59f;
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
  margin-right: 45px;
  margin-top: 40px;
}
@media screen and (max-width: 560px) {
  .suppliers .container .wrap .arrow-left {
    margin-right: 15px;
  }
}
.suppliers .container .wrap .arrow-right {
  fill: #3ae59f;
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
  margin-left: 45px;
  margin-top: 40px;
}
@media screen and (max-width: 560px) {
  .suppliers .container .wrap .arrow-right {
    margin-left: 15px;
  }
}
.suppliers .container .wrap .supliers-row {
  align-items: center;
  margin-top: 40px;
  width: 900px;
}
@media screen and (max-width: 1200px) {
  .suppliers .container .wrap .supliers-row {
    width: 700px;
  }
}
@media screen and (max-width: 960px) {
  .suppliers .container .wrap .supliers-row {
    width: 550px;
  }
}
@media screen and (max-width: 768px) {
  .suppliers .container .wrap .supliers-row {
    width: 450px;
  }
}
@media screen and (max-width: 560px) {
  .suppliers .container .wrap .supliers-row {
    width: 230px;
  }
}
.suppliers .container .wrap .supliers-row img {
  width: 120px;
  height: 80px;
}
@media screen and (max-width: 560px) {
  .suppliers .container .wrap .supliers-row img {
    width: 70px;
    height: 35px;
  }
}

.contacts {
  margin-top: 80px;
  overflow: hidden;
  background: url("../img/contacts-bg.jpg") no-repeat;
  background-position: 0 -200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
}
@media screen and (max-width: 560px) {
  .contacts {
    background-image: none;
    background-color: white;
  }
}
.contacts .wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  margin-top: 35px;
  padding: 50px;
  padding-top: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
}
.contacts .wrapper h2 {
  margin-top: 10px;
  margin-bottom: 30px;
}
.contacts .wrapper h2 .title-steps {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
}
.contacts .wrapper h2 .title-steps:before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100vw;
  top: 38px;
  background-color: #3ae59f;
  z-index: -1;
}
.contacts .wrapper .wrap .row-1,
.contacts .wrapper .wrap .row-2 {
  display: flex;
  margin-left: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contacts .wrapper .wrap .row-1,
  .contacts .wrapper .wrap .row-2 {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.contacts .wrapper .wrap .row-1 .item,
.contacts .wrapper .wrap .row-2 .item {
  width: 320px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .contacts .wrapper .wrap .row-1 .item,
  .contacts .wrapper .wrap .row-2 .item {
    margin-bottom: 20px;
  }
}
.contacts .wrapper .wrap .row-1 .item svg,
.contacts .wrapper .wrap .row-2 .item svg {
  fill: #3ae59f;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
.contacts .wrapper .wrap .row-1 .item div,
.contacts .wrapper .wrap .row-2 .item div {
  font-weight: 500;
}
.contacts .wrapper .wrap .row-1 .item div span,
.contacts .wrapper .wrap .row-2 .item div span {
  font-size: 21px;
  color: #35c7fc;
  margin-bottom: -10px;
  display: block;
}

.cta {
  background: linear-gradient(129deg, #32c3fc, #0f7fdb);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.cta:before {
  content: "";
  position: absolute;
  top: -30%;
  border-top: 260px solid rgba(255, 255, 255, 0.15);
  border-right: 200vw solid transparent;
  margin-left: 0px;
}
@media screen and (max-width: 960px) {
  .cta:before {
    top: -10%;
  }
}
.cta .row {
  align-items: center;
}
@media screen and (max-width: 960px) {
  .cta .row {
    justify-content: center;
    text-align: center;
  }
}
.cta .row p {
  color: white;
  line-height: 1.4;
  width: 65%;
  padding: 30px;
}
@media screen and (max-width: 1200px) {
  .cta .row p {
    width: 55%;
  }
}
@media screen and (max-width: 960px) {
  .cta .row p {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  .cta .row p {
    width: 95%;
  }
}
.cta .row p span {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
  display: inline-block;
}
.cta .row .btn-main-ghost {
  color: white;
  border-color: white;

  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .cta .row .btn-main-ghost {
    margin-left: 0;
    margin-bottom: 0;
  }
}
.cta .row .btn-main-ghost:hover {
  color: #3c93db;
  background-color: #fff;
}
.cta .container .row .cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta .container .row .cta-wrap img {
  width: 30%;
  margin: 10px;
}

/* Accordion styles */

.main-price .container .wrap .tabs .tab input {
  position: absolute;
  opacity: 0;
  z-index: 2;
}

.main-price .container .wrap .tabs {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.main-price .container .wrap .tabs .tab {
  margin: 10px 10px;
  width: 45%;
  color: white;
  overflow: hidden;
  border: 1px solid #3c93db;
  box-sizing: border-box;
  border-radius: 9px;
}
@media screen and (max-width: 768px) {
  .main-price .container .wrap .tabs .tab {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .main-price .container .wrap .tabs .tab {
    width: 100%;
  }
}

.tab-label {
  position: relative;
  display: block;
  padding: 1em;
  background: white;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label .tab-label-price {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tab-label .tab-label-price p span {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 33.1187px;
  line-height: 40px;
  letter-spacing: 0.719971px;
  color: #3c93db;
}
.tab-label .tab-label-price p {
  font-family: Quicksand;
  font-style: normal;
  font-weight: normal;
  font-size: 19.1957px;
  line-height: 24px;
  letter-spacing: 0.799819px;
  color: rgba(39, 57, 73, 0.18);
}
.tab-label .tab-label-price {
  width: 100%;
  text-align: center;
}
.tab-label .tab-label-price svg {
  height: 20px;
  width: 20px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #3c93db;
  background-color: white;
  fill: rgba(60, 147, 219, 0.2);
}
.tab-label:hover .tab-label-price svg {
  fill: #3ae59f;
  padding: 10px;
  border-radius: 50%;
  border: none;
  border: 1px solid white;
  background-color: white;
}
.tab-label h3 {
  font-family: Lato;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 19px;
  letter-spacing: 1px;
  color: #9ca5a9;
}

.tab-label:hover {
  background: #3ae59f;
}

/* .tab-label::after {
  content: "\276F";
  width: 2em;
  height: 2em;
  position: absolute;
  right: 10%;
  top:20%;
  z-index: 2;
  text-align: center;
  transition: all 0.35s;
  border: 1px solid #3C93DB;
  border-radius:50%;
} */

.tab-content {
  min-height: 140px;
  padding: 0 1em;
  display: none;
  color: black;
  background: white;
  transition: all 0.35s;
  z-index: 2;
}

.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: black;
  cursor: pointer;
}

.tab-close:hover {
  background-color: #3ae59f;
}

input:checked + .tab-label {
  background-color: #3ae59f;
}

input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked + .tab-label h3 {
  color: white;
}
input:checked + .tab-label svg {
  border: 1px solid white;
  fill: #3ae59f;
}

input:checked ~ .tab-content {
  display: block;
  /* max-height: 100vh; */
  padding: 1em;
  background: #3ae59f;
  color: white;
}

.main-clients .wrap .client-slider {
  width: 100%;
  position: relative;
}

.main-clients .wrap .client-slide {
  width: 100%;
  text-align: center;
  margin: 15px;
  background: #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
  border-radius: 11px;
}
.main-clients .wrap .client-slide .client-slide-content {
  padding: 0 17px;
  min-height: 200px;
}
.main-clients .wrap .client-slide iframe {
  width: 100%;
  height: 175px;
  border-radius: 11px;
  margin-bottom: 23px;
}
.main-clients .wrap .client-slide .client-slide-content h3 {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 27px;
  line-height: 40px;
  color: #3c93db;
  padding: 0 17px;
}
.main-clients .wrap .client-slide client-slide-content p {
  font-family: Quicksand;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #9ca5a9;
}
.slick-dots {
  list-style: none;
  margin-top: 30px;
  /* position: absolute;
  left: 50%; */
  /* transform: translate(-50%); */
  display: flex;
  justify-content: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  content: "•";
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: rgba(58, 229, 159, 0.4);
}
.slick-dots .slick-active button:before {
  content: "•";
  font-size: 80px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #3ae59f;
}
