@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Lora:wght@400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.header {
  position: fixed;
  width: 100%;
  background: #121D2D;
  background: linear-gradient(0deg, rgba(18, 29, 45, 0) 0%, rgba(18, 29, 45, 0.9) 66%, rgba(18, 29, 45, 0.9) 100%);
  z-index: 20;
}
.header__body {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.header__logo {
  flex: 1 1 25%;
  margin-right: 2rem;
}
.header__phone {
  flex: 0 1 25%;
}
@media (max-width: 991.98px) {
  .header__phone {
    display: none;
  }
}
.header__phone a {
  color: #EFF3F9;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header__right {
  flex: 1 1 50%;
  display: flex;
  gap: 20px;
  line-height: 120%;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header__right {
    flex: 1 0 50%;
  }
}
@media (max-width: 767.98px) {
  .header__right {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 767.98px) {
  .header__link {
    display: none;
  }
}
.header__link button {
  color: #EFF3F9;
  border: 1px solid #627598;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.5s ease;
}
.header__link button:hover {
  background-color: #627598;
}
.header__lang span {
  border: 1px solid #627598;
  padding: 10px 20px;
  border-radius: 6px;
}
@media (max-width: 767.98px) {
  .header__lang span {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
.logo img {
  width: 8rem;
}

.lang {
  pointer-events: all;
  cursor: pointer;
  position: relative;
}
.lang:hover .lang__list {
  visibility: visible;
  opacity: 1;
}
.lang__list {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 1.75rem;
}
.lang__item {
  border: 1px solid #627598;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 2px;
  color: #EFF3F9;
}
.lang__item a {
  color: #EFF3F9;
}
.lang__item:hover {
  background-color: #627598;
}
@media (max-width: 767.98px) {
  .lang__item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.menu {
  position: fixed;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  padding: 20px;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
}
@media (max-width: 991.98px) {
  .menu {
    padding-left: 30px;
  }
}
.menu__body {
  width: calc(50vw - 20px);
  height: auto;
  background-color: #1458D7;
  padding: 2rem 3rem;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .menu__body {
    width: calc(100vw - 20px);
  }
}
.menu__bt {
  margin-bottom: 2rem;
}
.menu__bt button {
  font-size: 1rem;
}
.menu__phone {
  color: #EFF3F9;
  display: inline-block;
  font-weight: 500;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2470588235);
  border-radius: 4px;
  margin-bottom: 1rem;
  margin-right: 1rem;
  transition: all 0.4s ease;
}
.menu__phone:hover {
  background-color: #EFF3F9;
  color: #1458D7;
}
.menu__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}
@media (max-width: 991.98px) {
  .menu__list {
    padding: 3rem 0;
  }
}
.menu__link {
  font-size: 3.2rem;
  color: #EFF3F9;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 120%;
}
@media (max-width: 1279.98px) {
  .menu__link {
    font-size: 3rem;
  }
}
@media (max-width: 991.98px) {
  .menu__link {
    font-size: 2rem;
  }
}

.icon-menu {
  position: absolute;
  right: 0;
  color: #EFF3F9;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  background-color: #1458D7;
  padding: 10px 20px;
  border-radius: 6px;
}
@media (max-width: 767.98px) {
  .icon-menu {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}
.icon-menu:hover .icon-menu__f span {
  width: 100%;
}

.icon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background-color: #EFF3F9;
  padding: 10px 20px;
  border-radius: 6px;
  color: #1C1D1D;
}
@media (max-width: 767.98px) {
  .icon-close {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.icon-menu__f {
  position: relative;
  display: block;
  line-height: 120%;
  flex: 0 0 20px;
  height: 12px;
  cursor: pointer;
  z-index: 5;
}
@media (max-width: 767.98px) {
  .icon-menu__f {
    flex: 0 0 16px;
    height: 10px;
  }
}
.icon-menu__f span {
  transition: all 0.3s ease 0s;
  top: 50%;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.icon-menu__f span:first-child {
  top: 0px;
  width: 80%;
}
.icon-menu__f span:last-child {
  top: auto;
  bottom: -1px;
  width: 60%;
}
.icon-menu__f:hover span {
  width: 100%;
}
.icon-menu__f._active span {
  background-color: #627598;
  transform: scale(0);
}
.icon-menu__f._active span:first-child {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}
.icon-menu__f._active span:last-child {
  width: 100%;
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden; /* по умолчанию скрыто */
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 4rem 3rem;
  border-radius: 10px;
  width: 600px;
  max-width: 90vw;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  opacity: 0;
}
.popup-content h2 {
  color: #1C1D1D;
  margin-bottom: 2rem;
}
.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popup-content form input, .popup-content form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.popup-content form button {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background-color: #1458D7;
  color: #EFF3F9;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.popup-content form button:hover {
  background-color: #1051ca;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  margin-top: 2rem;
}
.footer__top {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__top_r {
  flex: 1 1 66.66%;
}
.footer__logo {
  flex: 1 1 33.33%;
  margin-bottom: 2rem;
}
.footer__menu {
  margin-bottom: 2rem;
}
.footer__menu_list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .footer__menu_list {
    gap: 1rem;
  }
}
.footer__menu_link {
  color: #627598;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.footer__menu_link:hover {
  color: #1458D7;
}
.footer__phone {
  padding: 3rem 0;
}
@media (max-width: 991.98px) {
  .footer__phone {
    padding: 2rem 0;
  }
}
.footer__phone a {
  font-size: 4.5rem;
  color: #EFF3F9;
  transition: all 0.5s ease;
}
@media (max-width: 991.98px) {
  .footer__phone a {
    font-size: 3.5rem;
  }
}
@media (max-width: 767.98px) {
  .footer__phone a {
    font-size: 2.5rem;
  }
}
.footer__phone a:hover {
  color: #1458D7;
}
.footer__center {
  display: flex;
  padding: 3rem 0;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .footer__center {
    padding: 2rem 0;
  }
}
.footer__center_l {
  flex: 1 1 33.33%;
  margin-bottom: 1rem;
}
.footer__center_c {
  flex: 1 1 33.33%;
}
.footer__center_r {
  flex: 1 1 33.33%;
}
@media (max-width: 991.98px) {
  .footer__center_r {
    flex: 1 1 50%;
  }
}
.footer__label {
  color: #3C4758;
  font-weight: 500;
  margin-bottom: 2rem;
}
.footer__text {
  line-height: 160%;
}
.footer__btm {
  display: flex;
  padding: 1.5rem 0;
  border-top: 1px solid #3C4758;
}
@media (max-width: 991.98px) {
  .footer__btm {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__btm_l {
  flex: 0 0 66.66%;
}
.footer__btm_r {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: space-between;
}
.footer__btm_r a {
  color: #627598;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer__btm_r a:hover {
  color: #1458D7;
}

.ss__list {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .ss__item img {
    width: 18px;
  }
}
.ss__link {
  border: 1px solid #627598;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.ss__link:hover {
  background-color: #627598;
}
@media (max-width: 767.98px) {
  .ss__link {
    width: 42px;
    height: 42px;
  }
}

html {
  font-family: "Inter";
  font-size: clamp(16px, 16px + 6 * (100vw - 1440px) / 440, 22px);
  font-weight: 300;
  line-height: 140%;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

body {
  min-height: 100%;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background-color: #121D2D;
  color: #ffffff;
}

#smooth-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex-grow: 1;
}

h1 {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 120%;
}

h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  h6 {
    font-size: 1.25rem;
  }
}

._container {
  max-width: 1880px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  ._container {
    padding: 0 1rem;
  }
}

.main-first {
  position: relative;
  height: calc(100vh - 100px);
  margin-top: 100px;
  margin-bottom: 3rem;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .main-first {
    margin-top: 0;
    height: 100vh;
  }
}
.main-first__body {
  display: flex;
  justify-content: space-between;
  min-height: 100%;
  align-items: center;
}
@media (max-width: 991.98px) {
  .main-first__body {
    flex-direction: column;
    justify-content: center;
  }
}
.main-first__text {
  flex: 0 0 50%;
  padding-right: 10%;
}
@media (max-width: 991.98px) {
  .main-first__text {
    margin-bottom: 4rem;
  }
  .main-first__text h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .main-first__text {
    margin-bottom: 2rem;
  }
  .main-first__text h1 {
    font-size: 2rem;
  }
}
.main-first__text span {
  display: block;
  font-size: 1rem;
  line-height: 140%;
  color: #8F9BB2;
  padding-right: 20%;
}
.main-first__label {
  margin-bottom: 2rem;
}
.main-first__right {
  flex: 0 1 33.33%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 991.98px) {
  .main-first__right {
    margin-top: 5rem;
    flex-direction: row;
  }
}
@media (max-width: 767.98px) {
  .main-first__right {
    margin-top: 3rem;
    flex-direction: row;
  }
}
.main-first__inf1 {
  padding-left: 25%;
}
@media (max-width: 991.98px) {
  .main-first__inf1 {
    padding-left: 0;
  }
}
.main-first__num {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .main-first__num {
    font-size: 3rem;
  }
}
.main-first__about {
  font-size: 1rem;
  color: #8F9BB2;
}
.main-first__inf2 {
  padding-left: 50%;
}
@media (max-width: 991.98px) {
  .main-first__inf2 {
    padding-left: 0;
  }
}
.main-first__bg {
  position: absolute;
  width: 100%;
  height: calc(100vh - 6rem);
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .main-first__bg {
    height: 100vh;
  }
}
.main-first__img {
  position: relative;
  width: 30%;
  height: 100%;
}
@media (max-width: 1279.98px) {
  .main-first__img {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .main-first__img {
    width: 100%;
  }
}
.main-first__img video {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%/65%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(75%);
}
@media (max-width: 991.98px) {
  .main-first__img video {
    border-radius: 0;
  }
}

.main-second {
  margin-bottom: 6rem;
}
.main-second__body {
  position: relative;
}
.main-second__title {
  color: #8F9BB2;
}
.main-second__list {
  display: grid;
  gap: 1.25rem;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991.98px) {
  .main-second__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .main-second__list {
    display: flex;
    flex-direction: column;
  }
}
.main-second__block {
  display: flex;
  justify-content: space-between;
}
.main-second__blockbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-second__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 11, 22, 0.63);
  z-index: -1; /* затемнение выше картинки, но под текстом */
  opacity: 0;
  transition: opacity 0.5s ease;
}
.main-second__item {
  position: relative;
  padding: 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.062745098);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 1rem;
  height: 40vh;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .main-second__item {
    height: 30vh;
  }
}
.main-second__item span {
  line-height: 140%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.main-second__item:hover span {
  opacity: 1;
  visibility: visible;
}
.main-second__item:hover .main-second__blockbg {
  visibility: visible;
  opacity: 1;
}
.main-second__item:hover .main-second__overlay {
  opacity: 1;
}
.main-second__item:first-child {
  position: relative;
  grid-column-start: 3;
}
@media (max-width: 991.98px) {
  .main-second__item:first-child {
    grid-column-start: 1;
  }
}
.main-second__item:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (max-width: 991.98px) {
  .main-second__item:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.main-second__item:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (max-width: 991.98px) {
  .main-second__item:nth-child(3) {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.main-second__item:nth-child(4) {
  grid-row-start: 3;
  grid-column-start: 2;
}
@media (max-width: 991.98px) {
  .main-second__item:nth-child(4) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.main-second__item:nth-child(5) {
  grid-row-start: 3;
  grid-column-start: 3;
}
@media (max-width: 991.98px) {
  .main-second__item:nth-child(5) {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
.main-second__icon img {
  width: 3.5rem;
}
.main-second__label {
  align-self: center;
}
.main-second__bg {
  width: 100%;
}
.main-second__bg span {
  position: absolute;
  font-size: 7rem;
  text-transform: uppercase;
  color: #3C4758;
  top: 15rem;
  left: 2rem;
  font-weight: 700;
  z-index: -5;
}
@media (max-width: 991.98px) {
  .main-second__bg span {
    font-size: 5rem;
    writing-mode: vertical-rl;
  }
}
.main-second__bg img {
  position: absolute;
  width: 100%;
  top: 10rem;
  left: 0;
  text-align: center;
  z-index: -1;
}

.main__top {
  display: flex;
  margin-bottom: 6rem;
}
@media (max-width: 991.98px) {
  .main__top {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.main__title {
  flex: 1 1 33.33%;
  margin-bottom: 1.5rem;
}
.main__text {
  flex: 1 1 66.66%;
  font-size: 2rem;
  line-height: 140%;
  padding-left: 10px;
  color: #EFF3F9;
}
@media (max-width: 991.98px) {
  .main__text {
    padding-left: 0;
    font-size: 1.5rem;
  }
}

.main-3 {
  margin: 4rem 0 10rem 0;
}
.main-3__body {
  display: flex;
  flex-direction: column;
}
.main-3__title {
  color: #8F9BB2;
}
.main-3__info {
  color: #EFF3F9;
}
.main-3__spoiler {
  padding: 4rem 0;
}
@media (max-width: 991.98px) {
  .main-3__spoiler {
    padding: 2rem 0;
  }
}
.main-3__btn {
  margin-left: auto;
  display: flex;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #3C4758;
  gap: 2rem;
  justify-content: end;
  align-items: end;
  transition: all 0.4s ease;
}
.main-3__btn span {
  color: #EFF3F9;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 1rem;
  padding-right: 2rem;
  transition: all 0.3s ease;
}
.main-3__btn svg {
  transition: all 0.3s ease;
  justify-self: flex-end;
}
.main-3__btn svg path {
  stroke: #1458D7;
}
.main-3__btn:hover {
  background-color: #1458D7;
  border-color: #1458D7;
}
.main-3__btn:hover span {
  transform: translateX(4px);
}
.main-3__btn:hover svg path {
  stroke: #EFF3F9;
}

.spoiler__link {
  border-bottom: 1px solid #3C4758;
  margin-left: 20%;
}
@media (max-width: 1279.98px) {
  .spoiler__link {
    margin-left: 0;
  }
}
.spoiler__label {
  font-size: 1rem;
  color: #3C4758;
  font-weight: 500;
}
.spoiler__name {
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.spoiler__name:hover .spoiler__title {
  color: #EFF3F9;
}
.spoiler__n {
  align-self: flex-start;
  font-size: 1rem;
  color: #FFCA1D;
  font-weight: 300;
  line-height: 120%;
  padding: 1rem 1rem 0 0;
}
@media (max-width: 991.98px) {
  .spoiler__n {
    padding: 0.5rem 0.5rem 0 0;
  }
}
.spoiler__title {
  flex-grow: 1;
  line-height: 120%;
  text-transform: uppercase;
  color: #627598;
  font-size: 3.5rem;
  font-weight: 500;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .spoiler__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .spoiler__title {
    font-size: 2rem;
  }
}
@media (max-width: 479.98px) {
  .spoiler__title {
    font-size: 1.5rem;
  }
}
.spoiler__block {
  transition: all 0.5s ease;
  display: flex;
  overflow: hidden;
  max-height: 0;
}
@media (max-width: 991.98px) {
  .spoiler__block {
    flex-direction: column-reverse;
  }
}
.spoiler__text {
  flex: 0 0 66.66%;
  padding: 1rem 6rem 0 2rem;
}
@media (max-width: 991.98px) {
  .spoiler__text {
    padding-left: 0;
    padding-right: 0;
  }
}
.spoiler__text span {
  display: block;
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 2rem;
}
.spoiler__t2 {
  display: inline-block;
  margin-right: 2rem;
  margin-top: 2rem;
}
.spoiler__t2 span {
  font-size: 1.5rem;
  padding: 1rem 0;
}
.spoiler__img {
  flex: 0 0 33.33%;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 0 2rem;
}
@media (max-width: 991.98px) {
  .spoiler__img {
    padding: 0;
  }
}
.spoiler__img img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 991.98px) {
  .spoiler__img img {
    max-height: 350px;
  }
}
.spoiler__icon {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .spoiler__icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .spoiler__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
  }
}
.spoiler__icon span {
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  top: 50%;
  width: 100%;
  transition: all 0.3s ease 0s;
  background-color: #EFF3F9;
}
.spoiler__icon span:first-child {
  transform: translateY(-50%);
}
.spoiler__icon span:last-child {
  transform: translateY(-50%) rotate(90deg);
}
.spoiler__icon._active span:last-child {
  transform: rotate(0deg);
}

.main-4 {
  margin: 4rem 0 7rem 0;
}
.main-4__body {
  display: flex;
  flex-direction: column;
}
.main-4__title {
  color: #8F9BB2;
}
.main-4__info {
  color: #EFF3F9;
}
.main-4__doctors {
  padding: 5rem 0;
}
@media (max-width: 991.98px) {
  .main-4__doctors {
    padding: 2rem 0;
  }
}
.main-4__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .main-4__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .main-4__list {
    flex-direction: column;
  }
}
.main-4__item {
  flex: 1 1 25%;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .main-4__item {
    flex: 1 1 calc(50% - 10px);
  }
}
.main-4__item:nth-child(odd) img {
  height: 60vh;
}
@media (max-width: 991.98px) {
  .main-4__item:nth-child(odd) img {
    height: 50vh;
  }
}
.main-4__item:hover {
  transform: translateY(-3px);
}
.main-4__link {
  position: relative;
}
.main-4__img {
  transition: all 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 50vh;
}
.main-4__name {
  display: block;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #EFF3F9;
  font-weight: 500;
  line-height: 140%;
  padding: 1rem 0 0.5rem 0;
}
.main-4__spec {
  font-size: 1rem;
  color: #3C4758;
  font-weight: 500;
}

.main-5__title {
  color: #8F9BB2;
  margin-bottom: 4rem;
}
.main-5__swiper {
  margin-bottom: 10rem;
}

.slide-content {
  width: 66.66%;
  margin: 0 16.66%;
  display: flex;
}
@media (max-width: 991.98px) {
  .slide-content {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .slide-content {
    flex-direction: column;
  }
}
.slide-content img {
  width: 33%;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 0.5rem;
  overflow: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .slide-content img {
    width: 50%;
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .slide-content img {
    width: 100%;
    height: 300px;
  }
}

.text-block {
  flex: 0 0 66.66%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9254901961);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .text-block {
    flex: 0 0 50%;
  }
}
.text-block h3 {
  color: #1C1D1D;
  margin-bottom: 1rem;
}
.text-block span {
  font-size: 0.75rem;
  color: #3C4758;
  font-weight: 500;
  margin-bottom: 2rem;
}
.text-block p {
  color: #1C1D1D;
  font-size: 0.9rem;
  line-height: 140%;
  margin-top: auto;
  margin-bottom: 1rem;
}

.swiper-button-next, .swiper-button-prev {
  border: 1px solid #3C4758;
  border-radius: 0.5rem;
  height: 5rem !important;
  width: 3rem !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
  padding: 0.7rem 0.5rem !important;
  font-size: 24px !important;
}

.thumbs-swiper .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.thumbs-swiper .swiper-wrapper .swiper-slide {
  width: 16.66%;
}

.slider-thub {
  width: 16.66%;
  position: relative;
}
.slider-thub img {
  width: 100%;
}

.inr-top {
  margin-top: 7rem;
  margin-bottom: 2rem;
}
.inr-top__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.inr-top__back span {
  color: #627598;
  text-transform: uppercase;
  font-weight: 500;
}
.inr-top__back:hover {
  gap: 0.7rem;
}
.inr-top__back:hover span {
  color: #EFF3F9;
}
.inr-top__back svg {
  transform: rotate(-180deg);
}
.inr-top__back svg path {
  stroke: #FFCA1D;
}
.inr-main {
  font-size: 1rem;
  line-height: 140%;
}

.inr-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 30%;
}
@media (max-width: 991.98px) {
  .inr-menu {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .inr-menu {
    display: none;
  }
}
.inr-menu__body {
  margin-left: 2rem;
  background-color: rgba(24, 39, 60, 0.9176470588);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 1rem;
}
@media (max-width: 991.98px) {
  .inr-menu__body {
    margin: 0 1rem 0 1rem;
    padding: 0.75rem;
  }
}
.inr-menu__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem 0;
  margin-right: 1rem;
}
@media (max-width: 991.98px) {
  .inr-menu__list {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.inr-menu__link {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #627598;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .inr-menu__link {
    font-size: 0.75rem;
  }
}
.inr-menu__link::before {
  content: "";
  position: absolute;
  left: -15px; /* смещение кружка влево от текста */
  top: 0.7rem;
  transform: translateY(-50%); /* вертикальное выравнивание по центру текста */
  width: 8px;
  height: 8px;
  background-color: #FFCA1D;
  border-radius: 50%; /* делает кружок */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.inr-menu__link.active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.inr-menu__link.active {
  margin-left: 12px;
  color: #EFF3F9;
}
.inr-menu__link.active:hover {
  transform: translateX(0);
}
.inr-menu__link:hover {
  transform: translateX(3px);
  color: #EFF3F9;
}

.clinic {
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .clinic {
    padding: 9rem 0 0 0;
  }
}

.inr {
  position: relative;
}
.inr__body {
  z-index: 10;
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  grid-template-columns: 50% 50%;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .inr__body {
    display: flex;
    flex-direction: column;
  }
}
.inr__r {
  grid-column: 2/3;
  padding-right: 2rem;
}
@media (max-width: 991.98px) {
  .inr__r {
    padding-right: 0;
  }
}
.inr__l {
  grid-column: 1/2;
}
.inr__info {
  color: #8F9BB2;
  line-height: 140%;
  padding-left: 10px;
}
.inr__img {
  grid-column: 1/3;
  margin: 2rem 0;
  height: 60vh;
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 991.98px) {
  .inr__img {
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .inr__img {
    height: 300px;
  }
}
.inr__img .inr__imgc img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 991.98px) {
  .inr__img .inr__imgc img {
    height: 120%;
  }
}
.inr__text p {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 1rem;
}
.inr__bgtext {
  position: relative;
  font-size: 7rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  color: #3C4758;
  z-index: -1;
  padding: 2rem 0;
}
@media (max-width: 991.98px) {
  .inr__bgtext {
    position: absolute;
    top: 1;
    right: 2rem;
    font-size: 6rem;
    writing-mode: vertical-rl;
  }
}
@media (max-width: 767.98px) {
  .inr__bgtext {
    font-size: 5rem;
  }
}
.inr__full {
  grid-column: 1/3;
}

.advn {
  margin-bottom: 4rem;
}
.advn__item {
  border-bottom: 1px solid #3C4758;
}
.advn__item:first-child {
  border-top: 1px solid #3C4758;
}
.advn__block {
  display: flex;
  padding: 2rem 0;
}
@media (max-width: 767.98px) {
  .advn__block {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.advn__num {
  flex: 1 1 25%;
  color: #3C4758;
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .advn__num {
    flex: 1 1 10%;
  }
}
.advn__img {
  flex: 1 1 25%;
  margin-right: 2rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .advn__img {
    flex: 1 1 40%;
  }
}
@media (max-width: 767.98px) {
  .advn__img {
    margin-bottom: 2rem;
    flex: 1 1 70%;
  }
}
.advn__img img {
  height: 25vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advn__info {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  padding-right: 5rem;
}
@media (max-width: 767.98px) {
  .advn__info {
    flex-grow: 1;
  }
}
.advn__title {
  color: #8F9BB2;
  margin-bottom: 1rem;
}
.advn__text {
  font-size: 1rem;
  line-height: 140%;
}

.revw {
  margin-bottom: 4rem;
}
.revw__body {
  padding: 2rem 0;
}
.revw__list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991.98px) {
  .revw__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .revw__list {
    grid-template-columns: 1fr;
  }
}
.revw__block {
  padding: 2rem;
  background-color: #EFF3F9;
  border-radius: 1rem;
}
.revw__icons {
  margin-bottom: 1rem;
}
.revw__name {
  font-size: 1rem;
  color: #1C1D1D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.revw__date {
  font-size: 0.75rem;
  color: #3C4758;
  margin-bottom: 1rem;
  font-weight: 300;
}
.revw__text {
  font-size: 0.85rem;
  line-height: 140%;
  color: #1C1D1D;
  font-weight: 300;
}

.rating-svg {
  display: flex;
  gap: 4px;
}

.star {
  width: 24px;
  height: 24px;
  fill: #ccc; /* по умолчанию пустая */
  transition: fill 0.3s ease;
}

.star.full {
  fill: gold;
}

.services {
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .services {
    padding-top: 9rem;
  }
}
@media (max-width: 767.98px) {
  .services {
    padding-top: 0;
  }
}
.services__body {
  margin: 2rem 0;
}
.services__block {
  padding-right: 2rem;
}
@media (max-width: 991.98px) {
  .services__block {
    padding-right: 0;
  }
}
.services__img {
  height: 40vh;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-left: -1rem;
}
@media (max-width: 991.98px) {
  .services__img {
    margin-left: 0;
  }
}
.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 29, 0.4), rgba(4, 14, 36, 0.4));
  z-index: 1;
}
.services__title {
  position: absolute;
  bottom: 0;
  left: 1rem;
  font-size: 1.5rem;
  color: #EFF3F9;
  line-height: 140%;
  padding: 1rem 0;
  font-weight: 300;
  z-index: 2;
}
.services__title span {
  color: #FFCA1D;
}
.services__text {
  margin: 2rem 0;
  font-size: 1rem;
  padding-right: 3rem;
}
@media (max-width: 991.98px) {
  .services__text {
    padding-right: 1rem;
  }
}
.services__text p {
  line-height: 140%;
  font-weight: 300;
  margin-bottom: 2rem;
}
.services__cost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-weight: 500;
}
.services__cost span:first-child {
  color: #3C4758;
}
.services__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-weight: 500;
}
.services__time span:first-child {
  color: #3C4758;
}

.doctors__body {
  padding: 4rem 0;
}
.doctors__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .doctors__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .doctors__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 479.98px) {
  .doctors__list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 991.98px) {
  .doctors__item:first-child {
    grid-column: 1/2;
  }
  .doctors__item:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .doctors__item:nth-child(4) {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  .doctors__item:nth-child(5) {
    grid-row: 2/3;
    grid-column: 4/5;
  }
  .doctors__item:nth-child(6) {
    grid-row: 3/4;
    grid-column: 2/3;
  }
}
.doctors__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease-in-out;
}
.doctors__block:hover {
  transform: translateY(-4px);
}
.doctors__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.5rem;
}
.doctors__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctors__name {
  color: #EFF3F9;
  font-size: 1.25rem;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
}
.doctors__spec {
  font-size: 1rem;
  color: #3C4758;
}

.doctor__left {
  margin-right: 10rem;
}
@media (max-width: 991.98px) {
  .doctor__left {
    margin-right: 4rem;
  }
}
@media (max-width: 767.98px) {
  .doctor__left {
    margin-right: 0;
  }
}
.doctor__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.doctor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor__ss {
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor__body {
  padding: 2rem 2rem 2rem 0;
  margin-right: 4rem;
}
@media (max-width: 991.98px) {
  .doctor__body {
    margin-right: 0;
    padding: 2rem 1rem 2rem 0;
  }
  .doctor__body h1 {
    font-size: 3rem;
  }
}
.doctor__name {
  margin-bottom: 2rem;
}
.doctor__specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.doctor__spec {
  color: #8F9BB2;
}
.doctor__year {
  color: #FFCA1D;
}
.doctor__text {
  padding: 2rem 0;
}
.doctor__text p {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 1.5rem;
}
.doctor__label {
  color: #8F9BB2;
  margin-bottom: 1rem;
}
.doctor__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.doctor__inf {
  display: flex;
}
.doctor__infyear {
  flex: 0 0 33.33%;
  color: #8F9BB2;
  font-weight: 500;
}
.doctor__inftext {
  flex: 1 1 66.66%;
  color: #EFF3F9;
  line-height: 140%;
}
.doctor__diploms {
  position: relative;
  width: 800px;
  margin-bottom: 2rem;
}
@media (max-width: 1279.98px) {
  .doctor__diploms {
    width: 500px;
  }
}
@media (max-width: 767.98px) {
  .doctor__diploms {
    width: 400px;
  }
}
.doctor__slider {
  width: 100%;
  padding: 20px 0;
}
.doctor__slide {
  width: 250px;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.5rem;
}
.doctor__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: relative !important; /* отменяем absolute */
  margin-top: 1rem; /* отступ сверху, чтобы была ниже */
  text-align: center;
  z-index: 1;
}

.results__body {
  margin: 4rem 0;
}
.results__item {
  padding: 2rem 0 4rem 0;
  border-bottom: 1px solid #3C4758;
}
.results__item:first-child {
  border-top: 1px solid #3C4758;
}
@media (max-width: 767.98px) {
  .results__item {
    padding-bottom: 2rem;
  }
}
.results__block {
  display: flex;
}
@media (max-width: 767.98px) {
  .results__block {
    flex-direction: column;
  }
}
.results__info {
  flex: 1 1 50%;
  margin-right: 4rem;
}
@media (max-width: 767.98px) {
  .results__info {
    margin-right: 0;
  }
}
.results__img {
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.results__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.results__name {
  font-size: 1.75rem;
  color: #EFF3F9;
  font-weight: 500;
  margin-bottom: 1rem;
}
.results__diag {
  display: flex;
  gap: 2rem;
}
.results__d {
  font-size: 0.85rem;
  color: #FFCA1D;
}
.results__date {
  font-size: 0.85rem;
  color: #3C4758;
}
.results__text {
  flex: 1 1 50%;
  padding: 2rem 0;
  margin-right: 2rem;
}
.results__text p {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .results__text {
    margin-right: 0;
  }
}
.results__main {
  margin-top: 3rem;
}
.results__main h5 {
  margin-bottom: 1rem;
  color: #8F9BB2;
}

.contacts {
  margin-bottom: 5rem;
}
@media (max-width: 991.98px) {
  .contacts {
    padding: 1rem 0 0 0;
  }
}
.contacts__map {
  width: 100%;
  height: 100%;
  background-color: #3C4758;
}
.contacts__block {
  margin-bottom: 2rem;
}
.contacts__label {
  margin-bottom: 0.5rem;
  color: #8F9BB2;
}
.contacts__link {
  font-size: 1.5rem;
  line-height: 120%;
  transition: all 0.4s ease;
  color: #EFF3F9;
}
.contacts__link:hover {
  color: #1458D7;
  padding-left: 2px;
}
.contacts__text {
  font-size: 1.5rem;
  line-height: 140%;
}/*# sourceMappingURL=style.css.map */