/*utf-8*/
/*colors*/
body {
  font-family: 'Roboto', sans-serif;
  color: #fff; }
  body button {
    background-color: transparent;
    border-radius: 0;
    border: none; }
    body button:focus, body button:active, body button:hover {
      outline: none; }
  body section {
    padding-bottom: 60px; }
  body ul {
    margin: 0;
    padding: 0;
    list-style: none; }

input[type=tel] {
  color: #000 !important;
  background: #f2f2f2 url(../img/phone-ico.png) no-repeat 10px center !important; }

input[name=name] {
  color: #000 !important;
  background: #f2f2f2 url(../img/user.svg) no-repeat 10px center !important; }

.input-wrapper input {
  border: none;
  width: 100%;
  padding: 9px 0 9px 40px;
  border-radius: 20px; }
  .input-wrapper input:focus, .input-wrapper input:active, .input-wrapper input:hover {
    outline: none; }

.form_send {
  text-align: center;
  padding: 25px 25px 5px 25px;
  color: #000;
  display: none;
  transition: .3s all; }

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-align: center;
  padding: 60px 0 30px 0; }

.section-sub_title {
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  color: #000;
  position: relative;
  padding-bottom: 60px; }
  .section-sub_title:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #000;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%); }

.blue-btn {
  background-color: #00adef;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  transition: .3s ease; }
  .blue-btn:hover {
    background-color: #017dad;
    transform: scale(1.1); }

/* modal */
.overlay {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  max-height: 100vh;
  overflow-y: auto; }
  .overlay.open {
    opacity: 1;
    pointer-events: inherit; }
  .overlay .modal {
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0px 8px 13px 0px rgba(69, 69, 69, 0.24);
    border-radius: 20px;
    background: #fff;
    width: 340px;
    box-sizing: border-box;
    max-width: 100%;
    padding: 40px 30px 40px; }
    .overlay .modal.open {
      opacity: 1;
      pointer-events: inherit; }
      .overlay .modal.open .content {
        transform: translate(0, 0px);
        opacity: 1; }
    .overlay .modal .content {
      transform: translate(0, -10px);
      opacity: 0;
      transition: .35s ease-in-out; }
    .overlay .modal .title {
      margin-top: 0; }
    .overlay .modal .close-modal {
      position: absolute;
      top: -29px;
      right: -19px;
      cursor: pointer; }

.modal-form_wrapper .modal-form .form-title {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 15px;
  color: #000; }
  .modal-form_wrapper .modal-form .form-title span {
    display: block;
    font-weight: 700; }
.modal-form_wrapper .modal-form .modal-form_field {
  margin-bottom: 11px;
  text-align: center; }
.modal-form_wrapper .modal-form .modal-form_btn .blue-btn {
  width: 100%;
  border-radius: 20px;
  font-size: 18px; }

/* modal */
/*media*/
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    padding: 80px 0 50px 0; } }
@media (min-width: 992px) {
  .section-title {
    font-size: 42px; } }
@media (min-width: 1200px) {
  .blue-btn {
    font-size: 20px;
    border-radius: 25px; } }
/*media*/
/*header*/
.header .header_wrapper {
  background-color: #000000;
  min-height: 60px;
  padding: 15px 0; }
  .header .header_wrapper .header-logo {
    position: relative;
    z-index: 9999; }
    .header .header_wrapper .header-logo .logo img {
      width: 180px; }

/*header*/
/*first-screen*/
.first-screen {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/fs.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 815px;
  height: 100vh;
  padding-bottom: 20px; }
  .first-screen .fs_title-wrapper {
    text-align: center;
    padding-top: 150px; }
    .first-screen .fs_title-wrapper .main-title {
      font-weight: bold;
      font-size: 32px; }
    .first-screen .fs_title-wrapper .sub-title {
      font-size: 20px;
      font-weight: 400;
      padding-top: 20px;
      padding-bottom: 60px; }
  .first-screen .fs_offer {
    text-align: center; }
  .first-screen .fs-form_wrapper {
    border-radius: 20px;
    background: #fff;
    width: 320px;
    max-width: 100%;
    padding: 30px;
    position: relative;
    margin: 40px auto 0 auto; }
    .first-screen .fs-form_wrapper .first-screen_form-title {
      text-align: center;
      color: #000;
      margin-bottom: 20px;
      font-weight: 500; }
    .first-screen .fs-form_wrapper .first-screen_form-btn {
      width: 100%;
      margin-top: 20px; }
      .first-screen .fs-form_wrapper .first-screen_form-btn .blue-btn {
        width: 100%;
        border-radius: 20px;
        font-size: 18px; }

/*first-screen*/
/*examination*/
.examination {
  color: #000; }
  .examination .examination-block {
    font-size: 14px;
    max-width: 380px;
    margin: 0 auto;
    position: relative; }
    .examination .examination-block:before {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      background-image: url(../img/arrow-dot-top.png);
      background-position: 100% 0;
      background-repeat: no-repeat;
      background-size: contain;
      width: 100%;
      height: 50px; }
    .examination .examination-block:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      border-bottom: 1px solid #fdce85;
      width: 150px; }
    .examination .examination-block .examination-title {
      font-weight: bold; }
    .examination .examination-block .examination-text {
      display: flex;
      align-items: baseline;
      padding-bottom: 20px;
      margin-bottom: 25px; }
      .examination .examination-block .examination-text .examination-img img {
        margin-top: -15px; }
  .examination .examination-description_wrapper {
    padding: 40px 0;
    text-align: center; }
    .examination .examination-description_wrapper .examination-description {
      text-transform: uppercase;
      font-weight: 500;
      padding-bottom: 20px; }

/*examination*/
/*services*/
.services {
  background-color: #353535; }
  .services .section-title {
    color: #fff; }
  .services .col-sm-6 {
    margin-bottom: 30px; }
  .services .services-card_wrapper {
    max-width: 360px;
    margin: 0 auto;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 17px;
    padding-bottom: 40px;
    margin-bottom: 40px; }
    .services .services-card_wrapper .services-card-img {
      position: relative; }
      .services .services-card_wrapper .services-card-img .services-avatar {
        width: 100%;
        object-fit: cover;
        border-top-right-radius: 15px;
        border-top-left-radius: 15px; }
      .services .services-card_wrapper .services-card-img .services-card-icn {
        background-color: white;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        padding: 10px; }
    .services .services-card_wrapper .services-card-name {
      text-transform: uppercase;
      font-size: 16px;
      line-height: 1.2;
      padding: 60px 20px 30px 20px; }
    .services .services-card_wrapper .services-card-price {
      font-weight: 900;
      font-size: 18px;
      padding-bottom: 30px; }

/*services*/
/*advantages*/
.advantages {
  color: #000; }
  .advantages .section-title {
    padding: 60px 0 15px 0; }
  .advantages .advantages_block {
    margin-bottom: 40px; }
    .advantages .advantages_block .advantages_block-title {
      font-size: 18px;
      text-decoration: underline;
      text-transform: uppercase;
      padding-bottom: 10px;
      line-height: 1; }

/*advantages*/
/*works*/
.works {
  background-color: #eaeaea;
  padding-bottom: 0;
  /*slider*/
  /*slider*/ }
  .works .section-title {
    padding: 60px 0 15px 0; }
  .works .works-block {
    overflow: hidden;
    cursor: pointer; }
    .works .works-block img {
      width: 100%;
      transition: .3s all; }
      .works .works-block img:hover {
        transform: scale(1.1); }
  .works .slick-review {
    padding-bottom: 80px; }
  .works .review-slider .review__slide {
    padding: 0 15px; }
    .works .review-slider .review__slide img {
      width: 100%;
      max-width: 320px;
      margin: 0 auto; }
  .works .review-slider .slick-dots {
    bottom: -40px; }
    .works .review-slider .slick-dots li button:before {
      font-size: 44px; }
  .works .slick-prev, .works .slick-next {
    background-color: rgba(0, 173, 239, 0.34);
    border-radius: 50%;
    width: 30px;
    height: 30px; }
  .works .slick-prev:before, .works .slick-next:before {
    font-size: 23px;
    opacity: 1; }

/*works*/
/*footer*/
.footer {
  background-color: #000;
  text-align: center;
  padding: 40px 0; }
  .footer .footer-logo {
    width: 180px;
    margin: 0 auto; }
    .footer .footer-logo .logo img {
      width: 100%; }
  .footer .footer-contacts {
    margin-top: 30px; }
    .footer .footer-contacts .contacts-info {
      color: #bbb;
      font-weight: 500;
      font-size: 18px; }
    .footer .footer-contacts a {
      color: #fff;
      font-size: 26px;
      margin-top: 5px;
      display: block; }
      .footer .footer-contacts a:hover {
        color: #00adef;
        text-decoration: none; }

.messengers-list {
  display: flex;
  max-width: 290px;
  margin: 10px auto 0;
  justify-content: center; }
  .messengers-list li {
    margin: 0 10px; }
    .messengers-list li img {
      width: 36px;
      margin: 0 auto; }

/*footer*/

/*# sourceMappingURL=style.css.map */
