@charset "UTF-8";
button {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.35) 55%, transparent 70%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.85s ease;
}
button:hover {
  transform: translateY(-2px);
}
button:hover::before {
  left: 100%;
}
button:active {
  transform: translateY(0);
}
button.yellow-button::before {
  background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.45) 45%, rgba(255, 255, 255, 0.45) 55%, transparent 70%, transparent 100%);
}

.nav__link {
  transition: color 0.3s ease;
}

.contacts__phone {
  transition: color 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "TildaSans", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #151515;
  background-color: #ffffff;
}

.page-wrapper {
  background-image: url("../images/main-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #151515;
  text-transform: uppercase;
  margin: 60px 0;
}

h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  color: #105186;
  margin: 32px auto;
  text-align: center;
  max-width: 90%;
}

button {
  cursor: pointer;
  border: none;
  background-color: #105186;
  color: #ffffff;
  border-radius: 5px;
}
button.yellow-button {
  background-color: #f4d76f;
  color: #151515;
}

.small-button {
  font-size: 14px;
  width: 210px;
  height: 48px;
  line-height: 1.5;
  font-weight: 400;
}

.medium-button {
  width: 320px;
  height: 68px;
  font-size: 18px;
}

.light-plate span {
  background-color: #fafafa;
  color: #151515;
  border-top: 1px solid #c9c9c9;
}

.blue-text {
  color: #105186;
}

.m-0-auto {
  display: block;
  margin: 0 auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.jc-c {
  justify-content: center !important;
  gap: 20px;
}

.container {
  width: 1180px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-fixed {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.header-fixed.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.header-fixed .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.nav__list {
  padding-inline: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.nav__item {
  list-style: none;
  position: relative;
}
.nav__item--callback {
  display: none;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown .nav__dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__link {
  text-decoration: none;
  color: #151515;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #105186;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-20px);
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 30px 40px;
  min-width: 900px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  pointer-events: none;
}
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -20px;
  right: -20px;
  height: 15px;
  background: transparent;
  pointer-events: auto;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.nav__dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__dropdown-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.nav__dropdown-column {
  flex: 1;
  min-width: 200px;
}
.nav__dropdown-title {
  font-size: 18px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #105186;
}
.nav__dropdown-title--mt {
  margin-top: 25px;
}
.nav__dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #151515;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  padding: 5px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.nav__dropdown-link:hover {
  color: #105186;
  padding-left: 8px;
}

.contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #151515;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.contacts__phone i {
  color: #105186;
}

.burger-menu {
  display: none;
}

.article {
  max-width: 900px;
  margin: 0 auto;
}
.article__title {
  font-size: 36px;
  font-weight: 700;
  color: #105186;
  margin-bottom: 40px;
  line-height: 1.3;
}
.article__section {
  margin-bottom: 50px;
}
.article__heading {
  font-size: 28px;
  font-weight: 700;
  color: #105186;
  margin-bottom: 20px;
  line-height: 1.3;
}
.article__subheading {
  font-size: 22px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 15px;
  line-height: 1.3;
}
.article__text {
  font-size: 16px;
  line-height: 1.7;
  color: #151515;
  margin-bottom: 20px;
}
.article__text strong {
  font-weight: 600;
}
.article__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.article__list {
  margin: 20px 0;
  padding-left: 25px;
}
.article__list li {
  font-size: 16px;
  line-height: 1.7;
  color: #151515;
  margin-bottom: 10px;
}
.article__comparison {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}
.article__comparison-item {
  padding: 20px;
  background-color: #f3f7fa;
  border-radius: 8px;
  border-left: 4px solid #105186;
}
.article__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}
.article__step {
  padding: 25px;
  background-color: #f3f7fa;
  border-radius: 8px;
  border-left: 4px solid #f4d76f;
}

.main {
  overflow-y: visible;
  overflow-x: visible;
}
.main .hero__title {
  width: 60%;
}
.main .hero__description {
  font-size: 26px;
  margin: 40px 0 20px 0;
}
.main .hero__button__group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.main .hero__button.yellow-button {
  cursor: zoom-in;
}
.main .hero__advantages-wrapper {
  position: relative;
  margin-top: 40px;
  margin-bottom: -20px;
}
.main .hero__advantages {
  position: relative;
  background-color: #fafafa;
  padding: 0 12px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  display: flex;
  z-index: 2;
}
.main .hero .ant-bg {
  position: absolute;
  top: -120px;
  right: -120px;
  z-index: 1;
}
.main .hero__advantage {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
  justify-content: center;
  padding: 0 15px;
}
.main .hero__advantage:not(:last-child) {
  border-right: 1px solid #c9c9c9;
}

section {
  margin: 40px 0 60px;
}

.section__subtitle {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: #151515;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
}

.services__text {
  margin: 40px 0 20px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  position: relative;
}
.services__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.services__text.expanded::after {
  opacity: 0;
}
.services__read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 40px;
  background: transparent;
  border: 1px solid #105186;
  color: #105186;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.services__read-more i {
  transition: transform 0.3s ease;
}
.services__read-more:hover {
  background-color: #105186;
  color: #ffffff;
}
.services__read-more.expanded i {
  transform: rotate(180deg);
}

.cat-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 20px;
  margin: 40px 0;
}

