@keyframes bubble {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(100);
  }
}
@keyframes slide-right {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swiper-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(var(--marquee-distance, 0px) * -1), 0, 0);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translate3d(calc(var(--marquee-distance, 0px) * -1), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(15px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}
@keyframes pulseGreen {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.main-page.is-opened {
  overflow: hidden;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  padding: 1.5rem 0;
  transition: all 0.3s ease-in-out;
}
.main-header.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 0;
  animation: slideDownHeader 0.5s ease-out forwards;
}
.main-header .sub-menu {
  display: none;
}
.main-header .btn__warning {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.main-header__branding img {
  max-width: 52px;
  height: auto;
}
.main-header__navigation {
  margin-left: auto;
  margin-right: 3rem;
}
.main-header__navigation .sub-menu {
  position: absolute;
  list-style: none;
  top: 115%;
  left: 50%;
  transform: translate(-50%, 15px);
  background-color: #ffffff;
  padding: 2rem 1.5rem 2rem;
  min-width: 32rem;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.main-header__navigation .arrow-toggle {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #003767;
}
.main-header__navigation .menu-item:hover .arrow, .main-header__navigation .menu-item:focus .arrow {
  border-right: 2px solid #bf5427;
  border-bottom: 2px solid #bf5427;
  transform: translate(0, 0) rotate(-135deg);
}
.main-header__navigation .menu-item:hover a, .main-header__navigation .menu-item:focus a {
  color: #bf5427;
}
.main-header__navigation .menu-item:hover a::after, .main-header__navigation .menu-item:focus a::after {
  width: 100%;
}
.main-header__navigation .menu-item:hover .sub-menu, .main-header__navigation .menu-item:focus .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.main-header__quick-buttons .gptranslate_wrapper {
  line-height: 100%;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options {
  transition: ease-in-out;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options.gt-open {
  top: 140%;
  transform: translate(-100%, 0);
  left: 100%;
  min-width: 15rem;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options a:hover {
  background-color: #eb5830;
  color: #ffffff;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang {
  padding: 1rem 0;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang .gpt_float_switcher-arrow {
  transform: rotate(0) !important;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang .gpt_float_switcher-arrow.gpt_arrow_rotate {
  transform: rotate(-180deg) !important;
}
.main-header__search {
  position: relative;
}
.main-header__search--btn {
  background: transparent;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  font-size: 0;
  transition: background 0.3s ease;
  width: 4.2rem;
  height: 4.2rem;
}
.main-header__search--btn.is-active svg path, .main-header__search--btn:hover svg path, .main-header__search--btn:focus svg path, .main-header__search--btn:active svg path {
  fill: #bf5427;
}
.main-header__search--content {
  position: absolute;
  top: 100%;
  right: 2%;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(0, 0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-header__search--content.is-opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.main-header__search--content .input-search {
  width: calc(100% - 12.6rem);
  padding: 1.2rem 0.5rem;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #003767;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #003767;
  background-color: #ffffff;
}
.main-header__search--content .input-search::-moz-placeholder {
  color: #003767;
}
.main-header__search--content .input-search::placeholder {
  color: #003767;
}
.main-header__search--content .input-search:hover, .main-header__search--content .input-search:focus, .main-header__search--content .input-search:active {
  outline: none;
}
.main-header__search--content .btn {
  height: 100%;
  border: 0;
  box-shadow: none;
  padding: 1.2rem 1.8rem;
}

.menu-item a {
  color: #003767;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 1.5rem 0;
  text-transform: uppercase;
}
.menu-item a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #bf5427;
  transition: width 0.3s ease;
}
.menu-item .sub-menu a {
  display: flex;
  align-items: center;
  color: #003767;
  position: relative;
  padding: 1rem 0;
}
.menu-item .sub-menu a:after {
  width: 0;
  bottom: 5px;
}

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile__toggle.is-active .line {
  width: 3.2rem;
}
.menu-mobile__toggle.is-active .line:nth-child(2) {
  opacity: 0;
}
.menu-mobile__toggle.is-active .line:first-child {
  transform-origin: left top;
  transform: translate(50%, -50%) rotate(45deg);
}
.menu-mobile__toggle.is-active .line:last-child {
  transform-origin: left bottom;
  transform: translate(50%, 50%) rotate(-45deg);
}
.menu-mobile__toggle {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background-color: transparent;
  width: 7rem;
  border: none;
  cursor: pointer;
}
.menu-mobile__toggle .line {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #000000;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.menu-mobile__navigation {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 15vh;
  padding-bottom: 5vh;
  align-items: start;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  transform: translateY(100%);
}
.menu-mobile__navigation.is-opened {
  display: flex;
  animation: slideUpMobileMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.menu-mobile__navigation.is-opened .menu-item,
.menu-mobile__navigation.is-opened .btn {
  opacity: 0;
  animation: fadeUp 0.4s ease-out both;
  margin: 0.5rem 0;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(1) {
  animation-delay: 0.2s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(2) {
  animation-delay: 0.3s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(3) {
  animation-delay: 0.4s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(4) {
  animation-delay: 0.5s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(5) {
  animation-delay: 0.6s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(6) {
  animation-delay: 0.7s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(7) {
  animation-delay: 0.8s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(8) {
  animation-delay: 0.9s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(9) {
  animation-delay: 1s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(10) {
  animation-delay: 1.1s;
}
.menu-mobile__navigation.is-opened.is-closing {
  animation: slideDownMobileMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.menu-mobile__navigation.is-opened.is-closing .menu-item,
.menu-mobile__navigation.is-opened.is-closing .btn {
  animation: none;
  opacity: 1;
}
.menu-mobile__navigation .menu-item {
  position: relative;
}
.menu-mobile__navigation .sub-menu {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
  display: none;
}
.menu-mobile__navigation .arrow-toggle {
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, 0);
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #003767;
}

.main-header__branding, .main-header__search,
.main-header .gptranslate_wrapper,
.main-header .menu-mobile__toggle {
  position: relative;
  z-index: 9999;
}

@media (min-width: 1024px) {
  .main-header__branding img {
    max-width: 72px;
  }
  .main-header__branding a {
    display: inline-block;
  }
  .main-header__branding a img {
    transition: transform 0.3s ease;
  }
  .main-header__branding a:hover img {
    transform: scale(1.05);
  }
  .main-header__navigation .main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }
  .main-header__search--content {
    width: 35%;
  }
  .main-header .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .main-header .menu-item .sub-menu a {
    color: #003767;
  }
  .main-header .menu-item .sub-menu a .arrow-up {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 0.5rem;
    opacity: 0;
    transform: translate(-40%, 100%);
    transition: transform 0.3s ease;
  }
  .main-header .menu-item .sub-menu a:after {
    width: 0;
  }
  .main-header .menu-item .sub-menu a:hover, .main-header .menu-item .sub-menu a:focus {
    color: #bf5427;
  }
  .main-header .menu-item .sub-menu a:hover .arrow-up, .main-header .menu-item .sub-menu a:focus .arrow-up {
    transform: translate(0, 0);
    opacity: 1;
  }
  .main-header .menu-item .sub-menu a:hover::after, .main-header .menu-item .sub-menu a:focus::after {
    width: 100%;
    background-color: #bf5427;
  }
  .main-header .menu-item.active a {
    color: #bf5427;
  }
  .main-header .menu-item.active a::after {
    width: 100%;
  }
  .main-header .menu-item.active .sub-menu a {
    color: #003767;
  }
  .main-header .menu-item.active .sub-menu a::after {
    width: 0;
  }
  .main-header .menu-item.active .sub-menu a:hover {
    color: #bf5427;
  }
  .main-header .menu-item.active .sub-menu a:hover::after {
    width: 100%;
  }
  .main-header .menu-item.active .arrow {
    border-right: 2px solid #bf5427;
    border-bottom: 2px solid #bf5427;
  }
}
@media (max-width: 1023px) {
  .main-header__navigation {
    display: none;
  }
  .main-header__quick-buttons > .btn__gardient {
    display: none;
  }
}
@media (min-width: 1024px) {
  .menu-mobile {
    display: none;
  }
  .menu-mobile__navigation {
    display: none !important;
  }
}
@keyframes slideUpMobileMenu {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDownMobileMenu {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.search-overlay.is-opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes slideDownHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main-footer {
  display: block;
  color: #ffffff;
  background-color: #003767;
}
.main-footer p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
}
.main-footer ul {
  padding-left: 0;
  list-style: none;
}
.main-footer a {
  color: #ffffff;
  text-decoration: none;
}
.main-footer a:hover, .main-footer a:focus {
  color: #d1d1d1;
}
.main-footer__copyright a,
.main-footer__copyright span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
  text-transform: capitalize;
}
.main-footer__branding img {
  max-width: 7.2rem;
  height: auto;
}
.main-footer__title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  text-transform: capitalize;
  color: #d1d1d1;
}
.main-footer .footer-menu li a {
  display: block;
  text-transform: uppercase;
  padding: 0.2rem 0;
  font-weight: 500;
}

/**
 * Slider Block Styles
 */
.swiper-horizontal .slider-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.swiper-horizontal .slider-block .swiper-slide {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-horizontal .slider-block .swiper-slide .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.swiper-horizontal .slider-block .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-horizontal .slider-block .swiper-slide .slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.swiper-horizontal .slider-block .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.swiper-horizontal .slider-block .swiper-slide .slide-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.swiper-horizontal .slider-block .swiper-slide .slide-content p {
  font-size: 1.25rem;
}
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next {
  color: #fff;
}
.swiper-horizontal .swiper-button-prev::after,
.swiper-horizontal .swiper-button-next::after {
  font-size: 24px;
}
.swiper-horizontal .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper-horizontal .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 2rem;
}

.swiper-horizontal .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.swiper-horizontal .swiper-pagination .swiper-pagination-bullet {
  width: 12rem;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 2rem;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.swiper-horizontal .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.swiper-horizontal .swiper-pagination .swiper-pagination-bullet-active span {
  animation: swiper-progress 4s linear forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 4.5rem;
  letter-spacing: -5%;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 120%;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background-color: #bf5427;
  transition: width 0.4s ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #003767;
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus {
  color: #ffffff;
}
.btn:hover::after, .btn:focus::after {
  width: 300%;
}
.btn .icon-arrow {
  position: absolute;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.btn .icon-arrow svg {
  width: 16px;
  height: 16px;
}
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3.5rem;
}
.btn--with-icon .btn-text {
  transition: transform 0.3s ease;
}
.btn--with-icon .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.btn--with-icon .btn-icon svg {
  width: 100%;
  height: auto;
}
.btn--with-icon .btn-icon svg path {
  transition: fill 0.3s ease;
}
.btn--with-icon:hover .btn-text {
  transform: translateX(-5px);
}
.btn--with-icon:hover .btn-icon {
  transform: translateX(5px);
}
.btn__primary::before {
  background-color: #003767;
}
.btn__primary::after {
  background-color: #bf5427;
}
.btn__primary:hover, .btn__primary:focus {
  color: #ffffff;
}
.btn__gardient::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient::after {
  background-color: #003767;
}
.btn__gardient:hover, .btn__gardient:focus {
  color: #ffffff;
}
.btn__gardient:hover svg path, .btn__gardient:focus svg path {
  fill: #ffffff;
}
.btn__gardient--light::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient--light:hover,
.btn__gardient--light shade:focus {
  color: #bf5427;
}
.btn__gardient--light:hover::after,
.btn__gardient--light shade:focus::after {
  background-color: #ffffff;
}
.btn__gardient--light:hover svg path,
.btn__gardient--light shade:focus svg path {
  fill: #bf5427;
  animation: slide-right 0.5s ease;
  transition: animation 1s ease;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 1.5rem !important;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #000000;
}
.form-control::placeholder {
  color: #000000;
}
.form-control:hover, .form-control:focus, .form-control:active {
  box-shadow: none;
  outline: none;
}

.arrow {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(0, -40%) rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.modal-dialog {
  max-width: 80rem;
}
.modal-dialog.modal-dialog-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100% - 60px);
}

.fixed-body {
  overflow: hidden;
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.w-150 {
  width: 15rem;
}

.w-65 {
  width: 65%;
}

.text-orange {
  color: #bf5427;
}

.section-heading {
  color: #003767;
  font-weight: 600;
  letter-spacing: -7%;
  line-height: 120%;
}

.heading-1 {
  font-size: clamp(5.4rem, 6.8vw, 7.2rem);
}

.heading-2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.heading-3 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
}

.heading-4 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.quote-large p {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
}

.project-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.project-loader .spinner {
  width: 4.8rem;
  height: 4.8rem;
  border: 3.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  border-top-color: #003767;
  animation: spin 0.85s linear infinite;
}

.bl-100 {
  color: #003767;
  position: relative;
}
.bl-100.active {
  color: #eb5830;
}
.bl-100.active::after {
  width: 100%;
}
.bl-100:hover {
  color: #eb5830;
}
.bl-100:hover::after {
  width: 100%;
}
.bl-100::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #eb5830;
  transition: width 0.3s ease;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1.5px solid #003767;
  padding-bottom: 0.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.view-details svg {
  transition: transform 0.3s ease;
}
.view-details:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.view-details:hover svg {
  transform: translate(3px, -3px);
}

@media (min-width: 1024px) {
  .w-md-25 {
    width: 25% !important;
  }
}
.swal2-container,
.swal2-popup,
.sweet-alert,
.swal-modal,
.swal-text,
.swal2-html-container {
  font-size: 14px !important;
}

.section-slider {
  padding-top: 0;
  padding-bottom: 0;
}
.section-slider .swiper-wrapper {
  height: 90vh;
}
.section-slider .swiper-slide {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.section-slider .slide-image img {
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.section-slider .slide-content {
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-slider .slide-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
}

.section-why_us .quote-large {
  max-width: 55rem;
}
.section-why_us .text-highlight {
  background-image: linear-gradient(90deg, #ffffff 0%, #f1f1f1 50%, rgba(252, 246, 232, 0.2) 50.1%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.section-why_us .metric-items {
  position: relative;
  overflow: hidden;
  padding: 2rem 4rem;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(82, 82, 82, 0.17);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-why_us .metric-items .metric-item {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95);
}
.section-why_us .metric-items .metric-item:last-child {
  border-bottom: 0;
}
.section-why_us .metric-items .metric-item .metric-prefix,
.section-why_us .metric-items .metric-item .metric-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  line-height: 120%;
  letter-spacing: -5%;
}
.section-why_us .metric-items .metric-item .metric-sublabel,
.section-why_us .metric-items .metric-item .metric-suffix {
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: -7%;
  font-weight: 500;
  color: #ffffff;
}
.section-why_us .metric-items .metric-item .metric-suffix {
  margin-left: 0.5rem;
}
.section-why_us .metric-items .metric-item__desc {
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: -7%;
  font-weight: 500;
  color: #ffffff;
}
.section-why_us.activity-report-block {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-attachment: scroll;
}
.section-why_us.activity-report-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 34, 64, 0.12);
  z-index: 1;
}

.section-invest__wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translate(0, 20%);
}
.section-invest.investment-block .investment-block__headline {
  color: #003767;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.section-invest.investment-block .wp-block-cover__image-background {
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.section-invest .group-cover {
  height: 40vh;
  margin: 5rem auto;
  max-width: 100%;
  overflow: hidden;
}

.section-partner {
  padding: 6rem 0;
  background-color: #eff7fd;
  overflow: hidden;
  --partner-columns: 4;
  --partner-gap: 1.5rem;
}
.section-partner .marquee-left,
.section-partner .marquee-right {
  margin: 3rem 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.section-partner .partner-gallery {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation-duration: var(--marquee-duration, 24s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-partner .partner-gallery > * {
  flex: 0 0 calc((100vw - var(--partner-gap) * (var(--partner-columns) - 1)) / var(--partner-columns));
  width: calc((100vw - var(--partner-gap) * (var(--partner-columns) - 1)) / var(--partner-columns)) !important;
  padding: 0 calc(var(--partner-gap) / 2);
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img {
  aspect-ratio: 16/8;
  width: min(100%, 16rem);
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img:hover {
  transform: scale(1.05);
}
.section-partner .partner-gallery:hover, .section-partner .partner-gallery:focus-within {
  animation-play-state: paused;
}
.section-partner .marquee-left .partner-gallery {
  animation-name: marqueeLeft;
}
.section-partner .marquee-right .partner-gallery {
  animation-name: marqueeRight;
}

@media (min-width: 768px) {
  .section-partner {
    --partner-columns: 4;
  }
}
@media (min-width: 1024px) {
  .section-slider .swiper-wrapper {
    height: 100vh;
  }
  .section-slider .slide-image img {
    height: 100vh;
  }
  .section-slider .slide-cta {
    bottom: 25%;
  }
  .section-why_us {
    height: 100vh;
  }
  .section-why_us .metric-items__value {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section-why_us .metric-items__desc {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section-invest .group-cover {
    height: 75vh;
  }
  .section-invest__wrap {
    transform: translate(0, 30%);
  }
  .section-invest h2 {
    max-width: 72%;
  }
  .section-partner {
    --partner-columns: 6;
  }
  .section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img {
    width: min(70%, 16rem);
  }
}
.main-page__header {
  position: relative;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-page__header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 55, 103, 0.12);
  z-index: 1;
}
.main-page__title {
  position: absolute;
  z-index: 2;
  bottom: 5%;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .main-page__title {
    bottom: 15%;
  }
}
.subscription {
  background: #ffffff url("../assets/images/subscription-bg.jpg") center/cover no-repeat;
}

.subscription-form-block {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2rem;
  text-align: center;
  max-width: 80rem;
  margin: 4rem auto;
}
.subscription-form-block__title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
}
.subscription-form-block__description {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.subscription-form-block__form {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}
.subscription-form-block__input-group {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 5rem;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}
.subscription-form-block__input-group:focus-within {
  border-color: #007bff;
}
.subscription-form-block__input {
  flex: 1;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.6rem;
  border-radius: 5rem;
  outline: none;
}
.subscription-form-block__input::-moz-placeholder {
  color: #aaa;
}
.subscription-form-block__input::placeholder {
  color: #aaa;
}
.subscription-form-block__submit {
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
}
.subscription-form-block__submit.is-loading {
  pointer-events: none;
}
.subscription-form-block__submit.is-loading span {
  display: none;
}
.subscription-form-block__submit.is-loading .loader {
  display: block;
}
.subscription-form-block__submit .loader {
  display: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .subscription-form-block__title {
    font-size: 2.4rem;
  }
  .subscription-form-block__input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .subscription-form-block__input {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    width: 100%;
  }
  .subscription-form-block__submit {
    width: 100%;
  }
}
.about-cards {
  padding: 6rem 0;
}
.about-cards__top-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.about-cards__bottom-row .wide-card {
  animation-delay: 0.4s;
}
.about-cards__bottom-row .wide-card__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.about-cards__bottom-row .wide-card__header .about-card__title {
  margin-bottom: 1.5rem;
}
.about-cards__bottom-row .wide-card__header .about-card__desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}
.about-cards .glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) both;
}
.about-cards .glass-card:nth-child(2) {
  animation-delay: 0.2s;
}
.about-cards .glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.about-cards .about-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -7%;
  line-height: 120%;
}
.about-cards .about-card__content {
  font-size: 1.8rem;
  line-height: 120%;
}
.about-cards .about-card__content ul {
  padding-left: 1.5rem;
  margin: 0;
}
.about-cards .about-card__content ul li {
  margin-bottom: 0.8rem;
}
.about-cards .about-card__content ul li::marker {
  color: #ffffff;
}
.about-cards .core-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.about-cards .core-value-item {
  border-top: 1px solid #ffffff;
  padding-top: 4rem;
}
.about-cards .core-value-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #ffffff;
  line-height: 1.2;
}
.about-cards .core-value-item__text {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}
.about-cards .placeholder-grid,
.about-cards .about-card__content:empty {
  opacity: 0.5;
  font-style: italic;
}

@media (min-width: 768px) {
  .about-cards {
    padding: 8rem 0;
  }
  .about-cards__top-row {
    grid-template-columns: 1fr 1fr;
  }
  .about-cards .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cards .core-value-item {
    position: relative;
  }
  .about-cards .core-value-item__text {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -5%;
    line-height: 120%;
  }
  .about-cards .about-card__content {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .about-cards__wrapper {
    max-width: 80%;
    margin: 3rem auto;
  }
  .about-cards__bottom-row .wide-card__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .about-cards__bottom-row .wide-card__header .about-card__title {
    margin-bottom: 0;
    margin-right: 4rem;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .about-cards__bottom-row .wide-card__header .about-card__desc {
    font-size: 1.4rem;
    max-width: 65rem;
  }
  .about-cards .glass-card {
    padding: 3.5rem;
  }
  .about-cards .about-card__title {
    font-size: 3.2rem;
  }
  .about-cards .core-values-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
  }
  .about-cards .core-value-item {
    padding-left: 1.8rem;
    border-top: 0;
    padding-top: 0;
  }
  .about-cards .core-value-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
  }
  .about-cards .core-value-item__title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.chairman-message {
  position: relative;
}
.chairman-message__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.chairman-message__block {
  padding: 3rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}
.chairman-message__content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.chairman-message__title {
  color: #eb5830;
}
.chairman-message__body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -5%;
  color: #003767;
}
.chairman-message__body p:first-of-type {
  font-weight: 600;
  margin-bottom: 3.5rem;
  -moz-column-span: all;
       column-span: all;
  text-align: left;
  color: #003767;
}
.chairman-message__body p {
  text-align: justify;
  hyphens: auto;
}
.chairman-message__body strong {
  color: #003767;
  font-weight: 700;
}
.chairman-message__signature {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 20rem;
  margin-left: auto;
}
.chairman-message__signature .chairman-message__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5%;
  line-height: 120%;
  color: #003767;
  text-align: left;
  margin-bottom: 0;
}
.chairman-message__signature .chairman-message__position {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-transform: uppercase;
  letter-spacing: -5%;
  line-height: 120%;
}

@media (min-width: 1024px) {
  .chairman-message__image {
    display: none;
  }
  .chairman-message__wrapper {
    justify-content: center;
    align-items: flex-end;
  }
  .chairman-message__content {
    flex: 0 0 65%;
    max-width: 65%;
  }
  .chairman-message__title {
    margin-bottom: 3rem;
  }
  .chairman-message__block {
    padding: 12rem 0;
  }
  .chairman-message__body {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.leadership-team {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fffcf9 0%, #fff0f0 100%);
  min-height: 80rem;
}
.leadership-team__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
}
.leadership-team__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.leadership-team__tabs .leadership-tab {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
  cursor: pointer;
  padding-bottom: 0.8rem;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.leadership-team__tabs .leadership-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #eb5830;
  transition: width 0.3s ease;
}
.leadership-team__tabs .leadership-tab.is-active {
  color: #eb5830;
}
.leadership-team__tabs .leadership-tab.is-active::after {
  width: 100%;
}
.leadership-team__tabs .leadership-tab:hover {
  color: #eb5830;
}
.leadership-team__content {
  position: relative;
}
.leadership-team .leadership-tab-pane {
  display: none;
}
.leadership-team .leadership-tab-pane.is-active {
  display: block;
  animation: fadeIn 0.5s ease-both;
}
.leadership-team .leadership-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 3rem;
}
.leadership-team .leadership-item {
  position: relative;
  z-index: 1;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.leadership-team .leadership-item:hover {
  transform: translateY(-10px);
}
.leadership-team .leadership-item:hover .leadership-item__image::after {
  opacity: 1;
}
.leadership-team .leadership-item__image {
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  aspect-ratio: 0.8;
  position: relative;
  transition: box-shadow 0.4s ease;
}
.leadership-team .leadership-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.leadership-team .leadership-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  display: block;
}
.leadership-team .leadership-item__info .leadership-item__name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003767;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.leadership-team .leadership-item__info .leadership-item__position {
  font-size: 1.4rem;
  font-weight: 600;
  color: #003767;
  line-height: 120%;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: -5%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .leadership-team__wrapper {
    max-width: 28rem;
  }
  .leadership-team .leadership-item {
    flex: 0 0 calc(50% - 1.5rem);
  }
}
@media (min-width: 992px) {
  .leadership-team__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .leadership-team__tabs {
    gap: 4rem;
  }
  .leadership-team__tabs .leadership-tab::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.6rem;
    width: 1px;
    background-color: rgba(0, 55, 103, 0.2);
  }
  .leadership-team__tabs .leadership-tab:first-child::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .leadership-team .leadership-grid {
    gap: 6rem 4rem;
  }
  .leadership-team .leadership-item {
    flex: 0 0 calc(33.33% - 2rem);
    max-width: calc(33.33% - 2rem);
  }
  .leadership-team .leadership-item:first-child, .leadership-team .leadership-item:last-child:nth-child(even) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .leadership-team .leadership-item:first-child .leadership-item__wrapper, .leadership-team .leadership-item:last-child:nth-child(even) .leadership-item__wrapper {
    max-width: 320px;
  }
  .leadership-team .leadership-item__wrapper {
    max-width: 320px;
    margin: 0 auto;
  }
}
.member-companies {
  padding-top: 6rem;
}
.member-companies__title, .member-companies__grid {
  position: relative;
  z-index: 1;
}
.member-companies__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.member-companies .member-company {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: center;
}
.member-companies .member-company__logo {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .member-companies__grid {
    gap: 4rem 3rem;
  }
  .member-companies__title {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .member-companies {
    padding: 8rem 0;
  }
  .member-companies__grid {
    justify-content: space-between;
    gap: 4rem 2rem;
  }
  .member-companies .member-company {
    flex: 0 0 calc(16.666% - 2rem);
    max-width: calc(16.666% - 2rem);
  }
  .member-companies .member-company__logo {
    max-height: 150px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .member-companies .member-company__logo:hover {
    transform: translateY(-5px);
  }
}
.timeline-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff0f0 100%);
  overflow: hidden;
}
.timeline-section__desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: #003767;
  text-align: justify;
  line-height: 120%;
  margin-bottom: 3rem;
  letter-spacing: -5%;
}
.timeline-section__title {
  max-width: 100%;
  margin-bottom: 0;
}

.swiper-pagination-outer {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  height: 21rem; /* 5 bullets * (3rem + 1.5rem margin) - 1.5rem margin = 21rem */
  overflow: hidden;
  z-index: 10;
  /* Fade effect at top and bottom */
  mask-image: linear-gradient(to bottom, transparent 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, transparent 100%);
}

.swiper-vertical {
  height: 36rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.swiper-vertical .swiper-wrapper {
  max-width: 70%;
  margin-left: auto;
  margin-top: 0;
  height: 100%;
}
.swiper-vertical .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.swiper-vertical .swiper-slide__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.swiper-vertical .swiper-slide .item-text {
  max-height: 20rem;
  overflow-y: auto;
  padding-right: 1rem;
  /* Elegant custom scrollbar */
}
.swiper-vertical .swiper-slide .item-text::-webkit-scrollbar {
  width: 4px;
}
.swiper-vertical .swiper-slide .item-text::-webkit-scrollbar-track {
  background: rgba(0, 55, 103, 0.05);
  border-radius: 4px;
}
.swiper-vertical .swiper-slide .item-text::-webkit-scrollbar-thumb {
  background: rgba(235, 88, 48, 0.3);
  border-radius: 4px;
}
.swiper-vertical .swiper-slide .item-text::-webkit-scrollbar-thumb:hover {
  background: rgba(235, 88, 48, 0.6);
}
.swiper-vertical .swiper-slide .item-text .h3 {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #eb5830;
  opacity: 0;
  margin-bottom: 0.5rem;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  letter-spacing: -5%;
}
.swiper-vertical .swiper-slide .item-text .content {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #003767;
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.swiper-vertical .swiper-slide .item-image img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.swiper-vertical .swiper-slide.swiper-slide-active .item-text .h3,
.swiper-vertical .swiper-slide.swiper-slide-active .item-text .content, .swiper-vertical .swiper-slide.is-active .item-text .h3,
.swiper-vertical .swiper-slide.is-active .item-text .content {
  opacity: 1;
  transform: translateY(0);
}
.swiper-vertical .swiper-pagination {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
}
.swiper-vertical .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  height: 3rem;
  width: auto;
  margin: 0 0 1.5rem 0 !important; /* spacing between bullets */
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.swiper-vertical .swiper-pagination .swiper-pagination-bullet .timeline-dot:after {
  /* Vertical line connecting dots */
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4.5rem; /* spans the 3rem bullet + 1.5rem margin gap */
}
.swiper-vertical .swiper-pagination-bullet .timeline-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #b4b4b4;
  box-shadow: 0 0 0 0 rgba(180, 180, 180, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-vertical .swiper-pagination-bullet .timeline-dot:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #b4b4b4;
  transition: background-color 0.4s ease;
}
.swiper-vertical .swiper-pagination-bullet .timeline-dot:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 3rem;
  height: 1px;
  background-color: #e0e0e0;
  transition: background-color 0.4s ease;
}
.swiper-vertical .swiper-pagination-bullet:last-child .timeline-dot:after {
  display: none;
}
.swiper-vertical .swiper-pagination-bullet .timeline-year {
  display: inline-block;
  color: #b4b4b4;
  font-weight: 700;
  font-size: 1.4rem;
  padding-left: 1.5rem;
  transition: all 0.4s ease;
}
.swiper-vertical .swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.swiper-vertical .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-vertical .swiper-pagination-bullet-active .timeline-dot {
  border: 1px solid #eb5830;
  box-shadow: 0 0 0 0 rgba(235, 88, 48, 0.2);
}
.swiper-vertical .swiper-pagination-bullet-active .timeline-dot:before, .swiper-vertical .swiper-pagination-bullet-active .timeline-dot:after {
  background-color: #eb5830;
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-vertical .swiper-pagination-bullet-active .timeline-year {
  color: #eb5830;
}

@media (min-width: 1024px) {
  .timeline-section {
    padding: 8rem 0;
  }
  .timeline-section__desc {
    margin-bottom: 5rem;
    max-width: 70%;
  }
  .timeline-section__title {
    max-width: 21%;
  }
  .swiper-vertical {
    height: 35rem;
  }
  .swiper-vertical .swiper-wrapper {
    max-width: 80%;
  }
  .swiper-vertical .swiper-slide {
    flex-direction: row;
    justify-content: flex-start;
  }
  .swiper-vertical .swiper-slide__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .swiper-vertical .swiper-slide .item-text {
    max-height: 35rem;
    max-width: 35%;
    flex: 0 0 35%;
    padding-right: 4rem;
    margin-bottom: 0;
  }
  .swiper-vertical .swiper-slide .item-text .h3 {
    font-size: 6rem;
  }
  .swiper-vertical .swiper-slide .item-image {
    position: relative;
    display: flex;
    max-width: 65%;
    flex: 0 0 65%;
    height: 100%;
    justify-content: flex-end;
  }
}
.project-listing-block {
  padding: 4.8rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .project-listing-block {
    padding: 8rem 0;
  }
}
.project-listing-block .container {
  position: relative;
  z-index: 2;
}

.project-tabs {
  margin-bottom: 3.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .project-tabs {
    margin-bottom: 6rem;
    overflow: visible;
  }
}
.project-tabs::-webkit-scrollbar {
  display: none;
}
.project-tabs__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: -moz-max-content;
  min-width: max-content;
}
.project-tabs__list li {
  display: flex;
  align-items: center;
}
.project-tabs__list li:not(:last-child)::after {
  content: "|";
  margin: 0 1.4rem;
  color: #e0e0e0;
  font-size: 1.6rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .project-tabs__list li:not(:last-child)::after {
    margin: 0 1.4rem;
    font-size: 2.4rem;
  }
}
.project-tabs .project-tab-link {
  display: inline-block;
  padding: 0.2rem 0;
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: -5%;
  line-height: 120%;
  font-weight: 600;
  color: #808080;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}
.project-tabs .project-tab-link.active, .project-tabs .project-tab-link:hover, .project-tabs .project-tab-link:focus {
  color: #003767;
}
@media (min-width: 1024px) {
  .project-tabs .project-tab-link {
    font-size: 1.8rem;
  }
}

.project-grid-wrapper {
  position: relative;
  min-height: 25rem;
}
@media (min-width: 1024px) {
  .project-grid-wrapper {
    min-height: 45rem;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  transition: opacity 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6rem 4rem;
  }
}

.project-item__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  group-hover: transform 1.02s;
}
.project-item__image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  aspect-ratio: 16/10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  background-color: #f5f5f5;
}
.project-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.project-item__image:hover img {
  transform: scale(1.06);
}
.project-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-item__category {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
  color: #434343;
  margin-bottom: 0.5rem;
}
.project-item__title {
  margin-bottom: 1.2rem;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .project-item__title {
    font-size: 1.8rem;
  }
}
.project-item__title a {
  text-decoration: none;
  color: #003767;
  transition: color 0.3s ease;
}
.project-item__title a:hover {
  color: #eb5830;
}
.project-item__details {
  margin-bottom: 2rem;
  flex: 1;
}
.project-item__info {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #424242;
}
.project-item__info .label {
  font-weight: 700;
  color: #1a1a1a;
  min-width: 8rem;
}
.project-item__info .value {
  font-weight: 400;
}
.project-item__link {
  margin-top: auto;
}

.project-detail {
  padding: 4rem 0;
}
.project-detail__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.project-detail__content {
  flex: 1;
}

.project-meta-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.project-meta-item .label {
  display: block;
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.project-sidebar-link .back-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1px solid #003767;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.project-sidebar-link .back-link svg {
  transition: transform 0.3s ease;
}
.project-sidebar-link .back-link:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.project-sidebar-link .back-link:hover svg {
  transform: translate(2px, -2px);
}

.project-description {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
  line-height: 1.3;
  color: #003767;
  margin-bottom: 2.5rem;
}
.project-description .wp-block-image,
.project-description .wp-block-heading,
.project-description .wp-block-table {
  margin: 2.5rem 0;
}
.project-description .wp-block-list li {
  margin-bottom: 1rem;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.project-gallery-grid .gallery-item {
  border-radius: 1.5rem !important;
  overflow: hidden;
}
.project-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-section {
  margin-bottom: 6rem;
}
.project-section .section-heading {
  margin-bottom: 2.5rem;
}

.strategic-location .map-image {
  border-radius: 1.5rem !important;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.strategic-location .map-image img {
  width: 100%;
  display: block;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.infra-card {
  position: relative;
  aspect-ratio: 1/1.2;
  border-radius: 1.5rem !important;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.infra-card ul {
  padding-left: 1.6rem;
  margin: 0;
}
.infra-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}
.infra-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0, rgba(0, 55, 103, 0.9));
}
.infra-card:hover .infra-card__bg {
  transform: scale(1.05);
}
.infra-card__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.infra-card__title {
  font-weight: 700;
  letter-spacing: -7%;
  line-height: 120%;
}
.infra-card__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.9;
}
.infra-card__text p {
  margin: 0;
}

.related-projects {
  background-color: rgb(239, 247, 253);
}
.related-projects__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.related-projects__header .view-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -5%;
  color: #003767;
  transition: all 0.3s ease;
}
.related-projects__header .view-more:hover {
  color: #eb5830;
}

@media (min-width: 768px) {
  .project-meta-item .value {
    font-size: 2.4rem;
  }
  .project-description {
    margin-bottom: 4rem;
  }
  .project-description .wp-block-image {
    margin: 4rem 0;
  }
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .project-gallery-grid .gallery-item:first-child {
    grid-column: span 2;
  }
  .project-section .section-heading {
    margin-bottom: 3rem;
  }
  .strategic-location .map-image {
    border-radius: 2rem;
  }
  .infrastructure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-projects__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .project-detail {
    padding: 10rem 0;
  }
  .project-detail__layout {
    flex-direction: row;
    gap: 8rem;
  }
  .project-detail__sidebar {
    flex: 0 0 30%;
  }
  .project-detail__sidebar .sticky {
    position: sticky;
    top: 10rem;
  }
  .project-section {
    margin-bottom: 8rem;
  }
}
@media (min-width: 1200px) {
  .infrastructure-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-listing-block {
  padding: 8rem 0;
}

.news-item__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-item__image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.news-item__image:hover img {
  transform: scale(1.08);
}
.news-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-item__meta {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.news-item__category {
  color: #eb5830;
  font-weight: 700;
  text-transform: uppercase;
}
.news-item__meta-separator {
  color: #ccc;
}
.news-item__title {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .news-item__title {
    font-size: 2rem;
  }
}
.news-item__title a {
  display: block;
  text-decoration: none;
  color: #003767;
  transition: color 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-item__title a:hover {
  color: #eb5830;
}
.news-item__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__link {
  margin-top: auto;
}
.news-item__link .view-details {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1.5px solid #003767;
  padding-bottom: 0.4rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-item__link .view-details svg {
  transition: transform 0.3s ease;
}
.news-item__link .view-details:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.news-item__link .view-details:hover svg {
  transform: translate(3px, -3px);
}

.news-grid {
  gap: 4rem 3.2rem;
}

.declared-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  padding: 1.6rem 2.4rem;
  background: linear-gradient(135deg, rgba(0, 55, 103, 0.03) 0%, rgba(235, 88, 48, 0.03) 100%);
  border: 1px solid rgba(0, 55, 103, 0.08);
  border-radius: 1.2rem;
}
.declared-categories.justify-content-center {
  justify-content: center;
}
.declared-categories__label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.declared-categories__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.declared-categories__tag {
  font-size: 1.3rem;
  font-weight: 500;
  color: #eb5830;
  background: rgba(235, 88, 48, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 5rem;
  border: 1px solid rgba(235, 88, 48, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}
.declared-categories__tag:hover {
  background: #eb5830;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(235, 88, 48, 0.25);
}

.load-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
  width: 100%;
}

.project-loader .spinner-border {
  color: #eb5830 !important;
}

.home-news-block {
  padding: 4rem 0;
}

.home-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.home-news__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.home-news__card:hover .card-title {
  color: #eb5830;
}
.home-news__card:hover .card-image img {
  transform: scale(1.05);
}
.home-news__card .card-image {
  border-radius: 1.5rem !important;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: #f0f0f0;
}
.home-news__card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.home-news__card .card-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.home-news__card .card-meta .badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #d1ecfc;
  color: #003767;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.home-news__card .card-meta .date {
  font-size: 1.3rem;
  color: #666;
}
.home-news__card .card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003767;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
}
.home-news__card .card-excerpt {
  font-size: 1.4rem;
  color: #003767;
  font-weight: 400;
  letter-spacing: -7%;
  line-height: 120%;
}

.home-news__card--large .card-image {
  aspect-ratio: 16/9;
}

.home-news__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home-news__card--small {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.home-news__card--small .card-image {
  display: none;
  margin-bottom: 0;
  aspect-ratio: 4/3;
}
.home-news__card--small .card-content {
  flex: 1;
}
.home-news__card--small .card-title {
  margin-bottom: 1rem;
}
.home-news__card--small .card-meta {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .home-news__card--small .card-content {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .home-news__card--large .card-title {
    font-size: 2.8rem;
  }
  .home-news__card--small {
    border-top: 0;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .home-news__card--small .card-image {
    display: block;
    flex: 0 0 18rem;
  }
}
@media (min-width: 1024px) {
  .home-news-block {
    padding: 6rem 0;
  }
  .home-news__grid {
    grid-template-columns: 55% 1fr;
    gap: 4rem;
  }
}
.area-activity-block {
  padding-top: 4rem;
}

.area-activity__header {
  margin-bottom: 4rem;
}
.area-activity__header .area-activity__desc {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
  max-width: 75rem;
  margin: 0 auto;
}

.area-activity__grid {
  display: flex;
  flex-direction: column;
}

.area-card {
  position: relative;
  flex: 1;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  text-decoration: none;
}
.area-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease, filter 0.8s ease;
  z-index: 1;
}
.area-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 34, 64, 0.4);
  transition: background 0.5s ease;
}
.area-card__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area-card__title {
  color: #ffffff;
  transition: transform 0.5s ease;
  max-width: 30rem;
  transform: translateY(3rem);
}
.area-card__hover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area-card__desc {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .area-activity__header .area-activity__desc {
    font-size: 2rem;
  }
  .area-activity__grid {
    flex-direction: row;
  }
  .area-card {
    min-height: 80vh;
    flex: 0 0 30%;
  }
  .area-card.is-active {
    flex: 0 0 40%;
  }
  .area-card__hover-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .area-card__desc {
    font-size: 1.6rem;
  }
  .area-card.is-active .area-card__hover-content, .area-card:hover .area-card__hover-content {
    opacity: 1;
    max-height: 30rem;
  }
  .area-card.is-active .area-card__bg, .area-card:hover .area-card__bg {
    transform: scale(1.05);
  }
  .area-card.is-active .area-card__bg::after, .area-card:hover .area-card__bg::after {
    background: rgba(10, 34, 64, 0.75);
  }
  .area-card.is-active .area-card__title, .area-card:hover .area-card__title {
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .area-activity-block {
    padding-top: 6rem;
  }
}
.news-detail {
  padding: 4rem 0;
}
.news-detail__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.news-detail__sidebar {
  margin-bottom: 2rem;
}
.news-detail__sidebar .news-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-detail__title {
  color: #003767;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 0;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 55, 103, 0.15);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}
.news-detail__meta .news-detail__category {
  color: #eb5830;
}
.news-detail__meta .news-detail__category a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-detail__meta .news-detail__category a:hover {
  color: #003767;
}
.news-detail__meta .news-detail__separator {
  color: #ccc;
}
.news-detail__meta .news-detail__date {
  color: #434343;
  letter-spacing: -5%;
  line-height: 120%;
}
.news-detail__content {
  flex: 1;
}
.news-detail .news-sidebar-link {
  margin-top: 1rem;
}
.news-detail .news-sidebar-link .back-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  border-bottom: 1.5px solid #003767;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-detail .news-sidebar-link .back-link svg {
  transition: transform 0.3s ease;
}
.news-detail .news-sidebar-link .back-link:hover {
  color: #eb5830;
  border-bottom-color: #eb5830;
}
.news-detail .news-sidebar-link .back-link:hover svg {
  transform: translate(3px, -3px);
}

.news-content-body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #231f1e;
}
.news-content-body p {
  margin-bottom: 2rem;
  text-align: justify;
}
.news-content-body p:last-child {
  margin-bottom: 0;
}
.news-content-body h2,
.news-content-body h3,
.news-content-body h4,
.news-content-body h5,
.news-content-body h6 {
  color: #003767;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 3.5rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}
.news-content-body h2 {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
}
.news-content-body h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
}
.news-content-body h4 {
  font-size: clamp(1.6rem, 2.4vw, 1.8rem);
}
.news-content-body ul,
.news-content-body ol {
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}
.news-content-body ul li,
.news-content-body ol li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.news-content-body ul li::marker,
.news-content-body ol li::marker {
  color: #eb5830;
}
.news-content-body a {
  color: #eb5830;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.news-content-body a:hover {
  color: #003767;
  text-decoration: none;
}
.news-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem !important;
  display: block;
  margin: 0 auto;
}
.news-content-body .wp-block-image {
  margin: 3.5rem 0;
}
.news-content-body .wp-block-image figcaption {
  font-size: 1.3rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}
.news-content-body .wp-block-gallery {
  margin: 3.5rem 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.news-content-body .wp-block-gallery figure {
  margin: 0;
}
.news-content-body .wp-block-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem !important;
}
.news-content-body .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3.5rem 0;
}
@media (min-width: 768px) {
  .news-content-body .wp-block-columns {
    flex-direction: row;
  }
  .news-content-body .wp-block-columns .wp-block-column {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .news-detail {
    padding: 8rem 0;
  }
  .news-detail__layout {
    flex-direction: row;
    gap: 8rem;
  }
  .news-detail__sidebar {
    flex: 0 0 35%;
    margin-bottom: 0;
  }
  .news-detail__sidebar .sticky {
    position: sticky;
    top: 10rem;
  }
  .news-detail__content {
    flex: 1;
    max-width: 65%;
  }
  .news-content-body {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .news-content-body p {
    margin-bottom: 2.5rem;
  }
  .news-content-body .wp-block-image {
    margin: 4.5rem 0;
  }
  .news-content-body .wp-block-gallery {
    margin: 4.5rem 0;
    gap: 2rem;
  }
  .news-content-body .wp-block-columns {
    margin: 4.5rem 0;
    gap: 2rem;
  }
}
.gardient-blur {
  position: relative;
}
.gardient-blur:before, .gardient-blur::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
  position: absolute;
  z-index: 0;
}
.gardient-blur:before {
  background-image: url("../assets/images/bg_blur-l.png");
  bottom: 0;
  left: 0;
}
.gardient-blur::after {
  background-image: url("../assets/images/bg_blur-r.png");
  top: 0;
  right: 0;
}

@media (min-width: 1024px) {
  .gardient-blur:before, .gardient-blur::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
  }
  .gardient-blur:before {
    background-image: url("../assets/images/bg_blur-l.png");
    bottom: 0;
  }
  .gardient-blur::after {
    background-image: url("../assets/images/bg_blur-r.png");
    top: -15%;
  }
}
.esc-report .esg-information-block,
.esc-report .esg-report-block {
  position: relative;
  z-index: 1;
}

.esg-investment {
  position: relative;
}
.esg-investment:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../assets/images/bg-blur-3.png");
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.6;
}
.esg-investment .esg-inv-image {
  position: relative;
  z-index: 1;
}

.esg-highlights-tab-pane--economics {
  padding: 8rem 0;
  background-image: url("../assets/images/esg_image-1-1-2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.esg-section-title h2,
.esg-section-title h3 {
  color: #ffffff;
}

.esg-grid-eco {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 18rem);
  gap: 2rem;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .esg-grid-eco {
    max-width: 100%;
    gap: 1.5rem;
  }
}
@media (max-width: 991px) {
  .esg-grid-eco {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .esg-grid-eco .esg-card-eco--span-2x1,
  .esg-grid-eco .esg-card-eco--span-2x2 {
    grid-column: span 2;
  }
  .esg-grid-eco .esg-card-eco--span-2x2 {
    grid-row: auto;
    min-height: 25rem;
  }
}
@media (max-width: 767px) {
  .esg-grid-eco {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto auto;
    gap: 1rem;
  }
  .esg-grid-eco > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .esg-grid-eco > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .esg-grid-eco > div:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .esg-grid-eco > div:nth-child(4) {
    grid-column: 1/3;
    grid-row: 4;
  }
  .esg-grid-eco > div:nth-child(5) {
    grid-column: 2;
    grid-row: 1;
  }
  .esg-grid-eco > div:nth-child(6) {
    grid-column: 2;
    grid-row: 2/4;
  }
  .esg-grid-eco > div:nth-child(7) {
    grid-column: 1;
    grid-row: 5;
  }
  .esg-grid-eco > div:nth-child(8) {
    grid-column: 2;
    grid-row: 5;
  }
  .esg-grid-eco > div:nth-child(9) {
    grid-column: 1/3;
    grid-row: 6;
  }
}

.esg-card-eco {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.4rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.esg-card-eco:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.esg-card-eco__value {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
.esg-card-eco__value .text {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: -5%;
}
.esg-card-eco__value small {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}
.esg-card-eco__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -5%;
  opacity: 0.9;
}
.esg-card-eco--solid-blue {
  color: #ffffff;
  background-color: #003767;
  border: 1px solid rgba(0, 55, 103, 0.5);
}
.esg-card-eco--solid-lightblue {
  color: #ffffff;
  background-color: #48a4d6;
  border: 1px solid rgba(72, 164, 214, 0.5);
}
.esg-card-eco--glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.esg-card-eco--span-2x1 {
  grid-column: span 2;
}
.esg-card-eco--span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}
.esg-card-eco__split {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .esg-card-eco__split {
    flex-direction: column;
    gap: 2rem;
  }
}
.esg-card-eco__half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 1rem;
  text-align: center;
}
.esg-card-eco__divider {
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .esg-card-eco__divider {
    width: 60%;
    height: 1px;
  }
}
.esg-card-eco__bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-image: url("../assets/images/world_map_bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.esg-card-eco__chart {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  height: 12rem;
  margin-top: auto;
  padding: 0 2rem;
}
.esg-card-eco__chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
@media (max-width: 767px) {
  .esg-card-eco__chart {
    height: 6rem;
  }
}
.esg-card-eco__content-center {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 1rem;
  z-index: 1;
}
.esg-card-eco--has-chart .esg-card-eco__content-center {
  justify-content: center;
  padding-bottom: 6rem;
}

.esg-highlights-tab-pane--environment {
  padding: 8rem 0;
  background-image: url("../assets/images/esg_image-1-1-2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.esg-highlights-tab-pane--environment .heading-3 {
  color: #ffffff;
}

.esg-grid-env {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 17rem 29rem 17rem;
  gap: 2rem;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.esg-card-env {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.esg-card-env:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.esg-card-env__label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env__value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env__value small {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -5%;
  text-align: left;
}
.esg-card-env__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env--glass {
  color: #eaeed9;
  background: rgba(13, 38, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.esg-card-env--glass:hover {
  background: rgba(13, 38, 24, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.esg-card-env--light-solid {
  color: #eaeed9;
  background-color: #73c048;
  border: 1px solid rgba(209, 250, 229, 0.5);
}
.esg-card-env--light-solid:hover {
  background-color: #73c048;
}
.esg-card-env--medium-solid {
  color: #eaeed9;
  background-color: #1d8c49;
  border: 1px solid rgba(5, 150, 105, 0.5);
}
.esg-card-env--medium-solid:hover {
  background: #047857;
}
.esg-card-env--dark-solid {
  color: #eaeed9;
  background-color: #1c593e;
  border: 1px solid rgba(6, 78, 59, 0.5);
}
.esg-card-env--dark-solid:hover {
  background-color: #1c593e;
}
.esg-card-env--solar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 3rem;
  gap: 2.5rem;
  text-align: center;
}
.esg-card-env--solar .esg-card-env__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.esg-card-env--solar .esg-card-env__divider {
  display: block;
  width: 1px;
  height: 75%;
  background-color: #eaeed9;
}
.esg-card-env--system-info-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 2/3;
  grid-row: 1/2;
  padding: 2.5rem;
  gap: 1.4rem;
  text-align: center;
}
.esg-card-env--system-info-1 .esg-card-env__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #059669;
  animation: pulseGreen 3s infinite ease-in-out;
}
.esg-card-env--system-info-1 .esg-card-env__text {
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env--plant-construct {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  grid-column: 3/4;
  grid-row: 1/3;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.esg-card-env--plant-construct .esg-card-env__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
  color: #eaeed9;
}
.esg-card-env--plant-construct .esg-card-env__metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}
.esg-card-env--plant-construct .esg-card-env__metric-label {
  max-width: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
  text-align: center;
}
.esg-card-env--plant-construct .esg-card-env__metric-value {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
  color: #eaeed9;
  gap: 1rem;
}
.esg-card-env--plant-construct .esg-card-env__metric-value small {
  max-width: 7rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env--plant-construct .esg-card-env__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.esg-card-env--plant-construct .esg-card-env__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}
.esg-card-env--landscape {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/3;
  grid-row: 2/3;
  padding: 0;
}
.esg-card-env--landscape img {
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  opacity: 0.95;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.esg-card-env--landscape:hover img {
  transform: scale(1.04);
}
@media screen and (max-width: 767px) {
  .esg-card-env--landscape img {
    width: 90%;
    -o-object-position: 50% 80%;
       object-position: 50% 80%;
  }
}
.esg-card-env--emission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 1/2;
  grid-row: 3/4;
  padding: 2.5rem;
  gap: 1rem;
  text-align: center;
}
.esg-card-env--emission .esg-card-env__subtext {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-env--greenery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 2/3;
  grid-row: 3/4;
  padding: 2.5rem;
  text-align: center;
}
.esg-card-env--greenery .esg-card-env__text {
  margin-top: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}
.esg-card-env--system-info-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 3/4;
  grid-row: 3/4;
  padding: 2.5rem;
  text-align: center;
}
.esg-card-env--system-info-2 .esg-card-env__text {
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}

@media (max-width: 1023px) {
  .esg-highlights-tab-pane--environment {
    padding: 2.5rem;
  }
  .esg-grid-env {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.8rem;
  }
  .esg-card-env {
    min-height: 18rem;
  }
  .esg-card-env--plant-construct {
    grid-column: span 2 !important;
    min-height: auto;
  }
  .esg-card-env--plant-construct .esg-card-env__image img {
    max-width: 14rem;
  }
  .esg-card-env--landscape {
    grid-column: span 2 !important;
    height: 24rem;
  }
}
@media (max-width: 767px) {
  .esg-highlights-tab-pane--environment {
    padding: 1.5rem 0;
  }
  .esg-grid-env {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    gap: 1rem;
    max-width: 100%;
  }
  .esg-grid-env > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    gap: 2rem;
  }
  .esg-grid-env > div:nth-child(1) .esg-card-env__divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }
  .esg-grid-env > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .esg-grid-env > div:nth-child(5) {
    grid-column: 1/3;
    grid-row: 2;
  }
  .esg-grid-env > div:nth-child(3) {
    grid-column: 1/3;
    grid-row: 3;
    gap: 2rem;
  }
  .esg-grid-env > div:nth-child(4) {
    grid-column: 1/3;
    grid-row: 4;
  }
  .esg-grid-env > div:nth-child(6) {
    grid-column: 1;
    grid-row: 5;
  }
  .esg-grid-env > div:nth-child(7) {
    grid-column: 2;
    grid-row: 5;
  }
  .esg-card-env {
    min-height: auto;
    padding: 2.5rem 2rem;
  }
  .esg-card-env--plant-construct .esg-card-env__image img {
    max-width: 80%;
  }
  .esg-card-env--landscape {
    height: 18rem;
  }
}
.esg-social-block {
  position: relative;
}

.esg-highlights-tab-pane--social {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 80%;
  padding: 8rem 0;
  margin: 0 auto;
  transform: translateY(-50%);
}
.esg-highlights-tab-pane--social h2 {
  color: #ffffff;
}

@media (max-width: 767px) {
  .esg-highlights-tab-pane--social {
    max-width: 100%;
  }
}
.esg-grid-soc {
  display: flex;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}
.esg-grid-soc:hover {
  transform: translateY(-4px);
}

.esg-card-soc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 4rem 3rem;
  color: #ffffff;
}
.esg-card-soc--glass {
  background: rgba(186, 75, 14, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.esg-card-soc--solid-orange {
  background: #c25121;
}
.esg-card-soc__content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.esg-card-soc__icon {
  flex: 0 0 17.5rem;
}
.esg-card-soc__icon img,
.esg-card-soc__icon svg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.esg-card-soc__text {
  display: flex;
  flex-direction: column;
  flex: 0 0 18rem;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-soc__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
  letter-spacing: -5%;
}
.esg-card-soc__value .text {
  display: block;
  font-size: 3.8rem;
  font-weight: 700;
}
.esg-card-soc__value small {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}
.esg-card-soc__label {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}
.esg-card-soc__split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
}
.esg-card-soc__half {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .esg-card-soc__half {
    flex: 0 0 45%;
  }
}
.esg-card-soc__divider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.esg-card-soc__divider .divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .esg-card-soc__divider .divider {
    height: 20px;
  }
}
.esg-card-soc__divider img {
  width: 50px;
  height: auto;
}
.esg-card-soc__icon-sm {
  margin-bottom: 0.5rem;
}
.esg-card-soc__icon-sm img,
.esg-card-soc__icon-sm svg {
  width: 40px;
  height: auto;
}
.esg-card-soc__text-sm {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .esg-grid-soc {
    flex-direction: column;
  }
  .esg-card-soc {
    width: 100%;
    padding: 2.5rem 2rem;
  }
  .esg-card-soc--glass {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
  }
  .esg-card-soc__split {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.esg-investment {
  position: relative;
  padding: 6rem 0 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef3ef 100%);
  overflow: hidden;
}

.esg-inv-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .esg-inv-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.esg-inv-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  max-width: 600px;
  padding: 4rem 0 6rem;
}
@media (max-width: 991px) {
  .esg-inv-content {
    padding: 4rem 0 0;
  }
}

.esg-inv-title {
  margin-bottom: 4rem;
  color: #003767;
}

.esg-inv-quote-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.esg-inv-quote-icon svg {
  width: 60px;
  height: auto;
}

.esg-inv-text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -5%;
  color: #003767;
  text-align: justify;
}

.esg-inv-signature {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 24rem;
  margin-left: auto;
}

.esg-inv-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5%;
  line-height: 120%;
  color: #003767;
  text-align: left;
  margin: 0;
}

.esg-inv-position {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-transform: uppercase;
  letter-spacing: -5%;
  line-height: 1.4;
  margin: 0;
}

.esg-inv-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
}
.esg-inv-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.esg-timeline {
  padding: 8rem 0;
  background-color: #003767;
  color: #ffffff;
}
.esg-timeline .esg-tl-title {
  margin-bottom: 5rem;
  color: #ffffff;
}
.esg-timeline .esg-tl-slide {
  height: auto;
}
.esg-timeline .esg-tl-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 2rem;
  padding-right: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.esg-timeline .esg-tl-content {
  flex-grow: 1;
  margin-bottom: 3rem;
}
.esg-timeline .esg-tl-year {
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
}
.esg-timeline .esg-tl-desc {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.esg-timeline .esg-tl-image {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
}
.esg-timeline .esg-tl-image img {
  display: block;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
}
.esg-timeline .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 4rem;
}
.esg-timeline .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}
.esg-timeline .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.esg-certifications-block {
  padding: 8rem 0;
  background-color: #f9fafc;
}
.esg-certifications-block .esg-cert-header {
  margin-bottom: 5rem;
  text-align: center;
}
.esg-certifications-block .esg-cert-header .esg-cert-subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #48a4d6;
}
.esg-certifications-block .esg-cert-header .esg-cert-title {
  color: #003767;
}
.esg-certifications-block .esg-cert-slider {
  position: relative;
  padding-bottom: 6rem;
}
.esg-certifications-block .esg-cert-slider .swiper-button-next,
.esg-certifications-block .esg-cert-slider .swiper-button-prev {
  display: none;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #003767;
  background: #ffffff;
  transition: all 0.3s ease;
}
.esg-certifications-block .esg-cert-slider .swiper-button-next::after,
.esg-certifications-block .esg-cert-slider .swiper-button-prev::after {
  font-size: 1.8rem;
}
.esg-certifications-block .esg-cert-slider .swiper-button-next:hover,
.esg-certifications-block .esg-cert-slider .swiper-button-prev:hover {
  color: #ffffff;
  background: #003767;
}
.esg-certifications-block .esg-cert-slider .swiper-pagination {
  bottom: 0;
}
.esg-certifications-block .esg-cert-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #003767;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.esg-certifications-block .esg-cert-slider .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  opacity: 1;
}
.esg-certifications-block .esg-cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 3rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.esg-certifications-block .esg-cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .esg-certifications-block .esg-cert-card {
    flex-direction: row;
    gap: 5rem;
    padding: 6rem;
    text-align: left;
  }
}
.esg-certifications-block .esg-cert-image {
  flex-shrink: 0;
  width: 220px;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .esg-certifications-block .esg-cert-image {
    width: 280px;
    margin-bottom: 0;
  }
}
.esg-certifications-block .esg-cert-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}
.esg-certifications-block .esg-cert-content {
  flex-grow: 1;
}
.esg-certifications-block .esg-cert-content .esg-cert-name {
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
  text-transform: uppercase;
  color: #003767;
}
.esg-certifications-block .esg-cert-content .esg-cert-desc {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -5%;
  line-height: 120%;
  color: #555;
}

.esg-information-block {
  padding: 8rem 0;
}
.esg-information-block .esg-info-title {
  margin-bottom: 4rem;
  color: #003767;
}
.esg-information-block .esg-info-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.esg-information-block .esg-info-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .esg-information-block .esg-info-tabs {
    gap: 3rem;
  }
}
.esg-information-block .esg-info-tab {
  position: relative;
  padding-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  color: #003767;
  transition: all 0.3s ease;
  max-width: 10rem;
  text-align: center;
  line-height: 120%;
}
@media (min-width: 768px) {
  .esg-information-block .esg-info-tab {
    max-width: 100%;
  }
}
.esg-information-block .esg-info-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 1px;
  height: 60%;
  background-color: #003767;
  opacity: 0.3;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .esg-information-block .esg-info-tab:not(:last-child)::after {
    right: -2rem;
  }
}
.esg-information-block .esg-info-tab:hover {
  color: #f26122;
}
.esg-information-block .esg-info-tab.is-active {
  color: #f26122;
}
.esg-information-block .esg-info-tab.is-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f26122;
}
.esg-information-block .esg-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .esg-information-block .esg-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .esg-information-block .esg-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.esg-information-block .esg-info-card {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border-radius: 8px;
  background-color: #eaf5fe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.esg-information-block .esg-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.esg-information-block .esg-info-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.esg-information-block .esg-info-card__tag {
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
  background-color: #cbe7fb;
}
.esg-information-block .esg-info-card__date {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
}
.esg-information-block .esg-info-card__title {
  margin: 0 0 4rem;
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
}
.esg-information-block .esg-info-card__title a {
  color: #003767;
  text-decoration: none;
  transition: color 0.3s ease;
}
.esg-information-block .esg-info-card__title a:hover {
  color: #f26122;
}
.esg-information-block .esg-info-card__actions {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 2.5rem;
}

.esg-action-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #003767;
  gap: 0.8rem;
  transition: color 0.3s ease;
}
.esg-action-btn svg {
  transition: transform 0.3s ease;
}
.esg-action-btn:hover {
  color: #f26122;
}
.esg-action-btn:hover svg {
  transform: translateY(2px);
}
.esg-action-btn--detail:hover svg {
  transform: translateX(2px);
}

.esg-report-block {
  padding: 8rem 0;
}
.esg-report-block .esg-report-title {
  color: #003767;
}
.esg-report-block .esg-report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .esg-report-block .esg-report-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .esg-report-block .esg-report-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.esg-report-block .esg-report-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.esg-report-block .esg-report-card:hover {
  transform: translateY(-4px);
}
.esg-report-block .esg-report-card__image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.esg-report-block .esg-report-card__image a {
  display: block;
}
.esg-report-block .esg-report-card__image img,
.esg-report-block .esg-report-card__image .placeholder-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.esg-report-block .esg-report-card__image:hover img, .esg-report-block .esg-report-card__image:hover .placeholder-img {
  transform: scale(1.03);
}
.esg-report-block .esg-report-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.esg-report-block .esg-report-card__date {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
}
.esg-report-block .esg-report-card__title {
  margin: 0 0 2.5rem;
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
}
.esg-report-block .esg-report-card__title a {
  color: #003767;
  text-decoration: none;
  transition: color 0.3s ease;
}
.esg-report-block .esg-report-card__title a:hover {
  color: #f26122;
}
.esg-report-block .esg-report-card__actions {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.ir-page {
  background-color: #ffffff;
}

.ir-reports {
  padding: 5rem 0;
  position: relative;
}
.ir-reports::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(235, 88, 48, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.ir-reports .container {
  position: relative;
  z-index: 1;
}
.ir-reports__header {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .ir-reports__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.ir-reports__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .ir-reports__tabs {
    gap: 0;
  }
}
.ir-reports .ir-tab {
  font-size: 1.6rem;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  position: relative;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
  letter-spacing: -5%;
  line-height: 120%;
  max-width: 24rem;
}
@media (min-width: 768px) {
  .ir-reports .ir-tab {
    font-size: 2.2rem;
    max-width: 100%;
    padding: 0 2.5rem 1rem 2.5rem;
  }
  .ir-reports .ir-tab:first-child {
    padding-left: 0;
  }
  .ir-reports .ir-tab:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
    font-weight: 300;
  }
}
.ir-reports .ir-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .ir-reports .ir-tab::before {
    width: calc(100% - 5rem);
  }
}
@media (min-width: 768px) {
  .ir-reports .ir-tab:first-child::before {
    width: calc(100% - 2.5rem);
  }
}
.ir-reports .ir-tab:hover, .ir-reports .ir-tab.is-active {
  color: #003767;
}
.ir-reports .ir-tab.is-active::before {
  background-color: #003767;
}
.ir-reports__filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ir-reports__filter .filter-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
}
.ir-reports__filter .filter-select-wrapper {
  position: relative;
  display: inline-block;
}
.ir-reports__filter .filter-select-wrapper .ir-year-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
  padding-right: 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
}
.ir-reports__filter .filter-select-wrapper .ir-year-select:focus {
  outline: none;
}
.ir-reports__filter .filter-select-wrapper .select-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #003767;
  display: flex;
  align-items: center;
}
.ir-reports__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .ir-reports__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ir-reports__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ir-reports__no-results {
  text-align: center;
  padding: 5rem 0;
  font-size: 1.8rem;
  color: #888;
}

.ir-card {
  background-color: #f0f8fa;
  border-radius: 8px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: all 0.3s ease;
}
.ir-card__top {
  flex-grow: 1;
}
.ir-card__date {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #003767;
  margin-bottom: 1.5rem;
}
.ir-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003767;
  line-height: 1.3;
  margin: 0;
}
.ir-card__actions {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}
.ir-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 55, 103, 0.08);
}

