@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.btn {
  background: linear-gradient(89.55deg, #444546 -8.59%, #a7a9ac 18.42%, #ffffff 45.92%, #a7a9ac 65.38%, #444546 108.2%);
  padding: 11px 56px;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  color: black !important;
  width: fit-content;
}
.btn:hover {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2509803922);
}

.underline-anim {
  position: relative;
}
.underline-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #e61326;
  transition: width 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.underline-anim:hover::after, .underline-anim.active::after {
  width: 100%;
}
.underline-anim.active:hover::after {
  width: 100%;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: black;
}
.main-header .current_page_item a {
  color: white !important;
}
.main-header .current_page_item .underline-anim {
  position: relative;
}
.main-header .current_page_item .underline-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #e61326;
  transition: width 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
  width: 100%;
}
.main-header .header-icon.mobile {
  display: none;
}
@media (max-width: 768px) {
  .main-header .header-icon.mobile {
    display: block;
  }
}
.main-header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
}
@media (max-width: 768px) {
  .main-header .hamburger-menu {
    display: flex;
  }
}
.main-header .nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10%;
}
@media (max-width: 768px) {
  .main-header .nav-menu {
    display: none;
  }
}
.main-header .nav-menu .header-icon {
  max-height: 137px;
  width: auto;
}
.main-header .nav-menu .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10%;
}
.main-header .nav-menu .navigation .navbar-menu {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 40px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.main-header .nav-menu .navigation .navbar-menu li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #a7a9ac;
}
.main-header .nav-menu .navigation .navbar-menu li a:hover {
  color: white;
}

.side-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: black;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .side-menu {
    display: flex;
  }
}
.side-menu.active {
  max-height: 600px;
  opacity: 1;
  overflow: visible;
}
.side-menu .side-menu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.side-menu .side-menu-content .navbar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.side-menu .side-menu-content .navbar-menu li {
  display: flex;
  align-items: center;
  height: fit-content;
}
.side-menu .side-menu-content .navbar-menu li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #a7a9ac;
  transition: color 0.2s, border-bottom 0.2s;
}

.companies-section {
  padding: 24px 5% 0px 5%;
  background-color: rgba(167, 169, 172, 0.1019607843);
}
.companies-section .companies-container {
  margin: 0 auto;
}
.companies-section .companies-container .section-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.companies-section .companies-container .companies-swiper-container {
  position: relative;
  overflow: hidden;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper {
  overflow: hidden !important;
  margin: 0 60px;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card {
  background: transparent;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  color: inherit;
  text-decoration: none;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card:hover {
  transform: scale(1.05);
  color: inherit;
  text-decoration: none;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card .company-image {
  width: 100%;
  max-width: 180px;
  height: 120px;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .companies-section .companies-container .companies-swiper-container .companies-swiper .company-card .company-image {
    max-width: 150px;
    height: 100px;
  }
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card .company-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.companies-section .companies-container .companies-swiper-container .companies-swiper .company-card .company-image:hover img {
  filter: grayscale(0%);
}
.companies-section .companies-container .companies-swiper-container .swiper-button-next,
.companies-section .companies-container .companies-swiper-container .swiper-button-prev {
  color: black;
  transition: all 0.3s ease;
  width: fit-content;
}
.companies-section .companies-container .companies-swiper-container .swiper-button-next:after,
.companies-section .companies-container .companies-swiper-container .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}
.companies-section .companies-container .companies-swiper-container .swiper-button-next {
  right: 0;
}
@media (max-width: 768px) {
  .companies-section .companies-container .companies-swiper-container .swiper-button-next {
    right: 5px;
  }
}
.companies-section .companies-container .companies-swiper-container .swiper-button-prev {
  left: 0;
}
@media (max-width: 768px) {
  .companies-section .companies-container .companies-swiper-container .swiper-button-prev {
    left: 5px;
  }
}
.companies-section .companies-container .single-company {
  display: flex;
  justify-content: center;
}
.companies-section .companies-container .single-company .company-card {
  background: transparent;
  border: none;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.companies-section .companies-container .single-company .company-card:hover {
  transform: scale(1.05);
  color: inherit;
  text-decoration: none;
}
.companies-section .companies-container .single-company .company-card:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.companies-section .companies-container .single-company .company-card .company-image {
  width: 100%;
  max-width: 250px;
  height: 150px;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .companies-section .companies-container .single-company .company-card .company-image {
    max-width: 200px;
    height: 120px;
  }
}
.companies-section .companies-container .single-company .company-card .company-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.documents-section {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .documents-section {
    gap: 88px;
  }
}
.documents-section .section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 5;
  padding: 100px 5%;
}
@media (max-width: 768px) {
  .documents-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 5%;
  }
}
.documents-section .section-header .btn-more-info {
  background-color: black !important;
  z-index: 5;
}
@media (max-width: 768px) {
  .documents-section .section-header .btn-more-info {
    order: 1;
  }
}
.documents-section .section-header .section-title-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 65%;
  z-index: 5;
}
@media (max-width: 768px) {
  .documents-section .section-header .section-title-container {
    width: 100%;
  }
}
.documents-section .section-header .section-title-container .section-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .documents-section .section-header .section-title-container .section-title {
    font-weight: 700;
    font-style: Italic;
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
  }
}
.documents-section .section-header .section-title-container .section-subtitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: right;
}
@media (max-width: 768px) {
  .documents-section .section-header .section-title-container .section-subtitle {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
    text-align: right;
  }
}
.documents-section .section-header .section-title-container .section-description {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: right;
  margin-top: 20px;
}
.documents-section .documents-swiper-container {
  position: relative;
  overflow: hidden;
  z-index: 6;
  padding: 0 5% 100px 5%;
  background-color: white;
}
@media (max-width: 768px) {
  .documents-section .documents-swiper-container {
    padding: 0 5% 80px 5%;
  }
}
.documents-section .documents-swiper-container .documents-swiper {
  box-sizing: border-box;
  overflow: hidden;
  width: calc(100% - 100px);
}
.documents-section .documents-swiper-container .documents-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.documents-section .documents-swiper-container .documents-swiper .document-card {
  background: white;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 111px;
  width: 100%;
}
.documents-section .documents-swiper-container .documents-swiper .document-card:hover {
  background: rgba(47, 91, 152, 0.0392156863);
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #e61326;
  border-radius: 4px;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-icon svg {
  width: 31px;
  height: 31px;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content {
  display: flex;
  flex-direction: column;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content .document-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content .download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  background: transparent;
  color: #a7a9ac;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content .download-link:hover {
  background: #f8f9fa;
  border-color: #999;
  border-bottom: 1px solid #999;
  color: #333;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content .download-link .download-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.documents-section .documents-swiper-container .documents-swiper .document-card .document-content .download-link:hover .download-icon {
  transform: translateY(1px);
}
.documents-section .documents-swiper-container .swiper-button-next,
.documents-section .documents-swiper-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #da1c23;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  top: 57px !important;
}
.documents-section .documents-swiper-container .swiper-button-next:after,
.documents-section .documents-swiper-container .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 700;
}
.documents-section .documents-swiper-container .swiper-button-next:hover,
.documents-section .documents-swiper-container .swiper-button-prev:hover {
  background: #da1c23;
  color: white;
  border-color: #da1c23;
  box-shadow: 0 4px 12px rgba(215, 31, 38, 0.3);
}
.documents-section .documents-swiper-container .swiper-button-next {
  right: 5%;
}
.documents-section .documents-swiper-container .swiper-button-prev {
  left: 5%;
}
.documents-section .single-document {
  display: flex;
  justify-content: center;
}
.documents-section .single-document .document-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.documents-section .single-document .document-card .document-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #da1c23;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(215, 31, 38, 0.3);
}
.documents-section .single-document .document-card .document-icon svg {
  width: 32px;
  height: 32px;
}
.documents-section .single-document .document-card .document-content {
  width: 100%;
}
.documents-section .single-document .document-card .document-content .document-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 24px;
}
.documents-section .single-document .document-card .document-content .download-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #da1c23;
  border: none;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.documents-section .single-document .document-card .document-content .download-link:hover {
  background: rgb(172.8048780488, 22.1951219512, 27.743902439);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 31, 38, 0.4);
}
.documents-section .single-document .document-card .document-content .download-link .download-icon {
  width: 16px;
  height: 16px;
}