.cat-item {
  max-width: 19%;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.cat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  border-color: #105186;
}
.cat-item a {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  text-decoration: none;
}
.cat-item__image {
  display: flex;
  margin: 8px auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.cat-item__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
  padding: 16px 20px;
  background-color: #105186;
  color: #ffffff;
  border-radius: 0 0 4px 4px;
  margin-top: auto;
  box-sizing: border-box;
  min-height: 56px;
  transition: background-color 0.3s ease;
}

.three-services__content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}
.three-services__column {
  flex: 1;
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.three-services__column--left {
  order: 1;
}
.three-services__column--center {
  order: 2;
}
.three-services__column--right {
  order: 3;
}
.three-services__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.three-services__column--left .three-services__item {
  flex-direction: row-reverse;
}
.three-services__column--left .three-services__content-text {
  text-align: right;
}
.three-services__column--right .three-services__item {
  flex-direction: row-reverse;
}
.three-services__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  -o-object-fit: contain;
     object-fit: contain;
}
.three-services__image {
  flex-shrink: 0;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.three-services__main-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.three-services__content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.three-services__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #151515;
  margin-bottom: 4px;
}
.three-services__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #151515;
  margin: 0;
}
.three-services__text {
  font-size: 16px;
  line-height: 1.2;
  color: #151515;
  margin: 0;
}

.garancy {
  background-color: #f5f5f5;
  padding: 40px 0 60px;
}
.garancy__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
.garancy__item {
  flex: 0 0 calc(25% - 20px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.garancy__icon {
  width: 100px;
  height: 10 0px;
  -o-object-fit: contain;
     object-fit: contain;
}
.garancy__text {
  font-size: 16px;
  line-height: 1.5;
  color: #151515;
  margin: 0;
  max-width: 240px;
}

.order-specialist {
  background: #ffd777;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-width: 1px;
  background-position: center center;
  border-color: #c9c9c9;
  border-style: solid;
}
.order-specialist__content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 20px;
}
.order-specialist__image-wrapper {
  flex: 0 0 300px;
  min-height: 240px;
  background-image: url("../images/white-man.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.order-specialist__form-wrapper {
  flex: 1;
}
.order-specialist__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: #151515;
  margin: 0 0 30px 0;
}
.order-specialist__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-specialist__fields {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.order-specialist__input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 14px;
  color: #151515;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.order-specialist__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.order-specialist__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.order-specialist__input:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(16, 81, 134, 0.8);
}
.order-specialist__input:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.order-specialist__button {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 30px;
  border: none;
  border-radius: 5px;
  background-color: #105186;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0.8;
}
.order-specialist__button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #0d436f;
}
.order-specialist__button:active:not(:disabled) {
  transform: translateY(0);
}
.order-specialist__button:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.order-specialist__button:disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.order-specialist__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.3;
  color: #151515;
}
.order-specialist__checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.2s ease;
}
.order-specialist__checkbox:checked {
  background-color: #105186;
  border-color: #105186;
}
.order-specialist__checkbox:checked::after {
  content: "check";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: "Material Icons";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}
.order-specialist__checkbox:hover {
  border-color: #105186;
}
.order-specialist__checkbox-text {
  flex: 1;
}
.order-specialist__checkbox-text a {
  color: #151515;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.order-specialist__checkbox-text a:hover {
  color: #105186;
}