.ir-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #003767;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.ir-action-btn:hover {
  opacity: 0.7;
}
.ir-action-btn svg {
  width: 14px;
  height: 14px;
}

.video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}
.video-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.video-hero__video, .video-hero__image, .video-hero__placeholder-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.video-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  max-width: 100rem;
  margin: 0 auto;
  transform: translateY(15%);
}
.video-hero__play-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}
.video-hero__play-btn svg {
  width: 60px;
  height: 60px;
}
.video-hero__play-btn svg polygon {
  transition: fill 0.3s ease;
}
.video-hero__play-btn:hover {
  transform: scale(1.1);
}
.video-hero__play-btn:hover svg polygon {
  fill: rgba(255, 255, 255, 0.9);
}
.video-hero__title {
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.video-hero__description {
  color: #ffffff;
  margin: 0 auto;
  max-width: 500px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
.video-hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.video-hero__scroll-indicator .scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  animation: scrollBounce 2s infinite ease-in-out;
}

@media (min-width: 768px) {
  .video-hero__play-btn {
    position: relative;
    z-index: 2;
  }
  .video-hero__play-btn svg {
    width: 100px;
    height: 100px;
  }
  .video-hero__content {
    max-width: 70rem;
  }
  .video-hero__title {
    margin-bottom: 2rem;
  }
  .video-hero__scroll-indicator .scroll-line {
    height: 100px;
  }
}
.e-brochure-block {
  padding: 8rem 0;
}
.e-brochure-block .section-heading {
  color: #003767;
  font-weight: 700;
  letter-spacing: -3%;
}
.e-brochure-block .section-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
}