.footer {
  background: linear-gradient(89.55deg, #444546 -8.59%, #a7a9ac 18.42%, #ffffff 45.92%, #a7a9ac 65.38%, #444546 108.2%);
  color: black;
  padding: 24px 5% 48px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.footer .up {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .up {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .up .col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer .up .col .footer-icon img {
  max-height: 98px;
  width: 100%;
}
.footer .up .col .paragraph {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  max-width: 302px;
}
@media (max-width: 768px) {
  .footer .up .col .paragraph {
    max-width: 100%;
  }
}
.footer .up .col .rrss-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .up .col .rrss-container span {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
}
.footer .up .col .rrss-container .rsss {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.footer .up .col .rrss-container .rsss a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.footer .up .col .rrss-container .rsss a img {
  width: 20px;
  height: 20px;
}
.footer .up .col .title {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.footer .up .col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .up .col ul a {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.footer .up .col ul li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .up .col ul li a {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.footer .up .col ul li span {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.footer .up .col ul li p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.footer .down {
  padding: 12px 0 0 0;
  border-top: 1px solid black;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 135%;
  letter-spacing: 0%;
  text-align: center;
}

.about-us {
  padding: 80px 5% 100px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background-color: rgba(167, 169, 172, 0.1019607843);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .about-us {
    padding: 80px 5%;
  }
  .about-us::before {
    content: "";
    position: absolute;
    left: 0;
    background-image: url("../images/bg-us.png");
    z-index: 0;
    width: 100%;
    height: 695px;
    pointer-events: none;
    bottom: 180px;
    background-position: bottom;
  }
}
.about-us .up {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .about-us .up {
    flex-direction: column;
  }
}
.about-us .up .message {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 70%;
  z-index: 5;
  position: relative;
}
@media (max-width: 768px) {
  .about-us .up .message {
    max-width: 100%;
  }
}
.about-us .up .message .title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-us .up .message .title h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .about-us .up .message .title h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
  }
}
.about-us .up .message .title h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-us .up .message .title h3 {
    font-family: Arial;
    font-weight: 700;
    font-style: Italic;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
}
.about-us .up .message p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1%;
}
.about-us .up a {
  color: white;
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  position: relative;
  z-index: 5;
}

.decorative-rectangles {
  position: absolute;
  width: 306px;
  height: 250px;
  pointer-events: none;
  background-color: transparent;
}
.decorative-rectangles.about-us {
  right: -145px;
  bottom: -120px;
}
@media (max-width: 768px) {
  .decorative-rectangles.about-us {
    top: 0px;
    right: -180px;
  }
}
.decorative-rectangles.documents {
  left: 0px;
  top: 100px;
}
@media (max-width: 768px) {
  .decorative-rectangles.documents {
    left: -150px;
    top: 0px;
  }
}
.decorative-rectangles.documents .rectangle {
  height: 177px !important;
}
.decorative-rectangles.news-section-1 {
  top: 150px;
  right: -50px;
}
@media (max-width: 768px) {
  .decorative-rectangles.news-section-1 {
    bottom: 0;
    left: -160px;
    top: auto;
    right: auto;
  }
}
.decorative-rectangles.news-section-2 {
  left: -200px;
  bottom: 50px;
  width: 412px;
  height: 285px;
}
.decorative-rectangles.news-section-2 .rectangle {
  width: 182px;
  height: 220px;
}
.decorative-rectangles.news-section-2 .rectangle.rect-2 {
  animation: drawBlueOpacityBorder 2s ease-out 1.2s forwards;
}
.decorative-rectangles.news-section-2 .rectangle.rect-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  animation: drawRedOpacityBorder 2s ease-out 1.8s forwards;
}
@media (max-width: 768px) {
  .decorative-rectangles.news-section-2 {
    display: none;
  }
}
.decorative-rectangles.stats-rectangles {
  left: -150px;
}
@media (max-width: 768px) {
  .decorative-rectangles.stats-rectangles {
    left: -180px;
    top: -70px;
  }
}
.decorative-rectangles.about-us-rectangles {
  right: -60px;
  top: 70px;
}
@media (max-width: 768px) {
  .decorative-rectangles.about-us-rectangles {
    right: -180px;
    top: 0;
  }
}
.decorative-rectangles.contact-rectangles {
  right: -80px;
  top: 0;
}
@media (max-width: 768px) {
  .decorative-rectangles.contact-rectangles {
    right: -180px;
    top: 20px;
  }
}
.decorative-rectangles.items-rectangles {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 547px;
  height: 378px;
}
@media (max-width: 1200px) {
  .decorative-rectangles.items-rectangles {
    width: 306px;
    height: 250px;
  }
}
.decorative-rectangles.items-rectangles .rectangle {
  width: 241px;
  height: 292px;
}
@media (max-width: 768px) {
  .decorative-rectangles.items-rectangles .rectangle {
    width: 135px;
    height: 165px;
  }
}
.decorative-rectangles.items-preview-1 {
  top: -55px;
  left: -20%;
}
@media (max-width: 768px) {
  .decorative-rectangles.items-preview-1 {
    left: -200px;
  }
}
.decorative-rectangles.items-preview-2 {
  bottom: -100px;
  left: 35%;
  transform: translateX(-35%);
}
@media (max-width: 768px) {
  .decorative-rectangles.items-preview-2 {
    right: -100px;
    left: auto;
    transform: none;
  }
}
.decorative-rectangles .rectangle {
  position: absolute;
  width: 135px;
  height: 165px;
  opacity: 0;
  border: 16px solid transparent;
}
.decorative-rectangles .rectangle.rect-1 {
  top: 0px;
  left: 0;
  z-index: 1;
}
.decorative-rectangles .rectangle.rect-2 {
  top: 12px;
  right: 0px;
  z-index: 3;
}
.decorative-rectangles .rectangle.rect-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes drawYellowBorder {
  0% {
    opacity: 1;
    border: 16px solid transparent;
  }
  25% {
    border-top: 16px solid #fff200;
    border-right: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  50% {
    border-top: 16px solid #fff200;
    border-right: 16px solid #fff200;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  75% {
    border-top: 16px solid #fff200;
    border-right: 16px solid #fff200;
    border-bottom: 16px solid #fff200;
    border-left: 16px solid transparent;
  }
  100% {
    border: 16px solid #fff200;
    opacity: 1;
  }
}
@keyframes drawBlueBorder {
  0% {
    opacity: 1;
    border: 16px solid transparent;
  }
  25% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  50% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid #2f5b98;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  75% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid #2f5b98;
    border-bottom: 16px solid #2f5b98;
    border-left: 16px solid transparent;
  }
  100% {
    border: 16px solid #2f5b98;
    opacity: 1;
  }
}
@keyframes drawBlueOpacityBorder {
  0% {
    opacity: 1;
    border: 16px solid transparent;
  }
  25% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  50% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid #2f5b98;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  75% {
    border-top: 16px solid #2f5b98;
    border-right: 16px solid #2f5b98;
    border-bottom: 16px solid #2f5b98;
    border-left: 16px solid transparent;
  }
  100% {
    border: 16px solid #2f5b98;
    opacity: 1;
  }
}
@keyframes drawRedBorder {
  0% {
    opacity: 1;
    border: 16px solid transparent;
  }
  25% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  50% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid #da1c23;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  75% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid #da1c23;
    border-bottom: 16px solid #da1c23;
    border-left: 16px solid transparent;
  }
  100% {
    border: 16px solid #da1c23;
    opacity: 1;
  }
}
@keyframes drawRedOpacityBorder {
  0% {
    opacity: 1;
    border: 16px solid transparent;
  }
  25% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  50% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid #da1c23;
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent;
  }
  75% {
    border-top: 16px solid #da1c23;
    border-right: 16px solid #da1c23;
    border-bottom: 16px solid #da1c23;
    border-left: 16px solid transparent;
  }
  100% {
    border: 16px solid #da1c23;
    opacity: 1;
  }
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 16px;
  z-index: 5;
}
.principles-grid .div1 {
  grid-area: 1/1/5/4;
}
.principles-grid .div2 {
  grid-area: 5/1/9/4;
}
.principles-grid .div3 {
  grid-area: 1/4/4/8;
}
.principles-grid .div4 {
  grid-area: 4/4/9/6;
}
.principles-grid .div5 {
  grid-area: 4/6/9/8;
}
.principles-grid .principle-card {
  background: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(16, 62, 97, 0.1019607843);
  justify-content: space-between;
  gap: 40px;
}
.principles-grid .principle-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.principles-grid .principle-card .principle-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(89.55deg, #444546 -8.59%, #a7a9ac 18.42%, #ffffff 45.92%, #a7a9ac 65.38%, #444546 108.2%);
  display: flex;
}
.principles-grid .principle-card .principle-icon img {
  max-width: 35px;
  padding: 4px;
}
.principles-grid .principle-card .content .principle-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.principles-grid .principle-card .content .principle-content {
  margin-top: 20px;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1%;
}
@media (max-width: 1024px) {
  .principles-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .principles-grid .div1,
  .principles-grid .div2,
  .principles-grid .div3,
  .principles-grid .div4,
  .principles-grid .div5 {
    grid-area: unset !important;
  }
}
@media (max-width: 768px) {
  .principles-grid {
    gap: 16px;
  }
  .principles-grid .principle-card {
    min-height: unset;
    padding: 18px 14px 12px 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
    cursor: pointer;
    transition: box-shadow 0.3s, border 0.2s;
    border: 1.5px solid #e5e5e5;
    overflow: hidden;
  }
  .principles-grid .principle-card .principle-title {
    font-size: 1.05rem;
    margin-bottom: 0;
  }
  .principles-grid .principle-card .principle-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 10px;
    transition: max-height 0.3s, opacity 0.3s;
  }
  .principles-grid .principle-card.expanded .principle-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 10px;
    transition: max-height 0.4s, opacity 0.3s;
  }
}

