:root {
  --main-bg: #f4f8fb;
  --title-color: #1b2023;
  --text-color: #4e4d4d;
  --color-accent: #fe3231;
}

html {
  height: 100%;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

ol,
ul,
li {
  list-style: none;
}

img {
  display: inline-block;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Gotham", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding: 10px 0 50px;
  background-color: #f4f8fb;
  position: relative;
  flex: 1;
}

.title {
  font-weight: 500;
  font-size: 30px;
  line-height: 0.83;
}

.title-2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
}

.text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
}

.lock {
  overflow: hidden;
}

.header {
  background-color: #121315;
  color: #fff;
  padding: 10px 0 13px;
  position: relative;
  z-index: 99;
}
.header::after {
  content: "";
  max-width: 1440px;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("./../img/icons/decor-head.svg");
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 45px;
  position: relative;
  z-index: 2;
}
.header__logo {
  max-width: 73px;
}
.header__lang {
  margin-left: 5px;
}
.header__lang .lang__list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__lang .lang__item {
  font-weight: 500;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #153a6e;
  color: #fff;
  border-radius: 24px;
}
.header__lang .lang__item button {
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header__lang .lang-fill {
  background-color: #153a6e;
}
.header__nav .header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__item-list {
  position: relative;
}
.header__item-list:hover .sublist {
  opacity: 0.95;
  visibility: visible;
}
.header__link {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  transition: color 0.2s ease-in;
  display: inline-block;
  height: 100%;
}
.header__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--color-accent);
}
.header__link.active {
  color: var(--color-accent);
  text-decoration: underline;
}
/* .header__btn {
  margin-left: auto;
} */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 100;
  margin-left: 15px;
}
.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #121315;
  padding: 100px 30px 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu__list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
.mobile-menu__list a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu__list a:hover {
  color: var(--color-accent);
}

.mobile-sublist {
  margin-top: 10px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-sublist a {
  font-size: 16px;
  color: #ccc;
}
.mobile-sublist a:hover {
  color: var(--color-accent);
}

.logo {
  max-width: 73px;
}
.lang {
  margin-left: 5px;
}
.lang__list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang__item {
  font-weight: 500;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #153a6e;
  color: #fff;
  border-radius: 24px;
  transition: background 0.3s ease-in;
}
.lang__item button {
  color: #fff;
}
.lang__item:hover {
  background-color: #153a6e;
}
.lang-fill {
  background-color: #153a6e;
}

.sublist {
  position: absolute;
  top: 35px;
  background-color: #fff;
  border-radius: 6px;
  padding: 17px 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 98;
}
.sublist__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.79;
  transition: color 0.1s ease-in;
}
.sublist__link:hover {
  color: var(--color-accent);
}

.btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.12;
  padding: 13px 0;
  border-radius: 24px;
  color: #fff;
  border: none;
  text-align: center;
  max-width: 199px;
  width: 100%;
  cursor: pointer;
}

.btn-fill {
  background-color: var(--color-accent);
}

.hero {
  padding: 0 10px 50px;
}
.hero__block {
  border-radius: 20px;
  overflow-x: hidden;
  position: relative;
  min-height: 640px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  padding: 20px 0;
}
/* @media (min-width: 1460px) {
  .hero__block {
    min-height: 760px;
  }
} */
.hero__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(1, 1, 1, 0.5);
  z-index: 2;
}
.hero__block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-image: url("./../img/icons/hero-decor.svg");
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 495px;
  max-height: 406px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 20px;
}
.hero__inner {
  position: relative;
  z-index: 6;
  max-width: 660px;
}
.hero__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 112%;
  margin-bottom: 30px;
}
.hero__text {
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.64;
  max-width: 502px;
}
.hero__btn {
  text-transform: uppercase;
}

.swiper {
  border-radius: 20px;
}

.swiper-wrapper {
  border-radius: 20px;
  max-height: 760px;
  transition: all 0.3s ease;
}

.hero-swiper-pagination {
  margin-bottom: 100px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.product-swiper {
  max-width: 606px;
}

.about-slider-wrap {
  overflow: visible;
  padding: 50px 0;
}

.about-slider {
  margin-bottom: 20px;
}

.about-slider__img {
  width: 100%;
  height: auto;
}
.about-slider__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #163b6f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.swiper-button-prev-custom {
  left: -25px;
}

