@charset "UTF-8";
:root {
  --primary-color: #3498db;
  --secondary-color: #129e4c;
  --text-color: #555;
  --background-color: #f5f5f5;
  --link-color: #3c39f2;
  --font-size-title: 27px;
  --font-size-title-small: 22px;
  --align-center: center;
  --radius: 5px;
  --max-width: 1200px;
  --breakpoint-xl: 1200px;
  --breakpoint-lg: 992px;
  --breakpoint-md: 768px;
  --breakpoint-sm: 576px;
  --breakpoint-xs: 440px;
  --breakpoint-xxs: 375px;
  --text-color: #333;
  --light-text: #555;
  --border-color: #e0e0e0;
  --focus-color: #2c9fc3;
  --error-color: #b20202;
  --white: #fff;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-black-02: #333;
  --modal-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --input-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --hover-transition: all 0.3s ease;
  --border-width-l: 4px;
  --border-width-m: 3px;
  --border-width-s: 1px;
  --border-radius-l: 12px;
  --border-radius-m: 10px;
  --border-radius-s: 8px;
  --border-radius-xs: 6px;
  --border-radius-xxs: 5px;
  --border-radius-xxxs: 4px;
  --container-padding-x: 16px;
  --section-padding-y: fluid(75, 40);
  --transition-duration: 0.2s;
  --transition-duration-longer: 0.4s;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.wave-in {
  opacity: 0;
  transform: translateY(20px);
}
.wave-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease-out;
}

.delay-1 {
  transition-delay: 0.7s;
}

.delay-2 {
  transition-delay: 0.9s;
}

.delay-3 {
  transition-delay: 1s;
}

.delay-4 {
  transition-delay: 1.2s;
}

.delay-5 {
  transition-delay: 1.4s;
}

.delay-6 {
  transition-delay: 1.6s;
}

