.m-0 {
  margin: 0;
}

.m-auto {
  margin: 0 auto;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

address {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  max-width: 141rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  border: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  border-radius: 10rem;
  text-decoration: none;
  cursor: pointer;
  transition: all ease 0.3s;
}
.btn--blue {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 4.4rem;
  letter-spacing: -0.01em;
  color: #7f2941;
  padding: 2rem 4rem;
  background-color: #aec5ce;
}
.btn--blue:hover {
  background-color: #7f2941;
  color: #aec5ce;
}
.btn--red {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  background-color: #7f2941;
  color: #aec5ce;
  padding: 1.5rem 3rem;
}
.btn--red:hover {
  background-color: #aec5ce;
  color: #7f2941;
}

.scroll__top-btn {
  position: fixed;
  z-index: 100;
  bottom: 2rem;
  right: 2rem;
  padding: 2rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #aec5ce;
  transition: all ease-in 0.3s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.scroll__top-btn:hover {
  background-color: #f4f4f8;
}
.scroll__top-btn:hover img {
  animation: scrollToTop 1s linear infinite alternate;
}

@keyframes scrollToTop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 1200px) {
  .btn {
    border-radius: 10rem;
  }
  .btn--blue {
    font-size: 2.5rem;
    line-height: 3rem;
    padding: 1.5rem 2rem;
  }
  .btn--red {
    font-size: 1.5rem;
    padding: 1.2rem 2rem;
  }
}
@media screen and (max-width: 950px) {
  .scroll__top-btn {
    padding: 1.3rem;
    aspect-ratio: 1;
    width: 5rem;
    height: 5rem;
  }
}
.card__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}
.card__item {
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  min-height: 40rem;
  background-color: #fff;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
  transition: all ease 0.3s;
}
.card__item:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.08);
}
.card__top {
  position: relative;
}
.card__date {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  color: #aec5ce;
  background-color: #7f2941;
  padding: 0.7rem 1.3rem;
  display: flex;
  flex-direction: column;
}
.card__date span:nth-child(1) {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.8rem;
}
.card__date span:nth-child(2) {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.card__date span:nth-child(3) {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2rem;
}
.card__img {
  object-fit: cover;
  min-height: 32rem;
}
.card__title {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: -0.01em;
  color: #7f2941;
  margin-bottom: 1.5rem;
}
.card__heading-border {
  margin: 0 !important;
}
.card__info {
  padding: 2rem;
}

@media screen and (max-width: 900px) {
  .card__item {
    min-height: 20rem;
  }
  .card__item:last-child {
    display: none;
  }
  .card__title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 600px) {
  .card__item {
    margin: 0 auto;
  }
  .card__item:first-child {
    display: none;
  }
}
.heading {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 5rem;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #7f2941;
  margin-bottom: 1.5rem;
}
.heading--secondary {
  font-size: 3.8rem;
  line-height: 6.4rem;
  text-align: left;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.heading__wrapper {
  margin: 0 auto;
}

.heading-border {
  max-width: 11.6rem;
  height: 6px;
  background-color: #aec5ce;
}
.heading-border--red {
  background-color: #7f2941;
}

@media screen and (max-width: 950px) {
  .heading {
    font-size: 4rem;
    line-height: 5rem;
    margin-bottom: 1.5rem;
  }
  .heading--secondary {
    font-size: 3rem;
    line-height: 6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 1rem;
  }
  .heading--secondary {
    font-size: 2.4rem;
    line-height: 4rem;
    margin-bottom: 1rem;
  }
}
.section__title {
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
  text-transform: uppercase;
  color: #004549;
  margin-bottom: 1.5rem;
}
.section__content-heading {
  font-family: "Roboto Serif", serif;
  font-weight: 300;
  font-size: 3.6rem;
  line-height: 5rem;
  color: #7f2941;
}
.section__article-heading {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #59595c;
  margin-top: 3rem;
}
.section__description {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: center;
  color: #7f2941;
  max-width: 63rem;
  margin: 0 auto;
  margin-top: 2rem;
}
.section__paragraph {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #59595c;
  margin-top: 3rem;
}
.section__paragraph span {
  display: block;
  margin-top: 5rem;
  margin-bottom: 2rem;
}
.section__nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.section__nav-item:not(:last-child)::after {
  content: "::";
  margin-left: 1rem;
  font-size: 1.6rem;
  color: #7f2941;
}
.section__nav-link {
  font-size: 1.6rem;
  text-align: center;
  text-transform: uppercase;
  color: #7f2941;
}
.section__nav-link--active {
  text-decoration: underline;
}
.section__nav-link--disabled {
  color: #bbbcbb;
}
.section__sidebar {
  width: 100%;
  max-width: 35.6rem;
}
.section__sidebar-list {
  display: flex;
  flex-direction: column;
}
.section__sidebar-item {
  padding: 1rem 0;
  border-bottom: 1px solid #aec5ce;
}
.section__sidebar-item--active {
  background-color: #aec5ce;
}
.section__sidebar-item:hover {
  background-color: #aec5ce;
}
.section__sidebar-link {
  border-left: 6px solid #aec5ce;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #7f2941;
  padding-left: 2rem;
  width: 100%;
}
.section__sidebar-link--acitive {
  color: #fff;
}
.section__sidebar-link:hover {
  color: #fff;
}
.section__content {
  max-width: 85rem;
  width: 100%;
}

@media screen and (max-width: 950px) {
  .section__paragraph {
    margin-top: 1.5rem;
  }
  .section__paragraph span {
    margin-top: 4rem;
    margin-bottom: 1rem;
  }
  .section__content-heading {
    font-size: 2.7rem;
    line-height: 4rem;
  }
  .section__sidebar {
    max-width: unset;
  }
  .section__sidebar-list {
    align-items: baseline;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
  }
  .section__sidebar-link {
    border-left: unset;
    padding: 0 1.5rem;
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
}
.main-bg {
  background-color: #f4f4f8;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  padding-top: 12%;
  padding-bottom: 6rem;
}
.main__top {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.85) 0%), url("../../assets/images/image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
}
.main__content {
  margin-top: 5rem;
  display: flex;
  gap: 6rem;
}

@media screen and (max-width: 950px) {
  .main__top {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.85) 0%), url("../../assets/images/image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
  }
  .main__content {
    flex-direction: column;
    gap: 3rem;
  }
}
.header {
  display: flex;
  align-items: center;
  padding: 3rem;
  width: 100%;
  background-color: #7f2941;
}
.header__logo-img {
  height: auto;
  margin-right: 2rem;
}
.header__logo-img:hover {
  opacity: 0.8;
}
.header-primary {
  padding: 0 3rem 0 4rem;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.header-primary__logo-img {
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.25));
  max-width: 46rem;
}
.header__btn-burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  cursor: pointer;
  margin-left: 3rem;
  justify-self: flex-end;
  background-color: transparent;
  border-radius: 5px;
  transition: all ease 0.3s;
}
.header__btn-burger:hover {
  background-color: #fff;
}
.header__btn-burger--primary:hover {
  background-color: #7f2941;
}

