body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  width: 100%;

  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul[class] {
  list-style: none;
}

/* --------Container-------------
---------------------------- */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

/* --------Header-------------
---------------------------- */
.header {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 60px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo__text {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 19px;
  line-height: 25px;
  text-transform: uppercase;
  color: #035755;

  margin-left: 14px;
}

/* --------Nav-------------
---------------------------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  line-height: 22px;
}
.nav__link {
  color: #000;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  margin: 15px;
  margin-bottom: 9px;
  transition: color 0.1s linear;
}
.nav__link:after {
  content: "";
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  width: 6px;
  height: 6px;
  opacity: 0;

  margin-top: 9px;

  background-color: #fb4c47;

  transition: opacity 0.1s linear;
}
.nav__link:hover {
  color: #fb4c47;
}
.nav__link:hover::after {
  opacity: 1;
}

/* --------Button-------------
---------------------------- */
.btn {
  display: inline-block;
  vertical-align: top;
  padding: 14px 40px;
  margin-left: 20px;

  border-radius: 2px;
  border: 2px solid #fb4c47;
  border-radius: 46px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #fb4c47;
  text-decoration: none;

  transition: background 0.1s linear;
}
.btn-menu_close{
  display: inline-block;
  vertical-align: top;
  padding: 5px 20px;
  margin: 20px 0;

  border-radius: 2px;
  border: 2px solid #fb4c47;
  border-radius: 46px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  color: #fb4c47;
  text-decoration: none;
}

.btn:hover {
  background-color: #fb4c47;
  color: #fff;
}

/* ========= menu ============= */
.window__menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  background-color: #ff383d;
}
.close__menu-btn {
  width: 35px;
  position: absolute;
  top: 44px;
  right: 15px;
}
.window__menu-nav {
  margin-top: 100px;
}
.window__menu-list {
  margin-bottom: 10px;
}
.window__menu-list a {
  color: #fff;
  text-decoration: none;
}
.active {
  display: block;
}
/* --------Intro-------------
---------------------------- */

.intro__inner {
  display: flex;
  margin-bottom: 60px;
}
.intro__item {
  width: 50%;
  display: inline-block;
}
.intro__suptitle {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 122%;
  color: #fa5652;

  margin-top: 100px;
  margin-bottom: 10px;
}
.intro__title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 139%;
  color: #035755;
}
.intro__text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 190%;
  color: #4b4f51;

  margin-top: 29px;
  margin-bottom: 54px;
}
.btn__red {
  display: inline-block;
  vertical-align: top;
  padding: 14px 40px;

  border-radius: 2px;
  border: 2px solid #fb4c47;
  border-radius: 46px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;

  background-color: #fb4c47;

  transition: background 0.1s linear;
}

.btn__red:hover {
  background-color: #fff;
  color: #fb4c47;
}

.intro__image {
  width: 800px;
}

/* --------WhatIsIt-------------
---------------------------- */
.whatisit__inner {
  display: flex;
  margin-bottom: 60px;
}

.whatisit__img {
  width: 500px;
}

.whatisit__item {
  width: 50%;
}

.whatisit__suptitle {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 122%;
  color: #fa5652;

  margin-bottom: 10px;
}
.whatisit__title {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 139%;
  color: #035755;
}
.whatisit__text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 190%;

  margin-top: 29px;
  margin-bottom: 54px;

  color: #4b4f51;
}

.btn__pink {
  display: inline-block;
  vertical-align: top;
  padding: 14px 40px;

  border-radius: 2px;
  border: 0;
  border-radius: 46px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #fb4c47;
  background-color: rgba(250, 86, 82, 0.15);
  text-decoration: none;

  transition: background 0.1s linear;
}

.btn__pink:hover {
  background-color: rgba(240, 36, 33, 0.3);
  color: #fb4c47;
}

/* --------Covid-19------------
---------------------------- */

.covid__inner {
  text-align: center;
  margin-bottom: 60px;
}
.covid__suptitle {
  color: #fa5652;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 124%;

  margin-bottom: 15px;
}
.covid__title {
  color: #035755;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 119%;
}
.covid__text {
  width: 716px;
  height: 71px;

  color: #4b4f51;
  font-weight: normal;
  margin: 20px auto;
}

/* --------Cards------------
---------------------------- */

.card__row {
  display: flex;
}

.card__item {
  text-align: center;
  margin-bottom: 160px;
  height: 475px;

  box-shadow: 4px 4px 25px 0px rgba(34, 60, 80, 0.2);
  transition: border 0.05s linear;
}
.card__inner {
  width: 1050px;
  display: inline-block;
  margin-right: 30px;
}

.card__inner:last-child {
  margin-right: 0;
}
.card__img {
  padding-top: 30px;
  width: 270px;
  height: 264px;
}
.card__title {
  color: #035755;
  font-weight: 500;
  font-size: 24px;
  line-height: 147%;

  margin: 15px 0;
}
.card__text {
  height: 130px;

  color: #4b4f51;
  font-weight: normal;
  line-height: 185%;

  padding: 0 30px 45px 30px;
}
.card__item:hover {
  box-shadow: 4px 4px 24px 0px rgba(17, 29, 39, 0.2);
  border-bottom: 4px solid #fa5652;
}