.wave-in:first-child {
  transition-delay: 0.1s;
}
.wave-in:nth-child(2) {
  transition-delay: 0.2s;
}
.wave-in:nth-child(3) {
  transition-delay: 0.3s;
}
.wave-in:nth-child(4) {
  transition-delay: 0.4s;
}
.wave-in:nth-child(5) {
  transition-delay: 0.5s;
}
.wave-in:nth-child(6) {
  transition-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotateAndFadeIn {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in;
  min-height: 200px;
}
.lazy.loaded {
  opacity: 1;
}
.lazy.loading {
  opacity: 0.5;
}
.lazy.error {
  opacity: 1;
  background-color: #ffebee;
}
.lazy.error::after {
  content: "Ошибка загрузки изображения";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c62828;
  font-size: 14px;
  text-align: center;
}

.lazy-placeholder {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.lazy-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.header__logo-img.lazy {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.rehab-slider__img.lazy {
  min-height: 300px;
  width: 100%;
  object-fit: cover;
}

.info-pansionat__main-image img.lazy {
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}

.info-pansionat__small-images img.lazy {
  min-height: 200px;
  width: 100%;
  object-fit: cover;
}

.transportation__image img.lazy {
  min-height: 250px;
  width: 100%;
  object-fit: cover;
}

img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
}
img.lazy.loaded {
  opacity: 1;
}
img.lazy.loading {
  opacity: 0.5;
}
img.lazy.error {
  opacity: 1;
  background-color: #ffebee;
}
img.lazy.error::after {
  content: "Ошибка загрузки изображения";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c62828;
  font-size: 14px;
  text-align: center;
}

.header__logo-img {
  width: 90px !important;
  height: 90px !important;
  min-width: 90px !important;
  min-height: 90px !important;
  max-width: 90px !important;
  max-height: 90px !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

.rehab-slider__img.lazy {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.info-pansionat__main-image img.lazy {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.info-pansionat__small-images img.lazy {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

.transportation__image img.lazy {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}

:root {
  --header-padding: clamp(0.5rem, 2vw, 2rem);
  --logo-size: clamp(60px, 8vw, 100px);
  --nav-gap: clamp(0.625rem, 2vw, 1.875rem);
  --font-base: clamp(0.875rem, 2vw, 1.125rem);
  --font-small: clamp(0.75rem, 1.5vw, 1rem);
  --container-width: min(95%, 1400px);
  --border-radius: clamp(0.25rem, 1vw, 1rem);
  --space-xs: clamp(0.25rem, 1vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 2rem);
  --space-lg: clamp(1.5rem, 3vw, 3rem);
}

:root {
  --header-padding: clamp(0.5rem, 2vw, 2rem);
  --logo-size: clamp(60px, 8vw, 100px);
  --nav-gap: clamp(0.625rem, 2vw, 1.875rem);
  --font-base: clamp(0.875rem, 2vw, 1.125rem);
  --font-small: clamp(0.75rem, 1.5vw, 1rem);
  --container-width: min(95%, 1400px);
  --border-radius: clamp(0.25rem, 1vw, 1rem);
  --space-xs: clamp(0.25rem, 1vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 2rem);
  --space-lg: clamp(1.5rem, 3vw, 3rem);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header .hamburger-menu {
  display: none;
}
.header--hidden {
  transform: translateY(-100%);
}
.header__text {
  color: #129e4c;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__text:hover {
  color: #0cca5b;
}
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: no-wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  gap: 30px;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: no-wrap;
  gap: 10px;
  margin-right: 20px;
}
.header__logo-img {
  width: clamp(60px, 5vw, 90px);
  height: clamp(60px, 5vw, 90px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo-img:hover {
  transform: scale(1.05) rotate(-2deg);
}
.header__contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: no-wrap;
  gap: 10px;
}
.header__text {
  display: none;
}
.header__phone {
  color: #333;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__phone:hover {
  color: #129e4c;
  transform: translateX(-3px);
}
.header__hours {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(51, 51, 51, 0.7);
  transition: all 0.3s ease;
}
.header__hours:hover {
  color: #129e4c;
}
.header__actions {
  position: relative;
  display: flex;
  gap: 15px;
}
.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.scrolled .header__logo-img {
  width: 60px;
  height: 60px;
}
.header__list {
  display: flex;
  align-items: center;
}
.header__item {
  margin-top: 10px;
  margin-right: 25px;
  list-style: none;
}
.header__item a {
  color: #129e4c;
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}
.header__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #129e4c;
  transition: width 0.3s ease;
}
.header__item a:hover {
  color: #0cca5b;
}
.header__item a:hover::after {
  width: 100%;
}

.button {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.button:hover::before {
  left: 100%;
}
@media (min-width: 440px) and (max-width: 575px) {
  .button:hover {
    background-color: red;
  }
}
.button--call {
  background-color: #129e4c;
  border-radius: 8px;
  color: white;
  padding: 12px 20px;
  font-weight: 500;
}
.button--call:hover {
  background-color: #0cca5b;
}
.button--primary {
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  font-weight: 500;
}
.button--primary:hover {
  background-color: #1274dc;
}
.button--anketa {
  background-color: #3498db;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  color: white;
  padding: 12px 20px;
  font-weight: 500;
}
.button--anketa:hover {
  background-color: #1274dc;
}
.button--secondary {
  background-color: #129e4c;
  color: white;
  font-weight: 500;
}
.button--secondary:hover {
  background-color: #28a85d;
}

@media (max-width: 1200px) {
  .header__container {
    width: 95%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 15px;
  }
  .header__text {
    display: none;
  }
  .header__logo {
    order: 1;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .header__logo-img {
    transform: translateY(5px);
  }
  .header__contacts {
    order: 3;
  }
  .header__nav {
    margin-left: 20px;
    margin-right: 20px;
    order: 2;
  }
  .header__list {
    margin-top: 5px;
  }
  .header__item {
    margin-right: 10px;
  }
  .header__actions {
    order: 4;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header {
    position: static;
  }
  .header__container {
    width: 100%;
    padding: 0 10px;
    margin-top: 0;
  }
  .header__actions {
    flex-direction: column;
    align-items: center;
  }
  .header__logo {
    margin-top: 20px;
    order: 1;
  }
  .header__logo-img {
    transform: translateY(5px);
  }
  .header__logo-text {
    margin-bottom: 10px;
  }
  .header__contacts {
    order: 1;
  }
  .header__phone {
    font-size: 16px;
  }
  .header__hours {
    display: none;
  }
  .header__nav {
    margin-left: 10px;
    margin-right: 10px;
    order: 2;
  }
  .header__list {
    margin-top: 5px;
  }
  .header__item {
    margin-right: 10px;
  }
  .header__item a {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .header__container {
    padding: 0 5px;
  }
  .header__text {
    display: block;
  }
  .header__logo-img {
    width: 70px;
    height: 70px;
  }
  .header__nav {
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 5px;
  }
  .header__list {
    margin-top: 5px;
  }
  .header__item {
    margin-right: 15px;
  }
  .header__item a {
    font-size: 15px;
  }
  .header__phone {
    font-size: 17px;
  }
  .header__hours {
    margin-left: 14px;
    font-size: 12px;
    margin-top: 8px;
  }
}
@media (max-width: 440px) {
  .header {
    position: relative;
    padding-top: 70px;
  }
  .header .hamburger-menu {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
  }
  .header .hamburger-menu .menu__btn {
    top: 40px;
    left: 10px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }
  .header__logo-img {
    width: 70px;
    height: 70px;
    transform: translateX(0);
  }
  .header__logo__location {
    margin-top: 40px;
  }
  .header__nav {
    margin-left: 10px;
    margin-right: 15px;
    margin-top: 0;
    display: none;
  }
  .header__item {
    margin-right: 10px;
  }
  .header__item:nth-last-child {
    margin-right: 0;
  }
  .header__item a {
    font-size: 13px;
  }
  .button {
    width: 50%;
    font-size: 12px;
  }
  .button--primary, .button--secondary {
    padding: 10px 8px;
  }
  .button--call {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 50%;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .header__container {
    width: 100%;
  }
  .header__logo {
    margin-bottom: 0;
  }
  .header__phone {
    margin: 0 auto;
  }
  .header__text {
    text-align: center;
    margin: 0 auto;
  }
  .header__phone {
    margin: 0 auto;
  }
  .header__text {
    text-align: center;
    margin: 0 auto;
  }
  .header__logo-img {
    width: 90px;
    height: 90px;
  }
  .header__nav {
    margin-bottom: 0;
  }
  .header__list {
    margin-bottom: 10px;
  }
  .header__item {
    margin-right: 10px;
  }
  .header__item a {
    font-size: 14px;
  }
  .header__logo__location {
    margin-top: 5px;
    margin-right: 5px;
  }
  .button {
    font-size: 12px;
  }
  .button--primary, .button--secondary {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .button--call {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 50%;
  }
}
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 60px;
  left: 25px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition-duration: 0.25s;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 200px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: var(--color-white);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition-duration: 0.25s;
}

.menu__item {
  display: block;
  padding: 10px 12px;
  color: var(--secondary-color);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}

.menu__item:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
}

.header__content {
  display: flex;
  margin-left: 15px;
  justify-content: space-between;
  align-items: flex-start;
}
.header__content__logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.header__content__logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.header__content__logo__text {
  font-size: 12px;
  color: #666;
}

/* Подвал */
footer {
  background-color: white;
  padding: 10px 0;
  border-radius: 5px;
}
footer .footer__container {
  max-width: 1200px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 30px;
}
footer__links a {
  margin-left: 10px;
  color: #0c5da5;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer__links a:hover {
  color: #007bff;
  text-decoration: underline;
}
footer__links a:hover::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 1;
}
footer__logo {
  display: flex;
  flex-wrap: wrap;
}

.footer-content {
  flex-grow: 1;
  margin-left: 20px;
}

.copyright {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.container {
  margin: 10px auto;
  margin-left: 10px;
}

.privacy-policy {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: black;
  text-decoration: none;
}
.privacy-policy:hover {
  text-decoration: underline;
}

.footer__layout {
  margin-top: 60px;
}

.footer__list {
  display: flex;
  flex-wrap: no-wrap;
  padding: 0;
  margin: 0;
}
.footer__list__item {
  margin-right: 25px;
  margin-bottom: 10px;
  list-style: none;
  margin-left: 30px;
}
.footer__list__item a {
  color: #129e4c;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.footer__list__item a:hover {
  color: #1adc6b;
}
.footer__list__item a:hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #129e4c;
}

@media (max-width: 1200px) {
  .header__content {
    flex-direction: column;
  }
  .header__content__logo {
    margin-bottom: 10px;
  }
  .footer__container {
    padding: 10px 20px;
  }
  .footer__list__item {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .header__content {
    margin-left: 10px;
  }
  .header__content__logo img {
    width: 45px;
    height: 45px;
  }
  .footer {
    padding: 25px 0;
  }
  .footer__container {
    gap: 10px;
  }
  .footer__list__item {
    margin-right: 15px;
    margin-left: 25px;
  }
  .footer__list__item a {
    font-size: 16px;
  }
  .footer-content {
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .header__content__logo img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .header__content__logo__text {
    font-size: 11px;
  }
  footer {
    margin-top: 40px;
  }
  footer__logo img {
    width: 70px;
    height: 70px;
  }
  footer__list {
    align-items: center;
    flex-wrap: wrap;
  }
  footer__list__item {
    margin-right: 10px;
    margin-left: 20px;
    margin-bottom: 8px;
  }
  .copyright {
    font-size: 12px;
  }
  .privacy-policy {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .header__content {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
  .footer {
    padding: 20px 0;
  }
  .footer__logo img {
    width: 70px;
    height: 70px;
  }
  .footer__links a {
    margin-left: 8px;
    font-size: 14px;
  }
  .footer__list {
    justify-content: center;
  }
  .footer__list__item {
    margin-right: 10px;
    margin-left: 15px;
  }
  .footer__list__item a {
    font-size: 15px;
  }
  .container {
    margin: 5px auto;
    margin-left: 5px;
  }
}
@media (max-width: 440px) {
  .header__content__logo img {
    width: 35px;
    height: 35px;
  }
  .header__content__logo__text {
    font-size: 10px;
  }
  .footer {
    margin-top: 30px;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
  }
  .footer__logo {
    margin-bottom: 15px;
    justify-content: center;
  }
  .footer__logo img {
    width: 80px;
    height: 80px;
  }
  .footer__list {
    align-items: center;
    margin-bottom: 10px;
  }
  .footer__list__item {
    margin: 5px 0;
    margin-right: 0;
    margin-left: 0;
    padding-right: 20px;
    text-align: center;
  }
  .footer__list__item a {
    font-size: 15px;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__links a {
    margin: 5px 0;
    margin-left: 0;
  }
  .footer-content {
    margin-left: 0;
    text-align: center;
  }
  .copyright {
    text-align: center;
  }
  .privacy-policy {
    display: block;
    margin: 8px auto;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .header__content__logo img {
    width: 80px;
    height: 80px;
  }
  .header__content__logo__text {
    font-size: 9px;
  }
  footer {
    margin-top: 0;
  }
  .footer {
    padding: 15px 0;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__logo img {
    width: 80px;
    height: 80px;
  }
  .footer__list {
    margin-top: 5px;
  }
  .footer__list__item {
    margin: 0;
  }
  .footer__list__item a {
    font-size: 14px;
  }
  .copyright {
    font-size: 11px;
  }
  .privacy-policy {
    font-size: 11px;
  }
}
.news {
  position: relative;
  margin: 90px 0;
  width: 100%;
  max-width: var(--max-width);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news {
    margin: 70px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news {
    margin: 50px 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news {
    margin: 40px 0;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .news {
    margin: 30px 0;
  }
}
@media (max-width: 439px) {
  .news {
    margin: 20px 0;
  }
}
.news__title {
  font-size: var(--font-size-title);
  margin-bottom: 30px;
  font-weight: 600;
  padding: 10px;
  color: var(--secondary-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__title {
    font-size: var(--font-size-title-small);
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news__title {
    margin-bottom: 15px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .news__title {
    margin-bottom: 10px;
    font-size: var(--font-size-title-small);
  }
}
@media (max-width: 440px) {
  .news__title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.news-slider {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  align-items: stretch;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-slider {
    gap: 25px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-slider {
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news-slider {
    gap: 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .news-slider {
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 439px) {
  .news-slider {
    gap: 5px;
    width: 100%;
    margin-bottom: 5px;
  }
}
.news__item {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--border-radius-l);
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.news__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  border-radius: var(--border-radius-l);
  background: linear-gradient(45deg, #56ab2f, #a8e063);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news__item:hover::before {
  opacity: 1;
}
.news__item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__item {
    padding: 10px;
    margin: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__item {
    padding: 5px;
    margin: 15px;
  }
}
.news__item__image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__item__image {
    border-radius: var(--border-radius-s);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__item__image {
    border-radius: var(--border-radius-xs);
  }
}
.news__item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news__item__image img:hover {
  transform: scale(1.05);
}
.news__item__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__item__content {
    padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__item__content {
    padding: 10px;
  }
}
.news__item h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--secondary-color);
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__item h3 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__item h3 {
    margin-bottom: 10px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .news__item h3 {
    font-size: 19px;
  }
}
@media (max-width: 439px) {
  .news__item h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.news__item h3 a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}
.news__item h3 a:hover {
  color: #56ab2f;
  color: -webkit-linear-gradient(to left, #56ab2f, #a8e063);
  color: linear-gradient(to left, #56ab2f, #a8e063);
}
.news__item p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(var(--text-color), 0.9);
  margin-bottom: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news__item p {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news__item p {
    margin-bottom: 15px;
  }
}
.news__item__date {
  margin-top: auto;
  font-size: 14px;
  color: #777;
}
.news__navigation {
  display: flex;
  align-items: center;
}

.nav__arrows {
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav__arrows {
    gap: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav__arrows {
    gap: 10px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .nav__arrows {
    gap: 5px;
  }
}

.nav__arrow {
  display: flex;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: white;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nav__arrow {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav__arrow {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav__arrow {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .nav__arrow {
    width: 15px;
    height: 15px;
  }
}
.nav__arrow:hover {
  transform: scale(1.1);
}
.nav__arrow:active {
  transform: scale(0.95);
}

.all-news {
  position: relative;
  padding-right: 20px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 15px;
  margin-left: 10px;
  font-weight: 400;
}
.all-news::after {
  content: "→";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}
.all-news:hover::after {
  color: #56ab2f;
  transform: translateX(5px);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.reviews {
  max-width: 1200px;
  padding: 20px;
}
.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.reviews__title {
  font-size: 2em;
  font-weight: 500;
  margin: 0;
}
.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.reviews__all-link {
  text-decoration: none;
  color: #3c39f2;
  margin-top: 27px;
  font-weight: 700;
  font-size: 13px;
}

.review-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  height: 100%;
}
.review-card__author {
  font-size: 1.15em;
  line-height: 1.35em;
  margin-bottom: 8px;
  font-size: 16px;
}
@media screen and (min-width: 576px) {
  .review-card__author {
    font-size: calc(16px + -2 * (100vw - 576px) / -201);
  }
}
@media screen and (min-width: 375px) {
  .review-card__author {
    font-size: 14px;
  }
}
.review-card__text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  .review-card__text {
    font-size: calc(14px + -2 * (100vw - 576px) / -201);
  }
}
@media screen and (min-width: 375px) {
  .review-card__text {
    font-size: 12px;
  }
}
.review-card__text:last-of-type {
  margin-bottom: 0;
}
.review-card__source-text {
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.05em;
}
.review-card__more-link {
  text-decoration: none;
  color: #3c39f2;
  margin-top: 27px;
  font-weight: 700;
  font-size: 13px;
  margin-left: 20px;
}
.review-card__more-link:last-of-type {
  margin-top: 10px;
}
.review-card__image {
  margin-bottom: 15px;
}
.review-card__image img {
  max-width: 90%;
  border-radius: 5px;
}
.review-card__location-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}
.review-card__content {
  padding: 20px 20px 10px;
}
.review-card__source {
  display: flex;
  gap: 10px;
  align-items: center;
}
.review-card__date {
  margin-left: 20px;
}

.location-tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 0;
  font-size: 11px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
.location-tag--blue {
  background-color: #0066cc;
}
.location-tag--green {
  background-color: #4CAF50;
}
.location-tag--light-green {
  background-color: #8BC34A;
}

.divider {
  border-top: 1px solid #e6e6e6;
  margin: 20px 25px;
  width: 100%;
}

@media (max-width: 1200px) {
  .reviews {
    width: 95%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .reviews__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews__cards {
    grid-template-columns: 1fr;
  }
  .review-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .reviews__title {
    font-size: 20px;
  }
  .review-card__content {
    padding: 15px;
  }
}
@media (max-width: 440px) {
  .review-card__content {
    padding: 10px;
  }
  .review-card__footer {
    display: flex;
    margin-right: 0;
    justify-content: flex-start;
  }
  .review-card__footer span {
    font-size: 12px;
  }
  .review-card__footer a {
    font-size: 13px;
  }
  .review-card__more-link {
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .reviews__all-link,
  .review-card__more-link {
    font-size: 12px;
  }
}
.benefits {
  max-width: 1200px;
  padding: 40px 20px;
  border-radius: 16px;
  margin: 90px auto;
  background: linear-gradient(145deg, #ffffff, #fcfdff);
  backdrop-filter: blur(10px);
}
.benefits-title {
  color: #129e4c;
  font-size: 27px;
  margin-bottom: 30px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.benefits-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #129e4c;
  transition: width 0.3s ease;
}
.benefits-title:hover {
  transform: translateX(10px);
}
.benefits-title:hover::after {
  width: 45%;
}
.benefits-description {
  color: #333;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 400;
  max-width: 800px;
  opacity: 0.9;
}
.benefits-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.benefit-item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: no-wrap;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  width: calc(43.333% - 30px);
  min-width: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #129e4c, #2ecc71) 1;
  position: relative;
  overflow: hidden;
}
.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.benefit-item:hover::before {
  opacity: 1;
}
.benefit-item:hover h4 {
  color: #2ecc71;
}
.benefit-item h4 {
  color: #129e4c;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.benefit-item p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.benefit-title {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 450;
}

.benefit-underline {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #2a7d9e, #2ecc71);
  margin-top: 10px;
  transition: width 0.3s ease;
}
.benefit-underline:hover {
  width: 100px;
}

@media (max-width: 1200px) {
  .benefits {
    margin: 70px auto;
    padding: 30px 15px;
  }
}
@media (max-width: 992px) {
  .benefits {
    margin: 60px auto;
  }
  .benefits-container {
    gap: 20px;
  }
  .benefits .benefit-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .benefits {
    margin: 50px auto;
  }
  .benefits-container {
    gap: 15px;
  }
  .benefits .benefit-item {
    width: 100%;
    min-width: 280px;
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .benefits {
    margin: 40px auto;
    padding: 20px 10px;
  }
  .benefits-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .benefits-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .benefits .benefit-item {
    padding: 20px;
  }
  .benefits .benefit-item h4 {
    font-size: 18px;
  }
  .benefits .benefit-item p {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .benefits {
    margin: 30px auto;
  }
  .benefits-title {
    font-size: 19px;
  }
  .benefits-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .benefits .benefit-item {
    padding: 15px;
  }
  .benefits .benefit-item h4 {
    font-size: 16px;
  }
  .benefits .benefit-item p {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .benefits {
    margin: 20px auto;
  }
  .benefits-title {
    font-size: 22px;
  }
  .benefits-description {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .benefits .benefit-item {
    padding: 10px;
  }
  .benefits .benefit-item h4 {
    font-size: 15px;
  }
  .benefits .benefit-item p {
    font-size: 12px;
  }
}
.pension-card {
  flex: 0 0 calc(33.333% - 30px);
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 15px;
  border-radius: 12px;
  overflow: hidden;
}
.pension-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.pension-card__image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.pension-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pension-card__img:hover {
  transform: scale(1.05);
  filter: brightness(90%);
}
.pension-card__content {
  margin-top: 10px;
  height: 400px;
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  height: auto;
  flex-grow: 1;
}
.pension-card__name {
  font-size: 22px;
  font-weight: 600;
  color: #129e4c;
  margin: 0 0 15px 0;
}
.pension-card__name a {
  text-decoration: none;
  color: #129e4c;
  transition: color 0.3s ease;
}
.pension-card__name a:hover {
  color: #23bb49;
}
.pension-card__description {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.pension-card__button {
  margin-top: 20px;
}
.pension-card__button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0b8e41;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  text-align: center;
}
.pension-card__button a:hover {
  background-color: #2ecc71;
}
.pension-card__button a:focus {
  outline: 2px solid #2ecc71;
  outline-offset: 2px;
}

@media (max-width: 576px) {
  .pension-card {
    flex: 0 0 calc(20% - 10px);
  }
  .pension-card__image {
    height: 300px;
  }
}
@media (max-width: 440px) {
  .pension-card {
    height: 200px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
}
.assessment-content {
  padding: 20px;
}
.assessment-content h2 {
  font-size: 28px;
  color: #171616;
  line-height: 1.2;
}
.assessment-content p {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.3;
  color: black;
  margin-bottom: 20px;
  max-width: 800px;
}
.assessment-content__button {
  margin-top: 2em;
}
.assessment-content__button a {
  border: 1px solid #cbe4ef;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #f0f7fa;
  color: #00669c;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
}

i {
  margin-right: 10px;
}

.assessment {
  display: flex;
  justify-content: space-between;
  background-image: url("/img/banner.jpg");
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  margin-top: 1em;
}

.pensions {
  margin: 60px auto;
  width: 100%;
  padding: 20px;
  max-width: 1200px;
}
.pensions__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}
.pensions__title {
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  color: #129e4c;
}
.pensions__controls {
  display: flex;
  gap: 10px;
}
.pensions__button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pensions__button__button:hover {
  background-color: #f5f5f5;
}
.pensions__description {
  margin-left: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: gray;
  margin-bottom: 10px;
  max-width: 900px;
}
.pensions__slider {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 -15px;
}
.pensions__slider-container {
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.wave-in {
  opacity: 0;
  transform: translateY(20px);
}

.wave-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease-out;
}

/* Задержки для последовательного появления */
.delay-1 {
  transition-delay: 0.4s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.8s;
}

.delay-4 {
  transition-delay: 1s;
}

.delay-5 {
  transition-delay: 1.2s;
}

.delay-6 {
  transition-delay: 1.4s;
}

.wave-in:nth-child(1) {
  transition-delay: 0.1s;
}

.wave-in:nth-child(2) {
  transition-delay: 0.2s;
}

.wave-in:nth-child(3) {
  transition-delay: 0.3s;
}

.wave-in:nth-child(4) {
  transition-delay: 0.4s;
}

.wave-in:nth-child(5) {
  transition-delay: 0.5s;
}

.wave-in:nth-child(6) {
  transition-delay: 0.6s;
}

@media (max-width: 1200px) {
  .pensions {
    width: 95%;
    max-width: 100%;
  }
  .pension-card {
    flex: 0 0 calc(33.333% - 30px);
  }
}
@media (max-width: 992px) {
  .pension-card {
    flex: 0 0 calc(50% - 30px);
  }
  .pension-card__content {
    height: auto;
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .pensions {
    padding: 10px;
  }
  .pensions__slider {
    display: flex;
    flex-direction: column;
  }
  .pensions__title {
    font-size: 24px;
    text-align: left;
  }
  .pensions__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .pension-card {
    flex: 0 0 calc(100% - 30px);
  }
}
@media (max-width: 576px) {
  .pensions {
    padding: 10px;
    margin: 30px auto;
  }
  .pensions__container {
    overflow: visible;
  }
  .pensions__title {
    font-size: 20px;
  }
  .pensions__description {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .pensions__controls {
    width: 100%;
    justify-content: flex-end;
  }
  .pension-card {
    margin-bottom: 15px;
    flex: 0 0 calc(100% - 20px);
  }
  .pension-card__name {
    font-size: 18px;
  }
  .pension-card__content {
    padding: 15px 10px;
    height: auto;
  }
  .pension-card__image {
    height: 200px;
  }
}
@media (max-width: 440px) {
  .pension-card {
    height: 450px;
  }
  .pension-card__name {
    font-size: 18px;
  }
  .pension-card__button {
    width: 35px;
    height: 35px;
  }
  .pension-card__price, .pension-card__address, .pension-card__description {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .pensions__title {
    font-size: 20px;
  }
  .pension-card {
    height: 400px;
  }
  .pension-card__name {
    font-size: 15px;
  }
  .pension-card__image {
    height: 180px;
  }
}
.promotions {
  margin: 40px 0;
  padding: 0 20px;
}
.promotions__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.promotions__content__info {
  flex: 1;
  margin-right: 20px;
}
.promotions__content__info__title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}
.promotions__content__info__link {
  text-decoration: none;
  color: #3c39f2;
  margin-top: 27px;
  font-weight: 700;
  font-size: 13px;
}
.promotions__card {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 25px;
  width: 70%;
}
.promotions__card__image {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  margin-bottom: 15px;
}
.promotions__card__content {
  display: flex;
  flex-direction: column;
}
.promotions__card__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1em;
}
.promotions__card__date {
  color: #666;
  font-size: 0.9em;
  margin-top: 10px;
}
.promotions__card__preview__text {
  color: #3c39f2;
  font-weight: 500;
  font-size: 0.9em;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .promotions__content {
    flex-direction: column;
  }
  .promotions__content__info {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .promotions__card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .promotions__card__image {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 440px) {
  .promotions__content__info__title {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
}
.promotion__item {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin-top: 170px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding: 0 20px;
  background-image: url("../img/3.jpg");
  height: 500px;
  animation: pulse 2s 1;
}
.promotion__item__header {
  margin-left: 50px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  width: 50%;
  animation: fadeIn 0.5s ease;
}

.promotion__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.promotion__content h2 {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.promotion__content p {
  font-size: 16px;
  font-weight: 300;
}
.promotion__content ul {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  margin-left: 20px;
}
.promotion__content ul li {
  margin-bottom: 5px;
}

.promotion__application {
  margin-top: 30px;
}
.promotion__application h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
}
.promotion__application h3 a {
  text-decoration: none;
  color: #0b4c8b;
  font-weight: 700;
  font-size: 19px;
}
.promotion__application p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}

.promotion__organizer p + p {
  margin-top: 10px;
}

.promotion__form {
  width: 80%;
}
.promotion__form .form-group {
  margin-bottom: 15px;
}
.promotion__form .form-checkboxes {
  display: flex;
  flex-direction: column;
}
.promotion__form .form-checkboxes .checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.promotion__form .btn-primary {
  margin-top: 10px;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: green;
  color: white;
  margin-bottom: 10px;
  border: none;
}
.promotion__form input[type=checkbox] {
  margin-right: 5px;
}

@media (max-width: 992px) {
  .promotion__item {
    width: 100%;
    height: 400px;
  }
  .promotion__item__header {
    font-size: 30px;
  }
  .promotion__content {
    width: 90%;
  }
  .promotion__content p {
    margin-left: 40px;
  }
  .promotion__content ul {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .promotion__item {
    margin-top: 0;
  }
  .promotion__item__header {
    font-size: 25px;
  }
  .promotion__application {
    margin-left: 40px;
    margin-top: 5px;
  }
}
@media (max-width: 576px) {
  .promotion__item__header {
    font-size: 20px;
  }
  .promotion__application h3 {
    font-size: 16px;
  }
  .promotion__application p {
    margin-left: 20px;
    font-size: 14px;
  }
  .promotion__form {
    width: 100%;
  }
  .promotion__form .form-checkboxes .checkbox-group {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
}
.modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow-y: auto;
  z-index: 1000;
  padding: 40px;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal::-webkit-scrollbar {
  width: 8px;
}
.modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.modal::-webkit-scrollbar-thumb {
  background: #129e4c;
  border-radius: 4px;
}
.modal::-webkit-scrollbar-thumb:hover {
  background: #0fdf2e;
}
.modal__header {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(18, 158, 76, 0.1);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.modal__header:hover {
  transform: translateX(5px);
}
.modal__header h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid #129e4c;
  position: relative;
}
.modal__header h2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #129e4c, transparent);
  transition: width 0.3s ease;
}
.modal__header:hover h2:after {
  width: 100px;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform-origin: center;
}
.modal__close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #129e4c;
}
.modal__close:active {
  transform: rotate(90deg) scale(0.95);
}
.modal__content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}
.modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), transparent);
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__content:hover::before {
  opacity: 1;
}
.modal__content p {
  margin-bottom: 20px;
  text-align: justify;
  position: relative;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.modal__content p:hover {
  background: rgba(18, 158, 76, 0.05);
  transform: translateX(5px);
}
.modal__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: brightness(0.98);
}
.modal__content img:hover {
  transform: scale(1.02);
  filter: brightness(1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.modal__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 158, 76, 0.2), transparent);
}
.modal__footer button {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}
.modal__footer button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.modal__footer button.btn-primary {
  color: white;
  box-shadow: 0 4px 15px rgba(18, 158, 76, 0.2);
}
.modal__footer button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 158, 76, 0.3);
}
.modal__footer button.btn-primary:hover::before {
  left: 100%;
}
.modal__footer button.btn-primary:active {
  transform: translateY(1px);
}
.modal__footer button.btn-secondary {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.modal__footer button.btn-secondary:hover {
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.modal__footer button.btn-secondary:hover::before {
  left: 100%;
}
.modal__footer button.btn-secondary:active {
  transform: translateY(1px);
}

.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form__group {
  margin-bottom: 15px;
}
.modal__form__group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.modal__form__control {
  width: 100%;
  padding: 12px;
  border: 1px solid gray;
  border-radius: 5px;
  font-size: 16px;
}

.checkbox__group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.checkbox__group input {
  margin-right: 5px;
  margin-top: 3px;
}
.checkbox__group label {
  font-size: 12px;
  color: black;
  line-height: 1.5;
}

.submit-button {
  width: 100%;
  background-color: #129e4c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.alert {
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.alert-success {
  background-color: #dff0d8;
  color: #3c763d;
}

.alert-danger {
  background-color: #f2dede;
  color: #a94442;
}

@media (max-width: 1200px) {
  .modal {
    width: 480px;
  }
  .modal__header__phone {
    font-size: 20px;
  }
  .modal__header__whatsapp {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .modal {
    width: 95%;
    padding: 30px;
  }
  .modal__header h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .modal {
    padding: 20px;
  }
  .modal__header {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .modal__header h2 {
    font-size: 22px;
  }
  .modal__content {
    font-size: 15px;
  }
  .modal__footer {
    flex-direction: column;
    gap: 10px;
  }
  .modal__footer button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .modal {
    padding: 15px;
  }
  .modal__header h2 {
    margin-top: 30px;
    font-size: 20px;
  }
  .modal__content {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .modal {
    width: 80%;
    padding: 12px;
    left: 45%;
  }
  .modal__header {
    margin-top: 25px;
    padding: 5px;
    margin-bottom: 12px;
  }
  .modal__form__group {
    margin-bottom: 12px;
  }
  .modal__form__control {
    padding: 8px;
    font-size: 14px;
  }
  .submit-button {
    padding: 10px;
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .modal {
    width: 100%;
    min-width: 300px;
    padding: 8px;
  }
  .modal__header {
    margin-top: 25px;
    padding: 2px;
    margin-bottom: 8px;
  }
  .modal__header__phone {
    font-size: 15px;
  }
  .modal__header__whatsapp {
    font-size: 13px;
    margin-top: 2px;
  }
  .modal__content {
    font-size: 13px;
  }
  .modal__footer {
    gap: 5px;
  }
  .modal__close {
    top: 20px;
    right: 30px;
  }
  .modal__form__group {
    margin-bottom: 8px;
  }
  .modal__form__control {
    padding: 5px;
    font-size: 12px;
    height: 30px;
  }
  .checkbox__group {
    margin-bottom: 5px;
  }
  .checkbox__group input {
    min-width: 12px;
    height: 12px;
    margin-top: 1px;
    flex-shrink: 0;
  }
  .checkbox__group label {
    font-size: 12px;
    line-height: 1.1;
  }
  .submit-button {
    padding: 6px;
    font-size: 12px;
    margin-bottom: 5px;
    height: 30px;
  }
  .alert {
    padding: 5px;
    margin-top: 5px;
    font-size: 11px;
  }
  .modal__form .checkbox__group + .checkbox__group {
    margin-top: -2px;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}
.modal-overlay.active {
  opacity: 1;
  animation: overlayFadeIn 0.3s ease;
}
@keyframes overlayFadeIn {
  from {
    backdrop-filter: blur(0);
    background: rgba(0, 0, 0, 0);
  }
  to {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5);
  }
}

.news-detail__item {
  width: 100%;
  min-width: 300px;
  margin-top: 130px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background-color: #fff;
}
.news-detail__header {
  position: relative;
  margin-bottom: 40px;
}
.news-detail__title {
  color: #129e4c;
  font-size: 27px;
  margin-top: 10px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-detail__date {
  font-size: 16px;
  color: #666;
  font-style: italic;
  animation: fadeIn 0.6s 0.2s ease-out both;
}
.news-detail__image {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  animation: fadeIn 0.6s 0.3s ease-out both;
}
.news-detail__image img {
  width: 90%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.news-detail__image img:hover {
  transform: scale(1.03);
}
.news-detail__content {
  width: 100%;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  animation: fadeIn 0.6s 0.4s ease-out both;
}
.news-detail__content p {
  margin-bottom: 20px;
  text-align: justify;
}
.news-detail__content h2 {
  font-size: 24px;
  margin: 30px 0 20px;
  color: #129e4c;
  font-weight: 400;
  line-height: 1.4;
}
.news-detail__content h2:first-child {
  margin-top: 0;
}
.news-detail__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.news-detail__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.news-detail__list-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #129e4c;
  font-size: 20px;
}
.news-detail__navigation {
  margin: 40px 0 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.news-detail__navigation a {
  text-decoration: none;
  color: #129e4c;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.news-detail__navigation a:hover {
  color: #129e4c;
}

.container-news {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sidebar {
  margin-top: 160px;
  width: 300px;
}
.sidebar h3 {
  text-align: center;
  border-bottom: 2px solid #129e4c;
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-weight: 600;
}

.related-news {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.6s 0.4s ease-out both;
  transition: transform 0.3s ease;
}
.related-news:hover {
  transform: translateY(-3px);
}
.related-news a {
  text-decoration: none;
  display: block;
  color: inherit;
}
.related-news h4 {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.related-news h4:hover {
  color: #129e4c;
}
.related-news__date {
  color: #666;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .news-detail__item {
    margin-top: 150px;
  }
  .sidebar {
    margin-top: 150px;
  }
}
@media (max-width: 992px) {
  .container-news {
    flex-direction: column;
  }
  .news-detail__item {
    max-width: 100%;
    margin-top: 120px;
  }
  .news-detail__title {
    font-size: 28px;
  }
  .sidebar {
    margin-top: 0;
    width: 100%;
  }
  .related-news {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .news-detail__item {
    margin-top: 60px;
    padding: 20px;
  }
  .news-detail__title {
    font-size: 24px;
  }
  .news-detail__image {
    width: 100%;
  }
  .news-detail__content {
    font-size: 15px;
  }
  .news-detail__content h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .news-detail__item {
    margin-top: 50px;
    padding: 15px;
  }
  .news-detail__title {
    font-size: 22px;
  }
  .news-detail__content {
    font-size: 14px;
  }
  .news-detail__content h2 {
    font-size: 18px;
  }
  .sidebar h3 {
    font-size: 20px;
  }
  .related-news {
    padding: 15px;
  }
  .related-news h4 {
    font-size: 15px;
  }
  .related-news__date {
    font-size: 13px;
  }
}
@media (max-width: 440px) {
  .news-detail__item {
    margin-top: 30px;
    padding: 10px;
  }
  .news-detail__title {
    font-size: 20px;
  }
  .news-detail__content {
    font-size: 14px;
  }
  .news-detail__content h2 {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
}
.review-page {
  margin-top: 180px;
}
.review-page__item {
  width: 900px;
}
.review-page__item__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: no-wrap;
  margin-bottom: 10px;
  margin-top: 20px;
}
.review-page__item__header__location {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #0066cc;
}
.review-page__item__header__branch {
  display: inline-flex;
  padding: 4px 8px;
  margin-left: 20px;
  border-radius: 3px;
  font-size: 11px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #4CAF50;
}
.review-page__item__document {
  width: 80%;
  border-radius: 6px;
  height: auto;
}
.review-page__item__document img {
  width: 50%;
  height: auto;
}
.review-page__author {
  font-size: 25px;
  line-height: 1.35em;
  margin-bottom: 8px;
}
.review-page__content {
  font-size: 17px;
  line-height: 1.8em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.review-page__date {
  margin-bottom: 25px;
}

.reviews {
  margin-top: 180px;
}
.reviews__element {
  margin-bottom: 50px;
}
.reviews__title {
  font-size: 1.7em;
  font-weight: 500;
  margin: 0;
}
.reviews__description {
  margin: 15px 0;
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 25px;
}

.review__form {
  width: 700px;
  margin-top: 50px;
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.review__form h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid gray;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #d1e3ee;
}

.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #d1e3ee;
}

.form-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: no-wrap;
  margin-top: 20px;
}
.form-actions .btn-primary {
  padding: 10px 20px;
  background-color: #047c0e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.form-actions .btn-primary:hover {
  background-color: #025f0b;
}

.form-checkbox {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
}
.form-checkbox input[type=checkbox] {
  margin-right: 5px;
}

@media (max-width: 1200px) {
  .review-page__item {
    width: 90%;
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .review__form {
    width: 500px;
    padding: 15px;
  }
  .review-page {
    margin-top: 200px;
  }
}
@media (max-width: 768px) {
  .review-page {
    margin-top: 100px;
  }
  .review-page__item {
    width: 90%;
    padding: 15px;
  }
  .review__form {
    width: 90%;
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .review__form {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
  }
  .review-page {
    margin-top: 50px;
  }
  .review-page__item {
    width: 100%;
    padding: 10px;
  }
  .reviews {
    margin-top: 100px;
  }
}
@media (max-width: 440px) {
  .review__form {
    width: 90%;
    margin-top: 10px;
    padding: 10px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn-primary {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .review__form {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 1200px) {
  .container-news {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .container-news {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .menu__section {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .main__menu {
    flex-direction: column;
  }
  .menu__section {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  .menu__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .quality-control {
    text-align: center;
    margin-top: 15px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer__links {
    margin-top: 10px;
  }
  .footer__links a {
    display: block;
    margin: 5px 0;
  }
  .copyright,
  .privacy-policy {
    text-align: center;
  }
}
@media (max-width: 375px) {
  .modal {
    width: 100px;
  }
  .modal__close {
    width: 30px;
    height: 30px;
  }
}
.comparison {
  max-width: var(--max-width);
  margin: 90px auto;
}
.comparison__title {
  color: var(--secondary-color);
  font-size: var(--font-size-title);
  margin-bottom: 30px;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comparison__title {
    font-size: var(--font-size-title-small);
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .comparison__title {
    font-size: 20px;
  }
}
@media (max-width: 439px) {
  .comparison__title {
    font-size: 19px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comparison {
    margin: 70px auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .comparison {
    margin: 50px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .comparison {
    margin: 40px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .comparison {
    margin: 30px auto;
  }
}
@media (max-width: 439px) {
  .comparison {
    margin: 20px auto;
  }
}
.comparison-table {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.comparison-table th, .comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #e6d0c4;
  color: var(--text-color);
}
.comparison-table th {
  font-weight: bold;
  text-align: center;
}
.comparison-table .services {
  text-align: left;
  color: var(--text-color);
  width: 50%;
}
.comparison-table .available, .comparison-table .unavailable {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.comparison-table .available::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  font-size: 20px;
}
.comparison-table .unavailable::before {
  content: "✖";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f44336;
  font-size: 20px;
}
.comparison-table .reserve-btn {
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  background-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}
.comparison-table .reserve-btn:hover {
  background-color: #0eb654;
}
.comparison-table td:not(.services) {
  text-align: center;
}
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .comparison {
    max-width: 95%;
  }
}
@media (max-width: 992px) {
  .comparison {
    max-width: 90%;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 10px;
  }
}
@media (max-width: 768px) {
  .comparison__title {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .comparison-table {
    min-width: 650px;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 8px;
    font-size: 14px;
  }
  .comparison-table .services {
    width: 45%;
    font-size: 14px;
  }
  .comparison-table .reserve-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .comparison-table tbody tr {
    opacity: 0;
    animation: fadeInRow 0.5s ease forwards;
  }
  .comparison-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
  }
  .comparison-table tbody tr:nth-child(2) {
    animation-delay: 0.2s;
  }
  .comparison-table tbody tr:nth-child(3) {
    animation-delay: 0.3s;
  }
  .comparison-table tbody tr:nth-child(4) {
    animation-delay: 0.4s;
  }
  .comparison-table tbody tr:nth-child(5) {
    animation-delay: 0.5s;
  }
  .comparison-table tbody tr:nth-child(6) {
    animation-delay: 0.6s;
  }
  .comparison-table tbody tr:nth-child(7) {
    animation-delay: 0.7s;
  }
  .comparison-table tbody tr:nth-child(8) {
    animation-delay: 0.8s;
  }
  .comparison-table tbody tr:nth-child(9) {
    animation-delay: 0.9s;
  }
  .comparison-table tbody tr:nth-child(10) {
    animation-delay: 1s;
  }
}
@media (max-width: 576px) {
  .comparison {
    margin: 20px auto;
  }
  .comparison__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .comparison-table-wrapper {
    box-shadow: none;
  }
  .comparison-table {
    min-width: 100%;
    box-shadow: none;
  }
  .comparison-table th, .comparison-table td {
    padding: 10px 6px;
    font-size: 13px;
  }
  .comparison-table .services {
    font-size: 13px;
    width: 70%;
  }
  .comparison-table .reserve-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .comparison-table .available, .comparison-table .unavailable {
    width: 20px;
    height: 20px;
  }
  .comparison-table .available::before, .comparison-table .unavailable::before {
    font-size: 16px;
  }
  .comparison-mobile {
    display: block;
    width: 100%;
  }
  .comparison-mobile__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e6d0c4;
    background-color: #fff;
  }
  .comparison-mobile__item:first-child {
    border-radius: 12px 12px 0 0;
  }
  .comparison-mobile__item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
  }
  .comparison-mobile__service {
    color: gray;
    font-size: 14px;
    width: 75%;
  }
  .comparison-mobile__value {
    display: flex;
    justify-content: center;
    width: 25%;
  }
}
@media (max-width: 440px) {
  .comparison {
    padding: 0 10px;
    margin: 15px auto;
  }
  .comparison__title {
    font-size: var(--font-size-title-small);
    margin-bottom: 25px;
  }
  .comparison-mobile__item {
    padding: 10px;
  }
  .comparison-mobile__service {
    font-size: 13px;
  }
  .comparison-table {
    border-radius: 12px;
  }
  .comparison-table th, .comparison-table td {
    padding: 8px 5px;
    font-size: 12px;
  }
  .comparison-table .services {
    width: 65%;
    padding-right: 5px;
  }
  .comparison-table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .comparison-table th, .comparison-table td {
    flex: 1;
  }
  .comparison-table th:first-child, .comparison-table td:first-child {
    flex: 2;
  }
  .comparison-table .available, .comparison-table .unavailable {
    width: 18px;
    height: 18px;
  }
  .comparison-table .available::before, .comparison-table .unavailable::before {
    font-size: 14px;
  }
  .comparison-table .reserve-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.address-map {
  margin: 90px auto;
  margin-left: 30px;
  gap: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: no-wrap;
  background: linear-gradient(145deg, #ffffff, #fcfdff);
  backdrop-filter: blur(10px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .address-map {
    margin: 70px auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .address-map {
    margin: 50px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .address-map {
    margin: 40px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .address-map {
    margin: 30px auto;
  }
}
@media (max-width: 439px) {
  .address-map {
    margin: 20px auto;
  }
}
.address-map__content {
  margin-bottom: 90px;
}
.address-map__title {
  color: #129e4c;
  font-size: 27px;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}
@media (min-width: 440px) and (max-width: 575px) {
  .address-map__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 439px) {
  .address-map__title {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
.address-map__phone {
  color: #333;
  font-size: clamp(16px, 1.4vw, 20px);
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.address-map__phone::before {
  content: "📞";
  margin-right: 10px;
  font-size: 18px;
}
.address-map__phone:hover {
  color: #129e4c;
  transform: translateX(5px);
}
.address-map__description {
  color: #333;
  font-size: 17px;
  margin-top: 20px;
}
@media (min-width: 440px) and (max-width: 575px) {
  .address-map__description {
    font-size: 15px;
    margin-top: 15px;
  }
}
@media (max-width: 439px) {
  .address-map__description {
    font-size: 13px;
    margin-top: 10px;
  }
}
.address-map__map {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
  height: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (min-width: 440px) and (max-width: 575px) {
  .address-map__map {
    height: 300px;
  }
}
.address-map__map:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.transportation {
  margin: 80px auto;
  gap: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: no-wrap;
  border-radius: 16px;
  padding: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .transportation {
    padding: 30px;
    margin: 60px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .transportation {
    padding: 25px;
    margin: 50px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .transportation {
    padding: 20px;
    margin: 40px auto;
  }
}
@media (max-width: 439px) {
  .transportation {
    padding: 15px;
    margin: 30px auto;
  }
}
.transportation__title {
  color: #129e4c;
  font-size: 27px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.transportation__title:hover {
  color: #2ecc71;
  transform: translateX(10px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .transportation__title {
    margin-bottom: 25px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .transportation__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .transportation__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 439px) {
  .transportation__title {
    font-size: 19px;
  }
}
.transportation__image {
  flex: 0 0 45%;
  transition: all 0.3s ease;
}
.transportation__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (min-width: 440px) and (max-width: 575px) {
  .transportation__image {
    flex: 0 0 35%;
  }
}
@media (max-width: 439px) {
  .transportation__image {
    flex: 0 0 30%;
  }
}
.transportation__image:hover img {
  transform: scale(1.02);
}
.transportation__content {
  flex: 0 0 55%;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.transportation__list {
  margin-left: 0;
  list-style: none;
}
.transportation__list__item {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 17px;
  position: relative;
  padding-left: 28px;
  transition: all 0.3s ease;
}
.transportation__list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #129e4c;
  font-size: 17px;
  transition: all 0.3s ease;
}
.transportation__list__item:hover {
  color: #403f3f;
  transform: translateX(5px);
}
.transportation__list__item:hover::before {
  color: #2ecc71;
  transform: scale(1.2);
}
.transportation__button {
  margin-top: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.transportation__button:hover {
  transform: translateY(-5px);
}
.transportation__button a {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
}
.transportation__button a:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@media (max-width: 1200px) {
  .address-map, .transportation {
    margin: 50px auto;
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .address-map, .transportation {
    margin: 40px auto;
    padding: 25px;
  }
  .address-map__title, .transportation__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .address-map {
    margin: 30px auto;
    gap: 20px;
    padding: 20px;
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }
  .address-map__content {
    width: 100%;
    margin-bottom: 10px;
  }
  .address-map__title {
    font-size: 25px;
  }
  .address-map__map {
    height: 350px;
  }
  .transportation {
    flex-direction: column;
    margin: 30px auto;
    gap: 20px;
    padding: 20px;
  }
  .transportation__content {
    margin-left: 0;
    width: 100%;
  }
  .transportation__title {
    font-size: 25px;
  }
  .transportation__image {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .address-map, .transportation {
    padding: 15px;
  }
  .address-map__title, .transportation__title {
    font-size: 22px;
  }
  .address-map__description, .transportation__description {
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  .address-map {
    padding: 10px;
    margin: 20px auto;
  }
  .address-map__content {
    padding: 0 15px;
  }
  .address-map__title {
    font-size: 20px;
  }
  .address-map__phone {
    font-size: 16px;
  }
  .address-map__map {
    height: 300px;
  }
  .transportation__list__item {
    font-size: 15px;
  }
  .transportation__image {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .transportation {
    margin: 2% auto;
    padding: 15px;
  }
  .transportation__title {
    font-size: 22px;
  }
  .address-map {
    margin: 20px auto;
    padding: 5px;
  }
  .address-map__title {
    font-size: 22px;
  }
  .address-map__map {
    margin-top: 10px;
  }
}
.stock {
  position: relative;
  margin: 130px auto;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .stock {
    padding: 0 15px;
    margin: 60px auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .stock {
    padding: 0 10px;
    margin: 40px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .stock {
    padding: 0 5px;
    margin: 30px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .stock {
    padding: 0 5px;
    margin: 20px auto;
  }
}
@media (max-width: 439px) {
  .stock {
    padding: 0 5px;
    margin: 15px auto;
  }
}
.stock__container {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-xl);
  padding: 50px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
  box-shadow: 0 10px 30px rgba(86, 171, 47, 0.3);
}
.stock__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  z-index: 3;
  animation: pulse 2s infinite;
}
.stock__title {
  color: white;
  font-size: clamp(22px, 4vw, 24px);
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.stock__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.stock__description b {
  color: white;
  font-weight: 700;
}
.stock__offer {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.stock__discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: clamp(90px, 15vw, 120px);
  height: clamp(90px, 15vw, 120px);
  border: 2px dashed rgba(255, 255, 255, 0.5);
}
.stock__discount-value {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stock__discount-period {
  font-size: clamp(12px, 2vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}
.stock__cta {
  display: inline-block;
  background: white;
  color: #56ab2f;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.stock__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8f8f8;
}
.stock__image {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 200px;
  height: 200px;
  z-index: 1;
}
.stock__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.stock__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.stock__decoration-item {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.stock__decoration-item--1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}
.stock__decoration-item--2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: 30%;
}
@media (max-width: 768px) {
  .stock__container {
    padding: 30px;
    text-align: center;
  }
  .stock__image {
    position: relative;
    right: auto;
    margin: 20px auto 0;
    width: 150px;
    height: 150px;
  }
  .stock__offer {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .stock__container {
    padding: 25px;
  }
  .stock__title {
    font-size: clamp(20px, 6vw, 24px);
  }
  .stock__description {
    font-size: clamp(16px, 4vw, 18px);
  }
}
@media (max-width: 440px) {
  .stock__container {
    padding: 20px;
  }
  .stock__badge {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 15px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.rehab-slider {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
}
.rehab-slider__container {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  margin-top: 30px;
  animation: slideIn 0.6s ease-out;
}
.rehab-slider__item {
  display: flex;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rehab-slider__item:hover {
  transform: translateY(-5px);
}
.rehab-slider__content {
  width: 50%;
  padding: 20px 20px 20px 50px;
  z-index: 2;
  animation: fadeIn 0.6s ease-out;
}
.rehab-slider__title {
  font-size: var(--font-size-title);
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rehab-slider__title:hover {
  color: var(--secondary-color);
  transform: translateX(10px);
}
.rehab-slider__buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.rehab-slider__image {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(5px);
  width: 40%;
  height: auto;
  border-radius: 7px;
  border-radius: 20px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rehab-slider__image:hover {
  transform: translateY(0) scale(1.02);
}
.rehab-slider__img {
  width: 60%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: translateY(50px);
  border-radius: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.feature-list__item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 35px;
  color: black;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.feature-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  font-weight: bold;
}
.feature-list__item:hover {
  transform: translateX(5px);
  color: var(--secondary-color);
}
.feature-list__item:hover::before {
  transform: scale(1.2);
  color: #2ecc71;
}

.button__slider {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.button__slider:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.button__slider:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

@media (max-width: 1200px) {
  .rehab-slider {
    max-width: 100%;
    padding: 20px;
  }
  .rehab-slider__container {
    margin-top: 100px;
  }
}
@media (max-width: 992px) {
  .rehab-slider__content {
    width: 50%;
    padding: 25px 20px;
  }
  .rehab-slider__container {
    margin-top: 150px;
  }
  .rehab-slider__image {
    width: 45%;
    transform: translateY(20px);
  }
  .rehab-slider__title {
    font-size: 24px;
  }
  .feature-list__item {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .rehab-slider__item {
    flex-direction: column;
    padding: 15px;
  }
  .rehab-slider__container {
    margin-top: 20px;
  }
  .rehab-slider__content {
    width: 100%;
    padding: 20px 15px;
    order: 1;
  }
  .rehab-slider__image {
    position: relative;
    width: 70%;
    transform: none;
    margin-bottom: 20px;
    order: 2;
  }
  .rehab-slider__img {
    transform: translateY(-5px);
    transform: translateX(40px);
    width: 80%;
  }
  .rehab-slider__buttons {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .rehab-slider__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .rehab-slider__container {
    margin-top: 15px;
  }
  .rehab-slider__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .feature-list__item {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
  }
}
@media (max-width: 440px) {
  .rehab-slider__content {
    padding: 20px 10px;
  }
  .rehab-slider__container {
    margin-top: 15px;
  }
  .rehab-slider__title {
    font-size: 23px;
  }
  .rehab-slider__img {
    width: 90%;
    transform: translateX(60px);
  }
  .rehab-slider__buttons {
    gap: 10px;
  }
  .rehab-slider .feature-list__item {
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 20px;
  }
}
.info-pansionat {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: --max-width;
  margin: 90px auto;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(161, 161, 161, 0.12);
  background: linear-gradient(145deg, var(--color-white), #fcfdff);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: fluid(20, 10);
  column-gap: 10px;
  transition: all 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-pansionat {
    margin: 70px auto;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-pansionat {
    margin: 50px auto;
    gap: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .info-pansionat {
    margin: 30px auto;
    gap: 5px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat {
    margin: 30px auto;
    gap: 5px;
  }
}
@media (max-width: 439px) {
  .info-pansionat {
    margin: 20px auto;
    gap: 5px;
  }
}
.info-pansionat:hover {
  transform: background-color 0.4s ease;
  background: linear-gradient(145deg, var(--color-white), #fcfdff);
}
.info-pansionat__image-section {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-pansionat__image-section {
    flex: 1 1 430px;
  }
}
.info-pansionat__main-image {
  width: 90%;
  overflow: hidden;
  border-radius: var(--border-radius-l);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: filter 0.3s ease;
  filter: brightness(1);
}
.info-pansionat__main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.info-pansionat__main-image img {
  width: 100%;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter 0.3s ease;
}
.info-pansionat__main-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-pansionat__main-image {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-pansionat__main-image {
    width: 70%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .info-pansionat__main-image {
    width: 60%;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat__main-image {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 439px) {
  .info-pansionat__main-image {
    width: 100%;
    margin-bottom: 8px;
  }
}
.info-pansionat__small-images {
  display: flex;
  column-gap: 10px;
  width: 90%;
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat__small-images {
    width: 100%;
    column-gap: 5px;
  }
}
@media (max-width: 439px) {
  .info-pansionat__small-images {
    width: 100%;
    column-gap: 5px;
  }
}
.info-pansionat__room-image, .info-pansionat__people-image {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-pansionat__room-image:hover, .info-pansionat__people-image:hover {
  transform: translateY(-5px);
}
.info-pansionat__room-image img, .info-pansionat__people-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.info-pansionat__room-image img:hover, .info-pansionat__people-image img:hover {
  filter: brightness(1.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-pansionat__room-image, .info-pansionat__people-image {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
  .info-pansionat__room-image:last-child, .info-pansionat__people-image:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-pansionat__room-image, .info-pansionat__people-image {
    flex: 1 1 100%;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat__room-image, .info-pansionat__people-image {
    flex: 1 1 70%;
  }
}
@media (max-width: 439px) {
  .info-pansionat__room-image, .info-pansionat__people-image {
    flex: 1 1 50%;
  }
}
.info-pansionat__content {
  flex: 1 1 450px;
  padding: 20px 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .info-pansionat__content {
    flex: 1 1 400px;
    padding: 15px 10px;
  }
}
.info-pansionat__content h2 {
  color: var(--secondary-color);
  font-size: var(--font-size-title);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat__content h2 {
    font-size: var(--font-size-title-small);
    margin-bottom: 15px;
  }
}
@media (max-width: 439px) {
  .info-pansionat__content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.info-pansionat__content p {
  color: var(--text-color);
  font-size: сlamp(14px, 2vw, 18px);
  line-height: 1.9;
}
@media (min-width: 440px) and (max-width: 575px) {
  .info-pansionat__content p {
    font-size: сlamp(12px, 2vw, 16px);
  }
}
@media (max-width: 439px) {
  .info-pansionat__content p {
    font-size: 14px;
  }
}

.pansions-populated {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 90px auto;
  margin-left: 5px;
  padding: 0 10px;
  background-color: linear-gradient(145deg, #ffffff, #fcfdff);
}
@media (min-width: 440px) and (max-width: 575px) {
  .pansions-populated {
    align-items: center;
  }
}
@media (max-width: 439px) {
  .pansions-populated {
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pansions-populated {
    margin: 70px auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pansions-populated {
    margin: 50px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .pansions-populated {
    margin: 40px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .pansions-populated {
    margin: 30px auto;
  }
}
@media (max-width: 439px) {
  .pansions-populated {
    margin: 20px auto;
  }
}
.pansions-populated__title {
  color: var(--secondary-color);
  font-size: var(--font-size-title);
  margin-bottom: 30px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pansions-populated__title:hover {
  color: #2ecc71;
  transform: translateX(10px);
}
@media (min-width: 440px) and (max-width: 575px) {
  .pansions-populated__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 439px) {
  .pansions-populated__title {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
.pansions-populated__description {
  color: var(--text-color);
  font-size: clump(14px, 1.7vw, 18px);
  margin-bottom: 30px;
}
@media (min-width: 440px) and (max-width: 575px) {
  .pansions-populated__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 439px) {
  .pansions-populated__description {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.pansions-populated__button {
  border: 1px solid #cbe4ef;
  border-radius: 8px;
  font-size: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pansions-populated__button:hover {
  background-color: #2ecc71;
}
@media (min-width: 440px) and (max-width: 575px) {
  .pansions-populated__button {
    display: inline-block;
  }
}
@media (max-width: 439px) {
  .pansions-populated__button {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .info-pansionat {
    margin: 20px auto;
  }
  .info-pansionat__content {
    width: 100%;
  }
  .info-pansionat__content h2 {
    font-size: var(--font-size-title-small);
  }
  .info-pansionat__content p {
    font-size: 14px;
    line-height: 1.4;
  }
  .pansions-populated {
    margin: 20px auto;
  }
  .pansions-populated__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.documents {
  max-width: 1200px;
  margin: 90px auto;
  background: linear-gradient(145deg, #ffffff);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .documents {
    margin: 70px auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .documents {
    margin: 50px auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .documents {
    margin: 40px auto;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .documents {
    margin: 30px auto;
  }
}
@media (max-width: 439px) {
  .documents {
    margin: 20px auto;
  }
}
.documents__title {
  color: #129e4c;
  margin-bottom: 30px;
  font-size: 27px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .documents__title {
    font-size: 27px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .documents__title {
    font-size: 20px;
  }
}
@media (max-width: 439px) {
  .documents__title {
    font-size: 19px;
  }
}
.documents__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #129e4c;
  transition: width 0.3s ease;
}
.documents__title:hover {
  color: #2ecc71;
  transform: translateX(10px);
}
.documents__title:hover::after {
  width: 49%;
}
.documents__description {
  color: #333;
  font-size: clamp(14px, 1.7vw, 18px);
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .documents__description {
    margin-bottom: 25px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .documents__description {
    margin-bottom: 20px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .documents__description {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
@media (max-width: 439px) {
  .documents__description {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
.documents__steps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: no-wrap;
  position: relative;
  margin-top: 70px;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .documents__steps {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .documents__steps {
    margin-top: 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .documents__steps {
    margin-top: 30px;
  }
}
@media (min-width: 440px) and (max-width: 575px) {
  .documents__steps {
    margin-top: 20px;
  }
}
@media (max-width: 439px) {
  .documents__steps {
    margin-top: 15px;
  }
}
.documents__step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: no-wrap;
  flex: 1;
  max-width: 200px;
  position: relative;
  transition: transform 0.3s ease;
}
.documents__step:hover {
  transform: translateY(-5px);
}
.documents__step__description {
  color: #333;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.5;
  align-items: flex-start;
  margin-top: 15px;
  max-width: 180px;
}
.documents__step__number {
  width: 50px;
  height: 50px;
  background-color: #129e4c;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: no-wrap;
  color: white;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(18, 158, 76, 0.3);
}
.documents__step__number:hover {
  transform: translateX(10px) scale(1.1);
  background-color: #2ecc71;
  box-shadow: 0 6px 20px rgba(18, 158, 76, 0.4);
}
.documents__step__line {
  position: absolute;
  top: 25px;
  left: 30%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #129e4c, #e0e0e0);
  transition: all 0.3s ease;
}
.documents__step__line:hover {
  height: 3px;
}

.documents__step:last-child .documents__step__line {
  display: none;
}

@media (max-width: 1200px) {
  .documents {
    margin: 70px auto;
    padding: 30px 15px;
  }
}
@media (max-width: 992px) {
  .documents {
    margin: 60px auto;
  }
  .documents__steps {
    gap: 15px;
  }
  .documents__step {
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .documents {
    margin: 50px auto;
  }
  .documents__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .documents__step {
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  .documents {
    margin: 40px auto;
    padding: 20px 10px;
  }
  .documents__step {
    max-width: 120px;
  }
  .documents__step__number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .documents {
    margin: 30px auto;
  }
  .documents__description {
    font-size: 14px;
  }
  .documents__step {
    max-width: 100px;
  }
  .documents__step__number {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .documents__step__description {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .documents {
    margin: 20px auto;
  }
  .documents__title {
    font-size: 22px;
  }
  .documents__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .documents__step {
    max-width: 100px;
  }
  .documents__step__number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .documents__step__description {
    font-size: 12px;
  }
}
.container__news {
  margin-top: 140px;
  max-width: 1200px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
}

.news__element {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.news-item {
  width: 400px;
  margin: 10px auto;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  animation: fadeInUp 0.8s ease-out;
  will-change: transform;
}
.news-item__image {
  padding: 0;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
.news-item__image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.news-item__image img:hover {
  filter: brightness(70%);
}
.news-item__content {
  padding: 20px;
  width: 100%;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}
.news-item__content a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.2s ease;
}
.news-item__content a:hover {
  text-decoration: underline;
}
.news-item__content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}
.news-item__content h3 a {
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 20px);
  color: #129e4c;
  transition: color 0.3s ease;
}
.news-item__content h3 a:hover {
  text-decoration: underline;
}
.news-item__content p {
  margin-bottom: 15px;
  color: #333;
  font-size: clamp(13px, 0.8vw, 16px);
}

.news-item:hover .news-item__image img {
  transform: scale(1.03);
}

@media (max-width: 1200px) {
  .container__news {
    flex-direction: column;
  }
  .container__news h1 {
    margin-left: 0;
    text-align: center;
  }
  .news__element {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news-item {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .container__news {
    margin-top: 120px;
  }
  .news__element {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .container__news {
    margin-top: 100px;
  }
  .container__news h1 {
    font-size: 28px;
  }
  .news__element {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .news-item {
    width: 100%;
    max-width: 500px;
  }
  .news-item__content h3 {
    font-size: 18px;
  }
  .news-item__content p {
    font-size: 14px;
  }
  .news-item__content a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .container__news {
    margin-top: 80px;
  }
  .container__news h1 {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .container__news {
    margin-top: 60px;
    padding: 0 10px;
  }
  .container__news h1 {
    font-size: 22px;
  }
  .news-item {
    margin: 5px auto;
  }
  .news-item__content {
    padding: 15px;
  }
  .news-item__content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news-item__content p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .news-item__content a {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .container__news {
    margin-top: 40px;
  }
  .container__news h1 {
    font-size: 20px;
  }
  .news-item {
    width: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }
  .news-item__content {
    padding: 12px;
  }
}
.profile-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.yandex-modal__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}

.yandex-modal__header__phone {
  margin-left: 20px;
  font-weight: 700;
  color: #e74c3c;
}

.yandex-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow-y: auto;
  z-index: 1000;
  padding: 40px;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow-y: auto;
  z-index: 1000;
  padding: 40px;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.profile-modal::-webkit-scrollbar {
  width: 8px;
}
.profile-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.profile-modal::-webkit-scrollbar-thumb {
  background: #129e4c;
  border-radius: 4px;
}
.profile-modal::-webkit-scrollbar-thumb:hover {
  background: #0fdf2e;
}
.profile-modal__header {
  background-color: #3498db;
  height: 60px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.profile-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
.profile-modal__close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.profile-modal__form {
  padding: 20px 60px 30px;
}
.profile-modal__form__section {
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
.profile-modal__form__section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.profile-modal__form__section:first-child {
  margin-top: 15px;
}
.profile-modal__form__section h3 {
  color: #1a1a1a;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #129e4c;
  position: relative;
}
.profile-modal__form__section h3:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #129e4c;
  transition: width 0.3s ease;
}
.profile-modal__form__section:hover h3:after {
  width: 100px;
}
.profile-modal__form__group {
  margin-bottom: 20px;
}
.profile-modal__form__group label {
  display: block;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}
.profile-modal__form__group label .required {
  color: #e74c3c;
  margin-left: 4px;
  font-weight: 600;
}
.profile-modal__form__group input[type=text],
.profile-modal__form__group input[type=tel],
.profile-modal__form__group input[type=email],
.profile-modal__form__group input[type=number],
.profile-modal__form__group select,
.profile-modal__form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
  color: #2c3e50;
}
.profile-modal__form__group input[type=text]:focus,
.profile-modal__form__group input[type=tel]:focus,
.profile-modal__form__group input[type=email]:focus,
.profile-modal__form__group input[type=number]:focus,
.profile-modal__form__group select:focus,
.profile-modal__form__group textarea:focus {
  border-color: #129e4c;
  box-shadow: 0 0 0 4px rgba(18, 158, 76, 0.1);
  outline: none;
  transform: translateY(-1px);
}
.profile-modal__form__group input[type=text]::placeholder,
.profile-modal__form__group input[type=tel]::placeholder,
.profile-modal__form__group input[type=email]::placeholder,
.profile-modal__form__group input[type=number]::placeholder,
.profile-modal__form__group select::placeholder,
.profile-modal__form__group textarea::placeholder {
  color: #a0a0a0;
}
.profile-modal__form__group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.profile-modal__form__group select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 35px;
}
.profile-modal__form__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
}
.profile-modal__form__row .profile-modal__form__group {
  flex: 1;
  min-width: 250px;
}
.profile-modal__form__actions {
  margin-top: 50px;
  text-align: center;
}
.profile-modal__form__actions .submit-button {
  background: linear-gradient(135deg, #129e4c, #0fdf2e);
  color: white;
  padding: 16px 48px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(18, 158, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.profile-modal__form__actions .submit-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.profile-modal__form__actions .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 158, 76, 0.3);
}
.profile-modal__form__actions .submit-button:hover:before {
  left: 100%;
}
.profile-modal__form__actions .submit-button:active {
  transform: translateY(1px);
}

.radio-group,
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.radio-group .radio-item,
.radio-group .checkbox-item,
.checkbox-group .radio-item,
.checkbox-group .checkbox-item {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-group .radio-item:hover,
.radio-group .checkbox-item:hover,
.checkbox-group .radio-item:hover,
.checkbox-group .checkbox-item:hover {
  transform: translateX(5px);
}
.radio-group .radio-item input[type=radio],
.radio-group .radio-item input[type=checkbox],
.radio-group .checkbox-item input[type=radio],
.radio-group .checkbox-item input[type=checkbox],
.checkbox-group .radio-item input[type=radio],
.checkbox-group .radio-item input[type=checkbox],
.checkbox-group .checkbox-item input[type=radio],
.checkbox-group .checkbox-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-group .radio-item input[type=radio] + label,
.radio-group .radio-item input[type=checkbox] + label,
.radio-group .checkbox-item input[type=radio] + label,
.radio-group .checkbox-item input[type=checkbox] + label,
.checkbox-group .radio-item input[type=radio] + label,
.checkbox-group .radio-item input[type=checkbox] + label,
.checkbox-group .checkbox-item input[type=radio] + label,
.checkbox-group .checkbox-item input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  display: block;
  font-size: 16px;
  color: #2c3e50;
}
.radio-group .radio-item input[type=radio] + label:before,
.radio-group .radio-item input[type=checkbox] + label:before,
.radio-group .checkbox-item input[type=radio] + label:before,
.radio-group .checkbox-item input[type=checkbox] + label:before,
.checkbox-group .radio-item input[type=radio] + label:before,
.checkbox-group .radio-item input[type=checkbox] + label:before,
.checkbox-group .checkbox-item input[type=radio] + label:before,
.checkbox-group .checkbox-item input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: #fff;
}
.radio-group .radio-item input[type=radio] + label:before,
.radio-group .checkbox-item input[type=radio] + label:before,
.checkbox-group .radio-item input[type=radio] + label:before,
.checkbox-group .checkbox-item input[type=radio] + label:before {
  border-radius: 50%;
}
.radio-group .radio-item input[type=radio]:checked + label:before,
.radio-group .checkbox-item input[type=radio]:checked + label:before,
.checkbox-group .radio-item input[type=radio]:checked + label:before,
.checkbox-group .checkbox-item input[type=radio]:checked + label:before {
  border-color: #129e4c;
  background: #129e4c;
  box-shadow: 0 0 0 4px rgba(18, 158, 76, 0.1);
}
.radio-group .radio-item input[type=checkbox] + label:before,
.radio-group .checkbox-item input[type=checkbox] + label:before,
.checkbox-group .radio-item input[type=checkbox] + label:before,
.checkbox-group .checkbox-item input[type=checkbox] + label:before {
  border-radius: 3px;
}
.radio-group .radio-item input[type=checkbox]:checked + label:before,
.radio-group .checkbox-item input[type=checkbox]:checked + label:before,
.checkbox-group .radio-item input[type=checkbox]:checked + label:before,
.checkbox-group .checkbox-item input[type=checkbox]:checked + label:before {
  background-color: #3498db;
  border-color: #3498db;
}
.radio-group .radio-item input[type=checkbox]:checked + label:after,
.radio-group .checkbox-item input[type=checkbox]:checked + label:after,
.checkbox-group .radio-item input[type=checkbox]:checked + label:after,
.checkbox-group .checkbox-item input[type=checkbox]:checked + label:after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}

.checkbox-item.agreement {
  margin-top: 5px;
}
.checkbox-item.agreement label {
  font-size: 13px;
}
.checkbox-item.agreement label .policy-link {
  color: #3498db;
  text-decoration: none;
  border-bottom: 1px dashed #3498db;
}
.checkbox-item.agreement label .policy-link:hover {
  border-bottom-style: solid;
}

.profile-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

@media (max-width: 1200px) {
  .profile-modal {
    padding: 30px;
  }
  .profile-modal__form {
    padding: 20px 40px 30px;
  }
}
@media (max-width: 992px) {
  .profile-modal {
    padding: 25px;
  }
  .profile-modal__form {
    padding: 20px 30px 30px;
  }
}
@media (max-width: 768px) {
  .profile-modal {
    padding: 20px;
    width: 95%;
  }
  .profile-modal__form {
    padding: 15px 20px 25px;
  }
  .profile-modal__form__section {
    padding: 20px;
    margin-bottom: 25px;
  }
  .profile-modal__form__row {
    flex-direction: column;
    gap: 20px;
  }
  .profile-modal__form__row .profile-modal__form__group {
    width: 100%;
  }
  .profile-modal__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .profile-modal {
    padding: 15px;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .profile-modal__form {
    padding: 10px 15px 20px;
  }
  .profile-modal__form__section {
    padding: 15px;
    margin-bottom: 20px;
  }
  .profile-modal__form__section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .profile-modal__form__group {
    margin-bottom: 15px;
  }
  .profile-modal__form__group label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .profile-modal__form__group input[type=text],
  .profile-modal__form__group input[type=tel],
  .profile-modal__form__group input[type=email],
  .profile-modal__form__group input[type=number],
  .profile-modal__form__group select,
  .profile-modal__form__group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  .profile-modal__close {
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
@media (max-width: 440px) {
  .profile-modal {
    padding: 10px;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .profile-modal__form {
    padding: 8px 10px 15px;
  }
  .profile-modal__form__section {
    padding: 10px;
    margin-bottom: 15px;
  }
  .profile-modal__form__section h3 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  .profile-modal__form__group {
    margin-bottom: 12px;
  }
  .profile-modal__form__group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .profile-modal__form__group input[type=text],
  .profile-modal__form__group input[type=tel],
  .profile-modal__form__group input[type=email],
  .profile-modal__form__group input[type=number],
  .profile-modal__form__group select,
  .profile-modal__form__group textarea {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  .profile-modal__form__actions {
    margin-top: 30px;
  }
  .profile-modal__form__actions .submit-button {
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 8px;
  }
  .profile-modal__close {
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .radio-group,
  .checkbox-group {
    gap: 12px;
    margin-top: 12px;
  }
  .radio-group .radio-item,
  .radio-group .checkbox-item,
  .checkbox-group .radio-item,
  .checkbox-group .checkbox-item {
    padding-left: 32px;
  }
  .radio-group .radio-item input[type=radio] + label,
  .radio-group .radio-item input[type=checkbox] + label,
  .radio-group .checkbox-item input[type=radio] + label,
  .radio-group .checkbox-item input[type=checkbox] + label,
  .checkbox-group .radio-item input[type=radio] + label,
  .checkbox-group .radio-item input[type=checkbox] + label,
  .checkbox-group .checkbox-item input[type=radio] + label,
  .checkbox-group .checkbox-item input[type=checkbox] + label {
    padding: 8px 0;
    font-size: 13px;
  }
  .radio-group .radio-item input[type=radio] + label:before,
  .radio-group .radio-item input[type=checkbox] + label:before,
  .radio-group .checkbox-item input[type=radio] + label:before,
  .radio-group .checkbox-item input[type=checkbox] + label:before,
  .checkbox-group .radio-item input[type=radio] + label:before,
  .checkbox-group .radio-item input[type=checkbox] + label:before,
  .checkbox-group .checkbox-item input[type=radio] + label:before,
  .checkbox-group .checkbox-item input[type=checkbox] + label:before {
    left: -32px;
    width: 20px;
    height: 20px;
  }
  .checkbox-item.agreement label {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .profile-modal {
    padding: 5px;
  }
  .profile-modal__form {
    padding: 5px 8px 12px;
  }
  .profile-modal__form__section {
    padding: 8px;
    margin-bottom: 12px;
  }
  .profile-modal__form__section h3 {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .profile-modal__form__group {
    margin-bottom: 10px;
  }
  .profile-modal__form__group label {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .profile-modal__form__group input[type=text],
  .profile-modal__form__group input[type=tel],
  .profile-modal__form__group input[type=email],
  .profile-modal__form__group input[type=number],
  .profile-modal__form__group select,
  .profile-modal__form__group textarea {
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 6px;
  }
  .profile-modal__form__actions {
    margin-top: 20px;
  }
  .profile-modal__form__actions .submit-button {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 6px;
  }
  .profile-modal__close {
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
.manage {
  margin: 30px;
  padding: 90px 0;
}
.manage__container {
  display: flex;
  padding: 40px 0;
  align-items: center;
}
.manage__content {
  margin: 70px 0;
}
.manage__content__title {
  color: black;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 25px;
}
.manage__content__text {
  color: #333;
  margin-bottom: 55px;
  font-size: 23px;
  font-weight: 500;
}
.manage__content__button {
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 5px;
  border: none;
  background-color: #129e4c;
  text-transform: uppercase;
  font-size: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.manage__content__button:hover {
  background-color: #0eb654;
}

@media (max-width: 440px) {
  .manage__content__title {
    font-size: 24px;
  }
  .manage__content__text {
    font-size: 14px;
  }
  .manage__content__button {
    padding: 15px 20px;
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .divider {
    margin: 15px;
  }
  .manage {
    margin: 10px;
    padding: 30px 0;
  }
  .manage__container {
    padding: 20px 0;
  }
  .manage__content__title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .manage__content__text {
    font-size: 13px;
    margin-bottom: 40px;
  }
  .manage__content__button {
    margin-top: 20px;
    padding: 15px 20px;
    font-size: 12px;
  }
}
.yandex-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow-y: auto;
  z-index: 1000;
  padding: 40px;
}

.yandex-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.yandex-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.yandex-modal__close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

.yandex-modal__header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.yandex-modal__header__phone {
  font-size: 18px;
  font-weight: 600;
  color: #129e4c;
  margin-bottom: 10px;
}

.yandex-modal__header__whatsapp {
  color: #666;
  font-size: 14px;
}

.yandex-modal__header__whatsapp a {
  color: #25D366;
  text-decoration: none;
}

.yandex-modal__header__btn {
  margin-top: 15px;
}

.yandex__button {
  background-color: #129e4c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.yandex__button:hover {
  background-color: #0eb654;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page {
  font-family: Inter, Open-Sans;
}

.page__container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 440px) and (max-width: 575px) {
  .page__container {
    padding: 0 10px;
  }
}
@media (max-width: 439px) {
  .page__container {
    padding: 0 5px;
  }
}

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