.nav {
  margin-left: auto;
  margin-right: 3rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__link {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-transform: uppercase;
  color: #fff;
  transition: all ease 0.3s;
  padding: 1rem 2.5rem;
  border-radius: 10rem;
}
.nav__link--primary {
  color: #7f2941;
}
.nav__link--active {
  background-color: #aec5ce;
}
.nav__link:hover {
  background-color: #aec5ce;
}
.nav__close-btn {
  display: none;
}

.flag__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.flag__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1380px) {
  .header-primary {
    padding: 0 2rem;
  }
  .header-primary__logo-img {
    max-width: 30rem;
  }
  .nav {
    margin-right: 1rem;
  }
  .nav__list {
    gap: 5px;
  }
  .nav__link {
    font-size: 1.6rem;
    line-height: 1.8rem;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 1040px) {
  .header {
    padding: 1.5rem;
  }
  .header-primary__logo-img {
    max-width: 25rem;
  }
  .nav__link {
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .header-primary__logo-img {
    max-width: 20rem;
  }
  .header__btn-burger {
    display: block;
  }
  .nav {
    background-color: #f4f4f8;
    height: 100vh;
    width: 40%;
    position: fixed;
    z-index: 100;
    right: 0;
    top: 0;
    transition: all ease 0.5s;
    margin: 0;
  }
  .nav--close {
    transform: translateX(100%);
  }
  .nav__list {
    flex-direction: column;
    margin-top: 3rem;
  }
  .nav__item {
    width: 100%;
  }
  .nav__link {
    padding: 1.5rem 2rem;
    width: 100%;
    color: #7f2941;
    border-radius: 0;
  }
  .nav__close-btn {
    display: block;
    text-align: right;
    font-size: 3.5rem;
    color: #7f2941;
    margin-top: 2rem;
    margin-right: 2rem;
    cursor: pointer;
  }
  .flag__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
  }
  .flag__link:hover {
    opacity: 0.8;
  }
}
.footer {
  background-color: #7f2941;
  padding: 6rem 0 4rem;
}
.footer__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}
.footer__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  margin-right: 3rem;
}
.footer__contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer__contact-icon {
  width: 1.6rem;
  height: 1.6rem;
  filter: saturate(1);
}
.footer__contact-link, .footer__address {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #fff;
}
.footer__contact-link:hover {
  opacity: 0.6;
}
.footer__list-wrapper {
  display: flex;
  flex-direction: column;
}
.footer__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  max-width: 18.2rem;
  border-top: 1px solid #aec5ce;
}
.footer__list-title {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.9rem;
  text-transform: uppercase;
  color: #aec5ce;
  margin-bottom: 2rem;
}
.footer__link {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #fff;
  transition: all ease 0.3s;
}
.footer__link:hover {
  transform: translateX(5px);
  opacity: 0.6;
}

