/*Fonts*/
@font-face {
  font-family: "DIN Condensed";
  font-display: swap;
  src: url("../fonts/DINCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
}

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

button:active,
button:hover,
button:focus,
input:active,
input:hover,
input:focus,
textarea:active,
textarea:hover,
textarea:focus {
  outline: 0;
  outline-offset: 0;
}

li {
  list-style-type: none;
}

body {
  color: #7e7e7e;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

ul {
  padding: 0;
  margin: 0;
}

input:-internal-autofill-selected {
  background-color: rgb(232, 240, 254) !important;
  background-image: none !important;
  color: -internal-light-dark-color(black, white) !important;
}

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

div,
input,
button,
a {
  box-sizing: border-box;
  border: none;
}

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

.btn {
  border-radius: 30px;
  background: #f47500;
  padding: 0 31px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 24px;
  font-weight: 600;
  font-size: 11px;
  width: max-content;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #bd5b00;
}

/*HEADER*/
.header {
  color: white;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  display: block;
  flex-shrink: 0;
  width: 120px;
}

.header__menu {
}

.header__menu.mobile {
  display: none;
}

.header__menu nav {
}

.header__menu ul {
  display: flex;
  align-items: center;
}

.header__menu li {
  margin-right: 35px;
}

.header__menu a {
  color: white;
  font-family: "DIN Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.header__menu li:last-child {
  margin-right: 0;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__info {
}

/*.header__info a:first-child{
    color: white;
    font-family: 'DIN Condensed'; 
    display: block;
    text-align: right;
    font-size: 17px;
}*/
.header__info a {
  color: white;
  font-family: "DIN Condensed";
  font-size: 17px;
  display: inline-block;
  margin-right: 20px;
  /* Добавьте отступ между ссылками по вашему усмотрению */
  text-align: right;
}

.header__info a:last-child {
  color: #fff;
  text-align: right;
  font-size: 12px;
  /*font-weight: 600;*/
  line-height: 100%;
  display: block;
}

.header__btn {
  margin-left: 24px;
}

/*INFORM*/
.inform {
  background-image: url(../img/inform_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 170px 0 195px 0;
  position: relative;
}

.inform:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.inform video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.inform .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inform__title {
  color: #fff;
  text-align: center;
  font-family: DIN Condensed;
  font-size: 51px;
  line-height: 120%;
  text-transform: uppercase;
}

.inform__subtitle {
  margin: 20px 0 30px 0;
  color: #fff;
  text-align: center;
}

@media (min-width: 1105px) {
  .inform__subtitle {
    max-width: 65%;
  }
}

.inform__btn {
  height: auto !important;
  padding: 8px 36px !important;
  font-size: 16px !important;
}

.inform__cities {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.inform__cities__item {
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 38px;
  padding: 0 25px;
  margin: 15px;
}

.inform__cities__item img {
  display: block;
  margin-right: 10px;
}

.inform__cities__item span {
  color: white;
  font-weight: 600;
  display: block;
}

/*CATALOG*/
.title {
  color: #000c49;
  font-family: DIN Condensed;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.catalog {
  margin-top: 120px;
}

.catalog__title {
}

.catalog__list {
  display: flex;
  flex-wrap: wrap;
}

.catalog__item {
  margin-top: 50px;
  width: 33%;
}

.catalog__item > a {
  display: flex;
  align-items: center;
}

.catalog__img {
  width: 207px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.catalog__name {
  margin-left: 35px;
  color: #000c49;
  font-family: DIN Condensed;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  width: 20%;
}

/*ADVAN*/
.advan {
  margin-top: 120px;
}

.advan__title {
}

.advan__inner {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advan__list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.advan__item {
  display: flex;
  align-items: center;
  width: 50%;
  padding-right: 29px;
  margin: 20px 0;
}

.advan__icon {
  display: block;
  width: 90px;
  margin-right: 29px;
}

.advan__box {
}

.advan__name {
  color: #000c49;
  font-family: DIN Condensed;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.advan__text {
  color: #7e7e7e;
}

.advan__gallery {
  width: 31.7%;
  flex-shrink: 0;
  position: relative;
}

.advan__image {
  display: block;
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

.arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  padding: 0 28px;
  z-index: 1;
}

.arrow {
  cursor: pointer;
  padding: 5px;
}

.partners .arrow path {
  transition: 0.3s;
}

.partners .arrow:hover path {
  fill: #f47500;
}

.slick-dots {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.slick-dots li {
  margin: 0 12.5px;
  border-radius: 100%;
  background: white;
  opacity: 0.5;
}

.slick-dots li.slick-active {
  opacity: 1;
  background: #f47500;
}

.slick-dots button {
  opacity: 0;
  display: block;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/*FORM*/
.form {
  margin-top: 115px;
}

.form__inner {
  border-radius: 20px;
  border: 1px dashed rgba(0, 7, 45, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 15px;
}

.form form {
  flex-shrink: 0;
}

.form__title {
}

.form__box {
  width: 390px;
}

.form input {
  margin-top: 30px;
  display: block;
  border-radius: 10px;
  border: 3px solid #eaf3ff;
  background: #fff;
  height: 50px;
  width: 100%;
  color: #000c49;
  font-size: 12px;
  padding-left: 18px;
}

.form input.wpcf7-submit {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f47500;
  height: 50px;
  width: 278px;
  border: unset;
  font-weight: 600;
  font-size: 11px;
  color: white;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
  cursor: pointer;
}

.form input.wpcf7-submit:hover {
  background: #bd5b00;
}

.form__img {
  flex-shrink: 0;
}

/*PARTNERS*/
.partners {
  margin-top: 120px;
}

.partners__top {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners__title {
}

.partners__box {
  display: flex;
  align-items: center;
}

.partners__info {
  color: #000c49;
  text-align: center;
  font-family: DIN Condensed;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 44px;
  user-select: none;
}

.partners__list {
  margin: 0 -12px;
}

.partners__item {
  border-radius: 20px;
  border: 3px solid #eaf3ff;
  background: #fff;
  margin: 0 12px;
  height: 120px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.partners__img {
  margin: 0 auto;
  display: block;
}

/*CONTACTS*/
.contacts {
  margin-top: 120px;
}

.contacts__inner {
  border-radius: 20px;
  background-image: url(../img/contacts_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 90px 0 90px 90px;
}

.contacts__box {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 15px 15px 0px rgba(0, 12, 73, 0.05);
  width: max-content;
  padding: 60px 167px 64px 57px;
}

.contacts__title {
}

.contacts__subtitle {
  margin: 20px 0;
  color: #7e7e7e;
}

.contacts__list {
}

.contacts__item {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.contacts__item:last-child {
  margin-bottom: 0;
}

.contacts__icon {
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
}

.contacts__group {
  flex-shrink: 0;
}

.contacts__name {
}

.contacts__text {
  color: #000c49;
  font-weight: 600;
}

.contacts__text a {
  color: #000c49;
}

/*FOOTER*/
.footer {
  padding: 45px 0 55px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.footer__inner span {
  display: block;
  color: #7e7e7e;
  font-size: 12px;
}

.footer__inner a {
  display: block;
  text-decoration: underline;
  color: #7e7e7e;
  font-size: 12px;
}

/*menu animate*/
.menu-btn {
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.menu-icon {
  position: relative;
  width: 30px;
  height: 4px;
  background-color: #fff;
}

.menu-icon::before {
  position: absolute;
  left: 0;
  top: -9px;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #fff;
  transition: transform 0.4s ease-in, top 0.2s linear 0.2s;
}

.menu-icon::after {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #fff;
  transition: transform 0.4s ease-in, top 0.2s linear 0.2s;
}

.menu-open .menu-btn .menu-icon {
  background-color: transparent;
  transition: 0.2s;
}

.menu-open .menu-btn .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
  transition: 0.4s linear, transform 0.2s ease-in 0.2s;
  background-color: black;
}

.menu-open .menu-btn .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
  transition: 0.4s linear, transform 0.2s ease-in 0.2s;
  background-color: black;
}

/*PAGE*/
.page {
  padding: 60px 0 0 0;
}

.page h2,
.page h3,
.page h4,
.page h5,
.page h6 {
  color: #000c49;
  font-family: DIN Condensed;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
}

.form__box p {
  margin: 0;
}

.form__box br {
  display: none;
}

.page .before_list {
  font-weight: 500;
  text-transform: initial;
  margin-top: 32px;
  color: #000c49ba;
  line-height: 10px;
  font-size: 19px;
}

.page b,
strong {
  color: #000c49ba;
  font-weight: 500;
}

.page .content ul {
  list-style-type: none;
  margin-left: 10px;
  padding-left: 0;
  margin-top: 25px;
}

.page p {
  color: #333;
}

.page .content li {
  margin-bottom: 5px;
  position: relative;
  color: #333;
}

.page .content li > a {
  color: #333;
}

.page li:before {
  content: "\2713";
  left: 3px;
  margin: 0 5px;
  color: #f47500;
  font-weight: bold;
}
.extra-content li:before {
  content: "\2713";
  left: 3px;
  margin: 0 5px;
  color: #f47500;
  font-weight: bold;
}
.extra-content .before_list {
    font-weight: 900;
    text-transform: initial;
    margin-top: 32px;
    color: #000c49;
    line-height: 10px;
    font-size: 19px;
}
.extra-content .strong {
    font-weight: 800;
}

.page table {
  border-collapse: collapse;
  /* Убираем промежутки между ячейками */
  width: 100%;
  /* Ширина таблицы на 100% ширины родительского контейнера */
}

/* Стиль для заголовков таблицы */
.page th {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
  border: 1px solid #ccc;
  /padding: 8px;
  text-align: left;
}

/* Стиль для обычных ячеек таблицы */
.page td {
  border: 1px solid #ebebeb;
  padding: 10px;
  text-align: left;
  background: white;
}

/* При необходимости можно добавить стили для строк с четными и нечетными номерами */
.page tr:nth-child(even) {
  /*background-color: #f2f2f2;*/
}

.page tr:nth-child(odd) {
  background-color: #fff;
}

.su-accordion .su-spoiler {
  margin-bottom: 0.5em;
  border: solid 1px;
  border-radius: 3px;
  padding: 10px;
}

.inform__cities__item:hover {
  border: 1px solid rgb(255 255 255);
}

@media (max-width: 768px) {
  .page .before_list {
    line-height: 18px;
  }

  .header__info a {
    font-family: "DIN Condensed";
    display: block;
    text-align: left;
    font-size: 15px;
    color: #333;
    padding: 4px 0;
  }

  .page table {
    display: block;
    border-collapse: collapse;
    width: 100%;
    overflow: auto;
  }

  .su-custom-gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.page .container h2 {
  font-family: DIN Condensed;
  font-size: 31px !important;
  line-height: 100%;
  text-transform: uppercase;
  margin: 41px 0 0 0 !important;
}

.page .container h3,
.page .container h4,
.page .container h5,
.page .container h6 {
  /*text-align: center;*/
  font-family: DIN Condensed;
  line-height: 100%;
  text-transform: uppercase;
  margin: 41px 0 0 0 !important;
}

.page .container h3 {
  font-size: 31px !important;
}

.page .container h4,
.page .container h5,
.page .container h6 {
  font-size: 24px !important;
}

.header__info1 .tel1 {
  color: white;
  font-family: "DIN Condensed";
  font-size: 17px;
}

.header__bann {
  padding: 20px 0 0 0;
}

.header__bann a {
  color: white;
}

@media (min-width: 768px) {
  .header__bann {
    display: none;
  }
}

.link_popap {
  text-align: center;
  display: block;
  padding-top: 30px;
  color: white;
}

.valuti {
  font-family: "DIN Condensed";
  /*padding: 0 65px 0 7px;*/
  color: #f47500;
  width: 150px;
}

.valuti span {
  padding-right: 15px;
  color: white;
}

@media (max-width: 1105px) {
  .valuti {
    display: none;
  }
}

@media (min-width: 1105px) {
  .valuti_mob {
    display: none;
  }
}

.valuti_mob {
  font-family: "DIN Condensed";
  color: #f47500;
  padding: 10px 0;
  text-align: center;
}

.valuti_mob span {
  padding-right: 15px;
  color: white;
}

.container h1 {
  margin: 0 0 40px 0;
}

@media (max-width: 1777px) {
  .pum-theme-785 .pum-content,
  .pum-theme-lightbox .pum-content {
    margin: 0 auto;
    text-align: center;
    display: block;
  }

  .form__box {
    float: none !important;
    margin: 30px auto !important;
  }
}

/* 
    SECTION STYLES
*/

.section-top__head {
  font-family: DIN Condensed;
  font-size: 36px;
  max-width: 770px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  color: #000c49;
}

.section-top__subtitle {
  margin-top: 15px;
  line-height: 165%;
  text-align: left;
  color: #0a0a0a;
}

/*
    PRODUCT STYLES
*/
.products-list {
  display: grid;
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.18);
  transition: ease 0.3s box-shadow;
}

.product-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
}

.product-card__main {
  padding: 25px 20px;
  overflow: hidden;
}

.product-card__image {
  margin-bottom: 30px;
  width: 100%;
  aspect-ratio: 16/9;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__options ul {
  margin: 15px 0 0 0;
}

.product-card__bottom > .btn {
  border-radius: 0 0 15px 15px;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  height: initial;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
  transition: ease 0.3s box-shadow;
  transition: all ease 0.3s;
  background-color: transparent;
  border: 2px solid #f47500;
  color: #f47500;
}

.product-card__bottom > .btn:hover {
  background-color: #f47500;
  color: #fff;
}

.product-card__title {
  font-family: "DIN Condensed";
  font-size: 24px;
  color: #000c49;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.product-card__options ul li {
  font-size: 14px;
  line-height: 175%;
  color: #0a0a0a;
}

.product-card__options ul li:before {
  margin: 0 8px 0 0;
  color: #0a0a0a !important;
}

.product-card__options ul li > .accented {
  font-weight: 500;
}

.inner-catalog {
  margin: 60px 0 0 0;
}

.inner-catalog__head {
  color: #000c49;
}

.inner-catalog__subtitle {
  color: #0a0a0a;
}

.inner-catalog__footnote {
  font-size: 16px;
  line-height: 165%;
  color: #0a0a0a;
  margin-top: 35px;
  margin-bottom: 0;
}

.inner-catalog__footnote .accented {
  font-weight: 700;
}

/* 
    CATALOG CONTENT ELEMENTS STYLE
*/
.inner-catalog__content {
  margin-top: 60px !important;
}

.inner-catalog__top {
  margin: 60px 0;
}

.inner-catalog__content h2,
.inner-catalog__content h3,
.inner-catalog__content h4,
.inner-catalog__content h5,
.inner-catalog__content h6 {
  color: #000c49 !important;
}

.inner-catalog__content ul > li:before {
  margin: 0 8px 0 0 !important;
}

.inner-catalog__content p,
.inner-catalog__content ul > li,
.inner-catalog__content ul > li > a {
  color: #0a0a0a !important;
}

.inner-catalog__content ul,
.inner-catalog__content ol {
  margin: 20px 0;
}

@media (min-width: 768px) {
  .products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1580px) {
  .products-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.category-nav {
  display: flex;
  gap: 8px;
}

.category-nav ul {
  margin-left: 0;
}

.category-nav ul > li {
  display: block;
  margin-bottom: 0;
  width: max-content;
}

.category-nav__button {
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #2b2b2b;
  transition: ease 0.3s;
}

.category-nav__button:hover {
  background-color: #414141;
}

.category-nav-swiper-arrow.swiper-button-disabled,
.category-nav-swiper-arrow.swiper-button-disabled {
  opacity: 0;
}

.category-nav ul > li:before {
  content: none;
}

.category-nav__button.next span,
.category-nav__button.prev span {
  font-size: 16px;
}

.category-nav__button.next,
.category-nav__button.prev {
  padding: 10px 15px;
}

/* 
    PROPUCT PAGE NAVIGATION SWIPER
*/
.category-nav-swiper {
  margin: 0;
}

/* SECTION DARK LAYER  */
.dark-layer {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.85;
  background: linear-gradient(
    58deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(31, 31, 31, 1) 74%,
    rgba(15, 15, 15, 1) 94%
  );
}

/* 
    ADVANTAGES SECTION STYLES
*/

.adv {
  position: relative;
  margin-top: 60px;
  padding: 80px 0;
  min-height: 250px;
}

.adv__inner {
  position: relative;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.adv__head,
.adv__subtitle {
  color: #fff;
}

.adv__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.adv__element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media all and (max-width: 768px) {
  .adv__list {
    margin-top: 4rem !important;
  }

  .adv__element {
    display: grid;
    grid-auto-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    grid-template-areas:
      "adv__icon adv__element__title"
      "adv__icon adv__element__subtitle";

    .adv__icon {
      grid-area: adv__icon;
    }

    .adv__element__title {
      grid-area: adv__element__title;
    }

    .adv__element__subtitle {
      grid-area: adv__element__subtitle;
    }
  }
}

.adv__icon {
  font-size: 60px;
  color: #f47500;
  margin-bottom: 10px;
}

.adv__element__title {
  font-family: "DIN Condensed";
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.adv__element__subtitle {
  font-size: 16px;
  color: #e0e0e0;
  margin-top: 7px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .adv__list {
    justify-content: space-between;
    flex-direction: row;
  }

  .adv__icon {
    font-size: 80px;
  }
}

.product-gallery__top {
  margin: 60px 0;
}

.product-gallery__list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1105px) {
  .product-gallery__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/*
    GALLERY CARD
*/
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 265px;
  cursor: pointer;
}

.gallery-card__open {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 48px;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: all ease 0.3s;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
}

.gallery-card__dark-layer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 0, 36, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 85%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all ease 0.3s;
  opacity: 1;
}

.gallery-card:hover .gallery-card__dark-layer {
  opacity: 0.7;
}

.gallery-card:hover .gallery-card__content {
  opacity: 0;
}

.gallery-card:hover .gallery-card__open {
  opacity: 1;
}

.gallery-card__content {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 20px;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  transition: all ease 0.3s;
  opacity: 1;
}

.gallery-card__text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 165%;
}

/* POP UP FORM */

.popup {
  position: fixed;
  width: calc(100% - 40px);
  min-height: 300px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 45px 30px;
  z-index: 99;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all ease 0.3s;
  pointer-events: none;
  user-select: none;
}

.popup.active {
  opacity: 1;
  pointer-events: initial;
  user-select: initial;
}

.popup-form__box span {
  display: block;
  margin: 0;
}

.popup-form__box p {
  margin: 0;
}

.popup-form__box input[type="submit"] {
  width: 100% !important;
}

.popup-form__title {
  margin: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .popup {
    padding: 50px 35px;
    width: 50%;
  }

  .popup-form__box input[type="submit"] {
    width: auto !important;
  }
}

@media (min-width: 1280px) {
  .popup {
    padding: 50px 35px;
    width: 30%;
  }
}

/** ABOUT PAGE STYLES  */
.page.about .main {
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.15);
}

.page.about .main__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page.about .main__left {
  width: 100%;
}

.page.about .main__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px 35px 30px;
}

.page.about .main__right-outer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page.about .btn {
  display: inline-flex;
  font-size: 16px;
  padding: 12px 48px;
  border-radius: 16px;
  height: auto;
  width: auto;
  line-height: 1;
  align-items: center;
  margin: 0;
}

.page.about .btn > .icon {
  margin-right: 10px;
  display: block;
  line-height: 1;
}

.page.about .main__image-outer {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}

.page.about .main__right-buttons > .btn {
  margin: 40px 0 0 0;
  width: 100%;
}

.page.about .main__text .main-1title,
.page.about .main__text .main-2title {
  font-family: DIN Condensed;
  font-weight: 700;
  color: #000c49;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.page.about .main__text .main-1title {
  font-size: 28px;
}

.page.about .main__text .main-2title {
  font-size: 22px;
}

.page.about .main__text p {
  color: #2e2e2e;
  font-weight: 400;
  font-size: 16px;
  margin: 10px 0 0 0;
  text-align: justify;
  line-height: 1.6;
}

.page.about .main__image-outer > img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page.about .main__image-outer::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
}

.page.about .section__head {
  margin-bottom: 40px;
}

.page.about .section__head > .wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}

.page.about .section__head .title {
  font-family: DIN Condensed;
  font-weight: 700;
  color: #000c49;
  text-transform: uppercase;
  font-size: 36px;
  margin: 0 0 15px 0;
}

.page.about .section__head .subtitle {
  font-weight: 400;
  color: #151515;
  font-size: 16px;
  max-width: 80%;
}

.page.about .adv {
  margin: 90px 0 0 0;
  padding: 0;
  min-height: auto;
}

.page.about .adv__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.page.about .adv__item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 16px;
  background: #fff3e0;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.15);
}

.page.about .adv__item_gray {
  background: #f5f5f5;
}

.page.about .adv__item_yellow {
  background: #fff3e0;
}

.page.about .adv__item-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page.about .adv__item-right > .title {
  font-family: DIN Condensed;
  font-weight: 700;
  color: #000c49;
  font-size: 20px;
  line-height: 25px;
}

.page.about .adv__item-right > .txt {
  font-weight: 400;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.page.about .adv__item-left > .icon {
  color: #f47500;
  font-size: 45px;
  line-height: 1;
}

.page.about .gallery {
  background: #eaf3ff;
  padding: 90px 0;
  margin: 80px 0 0 0;
}

.page.about .gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.page.about .gallery__item:hover > .gallery__item-txt {
  opacity: 1;
  transform: translateY(0);
}

.page.about .gallery__item:hover::before {
  opacity: 1;
}

.page.about .gallery__item::before {
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: all ease 0.2s;
}

.page.about .gallery__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.page.about .gallery__item-txt {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0px 20px 35px 20px;
  transform: translateY(100%);
  transition: all ease 0.4s;
  opacity: 0;
}

.page.about .gallery__inner {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 30px;
}

.page.about .gallery .section__head .title {
  margin: 0;
}

@media (min-width: 768px) {
  .page.about .main__inner {
    flex-direction: row;
  }

  .page.about .main__left {
    width: 50%;
  }

  .page.about .main__right {
    width: 50%;
  }

  .page.about .main__image-outer {
    height: 100%;
  }

  .page.about .main__right {
    padding: 50px 45px 50px 0;
  }

  .page.about .main__right-buttons > .btn {
    width: auto;
  }

  .page.about .adv__item {
    flex-direction: row;
    gap: 30px;
    padding: 40px;
  }

  .page.about .adv__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page.about .gallery__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page.about .section__head > .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.extra-content {
  margin-top: 64px;
}

.extra-content h2,
.extra-content h3,
.extra-content h4,
.extra-content h5,
.extra-content h6 {
  color: #000c49;
  font-family: DIN Condensed;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.extra-content h2 {
  font-size: 31px !important;
}

.extra-content h3 {
  font-size: 28px !important;
}

.extra-content h4,
.extra-content h5,
.extra-content h6 {
  font-size: 24px !important;
}

.inner-catalog__content .table .table__body {
  height: 250px;
  overflow-y: auto;
}

.inner-catalog__content .table .table__body-out {
  padding-bottom: 44px;
}

.inner-catalog__content .table {
  background: #d7d7d7;
  border-radius: 8px;
  overflow: hidden;
}

.inner-catalog__content .table .table__row:nth-child(even) > .table__col {
  background: #f0f0f0;
}

.inner-catalog__content .table .table__row:nth-child(odd) > .table__col {
  background: #fff;
}

.inner-catalog__content .table .table__col {
  padding: 12px;
  border-left: #ddd;
  border-right: #ddd;
}

.inner-catalog__content .table .table__head {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: #d7d7d7;
  color: #151515;
  padding: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 35px;
}

.inner-catalog__content .table .table__head .icon {
  font-size: 24px;
  color: #151515;
}

.inner-catalog__content .table .table__col {
  color: #151515;
}

.inner-catalog__content a {
  text-decoration: underline;
  color: black;
}
.inner-catalog__content a:hover {
  text-decoration: none;
  color: #f47500 !important;
}
.extra-content .container a {
  text-decoration: underline;
  color: black;
}
.extra-content .container a:hover {
  text-decoration: none;
  color: #f47500 !important;
}