/* --------Simptomps------------
---------------------------- */
.simptomps {
  margin-bottom: 160px;
}
.simptomps__img {
  background: url("images/Group 15444.svg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  width: 1170px;
  height: 870px;
  display: flex;
}
.col {
  width: 585px;
  height: 290px;

  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  color: #ff383d;
}
.col__hever {
  padding: 230px 200px 10px 25px;
}
.col_pain {
  padding: 185px 200px 10px 27px;
}
.col__dypsnoea {
  padding: 135px 200px 10px 45px;
}
.col__headache {
  padding: 200px 10px 10px 435px;
  font-size: 14px;
}
.col__reny {
  padding: 150px 10px 10px 425px;
  font-size: 14px;
}
.col__shaking {
  padding: 110px 10px 10px 470px;
}

/* --------What We Do------------
---------------------------- */
.wedo__item {
  display: flex;
  margin-bottom: 30px;
}
.wedo__inner {
  width: 50%;
}
.number__title {
  display: block;
  width: 450px;
  display: flex;
  align-items: center;
  margin-top: 150px;
}
.number {
  height: 51px;

  color: #fa5652;
  font-size: 30px;
  font-weight: bold;
  background-color: rgb(255, 218, 218);

  padding: 0 10px 0 10px;
  margin-right: 55px;

  border-radius: 50px;
}
.title {
  padding: 0;

  font-weight: bold;
  font-size: 30px;
  color: #035755;
}
.wedo__text {
  display: block;
  margin: 15px 0 0 115px;

  font-weight: normal;
  font-size: 16px;
  line-height: 221%;
  color: #4b4f51;
}
.wedo__img {
  width: 450px;
  margin: 0 0 0 100px;
}

/* ------180------------- */

.wedo__inner__180 {
  width: 50%;
}
.number__title__180 {
  display: block;
  width: 450px;
  display: flex;
  align-items: center;
  margin-top: 150px;
}
.number__180 {
  height: 51px;

  color: #fa5652;
  font-size: 30px;
  font-weight: bold;
  background-color: rgb(255, 218, 218);

  padding: 0 10px 0 10px;
  margin-right: 55px;
  border-radius: 50px;
}
.title__180 {
  padding: 0;

  font-weight: bold;
  font-size: 30px;
  color: #035755;
}
.wedo__text__180 {
  display: block;
  margin: 15px 0 0 115px;

  font-weight: normal;
  font-size: 16px;
  line-height: 221%;
  color: #4b4f51;
}
.wedo__img__180 {
  width: 450px;
  margin: 0 100px 0 0;
}

/* --------Maps------------
---------------------------- */

.map {
  margin-bottom: 60px;
}

/* --------Form------------
---------------------------- */
.form__inner {
  margin: 0 auto;
  width: 450px;
  margin-bottom: 150px;
}
.form__title {
  width: 450px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: #0c6c44;

  margin-bottom: 30px;
}

.header__address {
  display: flex;
  width: 750px;
  margin-left: -110px;
}

.btn__red {
  display: inline-block;
  vertical-align: top;
  padding: 14px 40px;
  margin-left: 30px;

  border: 2px solid #fb4c47;
  border-radius: 46px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;

  background-color: #fb4c47;
  box-shadow: 4px 4px 24px 0px rgba(17, 29, 39, 0.2);

  transition: background 0.1s linear;
}

.btn__red:hover {
  background-color: #fff;
  color: #fb4c47;
}
.header__input {
  width: 490px;
  height: 50px;
  padding: 8px 12px 8px 32px;

  border: 1px solid #d9d9d9;
  border-radius: 50px;

  font-size: 16px;
  line-height: 24px;

  box-shadow: 4px 4px 24px 0px rgba(17, 29, 39, 0.2);
}

/* --------Footer-------------
---------------------------- */

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 60px;
}
.footer__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo__text {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 19px;
  line-height: 25px;
  text-transform: uppercase;
  color: #035755;

  margin-left: 14px;
}

/* --------Nav-------------
---------------------------- */
nav {
  display: flex;

  font-size: 18px;
  line-height: 22px;
}
.nav__link {
  color: #000;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  margin: 15px;
  margin-bottom: 9px;
  transition: color 0.1s linear;
}
.nav__link:after {
  content: "";
  display: block;
  margin: 0 auto;
  border-radius: 50px;
  width: 6px;
  height: 6px;
  opacity: 0;

  margin-top: 9px;

  background-color: #fb4c47;

  transition: opacity 0.1s linear;
}
.nav__link:hover {
  color: #fb4c47;
}
.nav__link:hover::after {
  opacity: 1;
}

.footer__icon {
  display: flex;
}
.footer__inner__icon {
  color: #035755;
  font-size: 20px;
  margin-right: 20px;

  transition: opacity 0.1s linear;
}
.footer__inner__icon:last-child {
  margin-right: 0;
}
.footer__inner__icon:hover {
  color: #fb4c47;
}