.payments {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .payments::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    width: 100%;
    height: 60%;
    left: auto;
    right: 0;
    bottom: 0;
    top: unset;
    border-radius: 0 0 0 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background-size: cover;
    clip-path: polygon(100% 0, 20% 100%, 100% 100%);
    z-index: 0;
  }
}
.payments .information {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 5%;
  background: linear-gradient(89.76deg, #444546 -15.19%, #a7a9ac 27.01%, #ffffff 53.99%, #a7a9ac 73.31%, #444546 99.93%);
}
@media (max-width: 768px) {
  .payments .information {
    padding: 16px 5% 213px 5%;
  }
}
.payments .information .text {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .payments .information .text {
    width: 100%;
  }
}
.payments .information .text h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .payments .information .text h3 {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
  }
}
.payments .information .text h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .payments .information .text h2 {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
  }
}
.payments .information .text p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .payments .information .text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.4%;
  }
}
.payments .information a {
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  width: fit-content;
}
.payments .diamond {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .payments .diamond {
    display: none;
  }
}
.payments .diamond::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: black;
  z-index: 0;
}
.payments .diamond .diamond-shape {
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 0;
  width: fit-content;
}
.payments .diamond .left,
.payments .diamond .right {
  position: relative;
  width: 50%;
  aspect-ratio: 1/1;
}
.payments .diamond .left {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.payments .diamond .right {
  background: #d71f26;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero-banner {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: black;
}
.hero-banner .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
}
.hero-banner .hero-action-panel {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(16px);
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
}
@media (max-width: 768px) {
  .hero-banner .hero-action-panel {
    height: 30%;
  }
}
.hero-banner .hero-action-panel .action-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 46px;
}
@media (max-width: 768px) {
  .hero-banner .hero-action-panel .action-content {
    flex-direction: column;
  }
  .hero-banner .hero-action-panel .action-content .desktop {
    display: none;
  }
}
.hero-banner .hero-action-panel .action-content .navigation {
  display: none;
}
@media (max-width: 768px) {
  .hero-banner .hero-action-panel .action-content .navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.hero-banner .hero-action-panel .action-content .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero-banner .hero-action-panel .action-content .content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-banner .hero-action-panel .action-content .content .down {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}
@media (max-width: 768px) {
  .hero-banner .hero-action-panel .action-content .content .down {
    width: 100%;
  }
}
.hero-banner .hero-action-panel .action-content p {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.4px;
}
.hero-banner .hero-action-panel .hero-nav-btn {
  width: 24px;
  height: 24px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: transparent;
}
.hero-banner .hero-action-panel .hero-nav-btn:hover {
  transform: scale(1.1);
}
.hero-banner .hero-action-panel .hero-nav-btn:active {
  transform: scale(0.95);
}
.hero-banner .hero-action-panel .hero-nav-btn svg {
  width: 24px;
  height: 24px;
}
.hero-banner .hero-swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-banner .hero-swiper-container .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 0px solid #808080;
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-background .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content {
    padding: 40px 20px;
    align-items: flex-start;
    padding-top: 80px;
  }
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container {
  transform: translateX(-50px);
  opacity: 0;
  animation: slideInContent 1s ease-out 0.3s forwards;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container {
    max-width: 100%;
    transform: translateY(30px);
    animation: slideInContentMobile 1s ease-out 0.3s forwards;
  }
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-subtitle {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}
@media (max-width: 768px) {
  .hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-subtitle {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
  }
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 70px;
  line-height: 81px;
  letter-spacing: -3%;
  color: white;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}
@media (max-width: 768px) {
  .hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -3%;
  }
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide .slide-content .content-container .slide-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide.swiper-slide-active .slide-background {
  transform: scale(1);
}
.hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide.swiper-slide-prev .slide-background, .hero-banner .hero-swiper-container .hero-swiper .swiper-wrapper .hero-slide.swiper-slide-next .slide-background {
  transform: scale(1);
}

@keyframes slideInContent {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInContentMobile {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
.hero-banner .swiper-slide .slide-content .content-container {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-banner .swiper-slide .slide-background {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-banner .swiper-slide:not(.slide-exit):not(.slide-enter):not(.slide-enter-active) .slide-background {
  transform: scale(1);
  border: 0px solid transparent;
  border-radius: 0px;
}
.hero-banner .swiper-slide:not(.slide-exit):not(.slide-enter):not(.slide-enter-active) .slide-background .slide-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.hero-banner .swiper-slide:not(.slide-exit):not(.slide-enter):not(.slide-enter-active) .content-container {
  transform: scale(1) translateX(0);
  opacity: 1;
}
.hero-banner .swiper-slide.slide-exit .slide-background {
  transform: scale(0.75) !important;
  border: 20px solid #666666 !important;
  border-radius: 20px !important;
}
.hero-banner .swiper-slide.slide-exit .slide-background .slide-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.hero-banner .swiper-slide.slide-exit .content-container {
  transform: scale(0.75) translateX(-80px) !important;
  opacity: 0.2 !important;
}
.hero-banner .swiper-slide.slide-enter .slide-background {
  transform: scale(0.8) !important;
  border: 15px solid #888888 !important;
  border-radius: 15px !important;
}
.hero-banner .swiper-slide.slide-enter .slide-background .slide-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.hero-banner .swiper-slide.slide-enter .content-container {
  transform: scale(0.8) translateX(60px) !important;
  opacity: 0.4 !important;
}
.hero-banner .swiper-slide.slide-enter-active .slide-background {
  transform: scale(1) !important;
  border: 0px solid transparent !important;
  border-radius: 0px !important;
}
.hero-banner .swiper-slide.slide-enter-active .slide-background .slide-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.hero-banner .swiper-slide.slide-enter-active .content-container {
  transform: scale(1) translateX(0) !important;
  opacity: 1 !important;
}
.hero-banner .hero-pagination {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  gap: 12px;
  z-index: 200;
}
@media (max-width: 768px) {
  .hero-banner .hero-pagination {
    bottom: 30%;
  }
}
.hero-banner .hero-pagination .pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.hero-banner .hero-pagination .pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.hero-banner .hero-pagination .pagination-bullet.active {
  background: white;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.2);
}
.hero-banner .hero-corner-logo {
  position: absolute;
  bottom: 22%;
  right: 20px;
  z-index: 150;
}
@media (max-width: 768px) {
  .hero-banner .hero-corner-logo {
    bottom: 32%;
    right: 15px;
  }
}
.hero-banner .hero-corner-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .hero-banner .hero-corner-logo img {
    height: 45px;
  }
}

.contact-section {
  position: relative;
  padding: 106px 5%;
  background: white;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  background-image: url("../images/bg-contact.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  transform: translateY(-50%);
  z-index: 0;
  height: 100%;
  width: 35%;
  max-width: 100vw;
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-section::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    right: -10%;
    transform: none;
  }
}
.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 50%;
  background-image: url("../images/bg-contact-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 768px) {
  .contact-section::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 5% 48px 5%;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact-section .contact-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-section .contact-info {
    gap: 24px;
  }
}
.contact-section .contact-info .info-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-header {
    gap: 4px;
  }
}
.contact-section .contact-info .info-header .contact-logo {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-header .contact-logo {
    margin-bottom: 16px;
  }
}
.contact-section .contact-info .info-header .contact-logo img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-header .contact-logo img {
    height: 50px;
  }
}
.contact-section .contact-info .info-header .section-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-header .section-title {
    font-family: Arial;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 21.33px;
    letter-spacing: 0%;
  }
}
.contact-section .contact-info .info-header .section-subtitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .contact-section .contact-info .info-header .section-subtitle {
    font-weight: 700;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -0.4px;
  }
}
.contact-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.contact-section .contact-info .contact-item:last-child {
  border-bottom: none;
}
.contact-section .contact-info .contact-item:hover {
  transform: translateX(8px);
}
.contact-section .contact-info .contact-item:hover .contact-icon {
  background: #da1c23;
  color: white;
  transform: scale(1.1);
}
.contact-section .contact-info .contact-item .contact-icon {
  min-width: 56px;
  height: 56px;
  background: #f8f9fa;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #da1c23;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.contact-section .contact-info .contact-item .contact-text {
  flex: 1;
}
.contact-section .contact-info .contact-item .contact-text h4 {
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.contact-section .contact-info .contact-item .contact-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.contact-section .contact-info .btn-waze {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #33ccff;
  width: fit-content;
  padding: 13px 56px;
  margin-top: 53px;
}
@media (max-width: 768px) {
  .contact-section .contact-info .btn-waze {
    margin-top: 24px;
  }
}
.contact-section .contact-info .btn-waze span {
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
}
.contact-section .contact-info .btn-waze img {
  width: 20px;
  height: 20px;
}
.contact-section .contact-form-container {
  background: white;
  padding: 32px;
  box-shadow: 0px 0px 0px 1px rgba(18, 105, 63, 0.0784313725);
  box-shadow: 0px 1px 2px 0px rgba(167, 185, 164, 0.1607843137);
  box-shadow: 0px 24px 32px -12px rgba(54, 74, 54, 0.2392156863);
  border: 1px solid #e9ecef;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 4px solid #da1c23;
  gap: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container {
    gap: 20px;
  }
}
.contact-section .contact-form-container h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -1%;
  color: #1d1f1e;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container h3 {
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 36px;
    letter-spacing: -1%;
  }
}
.contact-section .contact-form-container .contact-form .form-group {
  position: relative;
  min-height: 100px;
}
.contact-section .contact-form-container .contact-form .form-group:last-of-type {
  margin-bottom: 0;
  min-height: 80px;
}
.contact-section .contact-form-container .contact-form .form-group label {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.4%;
  vertical-align: middle;
  color: #a7a9ac;
  margin-bottom: 4px;
  margin-left: 16px;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container .contact-form .form-group label {
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: -0.4%;
    vertical-align: middle;
  }
}
.contact-section .contact-form-container .contact-form .input-container {
  position: relative;
}
.contact-section .contact-form-container .contact-form .input-container input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: white;
  transition: all 0.3s ease;
  outline: none;
  font-family: Figtree;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  color: black;
}
.contact-section .contact-form-container .contact-form .input-container input:focus {
  border-color: #a7a9ac;
  box-shadow: 0 0 0 3px rgba(167, 169, 172, 0.1);
}
.contact-section .contact-form-container .contact-form .input-container input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-section .contact-form-container .contact-form .input-container .input-underline {
  display: none;
}
.contact-section .contact-form-container .contact-form .select-container {
  position: relative;
}
.contact-section .contact-form-container .contact-form .select-container select {
  width: 100%;
  padding: 10px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: white;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  font-family: Figtree;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  color: black;
}
.contact-section .contact-form-container .contact-form .select-container select:focus {
  border-color: #a7a9ac;
  box-shadow: 0 0 0 3px rgba(167, 169, 172, 0.1);
}
.contact-section .contact-form-container .contact-form .select-container select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-section .contact-form-container .contact-form .select-container select option {
  padding: 12px;
  font-size: 14px;
  background: white;
  color: #1a1a1a;
}
.contact-section .contact-form-container .contact-form .select-container .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
  color: black;
}
.contact-section .contact-form-container .contact-form .select-container .select-arrow svg {
  width: 10px;
  height: 6px;
}
.contact-section .contact-form-container .contact-form .select-container:hover .select-arrow {
  color: #666666;
}
.contact-section .contact-form-container .contact-form .select-container select:focus ~ .select-arrow {
  color: #a7a9ac;
  transform: translateY(-50%) rotate(180deg);
}
.contact-section .contact-form-container .contact-form .textarea-container {
  position: relative;
}
.contact-section .contact-form-container .contact-form .textarea-container textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: white;
  resize: none;
  min-height: 80px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  font-family: Figtree;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  color: black;
}
.contact-section .contact-form-container .contact-form .textarea-container textarea:focus {
  border-color: #a7a9ac;
  box-shadow: 0 0 0 3px rgba(167, 169, 172, 0.1);
}
.contact-section .contact-form-container .contact-form .textarea-container textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-section .contact-form-container .contact-form .textarea-container .input-underline {
  display: none;
}
.contact-section .contact-form-container .contact-form .form-group:has(.textarea-container) {
  min-height: 80px;
}
.contact-section .contact-form-container .contact-form .submit-btn {
  width: 100%;
  background: linear-gradient(89.55deg, #444546 -8.59%, #a7a9ac 18.42%, #ffffff 45.92%, #a7a9ac 65.38%, #444546 108.2%);
  color: black;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.contact-section .contact-form-container .contact-form .submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-form-container .contact-form .submit-btn:active {
  transform: translateY(0);
}
.contact-section .contact-form-container .contact-form .submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.contact-section .contact-form-container .contact-form .submit-btn .btn-text {
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.contact-section .contact-form-container .contact-form .submit-btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.contact-section .contact-form-container .contact-form .submit-btn .btn-loader .loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-section .contact-form-container .contact-form .submit-btn.loading .btn-text {
  opacity: 0;
}
.contact-section .contact-form-container .contact-form .submit-btn.loading .btn-loader {
  opacity: 1;
}
.contact-section .contact-form-container .contact-form .error-message {
  display: block;
  color: #dc3545;
  font-size: 14px;
  line-height: 20px;
  margin-top: 6px;
  min-height: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.contact-section .contact-form-container .contact-form .error-message.show {
  opacity: 1;
  visibility: visible;
}
.contact-section .contact-form-container .contact-form .error-message:empty::after {
  content: " ";
}
.contact-section .contact-form-container .form-messages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 24px;
}
.contact-section .contact-form-container .form-messages.show {
  opacity: 1;
  visibility: visible;
}
.contact-section .contact-form-container .form-messages .message {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .contact-section .contact-form-container .form-messages .message {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}
.contact-section .contact-form-container .form-messages .message .message-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-form-container .form-messages .message .message-content h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-section .contact-form-container .form-messages .message .message-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.contact-section .contact-form-container .form-messages .message.success-msg {
  border-left: 4px solid #28a745;
}
.contact-section .contact-form-container .form-messages .message.success-msg .message-icon {
  background: #d4edda;
  color: #155724;
}
.contact-section .contact-form-container .form-messages .message.success-msg h4 {
  color: #155724;
}
.contact-section .contact-form-container .form-messages .message.error-msg {
  border-left: 4px solid #dc3545;
}
.contact-section .contact-form-container .form-messages .message.error-msg .message-icon {
  background: #f8d7da;
  color: #721c24;
}
.contact-section .contact-form-container .form-messages .message.error-msg h4 {
  color: #721c24;
}
.contact-section .contact-form-container .form-messages.show .message {
  transform: scale(1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}
.contact-section .form-group {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.contact-section .form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-section .form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-section .form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-section .form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.contact-section .form-group:nth-child(5) {
  animation-delay: 0.5s;
}
.contact-section .form-group:nth-child(6) {
  animation-delay: 0.6s;
}

.contact-form .input-container.focused .input-underline,
.contact-form .textarea-container.focused .input-underline,
.contact-form .select-container.focused .input-underline {
  animation: expandLine 0.3s ease-out forwards;
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.error-message.show {
  animation: slideInError 0.3s ease-out forwards;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-messages.show {
  animation: showMessages 0.4s ease-out forwards;
}
.form-messages.show .message {
  animation: messageAppear 0.5s ease-out 0.1s forwards;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

@keyframes showMessages {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}
@keyframes messageAppear {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.contact-item:hover {
  animation: hoverSlide 0.3s ease-out forwards;
}

@keyframes hoverSlide {
  to {
    transform: translateX(8px);
  }
}
@media (max-width: 768px) {
  .contact-section .contact-info {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
  }
  .contact-section .contact-form-container {
    animation: slideInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
  }
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form button:focus {
  outline: 2px solid #da1c23;
  outline-offset: 2px;
}
.contact-form .checkbox-label:focus-within .checkbox-custom {
  box-shadow: 0 0 0 2px rgba(215, 31, 38, 0.2);
}

.news-section {
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  position: relative;
  background-color: rgba(167, 169, 172, 0.1019607843);
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-section {
    padding: 80px 5% 35px 5%;
  }
}
.news-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 50%;
  align-self: center;
  z-index: 5;
}
@media (max-width: 768px) {
  .news-section .section-header {
    width: 100%;
  }
}
.news-section .section-header .section-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .news-section .section-header .section-title {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
  }
}
.news-section .section-header .section-subtitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
}
@media (max-width: 768px) {
  .news-section .section-header .section-subtitle {
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -0.4px;
  }
}
.news-section .news-swiper-container {
  z-index: 5;
}
.news-section .news-swiper-container .news-swiper-controls {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  height: fit-content;
}
@media (max-width: 768px) {
  .news-section .news-swiper-container .news-swiper-controls {
    justify-content: center;
  }
}
.news-section .news-swiper-container .swiper-button-next,
.news-section .news-swiper-container .swiper-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #da1c23;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-section .news-swiper-container .swiper-button-next:after,
.news-section .news-swiper-container .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 700;
}
.news-section .news-swiper-container .swiper-button-next:hover,
.news-section .news-swiper-container .swiper-button-prev:hover {
  background: #da1c23;
  color: #fff;
  border-color: #da1c23;
  box-shadow: 0 4px 12px rgba(215, 31, 38, 0.3);
}
.news-section .news-swiper-container .news-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.news-section .news-swiper-container .news-swiper .news-card {
  min-height: 420px;
  height: 100%;
  position: relative;
  background: #fff;
  border: 1px solid rgba(16, 62, 97, 0.1019607843);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.news-section .news-swiper-container .news-swiper .news-card .news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.news-section .news-swiper-container .news-swiper .news-card:hover .news-overlay, .news-section .news-swiper-container .news-swiper .news-card.show-overlay .news-overlay {
  opacity: 1;
  pointer-events: auto;
}
.news-section .news-swiper-container .news-swiper .news-card img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  display: block;
  aspect-ratio: 2/1;
  max-height: 300px;
  height: 100%;
  width: 100%;
}
.news-section .news-swiper-container .news-swiper .news-card .news-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-section .news-swiper-container .news-swiper .news-card .news-content .news-date {
  color: #103e61;
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.news-section .news-swiper-container .news-swiper .news-card .news-content .news-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 21.3px;
  letter-spacing: -3%;
  color: black;
}
.news-section .news-swiper-container .news-swiper .news-card .news-content .news-btn {
  display: none;
}
@media (hover: none) and (pointer: coarse) {
  .news-section .news-swiper-container .news-swiper .news-card .news-content .news-btn .news-card .news-overlay {
    transition: opacity 0.3s;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  background-size: cover;
  padding: 0 5%;
}
.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 60%, rgba(0, 0, 0, 0.82) 100%);
}
.banner .overlay.light {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.banner .content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.banner .content .back {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.banner .content .back img {
  width: 24px;
  height: 24px;
}
.banner .content .back span {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}
.banner .content .route {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.banner .content .route .parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.banner .content .route .parent span {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: white;
}
.banner .content .route .current {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #da1c23;
}
.banner .content .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.banner .content .info .date,
.banner .content .info .subtitle {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.banner .content .info .title {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
}
.banner .content .info .title.lg {
  font-size: 70px;
  line-height: 81px;
  letter-spacing: -3%;
}
@media (max-width: 768px) {
  .banner .content .info .title.lg {
    font-size: 37px;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
  }
}

.text-container {
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
}
.text-container .content-body {
  max-width: 800px;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1%;
  color: black;
}
.text-container .navigation-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 800px;
}
.text-container .navigation-container .post-nav {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.text-container .navigation-container .post-nav img {
  width: 24px;
  height: 24px;
}
.text-container .navigation-container .post-nav span {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: black;
}

.news-section--grid {
  background-color: rgba(167, 169, 172, 0.1019607843);
  padding: 100px 5%;
  position: relative;
}
.news-section--grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/bg-news.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50%;
  height: 50%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .news-section--grid::before {
    width: 150%;
    height: 150%;
  }
}
.news-section--grid::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 0;
  background-image: url("../images/bg-news-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 0;
  pointer-events: none;
  width: 816px;
  height: 552px;
}
@media (max-width: 900px) {
  .news-section--grid::after {
    display: none;
  }
}
.news-section--grid .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.5rem;
}
@media (max-width: 900px) {
  .news-section--grid .news-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
  }
}
.news-section--grid .news-grid .news-card {
  min-height: 420px;
  height: 100%;
  position: relative;
  background: #fff;
  border: 1px solid rgba(16, 62, 97, 0.1019607843);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}
.news-section--grid .news-grid .news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.news-section--grid .news-grid .news-card .news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.news-section--grid .news-grid .news-card:hover .news-overlay, .news-section--grid .news-grid .news-card.show-overlay .news-overlay {
  opacity: 1;
  pointer-events: auto;
}
.news-section--grid .news-grid .news-card img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  display: block;
  aspect-ratio: 2/1;
  max-height: 300px;
  height: 100%;
  width: 100%;
}
.news-section--grid .news-grid .news-card .news-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  gap: 8px;
}
.news-section--grid .news-grid .news-card .news-content .news-date {
  color: #103e61;
  font-weight: 400;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.news-section--grid .news-grid .news-card .news-content .news-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 21.3px;
  letter-spacing: -3%;
  color: black;
}
.news-section--grid .news-grid .news-card .news-content .news-btn {
  display: none;
}
.news-section--grid .news-load-more-container {
  display: flex;
  justify-content: center;
  grid-column: span 2;
  margin-top: 32px;
}

.history {
  position: relative;
  overflow: hidden;
}
.history .information {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 171px 5%;
  background: linear-gradient(89.76deg, #444546 -15.19%, #a7a9ac 27.01%, #ffffff 53.99%, #a7a9ac 73.31%, #444546 99.93%);
}
@media (max-width: 1140px) {
  .history .information {
    padding: 80px 5% 24px 5%;
    background: #f6f6f7;
  }
}
.history .information .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1140px) {
  .history .information .text {
    width: 100%;
  }
}
.history .information .text h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .history .information .text h3 {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
  }
}
.history .information .text h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
}
@media (max-width: 768px) {
  .history .information .text h2 {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
  }
}
.history .information .text p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .history .information .text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.4%;
  }
}
.history .diamond {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1140px) {
  .history .diamond {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90.21deg, #f6f6f7 1.02%, #ffffff 6.87%, #a7a9ac 53.62%, #444546 108.17%);
  }
}
.history .diamond .diamond-shape {
  position: relative;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media (max-width: 1140px) {
  .history .diamond .diamond-shape {
    height: 500px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .history .diamond .diamond-shape {
    height: 300px;
  }
}
.history .diamond .left,
.history .diamond .right {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 1140px) {
  .history .diamond .left,
  .history .diamond .right {
    position: relative;
  }
}
.history .diamond .left {
  clip-path: polygon(50% 0, 0 50%, 50% 100%);
}
@media (max-width: 1140px) {
  .history .diamond .left {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
.history .diamond .right {
  background: #d71f26;
  clip-path: polygon(50% 0, 50% 100%, 100% 50%);
}
@media (max-width: 1140px) {
  .history .diamond .right {
    clip-path: polygon(0% 0, 0% 100%, 100% 50%);
  }
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-color: white;
  padding: 100px 5%;
  color: black;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stats {
    padding: 80px 5%;
    gap: 48px;
  }
}
.stats .up {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  position: relative;
  z-index: 5;
}
.stats .up h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  z-index: 5;
}
@media (max-width: 768px) {
  .stats .up h3 {
    font-style: Italic;
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
  }
}
.stats .up h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: right;
  z-index: 5;
}
@media (max-width: 768px) {
  .stats .up h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 44px;
    letter-spacing: -0.4px;
    text-align: right;
  }
}
.stats .stats-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 5;
}
@media (max-width: 768px) {
  .stats .stats-container {
    flex-wrap: nowrap;
    gap: 64px;
    flex-direction: column;
  }
}
.stats .stats-container .stat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 33%;
  min-width: 340px;
}
@media (max-width: 768px) {
  .stats .stats-container .stat-card {
    width: 100%;
    min-width: none;
    gap: 0;
  }
}
.stats .stats-container .stat-card .number {
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  line-height: 60px;
  letter-spacing: -3%;
  text-align: center;
}
@media (max-width: 768px) {
  .stats .stats-container .stat-card .number {
    font-weight: 400;
    font-size: 37px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
  }
}
.stats .stats-container .stat-card .label {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.4%;
  text-align: center;
}
@media (max-width: 768px) {
  .stats .stats-container .stat-card .label {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -0.4%;
    text-align: center;
  }
}