.e-brochure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .e-brochure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .e-brochure-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.e-brochure-card {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border-radius: 8px;
  background-color: #eaf5fe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.e-brochure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.e-brochure-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.e-brochure-card__tag {
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
  background-color: #cbe7fb;
}
.e-brochure-card__meta {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
}
.e-brochure-card__title {
  margin: 0 0 4rem;
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -5%;
  line-height: 120%;
}
.e-brochure-card__title a {
  color: #003767;
  text-decoration: none;
  transition: color 0.3s ease;
}
.e-brochure-card__title a:hover {
  color: #f26122;
}
.e-brochure-card__actions {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 2.5rem;
}

.e-brochure-action-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #003767;
  gap: 0.8rem;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.e-brochure-action-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.e-brochure-action-btn__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.e-brochure-action-btn:hover, .e-brochure-action-btn:focus {
  color: #f26122;
}
.e-brochure-action-btn:hover .e-brochure-action-btn__icon, .e-brochure-action-btn:focus .e-brochure-action-btn__icon {
  transform: translateY(2px);
}

.jobs-layout {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .jobs-layout {
    flex-direction: column;
    gap: 40px;
  }
}

.jobs-list-col {
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 991px) {
  .jobs-list-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.jobs-details-col {
  flex: 0 0 60%;
  max-width: 60%;
}
@media (max-width: 991px) {
  .jobs-details-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.jobs-list {
  display: flex;
  flex-direction: column;
}

.job-card {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
}
.job-card:hover {
  transform: translateY(-2px);
}
.job-card.active {
  background-color: #f8fafc;
}
.job-card.active::before {
  background: #003767;
}
.job-card.active .job-card__title {
  color: #003767;
}

.job-card__logo {
  flex: 0 0 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-card__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.job-card__info {
  flex: 1;
  min-width: 0;
}

.job-card__title {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.job-card__company {
  font-size: 1.4rem;
  color: #003767;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -5%;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
}
.job-card__meta .job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.job-card__meta .job-meta-item i {
  color: #94a3b8;
  font-size: 1.3rem;
}

.job-details__info {
  flex: 0 0 100%;
}
.job-details__info span {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -5%;
  line-height: 120%;
  color: #003767;
}

.jobs-details-container {
  position: sticky;
  top: 100px;
  background: #ffffff;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .jobs-details-container {
    position: static;
    max-height: none;
    padding: 25px;
  }
}
.jobs-details-container::-webkit-scrollbar {
  width: 6px;
}
.jobs-details-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
.jobs-details-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.jobs-details-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.job-details-pane {
  transition: opacity 0.4s ease;
}

.job-details__header {
  margin-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 25px;
}

.job-details__header-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .job-details__header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.job-details__logo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-details__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.job-details__title-area {
  flex: 1;
  min-width: 0;
}

.job-details__title {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003767;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.job-details__company {
  font-size: 1.4rem;
  font-weight: 600;
  color: #003767;
  letter-spacing: -5%;
  line-height: 120%;
}

.job-details__quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .job-details__quick-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.job-details__quick-info .quick-info-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #003767;
  letter-spacing: -5%;
  line-height: 120%;
}

.job-details__body {
  margin-bottom: 35px;
}

.job-details__section {
  margin-bottom: 30px;
}
.job-details__section:last-child {
  margin-bottom: 0;
}

.job-details__section-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #003767;
  line-height: 120%;
  letter-spacing: -5%;
}

.job-details__section-content {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #334155;
}
.job-details__section-content p {
  margin-bottom: 12px;
}
.job-details__section-content p:last-child {
  margin-bottom: 0;
}
.job-details__section-content ul,
.job-details__section-content ol {
  margin-bottom: 12px;
  padding-left: 20px;
  list-style-position: outside;
}
.job-details__section-content ul li,
.job-details__section-content ol li {
  margin-bottom: 6px;
}
.job-details__section-content ul li:last-child,
.job-details__section-content ol li:last-child {
  margin-bottom: 0;
}
.job-details__section-content ul {
  list-style-type: disc;
}
.job-details__section-content ol {
  list-style-type: decimal;
}

.job-details__footer {
  display: flex;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
}
@media (max-width: 480px) {
  .job-details__footer {
    flex-direction: column;
    align-items: stretch;
  }
}
.job-details__footer .btn {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.job-details__footer .btn.btn__gardient {
  flex: 1;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 55, 103, 0.15);
  transition: all 0.3s ease;
}
.job-details__footer .btn.btn__gardient:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 55, 103, 0.25);
}
.job-details__footer .btn.btn-share-job {
  border: 1px solid #cbd5e1;
  color: #475569;
  background: transparent;
  padding: 0 25px;
  transition: all 0.3s ease;
}
.job-details__footer .btn.btn-share-job i {
  font-size: 1.4rem;
}
.job-details__footer .btn.btn-share-job:hover {
  background: #f8fafc;
  color: #003767;
  border-color: #003767;
}

