html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

html,
body {
  height: 100%;
  font-size: 20px;
  font-family: "Manrope", "Tahoma", sans-serif;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 760px) {
  html {
    font-size: 16px;
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 1830px;
  width: 100%;
  margin: 0 auto;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1580px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1580px) {
  .container {
    padding: 0 80px;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    padding: 0 10px;
  }
}
img {
  object-fit: cover;
  object-position: center;
}

.oul {
  outline: 1px solid red;
}

.main-inner {
  padding-bottom: 2rem;
}

.mb {
  margin-bottom: 5rem;
}

@media screen and (max-width: 990px) {
  .mb {
    margin-bottom: 2rem;
  }
}
.text-accent {
  font-weight: 600;
}

.white-button {
  padding: 8px 30px 10px;
  border: 1px solid #1F1F1F;
  border-radius: 25px;
  background-color: #fff;
  font-size: 1rem;
  color: #1F1F1F;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.white-button:hover {
  border-color: #179B99;
  background-color: #179B99;
  color: #fff;
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

@media (any-pointer: none) {
  .white-button {
    background: #179B99;
  }
}
.section-header {
  width: min(565px, 100%);
  font: 3.75rem "Manrope", "Tahoma", sans-serif;
  font-weight: 600;
  letter-spacing: -3.5px;
  color: #3A3939;
  line-height: 1;
}

@media screen and (max-width: 990px) {
  .section-header {
    font-size: 2.25rem;
    letter-spacing: -2px;
  }
}
.header {
  padding: 1.5rem 0 1rem;
  background-color: #fff;
}
.header-content {
  padding-top: 7px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.header-content__left, .header-content__right {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.header-logo {
  margin-top: -7px;
  margin-right: 2.25rem;
}
.header-menu {
  width: 415px;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.header-menu__item {
  flex: 0 0 fit-content;
  padding: 0 3px 5px;
  gap: 1.5rem;
  border-bottom: 1px solid transparent;
}
.header-menu__item:has(.header-menu__link):hover {
  border-bottom: 1px solid #1F1F1F;
}
.header-menu__link {
  font-size: 1rem;
  color: #1F1F1F;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.header-social {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 7px;
  margin-right: 7px;
}
.header-icon {
  width: 50px;
  height: 50px;
  transition: stroke 0.3s ease;
}
.header-icon:hover {
  stroke: #179B99;
}
.header .white-button {
  height: 50px;
}

.menu-burger {
  display: none;
}

@media screen and (max-width: 990px) {
  .menu-burger {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 25px;
  }
  .menu-burger__item {
    flex: 0 0 3px;
    height: 3px;
    width: 40px;
    border-radius: 2px;
    background-color: #3A3939;
  }
  .header-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    height: auto;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 500;
    padding: 1rem !important;
    background-color: #F9F9F9;
  }
  .header-menu__block {
    position: relative;
    z-index: 1;
    align-self: center;
  }
  .header-menu__link {
    text-align: left;
  }
}
@media screen and (max-width: 760px) {
  .header-content__left {
      width: 100%;
      margin-bottom: .5rem;
  }
  .header-content__right {
      width: 100%;
  }
}
.footer {
  padding: 1.75rem 0px 3.5rem;
  background-color: #F9F9F9;
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footer__column {
  flex: 0 1 25%;
  padding: 0 2.75rem;
}
.footer__column:not(:last-of-type) {
  padding: 0 2.75rem;
  border-right: 1px solid #c0c0c0;
}
.footer__column:first-of-type {
  margin-left: -2.75rem;
}
.footer-menu__item {
  padding: 0 5px 3px;
  /*border-bottom: 1px solid transparent;*/
  
}

.footer-menu__item:not(:last-of-type) {
  margin-bottom: 12px;
}
.footer-menu__link {
  font: 1rem "Manrope", "Tahoma", sans-serif;
  color: #3A3939;
  transition: text-decoration 0.3s ease;
}

.footer-menu__link:hover {
    text-decoration:underline!important;
}

@media screen and (max-width: 760px) {
  .footer-bottom {
    padding: 1.5rem 0 1.25rem;
  }
  .footer__column {
    flex: 0 1 100%;
    margin-bottom: 1rem;
   
  }
  .footer__column:not(:last-of-type) { border-right: none;}
  .footer__column:first-of-type {
    margin-left: 0;
  }
  .footer__column,
  .footer__column:not(:last-of-type) {
    padding: 0;
  }
}

/* popup fos */
#overlay {
  z-index: 10;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.popup-fos {
  position: fixed;
  top: 5%;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 15;
  display: none;
  margin: auto;
  min-width: 320px;
  height: 400px;
  width: 25%;
  outline: 1px solid #888;
  padding: 1.5rem 2rem;
  border-radius: 30px;
  background: #f9f9f9;
}

.popup-fos__header {
  margin-bottom: 0.5rem;
  font: 1rem "Manrope", "Tahoma", sans-serif;
}

.popup-fos__text {
    font-size: .75rem;
}

.order-call {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 11px;
}
.order-call input {
  display: block;
  padding: 10px;
  border: 1px solid #07575E;
  color: #3A3939;
}
.order-call input[type=checkbox] {
   display: inline-block; 
}
.order-call input[type=checkbox]:checked {
  background: gray;
  
}

.popup-fos #modal_close {
  width: 21px;
  height: 21px;
  position: absolute;
  font: 2rem "Gilroy", sans-serif;
  top: 1px;
  right: 11px;
  cursor: pointer;
  display: block;
}

.popup-fos #modal_close:hover {
  color: #016797;
}

/* main page styles */
.promo-block {
  padding: 3.75rem 0 3.3rem; /*3.75rem;*/
  border-radius: 1.5rem;
  background: no-repeat -10px top url(../images/main-new/main.jpg);
  background-size: cover;
  clip-path: polygon(49% 0, 50% 6.5%, 51% 0, 100% 0, 100% 100%, 0 100%, 0 38%, 3% 36%, 0 34%, 0 0);
}
.promo-block__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.promo-block__content {
  width: min(840px, 50%);
  margin: 7.5rem 3.5rem 7.5rem 0;
  position: relative;
  z-index: 1;
}
.promo-block__content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
  background-color: rgba(7, 87, 94, 0.3);
  filter: blur(50px);
}
.promo-block__text {
  width: max(678px, 50%);
  margin-bottom: 10px;
  font: 1.575rem "Manrope", "Tahoma", sans-serif;
  color: #fff;
  letter-spacing: 0.7px;
  line-height: 1.3;
}
.promo-block__widget {
 /* width: 661px;
  height: 655px;
  background-color: #05BEB9;*/
}
.promo-block .mainpage-title {
  margin-bottom: 15px;
  font: 600 5.5rem "Manrope", "Tahoma", sans-serif;
  letter-spacing: -5px;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 1580px) {
  .promo-block {
    clip-path: polygon(49% 0, 50% 6.5%, 51% 0, 100% 0, 100% 100%, 0 100%, 0 37%, 3% 36%, 0 35%, 0 0);
  }
  .promo-block .mainpage-title {
    margin-bottom: 15px;
    font: 600 4rem "Manrope", "Tahoma", sans-serif;
    line-height: 1;
  }
  .promo-block__content {
    width: calc(90% - 661px);
  }
  .promo-block__text {
    width: auto;
  }
  .TVVerticalForm.TVTheme1 {width: 100%!important;}
}
@media screen and (max-width: 1280px) {
  .promo-block {
    clip-path: none;
  }
  .mainpage-title {
    margin-bottom: 15px;
    font: 600 4rem "Manrope", "Tahoma", sans-serif;
  }
}
@media screen and (max-width: 990px) {
  .promo-block {
    padding: 2rem 1rem;
  }
  .promo-block__container {
    flex-direction: column;
  }
  .promo-block__content {
    width: 100%;
    margin: 1.5rem 0;
  }
  .promo-block .mainpage-title {
    font-size: 3rem;
  }
  .promo-block__text {
    font-size: 1.25rem;
  }
}
.why-we__header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.why-we__subheader {
  width: 300px;
  margin-bottom: 10px;
  text-align: right;
  font: 600 1rem "Manrope", "Tahoma", sans-serif;
  color: #3A3939;
}
.why-we__block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 11px;
  width: 100%;
}
.why-we__item {
  min-height: 229px;
  padding: 2.25rem 2.5rem;
  border-radius: 10px;
  background-color: #F9F9F9;
  font: 1rem "Manrope", "Tahoma", sans-serif;
  color: #3A3939;
}
.why-we__item-title {
  margin-bottom: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
.why-we__item-image {
  border-radius: 10px;
}
.why-we__item-number {
  margin: -1.5rem 0 -5px;
  font: 600 4.25rem "Manrope", "Tahoma", sans-serif;
  color: #3A3939;
}
.why-we__item-persons {
  height: 50px;
  margin: 1rem 0 3.25rem;
}
.why-we .same-column {
  flex: 0 1 356px;
}
.why-we .same-column:first-of-type, .why-we .same-column:nth-of-type(3) {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  gap: 11px;
}
.why-we .same-column:last-of-type .why-we__item-text:last-of-type {
  width: 260px;
}
.why-we .wide-column {
  flex: 0 1 472px;
}
.why-we .wide-column .why-we__item {
  padding-right: 2.4rem;
}
.why-we__group {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 11px;
}
.why-we__item-tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 7px;
  margin-top: 5rem;
}
.why-we .one-tag {
  width: fit-content;
  padding: 7px 0.9rem 8px;
  border-radius: 25px;
  background-color: #fff;
}

@media screen and (max-width: 1580px) {
  .why-we__block {
    justify-content: space-around;
  }
  .why-we__block .same-column,
  .why-we__block .wide-column {
    flex: 0 1 calc(50% - 6px);
  }
}
@media screen and (max-width: 1280px) {
  .why-we .same-column,
  .why-we .wide-column {
    flex: 0 1 calc(50% - 6px);
  }
  .why-we__group {
    display: none;
  }
  .why-we__item-tags {
    margin-top: 1rem;
  }
  .why-we__item {
    min-height: 203px;
  }
}
@media screen and (max-width: 990px) {
  .section-header {
    margin-bottom: 1rem;
  }
  .why-we__item {
    min-height: 217px;
  }
  .why-we__header {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 760px) {
  .why-we__block {
    flex-direction: column;
  }
  .why-we .same-column,
  .why-we .wide-column {
    flex: 0 1 100%;
  }
  .why-we__item {
    min-height: auto;
    padding: 1rem;
  }
  .why-we__item-persons {
    margin: 1.75rem 0;
  }
  .why-we .same-column:last-of-type .why-we__item-text:last-of-type {
    width: 100%;
  }
}
.persons-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  position: relative;
}
.persons-block__one-person {
  flex: 0 0 15%;
  position: absolute;
  left: 0;
  z-index: 1;
  border-radius: 50%;
}
.persons-block__one-person:nth-of-type(2) {
  left: 33px;
  z-index: 2;
}
.persons-block__one-person:nth-of-type(3) {
  left: 66px;
  z-index: 3;
}
.persons-block__one-person:nth-of-type(4) {
  left: 99px;
  z-index: 4;
}
.persons-block__add-person {
  flex: 0 0 20%;
  position: absolute;
  left: 140px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
}
.persons-block__add-person::before, .persons-block__add-person::after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  margin: 23px auto;
  background-color: #07575E;
}
.persons-block__add-person::after {
  width: 4px;
  height: 30px;
  margin: -40px auto 0;
}