.rights__text {
  display: block;
  margin-bottom: 30px;

  text-align: center;
  color: #ccc;
  font-size: 16px;
}
/* Изменения для адаптива */
.menu__burger {
  display: none;
}

/* ================== Адаптив ================= */
@media (max-width: 1300px) {
  .intro__image {
    width: 100%;
  }
  .intro__inner {
    margin-bottom: 100px;
    align-items: center;
  }
  /* ================== */
  .simptomps {
    margin-bottom: 60px;
  }
  .covid__inner {
    margin: 0;
  }
  .simptomps__img {
    background: none;
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .col1,
  .col2 {
    width: 100%;
  }
  .col {
    width: 100%;
    height: 60px;
    padding: 0;
  }
  /* ======================== */
  .wedo__img {
    width: 300px;
  }
  .number__title {
    margin-top: 0;
  }
  .wedo__item {
    align-items: center;
    margin-bottom: 60px;
  }
  .wedo__inner__180 {
    align-items: center;
  }
  .wedo__img__180 {
    width: 300px;
  }
  .number__title__180 {
    margin-top: 0;
  }
  .wedo__text__180 {
    margin: 15px 0 0 80px;
    font-size: 14px;
    line-height: 150%;
  }
  .number__180 {
    margin-right: 23px;
  }
  .number {
    margin-right: 23px;
  }
  .wedo__text {
    margin: 15px 0 0 80px;
    font-size: 14px;
    line-height: 150%;
  }
}

@media (max-width: 920px) {
  .header {
    margin-bottom: 15px;
  }
  .menu__burger {
    display: block;
  }
  .menu__burger-icon {
    width: 35px;
  }
  .nav {
    display: none;
  }
  .btn {
    padding: 5px 31px;
    font-size: 14px;
    margin-left: 0;
    margin-top: 15px;
  }
  /* ==================== */
  .intro__item-content {
    padding-right: 30px;
  }
  .intro__suptitle {
    margin-top: 50px;
  }
  .intro__title {
    font-size: 25px;
    line-height: 125%;
  }
  .intro__text {
    font-size: 14px;
    line-height: 180%;
  }
  /* ==================== */
  .whatisit__inner {
    align-items: center;
  }
  .whatisit__img {
    width: 400px;
  }
  .whatisit__title {
    font-size: 25px;
    line-height: 125%;
  }
  /* ===================== */
  .wedo__inner {
    width: 100%;
    margin-bottom: 30px;
  }
  .wedo__item {
    display: block;
  }
  .wedo__img {
    margin: 0 auto;
    display: flex;
  }
  .wedo__inner__180 {
    width: 100%;
    margin-bottom: 30px;
  }
  .wedo__img__180 {
    margin: 0 auto;
    display: flex;
  }
  .wedo__item-dop {
    display: flex;
    flex-direction: column-reverse;
  }
  .number__title {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .intro__inner {
    display: block;
  }
  .intro__item {
    width: 100%;
  }
  .intro__item-content {
    margin-bottom: 40px;
  }
  /* ======================= */
  .whatisit__inner {
    display: block;
  }
  .whatisit__item-img {
    display: none;
  }
  .whatisit__item-content {
    width: 100%;
  }
  .btn__pink {
    margin-left: 0;
    font-size: 16px;
    padding: 9px 23px;
  }
  /* ========================= */
  .card__row {
    display: block;
  }
  .covid__inner {
    width: 100%;
  }
  .covid__text {
    width: 100%;
  }
  .card__inner {
    width: 100%;
  }
  .card__item {
    margin-bottom: 35px;
  }
  /* ======================= */
  .form__title {
    font-size: 25px;
  }
  .form__inner {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .form__title {
    width: 100%;
  }
  .header__address {
    width: 100%;
    margin: 0;
    flex-direction: column;
  }
  .header__input {
    width: 100%;
  }
  .ml0 {
    margin-left: 0;
    margin-top: 20px;
    width: 180px;
  }
}
@media (max-width: 520px) {
  .btn__red {
    margin-left: 0;
    font-size: 16px;
    padding: 9px 23px;
    border: none;
  }
  /* =============================== */
  .card__inner {
    margin-right: 0;
  }
  .covid__text {
    height: auto;
    margin-bottom: 30px;
  }
  .card__title {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 20px;
  }
  .card__text {
    padding-bottom: 25px;
  }
  .number__title__180 {
    width: 100%;
  }
  .title {
    font-size: 20px;
  }
  .title__180 {
    width: 100%;
    font-size: 20px;
  }
  /* ================================= */
  .covid__inner {
    margin: 30px 0;
  }
  /* ================================= */
  .form__inner {
    margin-bottom: 60px;
    font-size: 14px;
  }
  /* ================================= */
  .form__title {
    font-size: 20px;
  }
  .header__input {
    padding: 8px 12px 8px 12px;
  }
  /* ================================= */
  .footer__inner {
    margin-bottom: 20px;
  }
  .footer__inner__icon {
    margin-right: 10px;
  }
}