/* Toast Notification Styles */
.recruitment-toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
@media (max-width: 576px) {
  .recruitment-toast-container {
    left: 20px;
    right: 20px;
    bottom: 20px;
    align-items: center;
  }
}

.recruitment-toast {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 1.3rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}
.recruitment-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-block {
  padding: 8rem 0;
  position: relative;
}
.contact-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(235, 88, 48, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.contact-block .container {
  position: relative;
  z-index: 1;
}
.contact-block__header {
  max-width: 80rem;
  margin: 0 auto 6rem auto;
  text-align: center;
}
.contact-block__desc {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #003767;
  margin: 0;
  letter-spacing: -0.02em;
}
.contact-block__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 992px) {
  .contact-block__content {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
  }
}
.contact-block__form-col {
  flex: 1;
}
.contact-block__form-card {
  background-color: #f4f9fc;
  border-radius: 20px;
  padding: 3rem;
}
@media (min-width: 768px) {
  .contact-block__form-card {
    padding: 5rem;
  }
}
.contact-block__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-block__form-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-block__form-row {
    flex-direction: row;
  }
}
.contact-block__form-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contact-block__form-group--half {
    flex: 1;
  }
}
.contact-block__input, .contact-block__textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #c2dbe9;
  border-radius: 8px;
  padding: 1.3rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #003767;
  outline: none;
  transition: all 0.3s ease;
}
.contact-block__input::-moz-placeholder, .contact-block__textarea::-moz-placeholder {
  color: #92b6cc;
}
.contact-block__input::placeholder, .contact-block__textarea::placeholder {
  color: #92b6cc;
}
.contact-block__input:focus, .contact-block__textarea:focus {
  border-color: #eb5830;
  box-shadow: 0 0 0 3px rgba(235, 88, 48, 0.1);
}
.contact-block__textarea {
  resize: vertical;
}
.contact-block__submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, #eb5830 0%, #f39200 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 1.5rem 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.contact-block__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 88, 48, 0.3);
}
.contact-block__submit-btn:active {
  transform: translateY(0);
}
.contact-block__submit-btn .btn-icon {
  background-color: #ffffff;
  color: #eb5830;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-block__submit-btn:hover .btn-icon {
  transform: translateX(3px);
}
.contact-block__submit-btn.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.contact-block__submit-btn.is-loading .btn-icon {
  opacity: 0;
}
.contact-block__submit-btn.is-loading .contact-block__loader {
  display: block;
}
.contact-block__loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: contact-spin 0.8s linear infinite;
}
.contact-block__info-col {
  flex: 1;
}
@media (min-width: 992px) {
  .contact-block__info-col {
    flex: 0 0 45%;
  }
}
.contact-block__info-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-block__info-title {
  color: #003767;
  margin: 0;
}
.contact-block__info-address {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}
.contact-block__info-address strong {
  color: #003767;
  font-weight: 700;
}
.contact-block__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 480px) {
  .contact-block__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-block__info-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-block__info-section--full {
  grid-column: 1/-1;
}
.contact-block__info-section-label {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #718096;
  margin: 0;
}
.contact-block__info-list, .contact-block__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-block__info-list li a, .contact-block__social-list li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-block__info-list li a:hover, .contact-block__social-list li a:hover {
  color: #eb5830;
}
.contact-block__info-email {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003767;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}
.contact-block__info-email:hover {
  color: #eb5830;
}

@keyframes contact-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.search-results-block {
  padding: 0 0 8rem 0;
  background-color: #ffffff;
}

.search-hero {
  background: linear-gradient(135deg, rgba(0, 55, 103, 0.03) 0%, rgba(235, 88, 48, 0.03) 100%);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(0, 55, 103, 0.05);
  margin-bottom: 5rem;
  text-align: center;
}
.search-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.search-hero .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.search-hero .breadcrumb a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
}
.search-hero .breadcrumb a:hover {
  color: #003767;
}
.search-hero .breadcrumb .separator {
  color: #e0e0e0;
  font-weight: 300;
}
.search-hero .breadcrumb .current {
  color: #003767;
  font-weight: 600;
}
.search-hero__title {
  color: #003767;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.search-hero__title span {
  color: #eb5830;
}
.search-hero__count {
  font-size: 1.5rem;
  color: #808080;
  margin-bottom: 3rem;
  font-weight: 500;
}
.search-hero__form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.search-hero__input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-hero__input {
  width: 100%;
  height: 5.6rem;
  padding: 0 16rem 0 3rem;
  border-radius: 5rem;
  border: 1.5px solid rgba(0, 55, 103, 0.15);
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  color: #231f1e;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 55, 103, 0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.search-hero__input::-moz-placeholder {
  color: #999999;
}
.search-hero__input::placeholder {
  color: #999999;
}
.search-hero__input:focus {
  border-color: #003767;
  box-shadow: 0 8px 32px rgba(0, 55, 103, 0.08);
  outline: none;
}
.search-hero__submit {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  height: 4.4rem;
  padding: 0 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(235, 88, 48, 0.15);
}
.search-hero__submit svg {
  transition: transform 0.3s ease;
}
.search-hero__submit svg path {
  fill: #ffffff;
}
.search-hero__submit .text {
  color: #ffffff;
}
.search-hero__submit:hover svg {
  transform: translate(2px, -2px);
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  transition: opacity 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6rem 4rem;
  }
}