.swiper-button-next-custom {
  right: -25px;
}

.catalog-section {
  padding: 50px 0;
}
.catalog-section__title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 30px;
}
.catalog-section__text {
  text-align: center;
  color: var(--text-color);
  max-width: 708px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.catalog__item {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc((100% - 60px) / 3);
  max-width: 393px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  touch-action: manipulation;
  cursor: pointer;
}
.catalog__item:hover, .catalog__item.is-touch-hover {
  background-image: url("./../img/card-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #173c6f;
}
.catalog__item:hover .catalog__title,
.catalog__item:hover .catalog__text,
.catalog__item:hover .catalog__link, .catalog__item.is-touch-hover .catalog__title,
.catalog__item.is-touch-hover .catalog__text,
.catalog__item.is-touch-hover .catalog__link {
  color: #fff;
}
.catalog__item:hover .catalog__link, .catalog__item.is-touch-hover .catalog__link {
  background: rgba(21, 58, 110, 0);
  border-color: #fff;
}
.catalog__item:hover .catalog__img, .catalog__item.is-touch-hover .catalog__img {
  transform: translateY(-70px);
}
.catalog__item:active {
  transform: scale(0.99);
}
.catalog__top {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.catalog__info {
  max-width: 221px;
}
.catalog__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--title-color);
  margin-bottom: 20px;
}
.catalog__text {
  color: var(--text-color);
  text-wrap: balance;
}
.catalog__img {
  transition: transform 0.3s ease;
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 130px;
}
.catalog__img img {
  width: 100%;
}
.catalog__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.12;
  text-align: center;
  color: #153a6e;
  display: block;
  margin-top: auto;
  padding: 11px 0;
  width: 100%;
  border: 1px solid #153a6e;
  border-radius: 24px;
  background: rgba(21, 58, 110, 0);
}
@media (max-width: 1200px) {
  .catalog {
    justify-content: center;
  }
  .catalog__item {
    flex: 1 1 calc((100% - 30px) / 2);
  }
}
@media (max-width: 768px) {
  .catalog__item {
    flex: 1 1 100%;
  }
}

.product {
  padding: 50px 0;
}
.product__inner {
  display: flex;
  gap: 30px;
}
.product__left {
  max-width: 606px;
}
.product__top {
  margin-bottom: 20px;
}
.product__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 0;
  min-height: 400px;
  max-height: 400px;
}
.product__mini-slide {
  max-width: 189px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  background: #fff;
  border-radius: 20px;
  padding: 13px 0;
  cursor: pointer;
  height: 125px;
}
.product__mini-slide img {
  max-width: 116px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  color: var(--title-color);
  margin-bottom: 30px;
}
.product__list {
  margin-bottom: 50px;
}
.product__item {
  line-height: 1.57;
  color: var(--text-color);
}
.product__heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--title-color);
  margin-bottom: 30px;
}
.product__text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.57;
  color: var(--text-color);
  margin-bottom: 20px;
}

.brand-trust {
  padding: 50px 0;
}
.brand-trust__inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 68px 115px 76px 70px;
  border-radius: 20px;
  background-color: #173c6f;
  color: #fff;
  overflow: hidden;
}
.brand-trust__inner::after {
  content: "";
  max-width: 704px;
  max-height: 408px;
  width: 100%;
  height: 100%;
  background: url("./../img/icons/trust-decor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.brand-trust > * {
  position: relative;
  z-index: 3;
}
.brand-trust__left {
  max-width: 424px;
}
.brand-trust__title {
  margin-bottom: 30px;
}
.brand-trust__right {
  max-width: 535px;
}

.brands {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 85px 78px;
}
.brands__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands__item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.brands__item:nth-child(4) {
  margin-left: 46px;
}

.breadcrumb-wrap {
  padding-top: 50px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-color);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  color: var(--text-color);
}