.social {
  margin-top: 4rem;
}
.social__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.1rem 0;
  border-bottom: 1px solid rgba(174, 197, 206, 0.3);
  border-top: 1px solid rgba(174, 197, 206, 0.3);
}
.social__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.9rem;
  text-transform: uppercase;
  color: #aec5ce;
}
.social__link:hover {
  opacity: 0.6;
}

.copy {
  margin-top: 4rem;
}
.copy__text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #fff;
  opacity: 0.5;
}

@media screen and (max-width: 950px) {
  .footer {
    padding: 4rem 0;
  }
  .footer__wrapper {
    gap: 4rem;
  }
  .footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer__list-title {
    font-size: 2rem;
    line-height: 2.3rem;
    margin-bottom: 1rem;
  }
  .social__list {
    padding: 2rem 0;
    justify-content: space-around;
  }
  .social__link {
    font-size: 1.4rem;
  }
  .social__link-text {
    display: none;
  }
  .copy {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .footer__info {
    gap: 2rem;
    margin-right: 0;
    align-items: center;
  }
  .footer__contact {
    align-items: center;
    gap: 1rem;
  }
  .footer__list-wrapper {
    align-items: center;
  }
  .footer__list {
    align-items: center;
    gap: 1rem;
  }
  .footer__list-title {
    margin-bottom: 0;
  }
}
.form {
  background-color: #fefefe;
  box-shadow: 0 0 1.8rem rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3rem;
  flex: 1;
}
.form__inputs {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 3rem;
}
.form__input {
  flex: 1;
  outline: none;
  border: 1px solid #f4f4f8;
  background-color: #f4f4f8;
  border-radius: 2rem;
  font-size: 1.8rem;
  line-height: 2.1rem;
  padding: 1.5rem;
}
.form__input:hover {
  border: 1px solid #bbbcbb;
}
.form__input::placeholder {
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #a7a8a9;
}
.form__input--light {
  background-color: #fff;
  border: 1px solid #a7a8a9;
}
.form__input--light:hover {
  border: 1px solid rgba(174, 197, 206, 0.3);
}
.form__textarea {
  width: 100%;
  background-color: #f4f4f8;
  border-radius: 2rem;
  border: none;
  resize: none;
  padding: 1.5rem;
  min-height: 7rem;
  font-size: 1.8rem;
  line-height: 2.1rem;
  outline: none;
  font-family: "Roboto", sans-serif;
  border: 1px solid transparent;
}
.form__textarea:hover {
  border: 1px solid #bbbcbb;
}
.form__textarea::placeholder {
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #a7a8a9;
}
.form__checkbox {
  width: 1.6rem;
  height: 1.6rem;
}
.form__accept {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.form__accept-text, .form__link {
  color: #7f2941;
  font-size: 1.8rem;
}
.form__link {
  color: #229ed9;
}
.form__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 950px) {
  .form {
    padding: 2rem;
    gap: 2rem;
  }
  .form__inputs {
    flex-direction: column;
    gap: 2rem;
  }
  .form__input {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .form__input::placeholder {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .form__textarea {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .form__textarea::placeholder {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .form__accept-text, .form__link {
    font-size: 1.6rem;
  }
}
.hero {
  position: relative;
}
.hero__slider-text {
  max-width: 76.7rem;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  right: 32rem;
  top: 30rem;
  color: #fff;
  text-align: right;
}
.hero__slider-title {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 9.8rem;
  line-height: 9.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}
.hero__slider-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  line-height: 4.4rem;
}
.hero__slider-btn {
  margin-top: 4rem;
}
.hero__slider-img {
  filter: brightness(70%);
  object-fit: cover;
  min-height: 99rem;
  width: 100%;
}

.surgery {
  background-color: #aec5ce;
  padding: 6rem 0;
}
.surgery__cards {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.surgery__card {
  overflow: hidden;
  max-width: 42rem;
  min-height: 74rem;
  border-radius: 3rem;
  position: relative;
}
.surgery__card:hover .surgery__card-img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.surgery__card-img {
  max-width: inherit;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1);
  transition: all ease 0.3s;
}
.surgery__card-label {
  background-color: #7f2941;
  color: #aec5ce;
  text-align: center;
  text-transform: uppercase;
  padding: 2rem 3.15rem;
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 4.4rem;
  letter-spacing: -0.01em;
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  right: 2rem;
}

.relevant {
  padding: 8rem 0;
  background-color: #f4f4f8;
}
.relevant__heading-wrapper {
  max-width: 89rem;
}
.relevant__cards {
  margin-top: 6rem;
}
.relevant__slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 6rem;
}
.relevant__slider-dot {
  border: 1px solid #7f2941;
  width: 1.6rem;
  height: 1.6rem;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.relevant__slider-dot--active {
  position: relative;
}
.relevant__slider-dot--active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #7f2941;
}

.result {
  padding: 8rem 0;
}
.result__cards {
  display: flex;
}
.result__card {
  max-width: 46rem;
  min-height: 62rem;
  background-color: #aec5ce;
  background-repeat: no-repeat;
  flex: 1;
}
.result__card:nth-child(1) {
  background-image: url(../assets/images/result-img-1.png);
  background-position: top 16rem right -3rem;
  background-size: contain;
}
.result__card:nth-child(2) {
  background-image: url(../assets/images/result-img-2.png);
  background-position: top 19rem center;
  background-size: 39rem;
  background-color: #004549;
}
.result__card:nth-child(3) {
  background-image: url(../assets/images/result-img-3.png);
  background-position: bottom right;
  background-size: contain;
}
.result__card-info {
  padding-top: 2rem;
  padding-left: 6rem;
}
.result__card-info .heading-border {
  margin: 0;
  margin-right: auto;
}
.result__card-title {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #7f2941;
  margin-bottom: 1.5rem;
}
.result__card-title--white {
  color: #fff;
}
.result__card-num {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 11.2rem;
  letter-spacing: -0.01em;
  color: #7f2941;
  margin-bottom: 1rem;
}
.result__card-num--white {
  color: #fff;
}

.brands {
  background-color: #7f2941;
  padding: 6rem;
}
.brands__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brands__img {
  opacity: 0.35;
  width: 100%;
}

.contact {
  padding: 6rem 0;
  background-color: #f4f4f8;
}
.contact__content {
  margin-top: 4rem;
  display: flex;
  gap: 4rem;
}
.contact__links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 41rem;
  padding: 2rem;
  background-color: #fefefe;
  box-shadow: 0 0 1.8rem rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
}
.contact__img {
  padding: 1.6rem;
  text-align: center;
  border: 2px dashed #aec5ce;
  border-radius: 50%;
}
.contact__text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.contact__title {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #7f2941;
}
.contact__link {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #7f2941;
}
.contact__link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  .hero__slider-text {
    right: 10rem;
  }
  .hero__slider-title {
    font-size: 7rem;
    line-height: 7rem;
    margin-bottom: 2rem;
  }
  .hero__slider-subtitle {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .hero__slider-btn {
    margin-top: 2rem;
  }
  .surgery {
    padding: 4rem 0;
  }
  .surgery__cards {
    gap: 5rem;
  }
  .surgery__card-label {
    padding: 2rem;
    font-size: 2.5rem;
    line-height: 4rem;
    left: 3rem;
    right: 3rem;
    word-wrap: break-word;
  }
  .result__card {
    max-width: unset;
    width: 100%;
    min-height: 62rem;
  }
  .result__card-num {
    font-size: 7rem;
    margin: 0;
    line-height: normal;
  }
}
@media screen and (max-width: 1090px) {
  .contact {
    padding: 3rem 0;
  }
  .contact__content {
    margin-top: 2rem;
    display: flex;
    gap: 4rem;
  }
  .contact__links {
    display: flex;
    flex-direction: column;
  }
  .contact__wrapper {
    gap: 1rem;
    padding: 2rem;
  }
  .contact__img {
    padding: 1rem;
    max-width: 4rem;
  }
  .contact__title {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .contact__link {
    font-size: 1.5rem;
    line-height: 2rem;
    word-break: break-all;
  }
}
@media screen and (max-width: 930px) {
  .surgery {
    padding: 3rem 0;
  }
  .surgery__cards {
    gap: 4rem;
    flex-direction: column;
  }
  .surgery__card {
    max-width: 100%;
  }
  .surgery__card-label {
    padding: 2rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .result {
    padding: 5rem 0;
  }
  .result__cards {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .result__card {
    max-width: unset;
    width: 100%;
    min-height: 62rem;
  }
}
@media screen and (max-width: 786px) {
  .hero__slider-text {
    right: 5rem;
  }
  .hero__slider-title {
    font-size: 6rem;
    line-height: 6rem;
  }
  .hero__slider-subtitle {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .relevant {
    padding: 5rem 0;
  }
  .relevant__cards {
    margin-top: 4rem;
  }
  .relevant__slider-dots {
    margin-top: 4rem;
  }
  .contact__content {
    flex-direction: column-reverse;
  }
  .contact__links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .contact__wrapper {
    gap: 1rem;
    padding: 2rem;
    max-width: 100%;
  }
  .contact__img {
    padding: 1rem;
    max-width: 4rem;
  }
  .contact__title {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .contact__link {
    font-size: 1.5rem;
    line-height: 2rem;
    word-break: break-all;
  }
}
@media screen and (max-width: 570px) {
  .hero__slider-text {
    top: 25rem;
    left: 5rem;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .brands {
    padding: 3rem;
  }
  .brands__list {
    flex-direction: column;
  }
  .brands__item {
    margin-bottom: 2rem;
  }
  .brands__img {
    max-width: 21rem;
  }
}
.about {
  background-color: #fff;
  padding: 3rem 6rem;
  min-height: 163.7rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}

.article {
  margin-top: 3rem;
}
.article__list {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
}
.article__item {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #59595c;
  list-style: disc;
  margin-left: 2rem;
}

.certificate {
  background-color: #aec5ce;
  padding: 6rem 5.5rem 2.5rem;
}
.certificate__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 3rem;
}
.certificate__img {
  height: auto;
}
.certificate__item {
  border-radius: 3rem;
  overflow: hidden;
}

@media screen and (max-width: 950px) {
  .about {
    padding: 3rem;
    min-height: 150rem;
  }
  .certificate {
    padding: 3rem 5rem;
  }
  .certificate__list {
    flex-direction: column;
  }
  .certificate__item {
    border-radius: 2rem;
  }
}
.founders {
  background-color: #fff;
  padding: 3rem 6rem 6rem;
  min-height: 163.7rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}
.founders__nav-list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #aec5ce;
  margin-bottom: 3rem;
}
.founders__nav-btn {
  padding: 1rem 2rem;
  text-align: center;
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
}
.founders__nav-btn--blue {
  background-color: #aec5ce;
  color: #fff;
}
.founders__nav-btn--blue:hover {
  background-color: #7f2941;
  color: #aec5ce;
  border: 1px solid #aec5ce;
}
.founders__nav-btn--red {
  background-color: #7f2941;
  color: #aec5ce;
}
.founders__nav-btn--red:hover {
  background-color: #aec5ce;
  color: #7f2941;
  border: 1px solid #7f2941;
}

.human__name {
  font-weight: 700;
  font-size: 4.1rem;
  line-height: 4.2rem;
  color: #59595c;
  margin-top: 3rem;
}
.human__img {
  height: auto;
}

@media screen and (max-width: 950px) {
  .human__name {
    margin-top: 1rem;
    font-size: 3rem;
    line-height: 4rem;
  }
}
.doctors {
  background-color: #fff;
  padding: 3rem 6rem 6rem;
  min-height: 200rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}
.doctors__articles {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  margin-top: 4rem;
}
.doctors__article-title {
  margin: 2rem 0;
}

@media screen and (max-width: 1200px) {
  .doctors {
    min-height: 50rem;
  }
  .doctors__articles {
    margin-top: 2rem;
  }
  .doctors__article-title {
    margin: 1rem 0;
  }
}
.hospital {
  background-color: #fff;
  padding: 3rem 6rem 6rem;
  min-height: 130rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}

.surgery-types {
  margin-bottom: 18rem;
}
.surgery-types__link {
  width: 100%;
}
.surgery-types__content {
  margin-top: 3rem;
}
.surgery-types__banner {
  position: relative;
  background-image: linear-gradient(90deg, rgba(127, 41, 65, 0.56) 0%, rgba(255, 255, 255, 0.0952) 83.85%);
  width: 100%;
}
.surgery-types__banner-img {
  width: 100%;
  position: relative;
  z-index: -1;
}
.surgery-types__banner-text {
  position: absolute;
  top: 50rem;
  left: 0;
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 4rem;
  text-align: center;
  max-width: 45rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.surgery-types__banner-bottom {
  font-size: 3.7rem;
  line-height: 4rem;
  text-align: center;
  letter-spacing: 0.02em;
  color: #7f2941;
  padding: 2rem;
  background-color: #aec5ce;
  margin-bottom: 8rem;
}

@media screen and (max-width: 1100px) {
  .surgery-types {
    margin-bottom: 10rem;
  }
  .surgery-types__banner-text {
    top: 30%;
    font-size: 4rem;
    line-height: 4.2rem;
  }
  .surgery-types__banner-bottom {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 570px) {
  .surgery-types__banner-text {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .surgery-types__banner-bottom {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.gastric {
  background-color: #fff;
  padding: 3rem 6rem 6rem;
  max-height: 140rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}
.gastric__img {
  margin-top: 3rem;
  height: auto;
}
.gastric__content-heading {
  text-transform: uppercase;
  font-size: 3.2rem;
  font-family: "Cormorant", serif;
  line-height: 3.9rem;
  font-weight: 700;
}

@media screen and (max-width: 950px) {
  .gastric {
    padding: 3rem;
  }
}
.news {
  background-color: #fff;
  margin-bottom: 10rem;
  min-height: 140rem;
}
.news .main__content {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.news .section__content {
  max-width: 100%;
  flex: 1;
}
.news__banner {
  position: relative;
  overflow: hidden;
}
.news__banner-img {
  height: auto;
}
.news__banner-label {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  bottom: 0;
  left: 0;
}
.news__banner-title {
  color: #fff;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 4rem;
  letter-spacing: -0.01em;
  margin-top: 2rem;
}
.news__banner-badge {
  display: inline-block;
  font-family: "Roboto Serif", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  color: #aec5ce;
  padding: 1rem 1.3rem;
  background-color: #7f2941;
}
.news__banner-badge--blue {
  background-color: #aec5ce;
  color: #7f2941;
}
.news__card {
  margin-top: 3rem;
}
.news__card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1200px) {
  .news .main__content {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .news .section__content {
    max-width: 100%;
    flex: 1;
  }
  .news__banner-title {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 1.5rem;
  }
  .news__banner-label {
    padding: 1.5rem;
  }
  .news__banner-badge {
    font-size: 1.4rem;
  }
  .news__card {
    margin-top: 3rem;
  }
  .news__card-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 950px) {
  .news .main__content {
    flex-direction: column;
  }
  .news__card-list {
    grid-template-columns: 1fr 1fr;
  }
  .news .section__sidebar-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 570px) {
  .news__card-list {
    grid-template-columns: 1fr;
  }
}
.last-news {
  background-color: #fff;
  padding: 3rem 6rem 6rem;
  min-height: 200rem;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.08);
}
.last-news .section__content {
  max-width: 100%;
}
.last-news__img {
  width: 100%;
}

@media screen and (max-width: 950px) {
  .last-news {
    padding: 3rem;
    min-height: 170rem;
  }
}

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