.banner {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .banner {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .banner {
    margin-bottom: 120px;
  }
}
.banner__main {
  display: grid;
  grid-template-columns: 67% 33%;
  position: relative;
  background-clip: content-box;
}
@media (max-width: 992px) {
  .banner__main {
    grid-template-columns: 100%;
    background: linear-gradient(to top, transparent 20%, #e7f6eb 20%, #e7f6eb 80%, transparent 80%);
    background-clip: content-box;
  }
}
.banner__info {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 40px 0 24px 40px;
  position: relative;
  border-radius: 24px 0 0 24px;
  padding-right: 240px;
  background-color: #e7f6eb;
}
@media (max-width: 992px) {
  .banner__info {
    border-radius: 24px 24px 0 0;
    padding: 30px 30% 15px 30px;
  }
}
@media (max-width: 568px) {
  .banner__info {
    padding: 30px 15px 0;
  }
}
.banner__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #033e75;
  line-height: 1.2;
}
.banner__divider {
  width: 60px;
  border: none;
  border-top: 1px solid #009966;
  margin: 0 0 24px 0;
}
.banner__subtitle {
  font-size: 1.1rem;
}
.banner__image {
  position: absolute;
  height: 110%;
  bottom: 0;
  right: 0;
  margin-right: -11%;
}
@media (max-width: 992px) {
  .banner__image {
    margin-right: 0;
    max-width: 30%;
  }
}
@media (max-width: 568px) {
  .banner__image {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    height: auto;
  }
}
.banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.banner .list-dots {
  display: grid;
  grid-template-columns: 1fr 50%;
  -moz-column-gap: 5%;
       column-gap: 5%;
  row-gap: 15px;
}
@media (max-width: 568px) {
  .banner .list-dots {
    grid-template-columns: 100%;
  }
}
.banner .list-dots li {
  line-height: 1.4;
}
.banner__contacts {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #033e75;
  border-radius: 0 24px 24px 0;
  padding-left: 20%;
  padding-right: 10%;
  padding-block: 15px;
}
@media (max-width: 992px) {
  .banner__contacts {
    border-radius: 24px;
    padding: 30px 0 15px 30px;
  }
}
.banner__contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
@media (max-width: 992px) {
  .banner__contact {
    padding-inline: 0;
    padding-right: 30px;
  }
}
.banner__contact:last-of-type {
  border-bottom: none;
}
.banner__contact img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 4px;
  filter: grayscale(100%) brightness(0) invert(1);
}
.banner__contact-name {
  text-transform: uppercase;
  font-family: gotham-medium, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
.banner__contact-phone {
  color: white;
  text-decoration: none;
  font-weight: 325;
  font-size: 1rem;
}
.banner__contact-phone[href^="tel:"] {
  color: currentColor;
}/*# sourceMappingURL=banner.css.map */