.services .section-header {
  width: 100%;
  margin-bottom: 3.5rem;
  text-align: center;
}
.services__block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 11px;
}
.services-card {
  flex: 0 1 19.25%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  border-radius: 10px;
  background-color: #F9F9F9;
}
.services-card__image {
  margin-bottom: 1.75rem;
}
.services-card__title {
  width: 60%;
  min-height: 54px;
  margin: 0 1.25rem 1.5rem;
  font: 1rem "Manrope", "Tahoma", sans-serif;
  color: #3A3939;
}
.services-card__button {
  width: fit-content;
  margin: 0 1.25rem 1.25rem;
  padding: 6px 9px;
  border: 1px solid #848484;
  border-radius: 20px;
  background-color: #F9F9F9;
  font: 0.6rem "Manrope", "Tahoma", sans-serif;
  color: #848484;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.services-card__button:hover {
  border-color: #179B99;
  background-color: #179B99;
  color: #fff;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.2s ease;
}
.services-card:last-of-type {
  background-color: #179B99;
}
.services-card:last-of-type .services-card__title {
  color: #fff;
}
.services-card:last-of-type .services-card__button {
  border-color: #fff;
  background-color: #179B99;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.services-card:last-of-type .services-card__button:hover {
  background-color: #fff;
  color: #3A3939;
  transition: background-color 0.4s ease, color 0.4s ease;
}