.search-card-item__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.search-card-item__image {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  background-color: #f5f5f5;
}
.search-card-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.search-card-item__image.no-image {
  background: linear-gradient(135deg, rgba(0, 55, 103, 0.02) 0%, rgba(235, 88, 48, 0.02) 100%);
  border: 1px solid rgba(0, 55, 103, 0.05);
}
.search-card-item__image .no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(0, 55, 103, 0.2);
}
.search-card-item__image .no-image-placeholder svg {
  width: 4rem;
  height: 4rem;
}
.search-card-item__image:hover img {
  transform: scale(1.06);
}
.search-card-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.search-card-item__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: #808080;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.search-card-item__badge {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.2rem 1.2rem;
  border-radius: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.search-card-item__badge.badge-news {
  background-color: rgba(235, 88, 48, 0.08);
  color: #eb5830;
  border: 1px solid rgba(235, 88, 48, 0.12);
}
.search-card-item__badge.badge-project {
  background-color: rgba(0, 55, 103, 0.08);
  color: #003767;
  border: 1px solid rgba(0, 55, 103, 0.12);
}
.search-card-item__badge.badge-page {
  background-color: rgba(67, 67, 67, 0.08);
  color: #434343;
  border: 1px solid rgba(67, 67, 67, 0.12);
}
.search-card-item__badge.badge-default {
  background-color: rgba(128, 128, 128, 0.08);
  color: #808080;
  border: 1px solid rgba(128, 128, 128, 0.12);
}
.search-card-item__meta-separator {
  color: #e0e0e0;
}
.search-card-item__date {
  color: #888888;
}
.search-card-item__title {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .search-card-item__title {
    font-size: 2rem;
  }
}
.search-card-item__title a {
  display: block;
  text-decoration: none;
  color: #003767;
  transition: color 0.3s ease;
}
.search-card-item__title a:hover {
  color: #eb5830;
}
.search-card-item__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-card-item__link {
  margin-top: auto;
}