.breadcrumb a {
  line-height: 1.43;
  color: var(--text-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.pagination__list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #313131;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination__link-arrow {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination__link:hover {
  background-color: #f0f0f0;
  border-color: #999;
}

.pagination__link--active,
.pagination__link[aria-current=page] {
  background-color: #163b6f;
  color: #fff;
  font-weight: 700;
  border-color: #333;
  cursor: default;
}

.form-section {
  padding: 50px 0;
}
.form-section__block {
  background-color: #173c6f;
  padding: 60px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.form-section__content {
  max-width: 424px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  max-width: 387px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background-color: #f4f8fb;
  border: none;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  resize: none;
}

.contact-form button {
  background-color: #153a6e;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #082a56;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-upload {
  position: relative;
  border: 2px dashed #cfd8e2;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  background-color: #f4f8fb;
}

.file-upload input[type=file] {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #153a6e;
  font-weight: 500;
  font-size: 14px;
  pointer-events: none;
}

.file-upload-label img {
  margin-bottom: 8px;
}

.objects-wrap {
  padding: 50px 0;
}

.objects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.object-card {
  max-width: 393px;
  max-height: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  overflow: hidden;
}
.object-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
}
.object-card__link img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.object-card__link:hover img {
  transform: scale(1.03);
}
.object-card__link:hover .object__button {
  background: #fff;
  color: #000;
}
.object-card__button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 333px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.12;
  border: 1px solid #fff;
  border-radius: 24px;
  color: #fff;
  padding: 11px 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.object-card__button:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.object-info {
  padding: 50px 0;
}
.object-info__inner {
  display: flex;
  gap: 50px;
}
.object-info__left {
  max-width: 605px;
}
.object-info__big {
  margin-bottom: 20px;
}
.object-info__right {
  max-width: 584px;
  padding-top: 10px;
}
.object-info__title {
  margin-bottom: 30px;
}
.object-info__text {
  margin-bottom: 20px;
  line-height: 1.57;
  color: var(--text-color);
}

.object__img-wrap {
  max-width: 605px;
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.object__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
}
.object__mini-slide {
  width: 189px;
  height: 125px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.object__mini-slide img {
  width: 100%;
  max-height: 125px;
  border-radius: 20px;
}

.history {
  padding: 50px 0;
}
.history__inner {
  max-width: 1030px;
  margin: 0 auto;
}
.history__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 770px;
  margin: 0 auto;
}
.history__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: var(--title-color);
}
.history__text {
  line-height: 1.57;
  color: var(--text-color);
}
.history__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.history__block .history__text {
  max-width: 394px;
}
.history__center {
  padding: 100px 0;
}
.history__img-top {
  border-radius: 20px;
  position: relative;
  max-height: 500px;
}
.history__img-top img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  max-width: 394px;
  height: 100%;
  width: 100%;
}
.history__content {
  max-width: 455px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.history__img-oval {
  max-width: 482px;
  border-radius: 50%;
  padding: 30px;
  border: 8px solid #163b6f;
  overflow: hidden;
}
.history__img-oval img {
  border-radius: 50%;
  width: 100%;
}

.decor {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  background: #163b6f;
  border-radius: 20px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}

.about-us {
  padding: 50px 0;
}
.about-us__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.about-us__content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-us__title {
  color: var(--title-color);
}
.about-us__text {
  line-height: 1.57;
  color: var(--text-color);
}
.about-us__img {
  border-radius: 20px;
  overflow: hidden;
  max-width: 634px;
}
.about-us__img img {
  border-radius: 20px;
  width: 100%;
}

.vacancies {
  padding: 50px 0;
}
.vacancies__title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 50px;
}
.vacancies__slider {
  position: relative;
  max-height: 400px;
}
.vacancies__slider .swiper-wrapper {
    max-height: 400px;
}
.vacancies__link {
  display: flex;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in;
  width: 100%;
}
.vacancies__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.vacancies__link:hover::after {
  background: rgba(22, 59, 111, 0.3);
}
.vacancies__link:hover span {
  text-decoration: underline;
}
.vacancies__link img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.vacancies__link span {
  display: block;
  position: absolute;
  background: #163b6f;
  color: #fff;
  border-radius: 41px;
  max-width: 228px;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.21;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.contacts {
  padding: 50px 0;
}
.contacts__title {
  color: var(--title-color);
  margin-bottom: 50px;
}
.contacts__block {
  display: flex;
  gap: 30px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts__item {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(22, 59, 111, 0.1);
  border-radius: 20px;
  overflow: hidden;
  max-height: 119px;
  height: 100%;
}
.contacts__item-last {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.contacts__link {
  display: block;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.contacts__link img {
  width: 40px;
  height: 40px;
}
.contacts__link-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts__link-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--title-color);
}
.contacts__link-span {
  line-height: 1.57;
  color: var(--text-color);
}
.contacts__socials {
  display: flex;
  align-items: center;
  gap: 25px;
}
.contacts__map {
  max-width: 816px;
  max-height: 566px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.contacts__map iframe {
  border: none;
  width: 816px;
  height: 566px;
}

.privacy {
  padding: 50px 0;
}
.privacy__title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 50px;
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 818px;
  margin: 0 auto;
}
.privacy__text {
  color: var(--text-color);
  line-height: 1.57;
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #121315;
  color: #fff;
  padding: 50px 0 20px;
}
.footer__top {
  padding-bottom: 40px;
}
.footer__blocks {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer__logo {
  max-width: 211px;
  width: 100%;
}
.footer__text {
  opacity: 0.5;
  line-height: 1.29;
  font-weight: 400;
  margin-top: 20px;
  font-size: 14px;
}
.footer__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.12;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease-in;
  cursor: pointer;
}
.footer__item:hover .footer__link {
  color: var(--color-accent);
}
.footer__item:hover span {
  color: var(--color-accent);
}
.footer__link {
  color: inherit;
  line-height: 1.14;
}
.footer__contacts {
  margin-bottom: 50px;
}
.footer__map {
  margin-top: 20px;
}
.footer__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.footer__bottom {
  color: #fff;
}
.footer__bottom .container {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.socials__link svg path {
  transition: all 0.3s ease-in;
}
.socials__link:hover svg path {
  fill: var(--color-accent);
  transition: all 0.3s ease-in;
}

.map {
  max-width: 320px;
  max-height: 170px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.copy {
  opacity: 0.5;
}

.footer-privacy a {
  opacity: 0.5;
  color: #fff;
}

.creatby {
  opacity: 0.5;
}

.whatsapp-icon {
  padding: 13px;
  border-radius: 100%;
  background-color: #40d06b;
  max-width: 65px;
  max-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 92;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 39px;
  height: 39px;
}

@media (max-width: 1367px) {
  .whatsapp-icon {
    max-width: 50px;
    max-height: 50px;
    right: 30px;
    bottom: 15px;
  }
  .whatsapp-icon img {
    width: 286px;
    height: 28px;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.pop-up {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: #fff;
  border-radius: 10px;
  padding: 70px;
  max-width: 427px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pop-up__title {
  text-align: center;
  margin-bottom: 50px;
}
.pop-up .contact-form {
  padding: 0;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}
.header__nav {
  margin: 0 auto;
}
@media (max-width: 992px) {
  .pop-up {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .pop-up {
    max-width: 360px;
  }
}
@media (max-width: 1240px) {
  .header__logo {
    max-width: 60px;
  }
  .header__logo img {
    width: 100%;
  }
  .btn {
    max-width: 156px;
    font-size: 14px;
  }
  .header__nav .header__list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  /* .header__link {
    font-size: 16px;
  } */
  .hero {
    padding: 0 10px 40px;
  }
  .hero__block {
    min-height: 600px;
  }
  .hero__title {
    font-size: 36px;
  }
  .catalog__info {
    max-width: 203px;
  }
  .catalog__title {
    font-size: 18px;
  }
  .catalog__img img {
    max-width: 100px;
  }
  .brand-trust__inner {
    padding: 30px;
    justify-content: space-between;
    align-items: center;
  }
  .brands__item:nth-child(4) {
    margin-left: 0;
  }
  .brands {
    gap: 40px;
    justify-content: end;
  }
  .footer__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 1110px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
  .header__nav,
  .header__btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header__lang {
    margin-left: auto;
  }
  .whatsapp-icon {
    right: 20px;
    max-width: 45px;
    max-height: 45px;
  }
  .whatsapp-icon img {
    width: 24px;
    height: 24px;
  }
  .product__inner,
  .object-info__inner {
    flex-direction: column;
  }
  .product__left,
  .object-info__left {
    max-width: 100%;
  }
  .product-swiper,
  .object-swiper {
    max-width: 100%;
  }
  .object__img-wrap {
    max-width: 100%;
  }
  .object__img-wrap img {
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 20px;
  }
  .form-section__block {
    padding: 50px 20px;
  }
}
@media (max-width: 1024px) {
  .hero__block {
    min-height: 540px;
  }
  .hero__title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .hero__text {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .contacts__block {
    flex-direction: column;
  }
  .contacts__map {
    max-width: 100%;
  }
  .contacts__map iframe {
    width: 100%;
    height: 450px;
  }
  .contacts__list {
    gap: 20px;
  }
  .contacts__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .brand-trust__inner {
    flex-direction: column;
    align-items: start;
    gap: 35px;
  }
  .brands {
    justify-content: center;
  }
  .form-section__block {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .about-us__inner {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0 10px 30px;
  }
  .hero__block {
    min-height: 480px;
    padding: 15px 0;
    border-radius: 16px;
  }
  .hero__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .hero__text {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .hero-swiper-pagination {
    margin-bottom: 30px;
  }
  .hero__block::after {
    max-width: 340px;
    max-height: 230px;
  }
  .btn {
    padding: 8px 0;
  }
  .brand-trust__title {
    margin-bottom: 20px;
  }
  .title {
    font-size: 24px;
  }
  .catalog-section,
  .brand-trust,
  .product,
  .form-section,
  .history,
  .about-slider-wrap,
  .objects-wrap,
  .object-info,
  .about-us,
  .contacts {
    padding: 30px 0;
  }
  .footer__blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__contacts {
    margin-bottom: 30px;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 20px;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    max-width: 100%;
    gap: 30px;
  }
  .catalog__img {
    top: 15px;
    right: 10px;
  }
  .history__title {
    font-size: 28px;
  }
  .decor {
    width: 120px;
    height: 150px;
    right: -10px;
    bottom: -15px;
  }
  .history__block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .history__center {
    flex-direction: column-reverse;
    padding: 50px 0;
  }
  .history__content {
    align-items: center;
  }
  .history__block .history__text {
    max-width: 100%;
  }
  .title-2 {
    font-size: 28px;
  }
  .swiper-button-prev-custom {
    left: -5px;
  }
  .swiper-button-next-custom {
    right: -5px;
  }
  .contacts__link {
    padding: 20px 10px;
    gap: 15px;
  }
  .contacts__item-last {
    justify-content: space-between;
  }
  .contacts__link-title {
    font-size: 16px;
  }
  .contacts__socials {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .hero__block {
    min-height: 420px;
    border-radius: 14px;
  }
  .hero__title {
    font-size: 24px;
  }
  .catalog__item {
    padding: 15px;
  }
  .catalog__img img {
    max-width: 70px;
  }
  .brands {
    justify-content: start;
  }
  .breadcrumb a {
    font-size: 12px;
  }
  .breadcrumb li {
    font-size: 12px;
  }
  .product__mini-slide img {
    max-width: 70px;
  }
  .contact-form {
    padding: 30px 20px;
  }
}
@media (max-width: 375px) {
  .hero__block {
    min-height: 380px;
  }
  .hero__title {
    font-size: 20px;
  }
  .hero__text {
    font-size: 11px;
  }
  .map {
    max-width: 320px;
  }
  .map iframe {
    max-width: 320px;
    width: 270px;
    height: 170px;
  }
}
@media (max-width: 320px) {
  .hero {
    padding: 0 5px 25px;
  }
  .hero__block {
    min-height: 360px;
    padding: 10px 0;
    border-radius: 12px;
  }
  .hero__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .hero__text {
    font-size: 10px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */






/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}

@media (max-width:1200px) {
    .alert--width {
        width: 370px;
    }

    .alert--content {
        padding: 25px;
    }

    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }

    .alert-text {
        margin-top: 10px;
    }

    .alert--title {
        font-size: 24px;
    }

    .alert--subtitle {
        font-size: 18px;
    }
}

@media (max-width:500px) {
    .alert--content {
        width: 92%;
    }

    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }

    .alert--title {
        font-size: 22px;
    }
}


/*alert*/


.resume-label {
    background: #f4f8fb;
    padding: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px dashed #163B6F;
    border-radius: 6px;
    cursor: pointer;
}
    .hero-swiper {
        max-height: 550px;
    }