.select-us {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: white;
  padding: 100px 5%;
}
@media (max-width: 768px) {
  .select-us {
    padding: 80px 5%;
    gap: 24px;
  }
}
.select-us .up {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.select-us .up h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .select-us .up h3 {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
  }
}
.select-us .up h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
}
@media (max-width: 768px) {
  .select-us .up h2 {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
    text-align: center;
  }
}
.select-us .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 40px;
}
.select-us .cards .card:nth-child(1) {
  grid-area: 1/1/2/3;
}
.select-us .cards .card:nth-child(2) {
  grid-area: 1/3/2/5;
}
.select-us .cards .card:nth-child(3) {
  grid-area: 1/5/2/7;
}
.select-us .cards .card:nth-child(4) {
  grid-area: 2/1/3/4;
}
.select-us .cards .card:nth-child(5) {
  grid-area: 2/4/3/7;
}
@media (max-width: 900px) {
  .select-us .cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .select-us .cards .card {
    grid-area: unset !important;
  }
}
.select-us .cards .card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background-color: rgba(47, 91, 152, 0.0392156863);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 107px;
}
.select-us .cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.select-us .cards .card .title {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
}
.select-us .cards .card .icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(89.55deg, #444546 -8.59%, #a7a9ac 18.42%, #ffffff 45.92%, #a7a9ac 65.38%, #444546 108.2%);
  display: flex;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 5% 0 5%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq {
    gap: 40px;
    padding: 80px 5%;
  }
}
.faq .up {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  z-index: 5;
}
.faq .up h3 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .faq .up h3 {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
  }
}
.faq .up h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq .up h2 {
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
    text-align: center;
  }
}
.faq .more-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 40%;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 768px) {
  .faq .more-info {
    max-width: 100%;
  }
}
.faq .more-info img {
  max-width: 150px;
}
.faq .more-info .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .more-info .text h2 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.faq .more-info .text h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  text-align: center;
}
.faq .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  width: 100%;
  position: relative;
}
@media (max-width: 900px) {
  .faq .items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.faq .items .item {
  background: #fff;
  border: 1px solid rgba(16, 62, 97, 0.1098039216);
  box-shadow: 0px 0px 0px 1px rgba(18, 105, 63, 0.0784313725), 0px 1px 2px 0px rgba(167, 185, 164, 0.1607843137), 0px 24px 32px -12px rgba(54, 74, 54, 0.2392156863);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  z-index: 5;
}
.faq .items .item .item-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4%;
  color: #1d1f1e;
}
.faq .items .item .item-title button.item-toggle {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 200;
  color: #1d1f1e;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
}
.faq .items .item .item-content {
  margin-top: 16px;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  display: none;
  animation: fadeInUp 0.3s;
}
.faq .items .item.open .item-content {
  display: block;
}
.faq .items .item.open .item-toggle span {
  transform: rotate(45deg);
}