.no-results-wrapper {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, rgba(0, 55, 103, 0.01) 0%, rgba(235, 88, 48, 0.01) 100%);
  border-radius: 1.6rem;
  border: 1px dashed rgba(0, 55, 103, 0.15);
  margin: 2rem 0 6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}
.no-results-wrapper .no-results-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9.6rem;
  height: 9.6rem;
  background-color: rgba(0, 55, 103, 0.04);
  border-radius: 50%;
  color: rgba(0, 55, 103, 0.3);
  margin-bottom: 2.4rem;
}
.no-results-wrapper .no-results-icon svg {
  width: 4rem;
  height: 4rem;
}
.no-results-wrapper .no-results-title {
  color: #003767;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
}
.no-results-wrapper .no-results-text {
  font-size: 1.6rem;
  max-width: 520px;
  margin: 0 auto 3.2rem;
  color: #666666;
  line-height: 1.6;
}

.project-pagination,
.pagination,
.navigation.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  width: 100%;
}
.project-pagination .nav-links,
.pagination .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.project-pagination .page-numbers,
.pagination .page-numbers,
.navigation.pagination .page-numbers {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #003767;
  background-color: transparent;
  border: 1.5px solid rgba(0, 55, 103, 0.12);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.project-pagination .page-numbers svg,
.pagination .page-numbers svg,
.navigation.pagination .page-numbers svg {
  width: 1.8rem;
  height: 1.8rem;
}
.project-pagination .page-numbers .icon,
.pagination .page-numbers .icon,
.navigation.pagination .page-numbers .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 120%;
}
.project-pagination .page-numbers:hover:not(.current):not(.dots),
.pagination .page-numbers:hover:not(.current):not(.dots),
.navigation.pagination .page-numbers:hover:not(.current):not(.dots) {
  background-color: #eb5830;
  border-color: #eb5830;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(235, 88, 48, 0.2);
}
.project-pagination .page-numbers.current,
.pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
  background-color: #003767;
  border-color: #003767;
  color: #ffffff;
  cursor: default;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 55, 103, 0.15);
}
.project-pagination .page-numbers.dots,
.pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
  border-color: transparent;
  color: #808080;
  background-color: transparent;
  cursor: default;
  pointer-events: none;
  font-weight: 400;
}
.project-pagination .page-numbers.prev, .project-pagination .page-numbers.next,
.pagination .page-numbers.prev,
.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  background-color: transparent;
  border-color: rgba(0, 55, 103, 0.15);
}
.project-pagination .page-numbers.prev i,
.project-pagination .page-numbers.prev svg, .project-pagination .page-numbers.next i,
.project-pagination .page-numbers.next svg,
.pagination .page-numbers.prev i,
.pagination .page-numbers.prev svg,
.pagination .page-numbers.next i,
.pagination .page-numbers.next svg,
.navigation.pagination .page-numbers.prev i,
.navigation.pagination .page-numbers.prev svg,
.navigation.pagination .page-numbers.next i,
.navigation.pagination .page-numbers.next svg {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.project-pagination .page-numbers.prev .icon,
.pagination .page-numbers.prev .icon,
.navigation.pagination .page-numbers.prev .icon {
  transform: rotate(-180deg);
}
/*# sourceMappingURL=apps.css.map */