@media screen and (max-width: 1580px) {
  .services .services-card__title {
    width: 95%;
    margin: 0 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1280px) {
  .services .services__block {
    justify-content: space-around;
  }
  .services .services-card {
    flex: 0 1 30%;
  }
}
@media screen and (max-width: 990px) {
  .services .services-card__button {
    margin: 0 auto 1.25rem;
  }
}
@media screen and (max-width: 670px) {
  .services .services-card {
    flex: 0 1 48%;
  }
}
.features__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.features__text {
  width: max(33%, 300px);
  margin-right: 9.75%;
  margin-top: 10px;
}
.features__text p {
  margin-bottom: 10px;
}
.features__text p:first-of-type {
  width: max(84%, 300px);
}
.features .section-header {
  margin-top: -2rem;
}

@media screen and (max-width: 1280px) {
  .features__text {
    width: 40%;
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .features .section-header {
    margin-top: 0;
  }
  .features__text {
    width: 100%;
  }
}
.second-banner {
  padding: 98px 126px 43px 126px;
  background: no-repeat center top url(../images/main-new/banner.jpg);
}
.second-banner__content {
  width: 789px;
  margin-left: auto;
  padding: 67px 87px 67px 67px;
  border-radius: 15px;
  background: no-repeat calc(100% - 35px) bottom url(../images/main-new/iphone.png) #fff;
  clip-path: polygon(50% 0%, 72% 0, 100% 0, 100% 59%, 100% 100%, 0 100%, 0 15%, 7% 13.5%, 0 12%, 0 0);
}
.second-banner__title {
  margin-bottom: 2.25rem;
  font: 600 2.75rem "Manrope", "Tahoma", sans-serif;
  line-height: 0.9;
}
.second-banner__title .accent-light {
  color: #848484;
}
.second-banner__text {
  width: 290px;
  margin-bottom: 6rem;
}
.second-banner__button {
  position: relative;
  display: block;
  width: fit-content;
  padding: 33px 51px;
  border-radius: 50px;
  border: 8px solid #179B99;
  background-color: #179B99;
  font: 1rem "Manrope", "Tahoma", sans-serif;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.second-banner__button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 33px 51px;
  border-radius: 50px;
  border: 1px solid #05BEB9;
}
.second-banner__button:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3A3939;
  outline: 1px solid #179B99;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

@media screen and (max-width: 990px) {
  .second-banner {
    padding: 2rem;
  }
  .second-banner__content {
    width: 95%;
    margin: 0 auto;
    padding: 1rem;
    background-image: none;
    clip-path: none;
  }
  .second-banner__title {
    font-size: 2rem;
  }
  .second-banner__text {
    margin-bottom: 2rem;
  }
  .second-banner__button {
    padding: 10px 1rem;
  }
  .second-banner__button::before {
    border: none;
  }
}
.about-us__header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.about-us__notes {
  flex: 0 0 50%;
  min-width: 790px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 15px;
}
.about-us__notes-image {
  flex: 0 0 220px;
  border-radius: 10px;
}
.about-us__notes .notes__text1 {
  flex: 0 0 70%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1rem;
}
.about-us__subnotes {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
.about-us__subnotes .notes_text2 {
  flex: 0 0 70%;
  margin-right: auto;
}
.about-us__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 11px;
}
.about-us__banner {
  flex: 0 0 26.32%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-height: 548px;
  padding: 0 1.75% 49px 3.25%;
  border-radius: 10px;
  background: no-repeat right top url(../images/main-new/mom-with-kid.jpg);
  font: 600 2rem "Manrope", "Tahoma", sans-serif;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
}
.about-us__masonry {
  flex: 0 1 72.95%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 11px;
}
.about-us__masonry .masonry-item {
  flex: 1 1 39.24%;
  padding-top: 49px;
  padding-bottom: 49px;
  padding-left: 4.25%;
  border-radius: 10px;
  background-color: #F9F9F9;
}
.about-us__masonry .masonry-item__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.about-us__masonry .masonry-item__cyan {
  flex: 1 1 32.97%;
  min-width: 444px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.5%;
  padding-right: 2.125%;
  background-color: #179B99;
  color: #fff;
}
.about-us__masonry .masonry-item__cyan .masonry-item__text {
  flex: 0 0 58%;
}
.about-us__masonry .masonry-item__number {
  font: 600 3.25rem "Manrope", "Tahoma", sans-serif;
  line-height: 1;
  color: #fff;
}
.about-us__masonry .masonry-item:nth-of-type(2) {
  padding-right: 16.5%;
  background: no-repeat right top url(../images/main-new/group-image.jpg) #F9F9F9;
  background-size: 183px 100%;
}
.about-us__masonry .masonry-item:nth-of-type(3) {
  flex: 1 1 40.25%;
  padding-right: 3.5%;
}
.about-us__masonry .masonry-item:nth-of-type(4) {
  flex: 1 1 29%;
  padding-right: 4.5%;
}
.about-us__masonry .masonry-item__text p {
  margin-bottom: 0.7rem;
}
.about-us__masonry .persons-block__one-person:nth-of-type(2) {
  left: 25px;
}
.about-us__masonry .persons-block__one-person:nth-of-type(3) {
  left: 50px;
}
.about-us__masonry .persons-block__one-person:nth-of-type(4) {
  left: 75px;
}
.about-us__masonry .persons-block__add-person {
  flex: 0 0 18%;
  position: absolute;
  left: 100px;
  z-index: 3;
  width: 36.5px;
  height: 36.5px;
  border-radius: 50%;
  background-color: #fff;
}
.about-us__masonry .persons-block__add-person::before, .about-us__masonry .persons-block__add-person::after {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  margin: 17px auto;
  background-color: #07575E;
}
.about-us__masonry .persons-block__add-person::after {
  width: 4px;
  height: 20px;
  margin: -29px auto 0;
}

.logos-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 7px 3px;
  min-width: 390px;
}
.logos-block__item {
  flex: 0 0 fit-content;
}
.logos-block__item:first-of-type {
  position: relative;
  top: 12px;
}

@media screen and (max-width: 1580px) {
  .about-us .section-header {
    flex: 0 1 calc(100% - 800px);
    font-size: 2.5rem;
  }
  .about-us__masonry {
    flex: 0 1 72%;
  }
}
@media screen and (max-width: 1485px) {
  .about-us__masonry {
    flex: 0 1 71.2%;
  }
  .about-us__masonry .masonry-item:nth-of-type(2) {
    flex: 1 1 29%;
    padding-right: 18.5%;
  }
  .about-us__masonry .masonry-item:nth-of-type(4) {
    flex: 1 1 29%;
    padding-right: 2%;
  }
  .about-us__masonry .masonry-item {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 1440px) {
  .about-us__masonry {
    flex: 1 1 100%;
  }
  .masonry-item {
    padding: 49px 4.5% 49px 4.25%;
  }
  .masonry-item:nth-of-type(2) {
    background-image: none;
  }
  .about-us__banner {
    flex: 1 1 100%;
    padding: 2rem;
    background-image: none;
    background-color: #179B99;
    text-align: center;
  }
}
@media screen and (max-width: 1280px) {
  .about-us .section-header {
    flex: 0 1 400px;
  }
  .about-us__notes {
    flex: 0 1 calc(100% - 420px);
    min-width: auto;
  }
  .about-us__notes-image {
    display: none;
  }
  .about-us__notes .notes__text1 {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 990px) {
  .about-us .section-header {
    flex: 0 1 100%;
    margin-bottom: 1rem;
  }
  .about-us__notes {
    flex: 0 1 100%;
  }
  .about-us__masonry .masonry-item__cyan,
  .about-us__masonry .masonry-item:nth-of-type(2),
  .about-us__masonry .masonry-item:nth-of-type(3),
  .about-us__masonry .masonry-item:nth-of-type(4) {
    flex: 1 1 100%;
  }
  .about-us__masonry .masonry-item:nth-of-type(2) {
    padding-right: 190px;
  }
}
@media screen and (max-width: 560px) {
  .about-us__masonry .masonry-item__cyan {
      min-width: auto;
  }  
  .about-us__subnotes img {
    display: none;
  }
  .about-us__masonry .masonry-item:nth-of-type(2) {
        padding-right: 1rem;}
  .about-us__subnotes .notes_text2 {
    flex: 0 1 100%;
  }
  .logos-block {
      min-width: auto;
  }
  
}
.map-block__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  border-radius: 30px;
  background-color: #05BEB9;
}
.map-block__contacts {
  flex: 0 1 50%;
  padding: 4rem 3rem 4rem 5rem;
}
.map-block__contacts .section-header {
  width: 100%;
  margin-bottom: 27px;
  color: #fff;
}
.map-block__contacts .contact-line {
  font: 1rem "Manrope", "Tahoma", sans-serif;
  color: #fff;
}
.map-block__contacts .contact-line:first-of-type {
  margin-bottom: 16px;
}
.map-block__contacts .contact-line.address::before, .map-block__contacts .contact-line.phone::before {
  content: "";
  display: block;
  float: left;
  width: 18px;
  height: 25px;
  margin-right: 10px;
  background: no-repeat left center url(../images/main-new/point.svg);
}
.map-block__contacts .contact-line.phone::before {
  width: 18px;
  height: 22px;
  background: no-repeat left bottom url(../images/main-new/phone.svg);
}

.map-block__contacts .address {
    text-transform: none;
    text-align: left;
}

.map-area {
  flex: 0 1 50%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

@media screen and (max-width: 990px) {
  .map-block__contacts,
  .map-area {
    flex: 1 1 100%;
  }
}