.normatividad-documents-section {
  background: #f6f6f7;
  padding: 100px 5%;
  overflow: hidden;
  position: relative;
}
.normatividad-documents-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -10%;
  width: 50%;
  background-image: url("../images/bg-doc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
  height: 100%;
}
@media (max-width: 768px) {
  .normatividad-documents-section::after {
    display: none;
  }
}
@media (max-width: 900px) {
  .normatividad-documents-section {
    padding: 80px 5%;
  }
}
.normatividad-documents-section .normatividad-documents-wrapper {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  min-height: 0;
  position: relative;
}
.normatividad-documents-section .document-preview-container {
  width: 100%;
  background: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
  z-index: 5;
}
@media (max-width: 900px) {
  .normatividad-documents-section .document-preview-container {
    display: none;
  }
}
.normatividad-documents-section .document-preview-container .document-preview-message {
  color: #a7a9ac;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.normatividad-documents-section .document-preview-container .document-preview-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
  display: block;
  background: #f7f7f8;
}
.normatividad-documents-section .normatividad-documents-list-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  z-index: 5;
}
@media (max-width: 900px) {
  .normatividad-documents-section .normatividad-documents-list-container {
    max-width: 100%;
    width: 100%;
    box-shadow: none;
  }
}
.normatividad-documents-section .normatividad-documents-list-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.normatividad-documents-section .normatividad-documents-list-container .section-header h2 {
  font-weight: 700;
  font-style: Italic;
  font-size: 18px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .normatividad-documents-section .normatividad-documents-list-container .section-header h2 {
    font-size: 18px;
    line-height: 21.33px;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
  }
}
.normatividad-documents-section .normatividad-documents-list-container .section-header h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: right;
}
@media (max-width: 768px) {
  .normatividad-documents-section .normatividad-documents-list-container .section-header h3 {
    font-family: Arial;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -0.4px;
    text-align: right;
  }
}
.normatividad-documents-section .normatividad-documents-list-container .section-header p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: right;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list {
  max-height: 555px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
@media (max-width: 900px) {
  .normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list {
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card {
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  overflow: hidden;
  min-height: 111px;
  width: 100%;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card:hover, .normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card.active {
  background: #f3f6fa;
  border-color: #e9ecef;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content {
  display: flex;
  flex-direction: column;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content .document-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content .download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  background: transparent;
  color: #a7a9ac;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content .download-link:hover {
  background: #f8f9fa;
  border-color: #999;
  border-bottom: 1px solid #999;
  color: #333;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content .download-link .download-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-content .download-link:hover .download-icon {
  transform: translateY(1px);
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #e61326;
  border-radius: 4px;
}
.normatividad-documents-section .normatividad-documents-list-container .normatividad-documents-list .normatividad-document-card .document-icon svg {
  width: 31px;
  height: 31px;
}

.document-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
}
.document-popup-overlay.active {
  display: flex;
}
.document-popup-overlay .document-popup-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 95vw;
  width: 95vw;
  max-height: 90vh;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  padding: 0 0 16px 0;
}
@media (min-width: 901px) {
  .document-popup-overlay .document-popup-modal {
    display: none;
  }
}
.document-popup-overlay .document-popup-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #da1c23;
  cursor: pointer;
  z-index: 2;
  font-weight: bold;
  line-height: 1;
  transition: color 0.2s;
}
.document-popup-overlay .document-popup-close:hover {
  color: rgb(172.8048780488, 22.1951219512, 27.743902439);
}
.document-popup-overlay .document-popup-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f5b98;
  padding: 18px 24px 0 24px;
  text-align: left;
}
.document-popup-overlay .document-popup-frame {
  width: 100%;
  height: 60vh;
  min-height: 320px;
  border: none;
  background: #f7f7f8;
  margin-top: 8px;
}
.document-popup-overlay .document-popup-download {
  margin: 16px 24px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #da1c23;
  color: #fff;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.document-popup-overlay .document-popup-download:hover {
  background: rgb(172.8048780488, 22.1951219512, 27.743902439);
  color: #fff;
}
.document-popup-overlay .document-popup-download svg,
.document-popup-overlay .document-popup-download .download-icon {
  color: #fff;
  fill: #fff;
  width: 18px;
  height: 18px;
  transition: color 0.2s, fill 0.2s;
}

body.no-scroll {
  overflow: hidden !important;
}

.about-and-documents {
  position: relative;
}
.about-and-documents::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("../images/bg-us.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  width: 50%;
  height: 100%;
  max-width: 100vw;
  pointer-events: none;
  bottom: 120px;
  background-position: bottom;
}
@media (max-width: 768px) {
  .about-and-documents::before {
    display: none;
  }
}

.about-and-reasons {
  position: relative;
}
.about-and-reasons::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("../images/bg-us.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  width: 40%;
  height: 100%;
  max-width: 100vw;
  pointer-events: none;
  bottom: 30%;
  background-position: bottom;
}
@media (max-width: 768px) {
  .about-and-reasons::before {
    display: none;
  }
}

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