.price-table {
  margin-top: 40px;
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.price-table__tabs {
  margin-bottom: 30px;
}
.price-table__dropdown {
  display: none;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.price-table__dropdown-button {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-align: left;
}
.price-table__dropdown-button:hover {
  background-color: #e8e8e8;
}
.price-table__dropdown-button:focus {
  outline: none;
  border-color: #105186;
}
.price-table__dropdown-button.active {
  border-color: #105186;
  background-color: #e8e8e8;
}
.price-table__dropdown-button.active .price-table__dropdown-arrow {
  transform: rotate(180deg);
}
.price-table__dropdown-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.price-table__dropdown-arrow {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.price-table__dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  list-style: none;
  padding: 8px 0;
  margin-left: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.price-table__dropdown-list.active {
  display: block;
}
.price-table__dropdown-item {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.price-table__dropdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #e0e0e0;
}
.price-table__dropdown-item:hover {
  background-color: #f5f5f5;
}
.price-table__dropdown-item:active {
  background-color: #e8e8e8;
}
.price-table__table-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-table__table-title {
  padding: 12px 24px;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.price-table__table-title:hover {
  background-color: #e8e8e8;
}
.price-table__table-title.active {
  background-color: #105186;
  color: #ffffff;
  border-color: #105186;
}
.price-table__content {
  position: relative;
  min-height: 300px;
}
.price-table__content-item {
  display: none;
  animation: fadeIn 0.3s ease;
}
.price-table__content-item.active {
  display: block;
}
.price-table__section:last-child {
  margin-bottom: 0;
}
.price-table__section-title {
  font-size: 28px;
  font-weight: 700;
  color: #105186;
  margin-bottom: 4px;
}
.price-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.price-table__row:last-child {
  border-bottom: none;
}
.price-table__row-title {
  font-size: 16px;
  color: #151515;
  flex: 1;
}
.price-table__row-prices {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.price-table__price {
  font-size: 16px;
  font-weight: 500;
}
.price-table__price--sale {
  color: #105186;
  font-weight: 700;
  font-size: 18px;
}
.price-table__price--old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}
.price-table__note {
  margin-top: 30px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}
.price-table__info-block {
  margin-top: 40px;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 4px solid #105186;
}
.price-table__info-title {
  font-size: 24px;
  font-weight: 700;
  color: #105186;
  margin-top: 0;
  margin-bottom: 12px;
}
.price-table__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-table__info-item {
  font-size: 16px;
  color: #151515;
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}
.price-table__info-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #105186;
  font-size: 20px;
  font-weight: bold;
}
.price-table__info-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.risks {
  background: #f4f8fb url("../images/white-man-bg.jpg") no-repeat center center;
  padding: 60px 0;
  background-size: cover;
}
.risks__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 50%;
}
.risks__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 0 12px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.risks__item:last-child {
  border-bottom: none;
}
.risks__item-img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.risks__item-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.risks__item-content {
  flex: 1;
}
.risks__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #151515;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.risks__item-text {
  font-size: 20px;
  line-height: 1.6;
  color: #151515;
  margin: 0;
}

.object-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.object-item {
  margin: 20px 0;
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  width: 100%;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.object-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #105186;
}
.object-item a {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.object-item__image {
  display: flex;
  margin: 8px auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 70%;
  height: auto;
  transition: transform 0.3s ease;
}
.object-item__button {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  padding: 10px 20px;
  background-color: #105186;
  color: #ffffff;
  border-radius: 0 0 4px 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.legal-entities__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.legal-entities__content__side {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.legal-entities__content__side img {
  max-width: 100%;
}
.legal-entities__content__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-entities__content__item {
  font-size: 20px;
  line-height: 1.3;
  color: #151515;
  margin: 0;
  position: relative;
  padding-left: 24px;
}
.legal-entities__content__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #105186;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
}

.licenses {
  background-color: #f3f7fa;
  padding: 60px 0;
}
.licenses__main {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 80%;
  margin: 40px auto 60px auto;
}
.licenses__image-wrapper {
  flex: 1;
  max-width: 33.333%;
  cursor: zoom-in;
}
.licenses__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.licenses__image-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.licenses__content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}
.licenses__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #151515;
  margin: 0 0 20px 0;
}
.licenses__description {
  font-size: 18px;
  line-height: 1.6;
  color: #151515;
  margin: 0 0 30px 0;
}
.licenses__link {
  font-size: 18px;
  color: #105186;
  text-decoration: underline;
  transition: color 0.3s ease;
  display: inline-block;
}
.licenses__link:hover {
  color: #0b3558;
}
.licenses__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.licenses__item {
  flex: 0 0 auto;
}
.licenses__item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partners__item {
  flex: 1;
}
.partners__item img {
  width: 100%;
}

.slider-container {
  position: relative;
  margin: 40px 0;
}

.slider {
  width: 100%;
  position: relative;
}
.slider__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider__track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.slider__item {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 80px;
}
.slider__item img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  box-sizing: border-box;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.slider__arrow:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.slider__arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.slider__arrow i {
  font-size: 32px;
  color: #105186;
}
.slider__arrow--prev {
  left: -66px;
}
.slider__arrow--next {
  right: -66px;
}
.slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider__dot:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}
.slider__dot.active {
  background-color: #105186;
  width: 32px;
  border-radius: 6px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
}
.lightbox.closing {
  opacity: 0;
}
.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.lightbox__content {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 100px;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}
.lightbox__close:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}
.lightbox__close i {
  font-size: 24px;
  color: #151515;
}
.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.lightbox__arrow:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.lightbox__arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox__arrow i {
  font-size: 32px;
  color: #105186;
}
.lightbox__arrow--prev {
  left: 20px;
}
.lightbox__arrow--next {
  right: 20px;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 40px;
  position: relative;
  margin-top: 80px;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__section {
  flex: 1;
}
.footer__section--contacts {
  max-width: 350px;
}
.footer__section--nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__section--top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer__contact-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.footer__contact-item--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact-item--phones {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.footer__label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.footer__link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #f4d76f;
}
.footer__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer__policy {
  display: inline-block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__policy:hover {
  color: #f4d76f;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
}
.footer__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #f4d76f;
}
.footer__city-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer__city-link:hover {
  color: #f4d76f;
}
.footer__top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer__top-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.footer__top-link:hover {
  color: #f4d76f;
}
.footer__top-link:hover i {
  transform: translateY(-3px);
}
.footer__bottom {
  text-align: center;
  padding-top: 30px;
}
.footer__company {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.footer__legal {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}
.footer__legal p {
  margin: 5px 0;
}
.footer__whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #151515;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}
.footer__whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.footer__whatsapp-icon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}
.modal__close:hover {
  transform: rotate(90deg);
}
.modal__close i {
  font-size: 24px;
  color: #151515;
}
.modal__title {
  font-size: 32px;
  font-weight: 700;
  color: #151515;
  margin: 0 0 20px 0;
  text-align: center;
}
.modal__description {
  font-size: 16px;
  line-height: 1.6;
  color: #151515;
  margin: 0 0 30px 0;
  text-align: center;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  font-family: "TildaSans", "Arial", sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.modal__input:hover {
  box-shadow: 0 0 0 2px rgba(16, 81, 134, 0.8);
}
.modal__input:focus {
  outline: none;
  border-color: #105186;
}
.modal__input::-moz-placeholder {
  color: #999;
}
.modal__input::placeholder {
  color: #999;
}
.modal__button {
  width: 100%;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 500;
  background-color: #105186;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.modal__button:hover:not(:disabled) {
  background-color: #0d436f;
  transform: translateY(-2px);
}
.modal__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.modal__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #c9c9c9;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.modal__checkbox:checked {
  background-color: #105186;
  border-color: #105186;
}
.modal__checkbox:checked::after {
  content: "check";
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}
.modal__checkbox:hover {
  border-color: #105186;
}
.modal__checkbox-text {
  color: #151515;
  flex: 1;
}
.modal__link {
  color: #105186;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.modal__link:hover {
  color: #0b3558;
}

.contacts-page {
  margin: 40px 0 60px;
}
.contacts-page__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contacts-page__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts-page__title {
  font-size: 50px;
  display: block;
  font-weight: 700;
  line-height: 1.4;
  color: #105186;
  margin: 0 0 20px 0;
}
.contacts-page__phone {
  font-size: 28px;
  font-weight: 700;
  color: #151515;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacts-page__phone:hover {
  color: #105186;
}
.contacts-page__address {
  font-size: 20px;
  line-height: 1.5;
  color: #151515;
  margin: 0 0 8px 0;
}
.contacts-page__email {
  font-size: 18px;
  line-height: 1.5;
  color: #151515;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.contacts-page__email:hover {
  color: #105186;
}
.contacts-page__map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.contacts-page__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contacts-page__right-column {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.contacts-page__region {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts-page__region-title {
  font-size: 24px;
  font-weight: 700;
  text-align: start;
  color: #151515;
  margin: 0;
  line-height: 1.3;
}
.contacts-page__addresses {
  font-size: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-page__addresses li {
  font-size: 16px;
  line-height: 1.5;
  color: #151515;
}

.about-company {
  background-color: #ffffff;
}
.about-company__title {
  font-size: 44px;
  font-weight: 700;
  color: #105186;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}
.about-company__tabs {
  margin-bottom: 40px;
}
.about-company__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-company__nav-item {
  padding: 12px 24px;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.about-company__nav-item:hover {
  background-color: #e8e8e8;
}
.about-company__nav-item.active {
  background-color: #105186;
  color: #ffffff;
  border-color: #105186;
}
.about-company__content {
  width: 100%;
}
.about-company__item {
  display: none;
  padding: 0;
  background-color: #ffffff;
  width: 100%;
}
.about-company__item.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.about-company__item p {
  font-size: 16px;
  line-height: 1.4;
  color: #151515;
  margin-bottom: 20px;
}
.about-company__item p strong {
  font-weight: 600;
  color: #151515;
}
.about-company__item ul {
  margin: 20px 0;
  padding-left: 25px;
  list-style: disc;
}
.about-company__item ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #151515;
  margin-bottom: 10px;
}
.about-company__item a {
  color: #105186;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.about-company__item a:hover {
  color: #0b3558;
}
.about-company__team {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about-company__team-member {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-company__team-member img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 8px;
}
.about-company__team-member-info {
  font-size: 14px;
  line-height: 1.6;
  color: #151515;
  text-align: center;
}
.about-company__team-member-info b {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */