:root {
  --white: white;
  --black: black;
  --text-blue: #1a2933;
  --dark-text: #3d3d3d;
  --dark-blue: #003a6f;
  --blue: #005daa;
  --light-grey: #f5f7fa;
  --dark-grey: #aaaaaa;
  --red: #ce3832;
  --green: #75ab42;
  --fs-description-3: 14px;
  --fs-description-2: 16px;
  --fs-description: clamp(14px, 1.8vw, 18px);
  --fs-description-1: clamp(16px, 2vw, 20px);
  --fs-description-b: clamp(14px, 2vw, 20px);
  --fs-subtitle: clamp(16px, 2vw, 22px);
  --fs-btn-bold-title: clamp(14px, 2vw, 20px);
  --fs-card-title: clamp(20px, 2.4vw, 24px);
  --fs-h4: clamp(18px, 2.8vw, 28px);
  --fs-h3: clamp(18px, 3.6vw,36px);
  --fs-h2: clamp(18px, 4.8vw, 40px);
  --fs-h1: clamp(20px, 4.8vw, 48px);
  --fs-display: clamp(20px, 5.4vw, 58px);
}

body {
  font-family: "Cairo";
  color: black;
}

.app-page {
  display: flex;
  flex-direction: column;
  background-color: var(--light-grey);
  min-height: 100dvh;
}

.page-content {
  flex: 1;
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1720px;
    padding-inline: 20px;
  }
}
.base-btn {
  background: transparent;
  border: 1.5px solid;
  outline: none;
  transition: 0.3s all ease-in-out;
  border-radius: 8px;
  padding: 18px 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  line-height: 100%;
  text-decoration: none;
  font-size: var(--fs-btn-bold-title);
  text-wrap: nowrap;
}
.base-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
@media (max-width: 992px) {
  .base-btn .icon {
    width: 20px;
    height: 20px;
  }
}
.base-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.base-outline-blue {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}
.base-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.base-white {
  color: var(--blue);
  border-color: var(--white);
  background: var(--white);
}
.base-white:hover {
  border-color: rgb(209, 209, 209);
  background: rgb(209, 209, 209);
}

.base-outline-white {
  color: var(--white);
  border-color: var(--white);
}
.base-outline-white:hover {
  box-shadow: inset 0 0 10px 0 var(--white);
}

.base-blue {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}
.base-blue:hover {
  background: var(--white);
  color: var(--blue);
}

.base-blue2 {
  background: var(--blue);
  color: var(--white);
  border: none;
}
.base-blue2:hover {
  background: var(--dark-blue);
}

.custom-icon {
  display: flex;
  aspect-ratio: 1/1;
}
.custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.custom-card-1 {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.custom-card-1 .image-card {
  display: flex;
  overflow: hidden;
  height: 115px;
  width: 104px;
  min-width: 104px;
  aspect-ratio: 1/1;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: 0.3s all ease-in-out;
}
.custom-card-1 .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-card-1 .body-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-card-1 .body-card .title-card {
  font-size: var(--fs-btn-bold-title);
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}
.custom-card-1 .body-card .date-card {
  color: var(--dark-grey);
  font-size: var(--fs-description-3);
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.custom-card-1:hover .image-card {
  border-radius: 20px;
}

.with-bg {
  position: relative;
  z-index: 1;
}
.with-bg::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 247, 250, 0.7490196078);
  z-index: -1;
}

.bg-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -2;
}
.bg-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-header-section {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.custom-header-section.center-header {
  justify-content: center;
  text-align: center;
}
.custom-header-section.center-header .header-left-side {
  align-items: center;
}
@media (max-width: 992px) {
  .custom-header-section.center-header {
    justify-content: flex-start;
  }
  .custom-header-section.center-header .header-left-side {
    align-items: flex-start;
    text-align: start;
  }
}
.custom-header-section .header-left-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.custom-header-section .custom-subtitle {
  padding: 4px 22px;
  position: relative;
  text-align: center;
  font-size: var(--fs-btn-bold-title);
  font-weight: 600;
  line-height: 120%;
  border-radius: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.custom-header-section .custom-subtitle.blue-subtitle {
  background: var(--blue);
  color: var(--white);
}
.custom-header-section .custom-subtitle.white-subtitle {
  background: var(--white);
  color: var(--blue);
}
.custom-header-section .custom-subtitle .icon {
  display: flex;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -13px;
  right: -10px;
  padding: 1.85px 2.3px 1.07px;
}
.custom-header-section .custom-subtitle .icon.white-icon {
  background-color: var(--white);
}
.custom-header-section .custom-subtitle .icon.blue-icon {
  background-color: var(--blue);
}
.custom-header-section .custom-subtitle .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-header-section .custom-title-2,
.custom-header-section .custom-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
.custom-header-section .custom-title-2.title-white,
.custom-header-section .custom-title.title-white {
  color: var(--white);
}
.custom-header-section .custom-title-2.title-dark-blue,
.custom-header-section .custom-title.title-dark-blue {
  color: var(--text-blue);
}
.custom-header-section .custom-title-2 .blue-text,
.custom-header-section .custom-title .blue-text {
  color: var(--blue);
}
.custom-header-section .custom-title-2 {
  font-size: var(--fs-h2);
}

.news-card {
  display: flex;
  flex-direction: column;
}
.news-card .header-card {
  height: 295px;
}
.news-card .header-card .wrapper-image {
  width: 100%;
  height: 100%;
  display: flex;
}
.news-card .header-card .wrapper-image img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: auto;
  max-height: 374px;
}
.news-card .body-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: -79px;
  margin-inline: 24px;
  background: var(--white);
  padding: 24px 20px;
  flex: 1;
}
.news-card .body-card .top-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card .body-card .top-side .date {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-blue);
  font-size: var(--fs-description);
  line-height: 120%;
}
.news-card .body-card .top-side .date .custom-icon {
  height: 24px;
  width: 24px;
}
.news-card .body-card .top-side .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--text-blue);
  line-height: 120%;
  margin: 0;
}
.news-card .body-card .divider {
  position: relative;
  background: rgba(0, 0, 0, 0.1019607843);
  width: 100%;
  height: 2px;
}
.news-card .body-card .divider::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 20%;
  background: var(--blue);
}
.news-card .body-card .bottom-side {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.news-card .body-card .bottom-side a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-description);
  color: var(--text-blue);
  line-height: 120%;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.news-card .body-card .bottom-side a:hover {
  color: var(--blue);
}
.news-card .body-card .bottom-side a .custom-icon {
  height: 20px;
  width: 20px;
}
.news-card .body-card .bottom-side a .custom-icon img {
  rotate: 180deg;
}

.custom-top-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.custom-top-side .desc {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
}

.card-manager {
  position: relative;
  max-width: 318px;
  max-height: 450px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.card-manager .image-card {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}
.card-manager .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.3s all ease-in-out;
}
.card-manager .actions {
  position: absolute;
  top: 0;
  left: 0;
  translate: -35% -35%;
  background: var(--light-grey);
  padding: 12px;
  border-radius: 50%;
}
.card-manager .actions .base-blue {
  border-radius: 50%;
  height: 39px;
  width: 39px;
  padding: 10px;
}
.card-manager .actions .go-two {
  background: var(--dark-blue);
  rotate: 30deg;
}
.card-manager .actions .go-two .custom-icon {
  height: 18px;
  width: 18px;
}
.card-manager .actions .go-two .custom-icon img {
  height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: 0.3s all ease-in-out;
}
.card-manager .actions .go-two .custom-icon .email-icon {
  opacity: 0;
}
.card-manager .actions .go-two:hover {
  rotate: 0deg;
}
.card-manager .actions .go-two:hover .custom-icon .email-icon {
  opacity: 1;
}
.card-manager .actions .go-two:hover .custom-icon .arrow-icon {
  opacity: 0;
}
.card-manager .card-info {
  display: flex;
  flex-direction: column;
  padding: 7px 9px 9px;
  padding-inline-end: 49px;
  background: var(--light-grey);
  border-radius: 24px;
  border-bottom-left-radius: 0;
  position: relative;
  z-index: -2;
}
.card-manager .card-info::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  height: 120%;
  width: 49px;
  background: white;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  z-index: -1;
}
.card-manager .card-info .title {
  margin: 0;
  font-size: var(--fs-description-b);
  font-weight: 700;
  line-height: 140%;
}
.card-manager .card-info .position {
  font-size: var(--fs-description-2);
  font-weight: 600;
  line-height: normal;
}
.card-manager:hover .image-card img {
  scale: 1.1;
}

.custom-section {
  padding-block: 80px 0;
}
@media (max-width: 992px) {
  .custom-section {
    padding-block: 24px;
  }
}

.custom-section-2 {
  padding-block: 80px;
}
@media (max-width: 992px) {
  .custom-section-2 {
    padding-block: 24px;
  }
}

#galleryModal {
  background: rgba(26, 41, 51, 0.7);
}
#galleryModal .gallery-swiper {
  height: auto !important;
  max-width: 1364px;
  position: relative;
  pointer-events: all;
}
#galleryModal .gallery-swiper .swiper-wrapper {
  height: auto !important;
}
#galleryModal .gallery-swiper .swiper-slide {
  height: auto !important;
  max-height: 90dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 32px 58px;
}
#galleryModal .gallery-swiper .swiper-slide .body-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 33.5px;
  align-items: center;
  text-align: center;
}
#galleryModal .gallery-swiper .swiper-slide .body-card .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
#galleryModal .gallery-swiper .swiper-slide .body-card .desc {
  color: var(--white);
  font-size: var(--fs-description);
  line-height: 120%;
}
#galleryModal .gallery-swiper .swiper-slide :is(img, video) {
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
}
#galleryModal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 46px;
  height: 46px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 50%;
  background-size: 1.5em;
  font-size: 12px;
  opacity: 1;
  transition: 0.3s all ease-in-out;
}
#galleryModal .btn-close:hover {
  opacity: 0.8;
}
#galleryModal .modal-body {
  padding: 0 2rem;
}
#galleryModal .swiper-button-next,
#galleryModal .swiper-button-prev {
  color: var(--blue);
}
#galleryModal .swiper-pagination {
  bottom: 0px;
}
#galleryModal .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}
#galleryModal .swiper-pagination-bullet-active {
  background: var(--blue);
  opacity: 1;
}
#galleryModal .modal-content {
  background: transparent;
  border: none;
  pointer-events: none;
}
#galleryModal .modal-dialog {
  max-width: 100%;
  margin-block: 0;
  height: 100%;
}
#galleryModal .modal-header {
  border: none;
}
#galleryModal .slide-navigation-button {
  z-index: 4;
  pointer-events: all;
  display: flex;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 6px;
  padding: 10px;
  overflow: hidden;
  border: none;
  transition: 0.3s all ease-in-out;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
#galleryModal .slide-navigation-button:not(.swiper-button-disabled):hover {
  box-shadow: 0 0 12px 0 var(--primary-red-transparent);
}
#galleryModal .slide-navigation-button.swiper-slide-next {
  right: 0;
}
#galleryModal .slide-navigation-button.swiper-slide-next img {
  rotate: 180deg;
}
#galleryModal .slide-navigation-button.swiper-slide-prev {
  left: 0;
}
#galleryModal .slide-navigation-button.swiper-button-disabled {
  background: #fcfcfc;
}
#galleryModal .slide-navigation-button.swiper-button-disabled img {
  filter: grayscale(1);
  opacity: 0.5;
}
#galleryModal .slide-navigation-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(20);
}

.service-card-2 {
  background-color: var(--white);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s all ease-in-out;
}
.service-card-2:hover {
  border-radius: 20px;
}
.service-card-2 .custom-icon {
  height: 64px;
  width: 64px;
  display: flex;
}
.service-card-2 .custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-card-2 .body-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card-2 .body-card .title {
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-card-title);
  line-height: 120%;
  color: var(--text-blue);
}
.service-card-2 .body-card .desc {
  color: var(--text-blue);
  font-weight: 700;
  line-height: 120%;
  font-style: var(--fs-description);
  opacity: 0.9;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (min-width: 1600px) {
  #header .container,
  #header .container-lg,
  #header .container-md,
  #header .container-sm,
  #header .container-xl,
  #header .container-xxl {
    max-width: 1800px;
    padding-inline: 20px;
  }
}
#header .header {
  position: relative;
  z-index: 99;
}
#header .header .main-header {
  z-index: 1;
  transition: 0.3s all ease-in-out;
}
#header .header .main-header .top-side {
  position: relative;
  background: var(--dark-blue);
  z-index: 1;
}
#header .header .main-header .top-side .pattern {
  position: absolute;
  right: 0;
  width: 35%;
  max-width: 661px;
  height: 100%;
  z-index: -1;
}
#header .header .main-header .top-side .pattern img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
#header .header .main-header .top-side .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
#header .header .main-header .top-side .container .right-side .location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-description-3);
  transition: 0.3s all ease;
}
#header .header .main-header .top-side .container .right-side .location:hover {
  color: rgb(205, 205, 205);
}
#header .header .main-header .top-side .container .right-side .location .custom-icon {
  width: 18px;
  height: 18px;
}
#header .header .main-header .top-side .container .left-side {
  display: flex;
  align-items: center;
  gap: 24px;
}
#header .header .main-header .top-side .container .left-side .language {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-description-3);
  font-weight: 700;
  background: none;
  border: none;
  color: var(--white);
  transition: 0.3s all ease;
}
#header .header .main-header .top-side .container .left-side .language:hover {
  color: rgb(205, 205, 205);
}
#header .header .main-header .top-side .container .left-side .language {
  padding: 0;
}
#header .header .main-header .top-side .container .left-side .language .custom-icon {
  height: 18px;
  width: 18px;
}
#header .header .main-header .top-side .container .left-side .divider {
  height: 16px;
  width: 2px;
  background: var(--white);
  opacity: 0.8;
}
#header .header .main-header .top-side .container .left-side .list-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
#header .header .main-header .top-side .container .left-side .list-social a {
  height: 24px;
  width: 24px;
  display: flex;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
#header .header .main-header .top-side .container .left-side .list-social a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header .main-header .top-side .container .left-side .list-social a:hover {
  scale: 1.1;
}
#header .header .main-header .bottom-side {
  background-color: white;
}
#header .header .main-header .bottom-side .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  transition: 0.3s all ease-in-out;
}
#header .header .main-header .bottom-side .container .search {
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background: none;
  border: none;
  padding: 0;
}
#header .header .main-header .bottom-side .container .search:hover {
  animation: bounce-scale 0.4s forwards;
}
#header .header .main-header .bottom-side .container .right-side {
  display: flex;
  width: 331px;
}
#header .header .main-header .bottom-side .container .right-side img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header .main-header .bottom-side .container .center-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1600px) {
  #header .header .main-header .bottom-side .container .center-side {
    display: none;
  }
}
#header .header .main-header .bottom-side .container .center-side .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header .header .main-header .bottom-side .container .center-side .nav-links a {
  color: var(--text-blue);
  font-size: var(--fs-description-2);
  font-weight: 600;
}
#header .header .main-header .bottom-side .container .center-side .nav-links a.active {
  color: var(--blue);
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle::after {
  display: flex;
  height: 10px;
  width: 10px;
  padding: 0;
  border: 2px solid var(--text-blue);
  border-top-right-radius: 4px;
  rotate: 135deg;
  border-bottom: none;
  border-left: none;
  margin: 0;
  transition: 0.2s all ease-in-out;
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle:hover,
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle:has(+ .dropdown-menu .active) {
  color: var(--blue);
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle.show {
  color: var(--blue);
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-toggle.show::after {
  rotate: 315deg;
  border-color: var(--blue);
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-menu {
  padding: 22px;
  border: 1px solid var(--light-grey);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  text-align: start;
  min-width: 291px;
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-menu .dropdown-item {
  padding: 0;
  font-size: var(--fs-description);
  color: black;
  transition: 0.3s all ease;
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-menu .dropdown-item:hover {
  color: var(--blue);
  background: none;
}
#header .header .main-header .bottom-side .container .center-side .nav-links .dropdown-menu.show {
  display: flex;
}
#header .header .main-header .bottom-side .container .center-side .divider {
  display: flex;
  height: 16px;
  width: 2px;
  background: var(--dark-grey);
  opacity: 0.6;
}
#header .header .main-header .bottom-side .container .left-side {
  display: flex;
  align-items: center;
  gap: 16px;
}
#header .header .main-header .bottom-side .container .left-side .search {
  display: none;
}
@media (max-width: 1600px) {
  #header .header .main-header .bottom-side .container .left-side .login-btn {
    display: none;
  }
}
#header .header .main-header .bottom-side .container .left-side .menuBTN {
  display: none;
  padding: 0;
  height: 40px;
  width: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  border: none;
  cursor: pointer;
  background: #005daa;
  padding: 12.5px 10.35px 11.5px 9.65px;
  border-radius: 50%;
}
#header .header .main-header .bottom-side .container .left-side .menuBTN span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}
#header .header .main-header .bottom-side .container .left-side .menuBTN span:first-child {
  width: 60%;
}
#header .header .main-header .bottom-side .container .left-side .menuBTN:hover span:nth-child(1) {
  width: 100%;
}
@media (max-width: 1600px) {
  #header .header .main-header .bottom-side .container .left-side .menuBTN {
    display: flex;
  }
}
@media (max-width: 1600px) {
  #header .header .main-header .bottom-side .container .left-side .search {
    display: flex;
  }
}
#header .header .main-header .bottom-side .container .left-side .profile1 .nav-link .custom-icon {
  height: 32px;
  width: 32px;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-toggle:hover {
  animation: bounce-scale 0.6s forwards;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-toggle::after {
  display: none;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-menu {
  padding: 24px 18px;
  flex-direction: column;
  gap: 31px;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-menu.show {
  display: flex;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-item {
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: var(--fs-description);
  font-weight: 600;
  transition: 0.3s all ease-in-out;
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-item:hover {
  background: none;
  color: var(--blue);
}
#header .header .main-header .bottom-side .container .left-side .profile1 .dropdown-item .custom-icon {
  height: 20px;
  width: 20px;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-toggle .custom-icon {
  height: 32px;
  width: 32px;
  aspect-ratio: 1/1;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-toggle::after {
  display: flex;
  height: 10px;
  width: 10px;
  padding: 0;
  border: 2px solid var(--text-blue);
  border-top-right-radius: 4px;
  rotate: 135deg;
  border-bottom: none;
  border-left: none;
  margin: 0;
  transition: 0.2s all ease-in-out;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-toggle.show::after {
  rotate: 315deg;
  border-color: var(--blue);
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-item {
  display: flex;
  align-items: center;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-item .custom-icon {
  display: flex;
  height: 20px;
  width: 20px;
}
#header .header .main-header .bottom-side .container .left-side .profile2 .dropdown-item.signout {
  color: var(--red);
}
#header .header .main-header .bottom-side .container .left-side .base-btn {
  font-size: var(--fs-description-2);
  font-weight: 600;
}
#header .header .main-header .top-side-mobile {
  display: none;
  background: var(--dark-blue);
}
#header .header .main-header .top-side-mobile .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 14px;
}
#header .header .main-header .top-side-mobile .container .right-side .location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-description-3);
  transition: 0.3s all ease;
}
#header .header .main-header .top-side-mobile .container .right-side .location:hover {
  color: rgb(205, 205, 205);
}
#header .header .main-header .top-side-mobile .container .right-side .location .custom-icon {
  width: 18px;
  height: 18px;
}
#header .header .main-header .top-side-mobile .container .left-side {
  width: auto;
  height: auto;
}
#header .header .main-header .top-side-mobile .container .left-side a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-description-3);
  transition: 0.3s all ease-in-out;
}
#header .header .main-header .top-side-mobile .container .left-side a:hover {
  color: rgb(205, 205, 205);
}
#header .header .main-header .top-side-mobile .container .left-side a .custom-icon {
  height: 24px;
  width: 24px;
  display: flex;
}
#header .header .main-header .top-side-mobile .container .left-side a .custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header .main-header .top-side-mobile .container .divider {
  display: flex;
  height: 24px;
  width: 1px;
  background: #ffffff;
  opacity: 0.8;
}
@media (max-width: 778px) {
  #header .header .main-header .top-side {
    display: none;
  }
  #header .header .main-header .top-side-mobile {
    display: block;
  }
}
#header .header .main-header.scrolled {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1490196078);
  transition: background 0.3s, box-shadow 0.3s;
  top: 0;
}
#header .header .main-header.scrolled .container {
  padding-block: 12px;
}
@media (max-width: 778px) {
  #header .header .main-header.scrolled > .container {
    padding: 8px 16px;
  }
  #header .header .main-header.scrolled > .container > .left-side {
    height: 36px;
    width: 36px;
  }
}
#header .header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 2000;
  flex-direction: column;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
  flex-direction: column;
  gap: 24px;
}
#header .header .mobile-menu.active {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
}
#header .header .mobile-menu .top-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#header .header .mobile-menu .top-side .logo {
  width: 218px;
  height: auto;
  display: flex;
}
#header .header .mobile-menu .top-side .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header .mobile-menu .top-side .menu-close {
  background: none;
  border: none;
  padding: 0;
  padding: 16px;
}
#header .header .mobile-menu .nav-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  margin: 0;
  gap: 24px;
  overflow-y: auto;
  max-height: 75dvh;
  width: 100%;
  list-style: none;
}
#header .header .mobile-menu .nav-items .nav-item {
  width: 100%;
  max-width: 440px;
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  overflow: visible;
}
#header .header .mobile-menu .nav-items .nav-item a {
  color: var(--text-blue);
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 0px 20px 24px;
  text-decoration: none;
  border-radius: 0;
  transition: color 0.24s, background 0.3s;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5019607843);
  box-shadow: none;
}
#header .header .mobile-menu .nav-items .nav-item a:hover, #header .header .mobile-menu .nav-items .nav-item a.active {
  color: var(--primary-red);
  background-color: rgba(255, 255, 255, 0.04);
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-toggle::after {
  content: "";
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 10px;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s ease;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-135deg) translateY(1px);
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-top: 10px;
  padding: 10px 0;
  max-height: calc(80vh - 150px);
  overflow-y: auto;
  position: static !important;
  transform: none !important;
  width: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  gap: 8px;
  max-height: 300px;
  overflow: auto;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu.show {
  display: block;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu::-webkit-scrollbar {
  width: 7px;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 93, 170, 0.1215686275);
  border-radius: 6px;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 93, 170, 0.6862745098);
  border-radius: 6px;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #005daa;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu .dropdown-item {
  color: #000;
  padding: 8px 28px;
  font-size: var(--fs-18, 1rem);
  text-align: start;
  border-radius: 6px;
  transition: background 0.21s, color 0.21s;
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu .dropdown-item:hover, #header .header .mobile-menu .nav-items .nav-item .dropdown-menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.11);
  color: var(--primary-red);
}
#header .header .mobile-menu .nav-items .nav-item .dropdown-menu .dropdown-item.active {
  color: var(--primary-red);
}
#header .header .mobile-menu .nav-items::-webkit-scrollbar {
  width: 6px;
}
#header .header .mobile-menu .nav-items::-webkit-scrollbar-track {
  background: rgba(0, 93, 170, 0.1215686275);
  border-radius: 10px;
}
#header .header .mobile-menu .nav-items::-webkit-scrollbar-thumb {
  background: rgba(0, 93, 170, 0.6862745098);
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#header .header .mobile-menu .nav-items::-webkit-scrollbar-thumb:hover {
  background: #005daa;
}
#header .header .mobile-menu .footer-side {
  padding: 0 16px;
}
@media (max-width: 1599px) {
  #header .header .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1600px) {
  #header .header .mobile-menu {
    display: none !important;
  }
}
#header.inner-header .header .main-header {
  background: var(--mid-blue);
}
@media (max-width: 1599px) {
  #header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: 0.3s all ease-in-out;
    z-index: 10;
    pointer-events: none;
  }
  #header:has(.header .mobile-menu.active)::before {
    opacity: 1;
    pointer-events: all;
  }
  #header:has(.header .mobile-menu.active) .header .main-header {
    z-index: -1;
  }
}

@keyframes bounce-scale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  80% {
    scale: 0.8;
  }
  100% {
    scale: 1;
  }
}
.search-modal {
  direction: rtl;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(4px);
  z-index: 999;
}
.search-modal .modal-dialog {
  max-width: 1065px;
}
.search-modal .btn-close {
  position: absolute;
  top: 60px;
  right: 60px;
  background-color: var(--white);
  height: 48px;
  width: 48px;
  filter: none;
  opacity: 1;
  border-radius: 50%;
  background-size: 20px;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 778px) {
  .search-modal .btn-close {
    height: 32px;
    width: 32px;
    background-size: 16px;
    top: 30px;
    right: 30px;
  }
}
.search-modal .btn-close:hover {
  opacity: 0.7;
}
.search-modal .search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 48px;
  width: 95%;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(40, 41, 61, 0.18);
  display: flex;
  padding: 12px 24px;
}
.search-modal .search-modal-content .modal-body {
  padding: 0;
}
.search-modal .search-modal-content .search-form {
  display: flex;
}
.search-modal .search-modal-content .search-form .form-group {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.search-modal .search-modal-content .search-form .form-group .wrapper-input {
  flex: 1;
}
.search-modal .search-modal-content .search-form .form-group .wrapper-input input,
.search-modal .search-modal-content .search-form .form-group .wrapper-input textarea {
  background: #fff;
  border-top-left-radius: 0;
  box-shadow: none;
  padding: 0;
  font-size: var(--fs-description-1);
  color: var(--dark-text);
  border: none;
}
.search-modal .search-modal-content .search-form .form-group .wrapper-input input::-moz-placeholder, .search-modal .search-modal-content .search-form .form-group .wrapper-input textarea::-moz-placeholder {
  color: var(--dark-text);
}
.search-modal .search-modal-content .search-form .form-group .wrapper-input input::placeholder,
.search-modal .search-modal-content .search-form .form-group .wrapper-input textarea::placeholder {
  color: var(--dark-text);
}
.search-modal .search-modal-content .search-form .base-btn {
  flex: 1;
  border-radius: 40px;
  max-width: 111px;
  border: 1px solid;
  padding: 12px 38px;
}
@media (max-width: 778px) {
  .search-modal .search-modal-content .search-form .base-btn {
    padding: 12px;
  }
}

.modal-backdrop {
  display: none;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: white;
}

.banner-home .container .banner-content {
  position: relative;
  margin-bottom: 18px;
  min-height: 565px;
  display: flex;
  align-items: center;
  border-radius: 28px;
  overflow: hidden;
  padding: 58px;
}
@media (max-width: 778px) {
  .banner-home .container .banner-content {
    padding: 16px;
  }
}
.banner-home .container .banner-content .bg-banners {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}
.banner-home .container .banner-content .bg-banners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.01deg, rgba(84, 84, 84, 0.35) 50%, rgba(84, 84, 84, 0.6) 99.99%);
  z-index: 1;
}
.banner-home .container .banner-content .bg-banners .bg-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.banner-home .container .banner-content .bg-banners .bg-banner.active {
  opacity: 1;
}
.banner-home .container .banner-content .bg-banners .bg-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .container .banner-content .container-swiper {
  max-width: 721px;
  width: 100%;
}
.banner-home .container .banner-content .container-swiper .swiper-banner {
  width: 100%;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide .body-slide {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide .title-slide {
  text-wrap: balance;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 120%;
  color: var(--white);
  margin: 0;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide .desc-slide {
  font-size: var(--fs-description-b);
  font-weight: bold;
  color: var(--white);
  line-height: 140%;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide .actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.banner-home .container .banner-content .container-swiper .swiper-banner .swiper-slide .actions .custom-icon img {
  rotate: 180deg;
}
.banner-home .container .banner-content .pagination-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  bottom: 24px;
  padding: 0 16px;
}
@media (max-width: 778px) {
  .banner-home .container .banner-content .pagination-banner {
    justify-content: flex-end;
  }
}
.banner-home .container .banner-content .pagination-banner .swiper-pagination-bullet {
  position: relative;
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  background: var(--white);
  opacity: 1;
  transition: 0.3s all ease-in-out;
  margin: 0;
}
.banner-home .container .banner-content .pagination-banner .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 27px;
  width: 27px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 1px solid var(--blue);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.banner-home .container .banner-content .pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue);
}
.banner-home .container .banner-content .pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.banner-home .container .banner-content .navigation-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  bottom: 24px;
  left: 58px;
  z-index: 10;
}
@media (max-width: 778px) {
  .banner-home .container .banner-content .navigation-banner {
    left: 16px;
  }
}
.banner-home .container .banner-content .navigation-banner .divider {
  height: 26px;
  width: 1px;
  background: #ffffff;
  opacity: 0.5;
}
.banner-home .container .banner-content .navigation-banner button {
  background: none;
  border: none;
  transition: 0.3s all ease-in-out;
  width: 24px;
  height: 24px;
  padding: 0;
}
.banner-home .container .banner-content .navigation-banner button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner-home .container .banner-content .navigation-banner button:hover {
  opacity: 0.8;
}

.breaking-news .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-block: 18px 24px;
}
.breaking-news .container .header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.breaking-news .container .header-section .title {
  color: var(--text-blue);
  font-weight: 700;
  font-size: var(--fs-card-title);
  margin: 0;
}
.breaking-news .container .header-section a {
  color: var(--blue);
  text-decoration: none;
  font-size: var(--fs-btn-bold-title);
  font-weight: 600;
  transition: 0.3s all ease-in-out;
}
.breaking-news .container .header-section a:hover {
  color: var(--dark-blue);
}

.about {
  padding-block: 106px 108px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about {
    padding-block: 64px;
  }
}
@media (max-width: 992px) {
  .about {
    padding-block: 48px;
  }
}
@media (max-width: 778px) {
  .about {
    padding-block: 28px;
  }
}
.about .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.about .container .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  max-width: 1078px;
  flex: 1 2;
}
.about .container .left-side .about-content {
  display: flex;
  gap: 28px;
}
.about .container .left-side .about-content .about-image {
  display: flex;
  flex: 1;
  max-width: 605px;
  max-height: 417px;
  border-radius: 24px;
  overflow: hidden;
}
.about .container .left-side .about-content .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .container .left-side .about-content .about-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
  max-width: 448px;
  gap: 32px;
}
.about .container .left-side .about-content .about-info .card-about-info {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.about .container .left-side .about-content .about-info .card-about-info .icon-card {
  background: var(--dark-blue);
  border-radius: 12px;
  padding: 24px;
  display: flex;
}
.about .container .left-side .about-content .about-info .card-about-info .icon-card img {
  height: 42px;
  width: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .container .left-side .about-content .about-info .card-about-info .body-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about .container .left-side .about-content .about-info .card-about-info .body-card .title-card {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: black;
  margin: 0;
  line-height: 120%;
}
.about .container .left-side .about-content .about-info .card-about-info .body-card .desc-card {
  font-size: var(--fs-description);
  line-height: 120%;
}
.about .container .left-side .custom-header-section .header-left-side .custom-title {
  text-wrap: balance;
}
.about .container .right-side {
  flex: 1;
  max-width: 478px;
}
.about .container .right-side .our-principles {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 24px;
  background: var(--dark-blue);
  padding: 43px 32px;
}
.about .container .right-side .our-principles .top-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about .container .right-side .our-principles .top-side .main-title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  color: var(--white);
  margin: 0;
}
.about .container .right-side .our-principles .top-side .main-desc {
  font-size: var(--fs-description);
  font-weight: 400;
  line-height: 120%;
  color: var(--white);
}
.about .container .right-side .our-principles .list-principle {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.about .container .right-side .our-principles .list-principle li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: var(--fs-description);
  color: var(--white);
}
.about .container .right-side .our-principles .list-principle li .custom-icon {
  height: 32px;
  width: 32px;
}
@media (max-width: 1500px) {
  .about .container .left-side .about-content {
    flex-direction: column;
  }
  .about .container .left-side .about-content .about-image,
  .about .container .left-side .about-content .about-info {
    max-width: 100%;
  }
  .about .container .left-side .about-content .about-info {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .about .container {
    flex-direction: column;
  }
  .about .container .right-side {
    max-width: 100%;
  }
}

.services {
  background: var(--blue);
  padding-block: 80px;
}
@media (max-width: 778px) {
  .services {
    padding-block: 40px;
  }
}
.services .container {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media (max-width: 778px) {
  .services .container {
    gap: 24px;
  }
}
.services .container .bottom-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.services .container .bottom-side .wrapper-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  z-index: 10;
}
@media (max-width: 778px) {
  .services .container .bottom-side .wrapper-navigation {
    left: 16px;
  }
}
.services .container .bottom-side .wrapper-navigation .divider {
  height: 26px;
  width: 1px;
  background: #ffffff;
  opacity: 0.5;
}
.services .container .bottom-side .wrapper-navigation button {
  background: none;
  border: none;
  transition: 0.3s all ease-in-out;
  width: 24px;
  height: 24px;
  padding: 0;
}
.services .container .bottom-side .wrapper-navigation button.swiper-button-lock {
  opacity: 0.8 !important;
  display: block !important;
}
.services .container .bottom-side .wrapper-navigation button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services .container .bottom-side .wrapper-navigation button:hover {
  opacity: 0.8;
}
.services .container .bottom-side .btn-see-more img {
  rotate: 180deg;
}

.news {
  padding-block: 62px 60px;
}
@media (max-width: 992px) {
  .news {
    padding-block: 48px;
  }
}
@media (max-width: 778px) {
  .news {
    padding-block: 28px;
  }
}
.news .container {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
.news .container .actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news .container .actions .btn-see-more img {
  rotate: 180deg;
}

.list-news {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
}
@media (max-width: 992px) {
  .list-news {
    gap: 18px;
  }
}
.list-news .news-card {
  flex: 1 1 400px;
  width: 100%;
  max-width: 33.3333333333%;
}
@media (max-width: 1500px) {
  .list-news .news-card {
    flex: 1 1 360px;
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .list-news .news-card {
    max-width: 100%;
  }
}

.media-center {
  padding-block: 64px 80px;
}
@media (max-width: 992px) {
  .media-center {
    padding-block: 48px;
  }
}
@media (max-width: 778px) {
  .media-center {
    padding-block: 28px;
  }
}
.media-center .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media (max-width: 778px) {
  .media-center .container {
    gap: 24px;
  }
  .media-center .container .header-right-side {
    display: none;
  }
}
.media-center .container .btn-see-more img {
  rotate: 180deg;
}
.media-center .container .container-swiper-media {
  width: 100%;
}
.media-center .container .container-swiper-media .swiper-media {
  width: 100%;
}
.media-center .container .container-swiper-media .swiper-media .swiper-slide {
  height: 554px;
  width: 100%;
}
@media (max-width: 1200px) {
  .media-center .container .container-swiper-media .swiper-media .swiper-slide {
    height: 460px;
  }
}
@media (max-width: 778px) {
  .media-center .container .container-swiper-media .swiper-media .swiper-slide {
    height: 431px;
    max-width: calc(100% - 32px);
  }
}

.media-center-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  width: 100%;
  text-decoration: none;
  display: flex;
}
.media-center-card .image-card {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.media-center-card .image-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(179.89deg, rgba(0, 58, 111, 0.2) 47.74%, #003a6f 99.9%);
  transition: 0.2s all ease-in-out;
}
.media-center-card .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-center-card .body-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 24px 32px;
  height: 100%;
}
.media-center-card .body-card .media-type {
  background: var(--dark-blue);
  padding: 6px 10px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  color: var(--white);
  font-size: var(--fs-description);
  line-height: 120%;
}
.media-center-card .body-card .media-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.media-center-card .body-card .media-info .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--white);
  line-height: 120%;
  margin: 0;
}
.media-center-card .body-card .media-info .desc {
  color: var(--white);
  font-size: var(--fs-description);
  line-height: 120%;
}
.media-center-card:hover .image-card::before {
  height: 200%;
}

#customInfoModal {
  background: rgba(0, 58, 111, 0.5019607843);
  align-items: center;
  justify-content: center;
}
#customInfoModal.show {
  display: flex !important;
}
#customInfoModal .modal-dialog {
  max-width: 975px;
  width: calc(100% - 40px);
  position: relative;
  min-height: auto;
}
#customInfoModal .modal-dialog .btn-close {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  translate: 50% -50%;
  z-index: 12;
  width: 38px;
  height: 38px;
  background: var(--dark-blue);
  box-sizing: border-box;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.0705882353);
  pointer-events: all;
  transition: background 0.2s;
  opacity: 1;
}
#customInfoModal .modal-dialog .btn-close .custom-icon {
  height: 18px;
  width: 18px;
}
#customInfoModal .modal-dialog .btn-close:hover, #customInfoModal .modal-dialog .btn-close:focus {
  background: var(--blue);
}
#customInfoModal .modal-dialog .btn-close svg,
#customInfoModal .modal-dialog .btn-close .icon {
  width: 18px;
  height: 18px;
  color: var(--primary-blue, #003a6f);
}
#customInfoModal .modal-dialog .modal-content {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  overflow: hidden;
}
#customInfoModal .modal-dialog .modal-content .left-side {
  flex: 1;
  max-width: 419px;
  display: flex;
}
#customInfoModal .modal-dialog .modal-content .left-side .wrapper-image {
  width: 100%;
  display: flex;
}
#customInfoModal .modal-dialog .modal-content .left-side .wrapper-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#customInfoModal .modal-dialog .modal-content .right-side {
  flex: 1;
  padding: 47px 32px;
  display: flex;
  flex-direction: column;
}
#customInfoModal .modal-dialog .modal-content .right-side .custom-header-section .header-left-side {
  gap: 18px;
  align-items: flex-start;
}
#customInfoModal .modal-dialog .modal-content .right-side .custom-header-section .header-left-side .custom-subtitle {
  margin-bottom: 8px;
}
#customInfoModal .modal-dialog .modal-content .right-side .custom-header-section .header-left-side .custom-title {
  font-size: clamp(20px, 3.2vw, 32px);
}
#customInfoModal .modal-dialog .modal-content .right-side .custom-header-section .header-left-side .modal-desc {
  font-size: var(--fs-description);
  color: var(--dark-grey);
  font-weight: 600;
  margin-bottom: 16px;
}
#customInfoModal .modal-dialog .modal-content .right-side .custom-header-section .header-left-side .base-btn {
  font-size: var(--fs-description);
  font-weight: 600;
}
@media (max-width: 778px) {
  #customInfoModal .modal-dialog .modal-content {
    flex-direction: column;
    align-items: stretch;
  }
  #customInfoModal .modal-dialog .modal-content .left-side {
    max-width: 100%;
    max-height: 300px;
  }
  #customInfoModal .modal-dialog .modal-content .right-side {
    padding: 32px 24px;
  }
}

html[dir=rtl] #customInfoModal .modal-dialog .btn-close {
  translate: -50% -50%;
}

.inner-banner {
  padding-block: 65px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  z-index: 1;
}
.inner-banner .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  text-align: center;
}
.inner-banner .container .bg-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -2;
}
.inner-banner .container .bg-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner .container::before {
  content: "";
  position: absolute;
  background-color: rgba(26, 41, 51, 0.5490196078);
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner-banner .container .title-page {
  font-size: var(--fs-h2);
  color: var(--white);
  font-weight: 700;
  margin: 0;
}
.inner-banner .container .breadcrumb {
  margin: 0;
  justify-content: center;
}
.inner-banner .container .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}
.inner-banner .container .breadcrumb li,
.inner-banner .container .breadcrumb a {
  text-decoration: none;
  color: var(--white);
  font-size: var(--fs-subtitle);
  transition: 0.3s all ease-in-out;
}
.inner-banner .container .breadcrumb a:hover {
  color: var(--dark-grey);
}

.general-message {
  margin-block: 99px 0;
}
@media (max-width: 992px) {
  .general-message {
    margin-block: 24px;
  }
}
@media (max-width: 992px) {
  .general-message .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
}
.general-message .container .left-side {
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
  margin-inline-end: 48px;
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .general-message .container .left-side {
    margin: 0;
  }
}
.general-message .container .left-side .image-manager {
  display: flex;
  aspect-ratio: 1/1;
  width: 367px;
  height: 367px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
}
@media (max-width: 992px) {
  .general-message .container .left-side .image-manager {
    width: 280px;
    height: 280px;
  }
}
.general-message .container .left-side .image-manager img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.general-message .container .right-side {
  display: inline;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.general-message .container .right-side .custom-header-section {
  margin-bottom: 27px;
}
.general-message .container .right-side .text-message p {
  font-size: var(--fs-description-1);
  color: var(--black);
  margin-bottom: 28px;
}
.general-message .container .right-side .text-message h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  text-align: end;
}

.who-us {
  margin-block: 75px 78px;
}
@media (max-width: 992px) {
  .who-us {
    margin-block: 24px;
  }
}
.who-us .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.who-us .container .top-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.who-us .container .top-side .desc {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
}
.who-us .container .list-images {
  display: flex;
  gap: 30px;
}
.who-us .container .list-images .image-card {
  flex: 1;
  display: flex;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background: #d9d9d9;
  overflow: hidden;
  max-height: 291px;
}
.who-us .container .list-images .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.who-us .container .list-images .image-card img:hover {
  scale: 1.1;
}
@media (max-width: 778px) {
  .who-us .container .list-images {
    flex-direction: column;
  }
  .who-us .container .list-images .image-card {
    max-height: 180px;
  }
}

.vision-mission {
  margin-block: 80px;
}
@media (max-width: 992px) {
  .vision-mission {
    margin-top: 24px;
  }
}
.vision-mission .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .vision-mission .container {
    grid-template-columns: 1fr;
  }
}
.vision-mission .container .box-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  min-height: 631px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .vision-mission .container .box-info {
    min-height: 331px;
  }
}
.vision-mission .container .box-info::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(26, 41, 51, 0.5490196078);
  z-index: -1;
}
.vision-mission .container .box-info .bg-box {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -2;
  transition: 0.2s all ease-in-out;
}
.vision-mission .container .box-info .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision-mission .container .box-info:hover .bg-box {
  scale: 1.1;
}
.vision-mission .container .box-info .body-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  max-width: 647px;
}
.vision-mission .container .box-info .title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: bold;
  color: var(--white);
}
.vision-mission .container .box-info .desc {
  font-size: var(--fs-description-1);
  color: var(--white);
}

.our-goals {
  background-color: var(--white);
}
.our-goals .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 80px 52px;
}
@media (max-width: 992px) {
  .our-goals .container {
    padding-block: 24px;
  }
}
.our-goals .container .top-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.our-goals .container .top-side .desc {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
}
.our-goals .container .wrapper-goals {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 992px) {
  .our-goals .container .wrapper-goals {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}
.our-goals .container .wrapper-goals .goal-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.our-goals .container .wrapper-goals .goal-card .header-card {
  padding: 28px 31px;
  background: #f8f8f8;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.our-goals .container .wrapper-goals .goal-card .header-card .num-card {
  position: absolute;
  inset: 0 0;
  border-radius: 50%;
  background: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  translate: -50% -50%;
}
.our-goals .container .wrapper-goals .goal-card .body-card {
  font-size: var(--fs-subtitle);
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
}
.our-goals .container .wrapper-goals .line-goal {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
}
.our-goals .container .wrapper-goals .line-goal img {
  width: 100%;
  height: auto;
}

.our-values .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-block: 80px 0;
}
@media (max-width: 992px) {
  .our-values .container {
    margin-block: 24px;
  }
}
.our-values .container .top-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.our-values .container .top-side .desc {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
}
.our-values .container .list-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .our-values .container .list-values {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (max-width: 992px) {
  .our-values .container .list-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .our-values .container .list-values {
    grid-template-columns: 1fr;
  }
}
.our-values .container .list-values {
  gap: 24px;
}
.our-values .container .list-values .value-card {
  max-width: 430px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.our-values .container .list-values .value-card .icon-card {
  height: 64px;
  width: 64px;
  display: flex;
  aspect-ratio: 1/1;
}
@media (max-width: 992px) {
  .our-values .container .list-values .value-card .icon-card {
    height: 48px;
    width: 48px;
  }
}
.our-values .container .list-values .value-card .icon-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-values .container .list-values .value-card .body-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.our-values .container .list-values .value-card .body-card .title {
  font-size: var(--fs-subtitle);
  color: var(--black);
  font-weight: 600;
  margin: 0;
}
.our-values .container .list-values .value-card .body-card .desc {
  color: var(--dark-text);
  font-size: var(--fs-description);
}

.board-managers {
  margin-block: 80px 0;
}
@media (max-width: 992px) {
  .board-managers {
    margin-block: 24px;
  }
}
.board-managers .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px 16px;
}
.board-managers .container .wrapper-card-manager {
  display: flex;
  justify-content: center;
}
.board-managers .container .wrapper-card-manager:first-child {
  flex: 1 1 100%;
}

.decisions-circulars .container .wrapper-content .search-header {
  width: 100%;
  margin-bottom: 6px;
}

.regulations-laws .container .wrapper-content .search-header {
  width: 100%;
  margin-bottom: 6px;
}

.wrapper-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.wrapper-content .category-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.wrapper-content .category-content .base-btn {
  border-color: black;
  border-radius: 160px;
  padding: 14px 32px;
  font-weight: 600;
  gap: 8px;
}
.wrapper-content .category-content .base-btn img {
  transition: 0.3s all ease-in-out;
}
.wrapper-content .category-content .base-btn.active, .wrapper-content .category-content .base-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.wrapper-content .category-content .base-btn.active img, .wrapper-content .category-content .base-btn:hover img {
  filter: grayscale(2) invert(1) brightness(2);
}
.wrapper-content .section-content {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.wrapper-content .section-content.with-search {
  align-items: stretch;
}
.wrapper-content .section-content.active {
  display: flex;
}
.wrapper-content .section-content .dt-container,
.wrapper-content .section-content .document-list {
  width: 100%;
}

.list-decisions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 30px;
}
@media (max-width: 992px) {
  .list-decisions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .list-decisions.with-video {
    grid-template-columns: 1fr;
  }
}

.custom-decisions-card {
  display: flex;
  align-items: center;
  gap: 30px;
}
.custom-decisions-card .image-card {
  flex: 1 2;
  aspect-ratio: 1/1;
  display: flex;
  max-width: 255px;
  height: 100%;
  border-radius: 0 20px;
  overflow: hidden;
}
.custom-decisions-card .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-decisions-card .body-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.custom-decisions-card .body-card .info-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.custom-decisions-card .body-card .info-card .title {
  font-size: var(--fs-card-title);
  color: var(--black);
  font-weight: 700;
  margin: 0;
}
.custom-decisions-card .body-card .info-card .desc,
.custom-decisions-card .body-card .info-card .date {
  color: var(--black);
  font-size: var(--fs-description-1);
  font-weight: 400;
}
.custom-decisions-card .body-card .info-card-2 {
  gap: 12px;
}
.custom-decisions-card .body-card .actions {
  display: flex;
  width: 100%;
}
.custom-decisions-card .body-card .actions .base-btn {
  flex: 1;
  border-radius: 49.42px;
  max-width: 268px;
}
.custom-decisions-card .body-card .actions .base-btn:hover img {
  filter: grayscale(2) invert(1) brightness(2);
}
@media (max-width: 558px) {
  .custom-decisions-card {
    flex-direction: column;
    align-items: stretch;
    flex: auto;
  }
  .custom-decisions-card .image-card {
    max-width: 100%;
    flex: auto;
    aspect-ratio: unset;
  }
  .custom-decisions-card .body-card {
    flex: auto;
  }
}

.custom-library-card {
  display: flex;
  align-items: center;
  gap: 30px;
}
.custom-library-card .image-card {
  flex: 1 2;
  aspect-ratio: 1/1;
  display: flex;
  max-width: 289px;
  height: 100%;
  overflow: hidden;
  border-radius: 0 20px;
  padding: 35px;
  background: #fff;
}
.custom-library-card .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-library-card .body-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.custom-library-card .body-card .info-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.custom-library-card .body-card .info-card .title {
  font-size: var(--fs-card-title);
  color: var(--black);
  font-weight: 700;
  margin: 0;
}
.custom-library-card .body-card .info-card .desc,
.custom-library-card .body-card .info-card .date {
  color: var(--black);
  font-size: var(--fs-description-1);
  font-weight: 400;
}
.custom-library-card .body-card .actions {
  display: flex;
  gap: 12px;
  width: 100%;
}
.custom-library-card .body-card .actions .base-btn {
  flex: 1;
  border-radius: 49.42px;
  max-width: 268px;
}
.custom-library-card .body-card .actions .base-btn.view-video:hover img {
  filter: none;
}
.custom-library-card .body-card .actions .base-btn:hover img {
  filter: grayscale(2) invert(1) brightness(2);
}
@media (max-width: 558px) {
  .custom-library-card {
    flex-direction: column;
    align-items: stretch;
    flex: auto;
  }
  .custom-library-card .image-card {
    max-width: 100%;
    flex: auto;
    aspect-ratio: unset;
  }
  .custom-library-card .body-card {
    flex: auto;
  }
  .custom-library-card .body-card .actions .base-btn {
    max-width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .list-decisions.with-video .custom-library-card {
    flex-direction: column;
    align-items: stretch;
    flex: auto;
  }
  .list-decisions.with-video .custom-library-card .image-card {
    max-width: 100%;
    flex: auto;
    aspect-ratio: unset;
  }
}

.organizational-structure .container {
  overflow: hidden;
}
.organizational-structure .container #chart {
  width: 100%;
  min-height: 1100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  direction: ltr;
  scale: 0.8;
  transform-origin: top;
}
.organizational-structure .container #chart .orgchart {
  min-height: 363px;
  background: none;
}
.organizational-structure .container #chart .orgchart .hierarchy:not(.couple) > .node:has(+ .nodes)::after, .organizational-structure .container #chart .orgchart > ul > li > ul li > .node:not(.outsider)::before {
  border-top: 2px dashed var(--blue);
  background-color: var(--blue);
}
.organizational-structure .container #chart .orgchart .hierarchy::before {
  border-top: 2px dashed var(--blue);
}
.organizational-structure .container #chart .orgchart .node {
  padding: 3px 24px;
  pointer-events: none;
  background: none;
}
.organizational-structure .container #chart .orgchart .node.customclass {
  padding: 0;
  margin: 30px 0px;
  height: 0;
  position: relative;
  border-right: none;
}
.organizational-structure .container #chart .orgchart .node.customclass::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.customclass .title {
  height: 203px;
  width: 0px;
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.organizational-structure .container #chart .orgchart .node.customclass + .nodes {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -165%;
}
.organizational-structure .container #chart .orgchart .node.customclass + .nodes .last-row + .nodes .node {
  padding-inline: 34px;
}
.organizational-structure .container #chart .orgchart .node.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.organizational-structure .container #chart .orgchart .node.vertical > ::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  left: auto;
  width: 10px;
  height: 2px;
  border-top: 2px dashed var(--blue);
  transform: rotate(0deg);
}
.organizational-structure .container #chart .orgchart .node.vertical + .nodes .hierarchy::before {
  right: -12px;
  left: auto;
  width: 80px;
  rotate: 90deg;
  top: 0px;
}
.organizational-structure .container #chart .orgchart .node.vertical + .nodes .node:not(.outsider)::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.vertical + .nodes {
  flex-direction: column;
  align-items: center;
}
.organizational-structure .container #chart .orgchart .node.line-center .title {
  translate: 0 -75%;
}
.organizational-structure .container #chart .orgchart .node.first-row {
  translate: 0 -75%;
}
.organizational-structure .container #chart .orgchart .node.first-row.left-row {
  translate: -250px -200px;
}
.organizational-structure .container #chart .orgchart .node.first-row.left-row::before {
  width: 160px;
  height: 200px;
  translate: 0 96%;
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  border-top: 2px dashed var(--blue);
  border-right: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.first-row.right-row {
  translate: 250px -200px;
}
.organizational-structure .container #chart .orgchart .node.first-row.right-row::before {
  width: 160px;
  height: 200px;
  translate: 0 96%;
  content: "";
  position: absolute;
  top: 50%;
  right: 80%;
  left: auto;
  border-top: 2px dashed var(--blue);
  border-left: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.second-row {
  translate: 0 -75%;
}
.organizational-structure .container #chart .orgchart .node.second-row.left-row {
  translate: -249px -200px;
}
.organizational-structure .container #chart .orgchart .node.second-row.left-row .title {
  translate: 22px -75%;
}
.organizational-structure .container #chart .orgchart .node.second-row.left-row::before {
  width: 160px;
  height: 135px;
  translate: 0 80%;
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  border-top: 2px dashed var(--blue);
  border-right: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.second-row.right-row {
  translate: 250px -200px;
}
.organizational-structure .container #chart .orgchart .node.second-row.right-row .title {
  translate: -22px -75%;
}
.organizational-structure .container #chart .orgchart .node.second-row.right-row::before {
  width: 160px;
  height: 135px;
  translate: 0 80%;
  content: "";
  position: absolute;
  top: 50%;
  right: 80%;
  left: auto;
  border-top: 2px dashed var(--blue);
  border-left: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-3 {
  translate: 0 -75%;
}
.organizational-structure .container #chart .orgchart .node.row-3.left-row {
  translate: -228px -190px;
}
.organizational-structure .container #chart .orgchart .node.row-3.left-row .title {
  translate: 22px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-3.left-row::before {
  width: 138px;
  height: 70px;
  translate: 0 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  border-top: 2px dashed var(--blue);
  border-right: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-3.right-row {
  translate: 228px -190px;
}
.organizational-structure .container #chart .orgchart .node.row-3.right-row .title {
  translate: -22px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-3.right-row::before {
  width: 138px;
  height: 70px;
  translate: 0 50%;
  content: "";
  position: absolute;
  top: 50%;
  right: 80%;
  left: auto;
  border-top: 2px dashed var(--blue);
  border-left: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-4 {
  translate: 0 -75%;
}
.organizational-structure .container #chart .orgchart .node.row-4.left-row {
  translate: -228px -190px;
}
.organizational-structure .container #chart .orgchart .node.row-4.left-row .title {
  translate: 36px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-4.left-row::before {
  width: 138px;
  height: 20px;
  translate: 0 -35px;
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  border-top: 2px dashed var(--blue);
  border-right: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-4.right-row {
  translate: 228px -190px;
}
.organizational-structure .container #chart .orgchart .node.row-4.right-row .title {
  translate: -36px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-4.right-row::before {
  width: 138px;
  height: 20px;
  translate: 0 -35px;
  content: "";
  position: absolute;
  top: 50%;
  right: 80%;
  left: auto;
  border-top: 2px dashed var(--blue);
  border-left: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-5 {
  translate: 0 -175%;
}
.organizational-structure .container #chart .orgchart .node.row-5.left-row {
  translate: -228px -200px;
}
.organizational-structure .container #chart .orgchart .node.row-5.left-row .title {
  translate: 36px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-5.left-row::before {
  width: 138px;
  height: 50px;
  translate: 0 -35px;
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  border-bottom: 2px dashed var(--blue);
  border-top: 0;
  border-right: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.row-5.right-row {
  translate: 228px -200px;
}
.organizational-structure .container #chart .orgchart .node.row-5.right-row .title {
  translate: -36px -75%;
}
.organizational-structure .container #chart .orgchart .node.row-5.right-row::before {
  width: 138px;
  height: 50px;
  translate: 0 -35px;
  content: "";
  position: absolute;
  top: 50%;
  right: 80%;
  left: auto;
  border-bottom: 2px dashed var(--blue);
  border-top: 0;
  border-left: 2px dashed var(--blue);
  border-radius: 1px;
  transform: translateY(-120%);
  background: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point {
  margin-bottom: 0;
  position: relative;
  width: 668px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.first-bridge {
  height: 0;
  translate: 0 -50%;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.first-bridge .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.second-bridge {
  width: 50px;
  padding-block: 6px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.second-bridge + .nodes > .hierarchy::before {
  top: -80px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-3 {
  height: 0;
  width: 100px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-3 .title {
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-3 + .nodes > .hierarchy::before {
  top: -130px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-4 {
  width: 140px;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-4::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-4 .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-4 + .nodes > .hierarchy::before {
  height: 0;
  top: -190px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-5 {
  width: 160px;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-5 > .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-5::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-5 + .nodes > .hierarchy::before {
  top: -400px;
  display: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-6 {
  width: 160px;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-6 > .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-6::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-6 + .nodes > .hierarchy::before {
  top: -260px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-7 {
  width: 160px;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-7::before {
  background: none;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-7 > .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.bridge-7 + .nodes > .hierarchy::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.last-bridge {
  height: 0;
  border: none;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.last-bridge .title {
  height: 0;
}
.organizational-structure .container #chart .orgchart .node.bridge-point.last-bridge + .nodes {
  top: 0;
  height: 70px;
}
.organizational-structure .container #chart .orgchart .node.bridge-point .title {
  height: 112px;
  border-radius: 0;
  width: 0;
  background: none;
  padding: 0;
  border-right: 2px dashed var(--blue);
  margin: auto;
}
.organizational-structure .container #chart .orgchart .node.bridge-point + .nodes {
  position: absolute;
  top: 75%;
  left: 50%;
  translate: -50% 0;
}
.organizational-structure .container #chart .orgchart .node.sub-node {
  padding-inline-end: 0;
  margin-bottom: 6px;
}
.organizational-structure .container #chart .orgchart .node.sub-node .title {
  height: 70px;
  background-color: #f5f6fa;
  color: #252424;
}
.organizational-structure .container #chart .orgchart .node.base-node {
  padding-inline-end: 0;
  margin-bottom: 0;
  z-index: 11;
}
.organizational-structure .container #chart .orgchart .node.base-node > .title {
  height: 70px;
  background-color: var(--blue);
  color: #ffffff;
}
.organizational-structure .container #chart .orgchart .node.base-node.dark-bg > .title {
  background-color: var(--dark-blue);
}
.organizational-structure .container #chart .orgchart .node.root-node {
  padding-inline-end: 0;
  margin-bottom: 0;
}
.organizational-structure .container #chart .orgchart .node.root-node > .title {
  width: 178.176px;
  height: 268.327px;
  background: none;
  color: #ffffff;
  background: none;
  box-shadow: none;
  overflow: visible;
  justify-content: flex-start;
}
.organizational-structure .container #chart .orgchart .node .oci {
  display: none;
}
.organizational-structure .container #chart .orgchart .node .title {
  font-size: var(--fs-description-2);
  text-align: center;
  height: 70px;
  width: 243px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f6fa;
  color: var(--black);
  white-space: initial;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 16px;
  line-height: normal;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
.organizational-structure .container #chart .orgchart .node:has(+ .nodes) .title {
  font-weight: 700;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes {
  margin-bottom: 20px;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes > .hierarchy::before {
  margin-top: 50px;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes > .hierarchy .node.line-center::before {
  display: none;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes > .hierarchy .node.line-center .title {
  translate: 0 0%;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes > .hierarchy > .node {
  flex-direction: column;
}
.organizational-structure .container #chart .orgchart .lastNodes + .nodes > .hierarchy > .node > .title::after {
  display: none;
}
.organizational-structure .container #chart .orgchart .last-row + .nodes {
  top: 100% !important;
}
.organizational-structure .container .orgchart .hierarchy:not(.couple) > .node:not(.lastNodes):has(+ .nodes)::after {
  display: none;
}
.organizational-structure .container .image-root-node {
  width: 278.176px;
  height: 268.327px;
  display: flex;
}
.organizational-structure .container .image-root-node img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
}

.kuwait-vision {
  background: #fff;
  padding-block: 111px;
}
@media (max-width: 992px) {
  .kuwait-vision {
    padding-block: 24px;
  }
}
.kuwait-vision .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .kuwait-vision .container .right-side {
    display: none;
  }
}
.kuwait-vision .container .left-side {
  max-width: 797px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
.kuwait-vision .container .left-side .custom-top-side .desc {
  font-size: var(--fs-description-b);
  font-weight: bold;
}
.kuwait-vision .container .left-side .info-vision {
  display: flex;
  padding-top: 32px;
  gap: 24px;
  border-top: 1px solid #d1d5dc;
}
.kuwait-vision .container .left-side .info-vision .info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 8px;
  padding: 19.5px;
  border-radius: 0 20px;
  background: rgba(0, 93, 170, 0.1);
  text-align: center;
}
.kuwait-vision .container .left-side .info-vision .info-box .value {
  font-size: var(--fs-h4);
  color: var(--blue);
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
.kuwait-vision .container .left-side .info-vision .info-box .type-value {
  font-size: var(--fs-description-2);
  color: var(--dark-text);
  font-weight: 600;
}
.kuwait-vision .container .right-side {
  flex: 1;
  width: 766.536px;
}
.kuwait-vision .container .right-side .wrapper-image {
  width: 100%;
  height: 100%;
  display: flex;
}
.kuwait-vision .container .right-side .wrapper-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.indicators .container {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media (max-width: 992px) {
  .indicators .container {
    gap: 32px;
  }
}
.indicators .container .list-indicators {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}
.indicators .container .list-indicators .card-indicators {
  flex: 1 1 100%;
  max-width: calc(25% - 32px);
}
@media (max-width: 992px) {
  .indicators .container .list-indicators {
    gap: 24px;
  }
  .indicators .container .list-indicators .card-indicators {
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 448px) {
  .indicators .container .list-indicators .card-indicators {
    max-width: 100%;
    padding: 16px;
  }
}

.card-service,
.card-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 0 20px;
  border: 1px solid #f1f5f9;
  background: #fff;
  padding: 26px 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
  text-decoration: none;
}
.card-service:hover,
.card-indicators:hover {
  scale: 1.03;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
}
.card-service .icon-card,
.card-indicators .icon-card {
  height: 64px;
  width: 64px;
}
@media (max-width: 778px) {
  .card-service .icon-card,
  .card-indicators .icon-card {
    height: 48px;
    width: 48px;
  }
}
.card-service .body-card,
.card-indicators .body-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-service .body-card .title,
.card-indicators .body-card .title {
  font-size: var(--fs-h3);
  color: var(--black);
  margin: 0;
  font-weight: 700;
  line-height: 120%;
}
.card-service .body-card .desc,
.card-indicators .body-card .desc {
  color: var(--dark-text);
  font-size: var(--fs-description);
  line-height: 120%;
}

.card-service {
  gap: 15px;
  box-shadow: none;
}
.card-service .body-card .title {
  font-size: var(--fs-card-title);
}
.card-service .body-card .desc {
  font-size: var(--fs-description);
}

.impact-governance .container .wrapper-content {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 58px;
  border-radius: 0 20px;
  background: #fff;
}
.impact-governance .container .wrapper-content .list-impact-governance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 778px) {
  .impact-governance .container .wrapper-content .list-impact-governance {
    grid-template-columns: 1fr;
  }
}

.card-impact-governance {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(153, 190, 221, 0.3);
  background: var(--white, #fff);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
}
.card-impact-governance:hover {
  scale: 1.01;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
}
.card-impact-governance .icon-card {
  padding: 12px;
  height: 48px;
  width: 48px;
  border-radius: 10px;
  background: rgba(153, 190, 221, 0.3);
}

.performance-evaluation .container {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media (max-width: 992px) {
  .performance-evaluation .container {
    gap: 32px;
  }
}

.custom-table {
  border-spacing: 0 10px !important;
  border-collapse: separate !important;
  width: 100% !important;
}
.custom-table.no-head-table-2 th {
  padding: 0;
}
.custom-table th,
.custom-table td {
  text-align: start !important;
  border: none !important;
  min-width: 220px;
}
.custom-table th.actions-col,
.custom-table td.actions-col {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}
.custom-table th.actions-col .custom-icon,
.custom-table td.actions-col .custom-icon {
  width: 24px;
  height: 24px;
}
.custom-table thead th {
  font-size: var(--fs-description-b);
  font-weight: 700;
}
.custom-table thead th:first-child {
  border-radius: 12px 0 0 12px !important;
  padding-inline-start: 50px !important;
}
.custom-table thead th:last-child {
  border-radius: 0 12px 12px 0 !important;
  padding-inline-end: 50px !important;
}
@media (max-width: 558px) {
  .custom-table thead th:first-child {
    padding-inline-start: 24px !important;
  }
  .custom-table thead th:last-child {
    padding-inline-end: 24px !important;
  }
}
.custom-table tbody tr {
  background: var(--white) !important;
  transition: 0.2s all ease-in-out;
}
.custom-table tbody tr:hover {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18);
}
.custom-table tbody tr .child {
  border-radius: 12px !important;
  transition: 0.2s all ease-in-out;
  padding: 12px 50px !important;
}
@media (max-width: 558px) {
  .custom-table tbody tr .child {
    padding: 12px 24px !important;
  }
}
.custom-table tbody tr .child:hover {
  background: var(--white) !important;
}
.custom-table tbody tr .child .wrapper-col-with-icon {
  width: 100%;
}
.custom-table tbody tr td {
  font-size: var(--fs-btn-bold-title);
  font-weight: 600;
  padding-block: 23px !important;
}
.custom-table tbody tr td ul {
  width: 100%;
}
.custom-table tbody tr td ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-table tbody tr td.first-child {
  border-radius: 12px 0 0 12px !important;
  padding-inline-start: 50px !important;
}
.custom-table tbody tr td.last-child {
  border-radius: 0 12px 12px 0 !important;
  padding-inline-end: 50px !important;
}
@media (max-width: 558px) {
  .custom-table tbody tr td {
    padding-block: 12px !important;
  }
  .custom-table tbody tr td.first-child {
    padding-inline-start: 24px !important;
  }
  .custom-table tbody tr td.last-child {
    padding-inline-end: 24px !important;
  }
}
.custom-table tbody tr td .wrapper-col-with-icon {
  display: inline-block !important;
  translate: 0 5px !important;
  width: 80%;
}
.custom-table tbody tr td .wrapper-col-with-icon .col-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.custom-table tbody tr td .wrapper-col-with-icon .col-with-icon .custom-icon {
  width: 24px;
  height: 24px;
}
.custom-table tbody tr td .base-outline-blue {
  padding: 14px 39px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
}
.custom-table tbody tr td .base-outline-blue:hover img {
  filter: grayscale(10) brightness(3);
}

.list-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px 26px;
}
.list-gallery .card-gallery {
  display: flex;
  border-radius: 0 20px;
  background: lightgray 0px -8.154px/100% 115.473% no-repeat;
  overflow: hidden;
  cursor: pointer;
}
.list-gallery .card-gallery img {
  transition: 0.3s all ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-gallery .card-gallery:hover img {
  rotate: 8deg;
  scale: 1.2;
}

.list-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
@media (max-width: 992px) {
  .list-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 576px) {
  .list-services {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
}

.list-electronic-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
}
@media (max-width: 1200px) {
  .list-electronic-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 992px) {
  .list-electronic-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 576px) {
  .list-electronic-service {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
}

.sort-btn .dropdown-toggle::after {
  display: none;
}
.sort-btn .dropdown-menu {
  padding: 24px;
}
.sort-btn .dropdown-menu li {
  padding: 0;
  transition: 0.3s all ease-in-out;
}
.sort-btn .dropdown-menu .dropdown-item {
  padding: 0;
}
.sort-btn .dropdown-menu li .dropdown-item {
  background: none;
  transition: 0.3s all ease-in-out;
}
.sort-btn .dropdown-menu li .dropdown-item.active-item, .sort-btn .dropdown-menu li .dropdown-item:hover {
  color: var(--blue);
}
.sort-btn .dropdown-menu li:not(:last-child) .dropdown-item {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5019607843);
}

.custom-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.custom-pagination .pagination {
  margin: 0;
  display: flex;
  gap: 16px;
}
.custom-pagination .pagination .page-item {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.custom-pagination .pagination .page-item .page-link {
  border-radius: 50%;
  padding: 13px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--black);
  font-size: 16px;
  background: none;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 778px) {
  .custom-pagination .pagination .page-item .page-link {
    height: 32px;
    width: 32px;
  }
}
.custom-pagination .pagination .page-item .page-link:hover, .custom-pagination .pagination .page-item .page-link.active {
  color: var(--white);
  background: var(--blue);
}
.custom-pagination .pagination .page-item .page-link:hover img, .custom-pagination .pagination .page-item .page-link.active img {
  filter: grayscale(1) brightness(10);
}
.custom-pagination .pagination .page-item .custom-icon {
  width: 24px;
  height: 24px;
}
.custom-pagination .pagination .page-item .button-pagination {
  border: 1px solid var(--blue);
}
.custom-pagination .pagination .page-item .button-pagination.locked {
  pointer-events: none;
  border-color: var(--dark-grey);
}
.custom-pagination .pagination .page-item .button-pagination.locked img {
  filter: grayscale(1);
  opacity: 0.6;
}

.gallery-page .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.gallery-page .container .gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 34px 30px;
}
@media (max-width: 1300px) {
  .gallery-page .container .gallery-section {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media (max-width: 992px) {
  .gallery-page .container .gallery-section {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
.gallery-page .container .custom-pagination {
  padding: 0;
}

.card-gallery {
  display: flex;
  height: 554px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .card-gallery {
    height: 454px;
  }
}
.card-gallery .image-card {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
}
.card-gallery .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-gallery::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  transition: 0.3s all ease-in-out;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 58, 111, 0.2) 47.74%, #003a6f 99.9%);
}
.card-gallery:hover::before {
  opacity: 0.2;
}
.card-gallery:hover:has(.body-card)::before {
  opacity: 1;
  height: 140%;
}
.card-gallery .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}
.card-gallery .play-video .custom-icon {
  transition: 0.3s all ease-in-out;
  width: 18px;
  height: 20px;
}
.card-gallery:hover .play-video {
  background: var(--blue);
}
.card-gallery:hover .play-video img {
  filter: grayscale(2) brightness(0) invert(1);
}
.card-gallery .body-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
}
.card-gallery .body-card .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.card-gallery .body-card .desc {
  color: var(--white);
  font-size: var(--fs-description);
  line-height: 120%;
}

.news-page .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.news-page .container .custom-pagination {
  padding-top: 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  width: 100%;
}
@media (max-width: 1300px) {
  .news-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media (max-width: 992px) {
  .news-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 600px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
.news-list {
  gap: 34px 30px;
}

.card-news {
  display: flex;
  flex-direction: column;
  border-radius: 0 20px;
  background: #fff;
  overflow: hidden;
}
.card-news .image-card {
  height: 375px;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 0 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .card-news .image-card {
    height: 275px;
  }
}
.card-news .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-news .body-card {
  padding: 20px 27px 32px 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.card-news .body-card .info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-news .body-card .info-card .date {
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-description-b);
  font-weight: 700;
  line-height: 140%;
  color: var(--dark-text);
}
.card-news .body-card .info-card .date .custom-icon {
  width: 20px;
  height: 20px;
}
.card-news .body-card .info-card .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.card-news .body-card .info-card .desc {
  color: var(--dark-text);
  font-size: var(--fs-description);
  line-height: 120%;
}
.card-news .body-card .actions {
  margin-top: auto;
}
.card-news .body-card .actions .base-btn {
  border-radius: 50px;
  padding: 8px 24px;
}
.card-news .body-card .actions .base-btn img {
  rotate: 180deg;
  transition: 0.3s all ease-in-out;
}
.card-news .body-card .actions .base-btn:hover img {
  filter: grayscale(2) brightness(0) invert(1);
}
.card-news .body-card .actions.actions2 {
  display: flex;
  gap: 12px;
  width: 100%;
}
.card-news .body-card .actions.actions2 .base-btn {
  flex: 1;
  padding: 14px;
}
.card-news .body-card .actions.actions2 .base-btn img {
  rotate: 0deg;
}
.card-news .body-card .actions.actions2 .base-btn.view-video:hover img {
  filter: none;
}

.news-detail .date {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: var(--fs-description-b);
  font-weight: 700;
  margin-bottom: 12px;
}
.news-detail .date .custom-icon {
  width: 24px;
  height: 24px;
}
.news-detail h3,
.news-detail h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 13px;
  line-height: 120%;
  color: var(--black);
}
.news-detail .news-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .news-detail .news-images {
    margin-bottom: 24px;
  }
}
.news-detail .news-images img {
  height: 673px;
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 1/1;
}
@media (max-width: 992px) {
  .news-detail .news-images img {
    height: 300px;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .news-detail .news-images img {
    height: 180px;
    border-radius: 8px;
  }
}
.news-detail p {
  font-size: var(--fs-description-1);
  color: var(--black);
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .news-detail p {
    margin-bottom: 24px;
  }
}
.news-detail .footer-deatil {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-detail .footer-deatil h5 {
  font-size: var(--fs-card-title);
  margin: 0;
  line-height: 120%;
  font-weight: 700;
}
.news-detail .footer-deatil .list-social {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-detail .footer-deatil .list-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  transition: background 0.2s;
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
  padding: 9px;
}
@media (max-width: 992px) {
  .news-detail .footer-deatil .list-social a {
    width: 36px;
    height: 36px;
  }
}
.news-detail .footer-deatil .list-social a:hover {
  background: var(--dark-blue);
}
.news-detail .footer-deatil .list-social a .custom-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 992px) {
  .news-detail .footer-deatil .list-social a .custom-icon {
    width: 16px;
    height: 16px;
  }
}

.form-submitting-awareness.form-submitting-awareness-2 .container {
  gap: 48px;
}
.form-submitting-awareness.form-submitting-awareness-2 .container .wrapper-form {
  gap: 28px;
}
.form-submitting-awareness .container {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.form-submitting-awareness .container .header-from {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-submitting-awareness .container .header-from .title {
  color: var(--dark-text);
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
.form-submitting-awareness .container .header-from .desc {
  color: var(--black);
  font-size: var(--fs-description-1);
  line-height: 140%;
}
.form-submitting-awareness .container .header-from .list-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (max-width: 992px) {
  .form-submitting-awareness .container .header-from .list-info {
    grid-template-columns: 1fr;
  }
}
.form-submitting-awareness .container .header-from .item-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-description-b);
  color: var(--dark-text);
  font-weight: 700;
  line-height: 140%;
}
.form-submitting-awareness .container .header-from .item-info.item-info-2 {
  font-weight: 400;
}
.form-submitting-awareness .container .header-from .item-info .custom-icon {
  width: 24px;
  height: 24px;
}

#videoModal {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.with-header-footer-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.with-header-footer-section .container .header-section .desc {
  font-size: var(--fs-description-1);
  line-height: 140%;
  color: var(--dark-text);
}
.with-header-footer-section .container .footer-section {
  display: flex;
  gap: 16px 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.with-header-footer-section .container .footer-section .base-btn {
  flex: 1;
  max-width: 275px;
  min-width: 140px;
  border-radius: 160px;
}

.food-security .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.food-security .container .group-content {
  display: flex;
  gap: 24px 48px;
}
.food-security .container .group-content .info-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.food-security .container .group-content .info-group.full-width {
  width: 100%;
  gap: 22px;
}
.food-security .container .group-content .info-group.full-width .custom-list,
.food-security .container .group-content .info-group.full-width .custom-list-2 {
  max-width: 100%;
}
.food-security .container .group-content .title-section {
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  color: var(--black);
  margin: 0;
}
.food-security .container .group-content .desc {
  font-size: var(--fs-subtitle);
  color: var(--dark-text);
  font-weight: 600;
  line-height: 140%; /* 30.8px */
}
.food-security .container .group-content .custom-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 682px;
}
.food-security .container .group-content .custom-list li {
  display: flex;
  align-items: first baseline;
  gap: 10px;
}
.food-security .container .group-content .custom-list li .custom-icon {
  width: 20px;
  height: 20px;
}
.food-security .container .group-content .custom-list li .text-item {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
  font-weight: 600;
}
.food-security .container .group-content .custom-list li .text-item .title-row {
  font-size: var(--fs-subtitle);
  font-weight: 700;
}
.food-security .container .group-content .custom-list-2 {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 682px;
}
.food-security .container .group-content .custom-list-2 > li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.food-security .container .group-content .custom-list-2 > li .item-content {
  display: flex;
  align-items: first baseline;
  gap: 10px;
}
.food-security .container .group-content .custom-list-2 > li .custom-icon {
  width: 20px;
  height: 20px;
}
.food-security .container .group-content .custom-list-2 > li .title-item {
  font-size: var(--fs-card-title);
  color: var(--black);
  font-weight: 700;
  margin: 0;
}
.food-security .container .group-content .custom-list-2 > li ul {
  color: var(--dark-text);
  font-size: var(--fs-subtitle);
  font-weight: 600;
  line-height: 140%;
  padding: 0;
  padding-inline-start: 32px;
}
.food-security .container .group-content .image-group {
  width: 459px;
  height: 307px;
  display: flex;
  max-width: 100%;
}
.food-security .container .group-content .image-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .food-security .container .group-content {
    flex-direction: column;
    gap: 32px;
  }
  .food-security .container .group-content .image-group {
    width: 100%;
    height: auto;
    justify-content: center;
  }
  .food-security .container .group-content .image-group img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .food-security .container .group-content {
    gap: 20px 0;
  }
  .food-security .container .group-content .info-group {
    gap: 8px;
  }
  .food-security .container .group-content .custom-list {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .food-security .container .group-content {
    flex-direction: column;
    gap: 16px;
  }
  .food-security .container .group-content .image-group {
    width: 100%;
    height: auto;
  }
  .food-security .container .group-content .image-group img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .food-security .container .group-content .title-section {
    font-size: 18px;
  }
  .food-security .container .group-content .desc,
  .food-security .container .group-content .custom-list .text-item,
  .food-security .container .group-content .custom-list .title-row {
    font-size: 14px !important;
  }
}
.food-security .container .footer-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.food-security .container .footer-detail .top-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.food-security .container .footer-detail .top-side .title-section {
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  color: var(--black);
  margin: 0;
}
.food-security .container .footer-detail .top-side .base-btn {
  max-width: 275px;
  flex: 1;
  border-radius: 160px;
  padding: 14px 32px;
}
.food-security .container .footer-detail .body-side {
  display: flex;
  align-items: center;
  gap: 8px;
}
.food-security .container .footer-detail h5 {
  font-size: var(--fs-card-title);
  margin: 0;
  line-height: 120%;
  font-weight: 700;
}
.food-security .container .footer-detail .list-social {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.food-security .container .footer-detail .list-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  transition: background 0.2s;
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
  padding: 9px;
}
@media (max-width: 992px) {
  .food-security .container .footer-detail .list-social a {
    width: 36px;
    height: 36px;
  }
}
.food-security .container .footer-detail .list-social a:hover {
  background: var(--dark-blue);
}
.food-security .container .footer-detail .list-social a .custom-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 992px) {
  .food-security .container .footer-detail .list-social a .custom-icon {
    width: 16px;
    height: 16px;
  }
}

.list-nutrition-awareness {
  display: grid;
  gap: 100px 32px;
  grid-template-columns: repeat(3, 1fr);
}
.list-nutrition-awareness .card-nutrition-awareness {
  display: flex;
  align-items: center;
  max-width: 414px;
  gap: 14px;
}
.list-nutrition-awareness .card-nutrition-awareness .image-card {
  border-radius: 0 20px;
  background: #fff;
  width: 126px;
  height: 120.486px;
  display: flex;
  padding: 28px 31px;
  flex-shrink: 0;
}
.list-nutrition-awareness .card-nutrition-awareness .image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.list-nutrition-awareness .card-nutrition-awareness .body-card {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.list-nutrition-awareness .card-nutrition-awareness .body-card .title-card {
  color: var(--dark-text);
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
.list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more {
  border: none;
  color: var(--blue);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more:hover, .list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more:focus {
  color: var(--dark-blue);
}
.list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more:hover .custom-icon, .list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more:focus .custom-icon {
  filter: brightness(0.8);
}
.list-nutrition-awareness .card-nutrition-awareness .body-card .btn-see-more img {
  rotate: 180deg;
}
.list-nutrition-awareness .poll-btn {
  max-width: 275px;
  width: 100%;
  padding: 14px 32px;
  border-radius: 160px;
  align-self: center;
  justify-self: flex-end;
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .list-nutrition-awareness {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }
  .list-nutrition-awareness .poll-btn {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .list-nutrition-awareness {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .list-nutrition-awareness .card-nutrition-awareness {
    max-width: 100%;
  }
  .list-nutrition-awareness .poll-btn {
    max-width: 100%;
  }
}

.numbers-statistics .container {
  gap: 48px;
}
.numbers-statistics .container .custom-header-section {
  margin-bottom: 10px;
}

.authority-publications .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sort-btn-dropdown {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--white, #fff);
  transition: all 0.3s ease-in-out;
  outline: none;
}
.sort-btn-dropdown img {
  filter: brightness(0);
  transition: all 0.3s ease-in-out;
}
.sort-btn-dropdown:hover img, .sort-btn-dropdown.show img {
  filter: none;
}

.date-btn img {
  filter: brightness(0);
  transition: all 0.3s ease-in-out;
}
.date-btn:hover img, .date-btn.show img {
  filter: none;
}

.dropdown-sort {
  width: 445px;
  max-width: 100dvh;
  border-color: rgba(170, 170, 170, 0.2);
  border-radius: 16px;
}
.dropdown-sort .sort-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.dropdown-sort .sort-form .title-form .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: var(--black);
  margin: 0;
}
.dropdown-sort .sort-form .wrapper-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 12px;
}
@media (max-width: 778px) {
  .dropdown-sort .sort-form .wrapper-groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.dropdown-sort .sort-form .wrapper-groups .form-group .wrapper-input .select2-container {
  padding: 14px 24px 14px 8px;
  border-radius: 24px;
}
.dropdown-sort .sort-form .wrapper-groups .form-group .wrapper-input input,
.dropdown-sort .sort-form .wrapper-groups .form-group .wrapper-input textarea {
  padding: 14px 12px 14px 8px;
  border-radius: 24px;
}
.dropdown-sort .sort-form .wrapper-groups .form-group {
  min-width: 0;
}
.dropdown-sort .sort-form .wrapper-groups .form-group .base-label {
  margin-bottom: 0;
  line-height: normal;
}
.dropdown-sort .sort-form .actions-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.dropdown-sort .sort-form .actions-form .reset-btn {
  background: none;
  border: none;
  color: var(--dark-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: underline;
  padding: 0;
}
.dropdown-sort .sort-form .actions-form .reset-btn:hover {
  color: var(--dark-blue);
}

.decisions-regarding .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.list-decisions-regarding {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 42px;
}
@media (max-width: 1200px) {
  .list-decisions-regarding {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}
.list-decisions-regarding .card-decisions-regarding {
  border-radius: 0 20px;
  background: #fff;
  padding: 29px 35px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1200px) {
  .list-decisions-regarding .card-decisions-regarding {
    padding: 24px;
    gap: 24px;
  }
}
.list-decisions-regarding .card-decisions-regarding .info-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 101px;
}
@media (max-width: 1200px) {
  .list-decisions-regarding .card-decisions-regarding .info-card {
    gap: 16px 51px;
  }
}
.list-decisions-regarding .card-decisions-regarding .info-card .item-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 778px) {
  .list-decisions-regarding .card-decisions-regarding .info-card .item-info {
    gap: 6px;
  }
}
.list-decisions-regarding .card-decisions-regarding .info-card .item-info:first-child {
  flex: 1 1 100%;
}
.list-decisions-regarding .card-decisions-regarding .info-card .item-info .custom-icon {
  width: 28px;
  height: 28px;
}
.list-decisions-regarding .card-decisions-regarding .info-card .item-info .title {
  color: var(--dark-text);
  font-size: var(--fs-card-title);
  font-weight: 700;
}
@media (max-width: 778px) {
  .list-decisions-regarding .card-decisions-regarding .info-card .item-info .title {
    font-size: 18px;
  }
}
.list-decisions-regarding .card-decisions-regarding .info-card .item-info .value {
  font-size: var(--fs-subtitle);
  font-weight: 600;
  line-height: 140%;
}
.list-decisions-regarding .card-decisions-regarding .actions-card {
  display: flex;
  gap: 12px;
}
.list-decisions-regarding .card-decisions-regarding .actions-card .base-btn {
  flex: 1;
  padding: 14px;
  border-radius: 50px;
  max-width: 303px;
}
.list-decisions-regarding .card-decisions-regarding .actions-card .base-btn .view-btn:hover img {
  filter: none;
}
@media (max-width: 778px) {
  .list-decisions-regarding .card-decisions-regarding .actions-card {
    flex-direction: column;
    align-items: stretch;
  }
  .list-decisions-regarding .card-decisions-regarding .actions-card .base-btn {
    max-width: 100%;
    width: 100%;
  }
}

#textModal {
  background: rgba(26, 41, 51, 0.7);
  backdrop-filter: blur(6px);
}
#textModal .modal-dialog {
  max-width: 1162px;
}
#textModal .modal-content {
  border-radius: 24px;
  background: #fff;
}
#textModal .modal-body {
  padding: 54px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 28px;
}
@media (max-width: 778px) {
  #textModal .modal-body {
    padding: 48px 24px 24px;
    gap: 16px;
  }
}
#textModal .modal-body .title-decisions {
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 120%;
  color: var(--dark-text);
  margin: 0;
}
#textModal .modal-body .text-decisions {
  font-size: var(--fs-subtitle);
  color: var(--dark-text);
  margin: 0;
  line-height: 140%;
  text-align: justify;
}
#textModal .modal-body .download-btn {
  max-width: 268px;
  width: 100%;
  padding: 14px 32px;
  border-radius: 160px;
  justify-self: flex-end;
  margin-top: 23px;
}
#textModal .modal-body .btn-close {
  position: absolute;
  top: 32px;
  inset-inline-end: 32px;
  opacity: 1;
  background-size: 12px;
  border: 1px solid black;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 778px) {
  #textModal .modal-body .btn-close {
    top: 16px;
    inset-inline-end: 16px;
  }
}
#textModal .modal-body .btn-close:hover {
  opacity: 0.7;
}

.national-initiatives-programs .custom-pagination {
  padding: 0;
}
.national-initiatives-programs .news-list .card-news .image-card {
  position: relative;
  height: 311px;
}
.national-initiatives-programs .news-list .card-news .image-card .news-type {
  font-size: var(--fs-description);
  color: var(--white);
  font-weight: 400;
  position: absolute;
  top: 12px;
  inset-inline-start: 21px;
  border-radius: 0 20px;
  padding: 10px;
}
.national-initiatives-programs .news-list .card-news .info-card .date {
  font-size: var(--fs-description);
  color: var(--dark-text);
}
.national-initiatives-programs .news-list .card-news .actions .base-btn {
  padding: 14px 24px;
  border-radius: 50px;
}

.national-initiatives-programs-details .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 992px) {
  .national-initiatives-programs-details .container {
    flex-direction: column;
    align-items: stretch;
  }
}
.national-initiatives-programs-details .container .body-details {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 778px) {
  .national-initiatives-programs-details .container .body-details {
    gap: 24px;
  }
}
.national-initiatives-programs-details .container .body-details .header-image {
  width: 100%;
  height: 520px;
  display: flex;
  overflow: hidden;
}
.national-initiatives-programs-details .container .body-details .header-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.national-initiatives-programs-details .container .body-details .info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.national-initiatives-programs-details .container .body-details .title-detail {
  font-weight: 700;
  margin: 0;
  font-size: var(--fs-h4);
  color: var(--black);
  line-height: 120%;
}
.national-initiatives-programs-details .container .body-details .desc {
  font-weight: 600;
  margin: 0;
  font-size: var(--fs-subtitle);
  color: var(--black);
  line-height: 140%;
}
.national-initiatives-programs-details .container .body-details .inner-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.national-initiatives-programs-details .container .body-details .inner-images .wrapper-image {
  height: 473px;
  display: flex;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .national-initiatives-programs-details .container .body-details .inner-images .wrapper-image {
    height: 320px;
  }
}
.national-initiatives-programs-details .container .body-details .inner-images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.national-initiatives-programs-details .container .initiatives-detail {
  position: sticky;
  top: 160px;
  padding: 24px 20px;
  border-radius: 12px;
  background: var(--white);
  flex-shrink: 0;
  min-width: 398px;
}
.national-initiatives-programs-details .container .initiatives-detail .header-detail {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.3);
  margin-bottom: 24px;
}
.national-initiatives-programs-details .container .initiatives-detail .header-detail .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  color: var(--text-blue);
  margin: 0;
}
.national-initiatives-programs-details .container .initiatives-detail .list-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.national-initiatives-programs-details .container .initiatives-detail .list-info .item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  color: var(--black);
}
.national-initiatives-programs-details .container .initiatives-detail .list-info .item-info:first-child .value {
  color: var(--dark-blue);
}
.national-initiatives-programs-details .container .initiatives-detail .base-btn {
  width: 100%;
  padding: 14px 32px;
  border-radius: 160px;
}

.share-via {
  display: flex;
  align-items: center;
  gap: 8px;
}
.share-via h5 {
  font-size: var(--fs-card-title);
  margin: 0;
  line-height: 120%;
  font-weight: 700;
}
.share-via .list-social {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.share-via .list-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  transition: background 0.2s;
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
  padding: 9px;
}
@media (max-width: 992px) {
  .share-via .list-social a {
    width: 36px;
    height: 36px;
  }
}
.share-via .list-social a:hover {
  background: var(--dark-blue);
}
.share-via .list-social a .custom-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 992px) {
  .share-via .list-social a .custom-icon {
    width: 16px;
    height: 16px;
  }
}

.list-definitive-news {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.list-definitive-news .item-definitive-news {
  display: flex;
  gap: 27px;
}
.list-definitive-news .item-definitive-news .image-item {
  border-radius: 0 20px;
  background: #fff;
  display: flex;
  padding: 16px;
  height: 364px;
  height: 364px;
  max-width: 485px;
  flex: 1;
}
.list-definitive-news .item-definitive-news .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 20px;
}
.list-definitive-news .item-definitive-news .info-definitive-news {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.list-definitive-news .item-definitive-news .info-definitive-news .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 38px 39px;
  border-radius: 14px;
  background: #fff;
  flex: 1;
}
.list-definitive-news .item-definitive-news .info-definitive-news .item-info .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-card-title);
  color: var(--dark-text);
  font-weight: 700;
  margin: 0;
  line-height: 120%;
}
.list-definitive-news .item-definitive-news .info-definitive-news .item-info .title .custom-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.list-definitive-news .item-definitive-news .info-definitive-news .item-info .desc {
  font-size: var(--fs-subtitle);
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 992px) {
  .list-definitive-news .item-definitive-news {
    flex-direction: column;
  }
  .list-definitive-news .item-definitive-news .image-item {
    justify-content: center;
    max-width: 100%;
    height: 364px;
    max-height: 364px;
    aspect-ratio: 1/1;
  }
  .list-definitive-news .item-definitive-news .image-item img {
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .list-definitive-news .item-definitive-news .info-definitive-news {
    flex-direction: row;
  }
}
@media (max-width: 558px) {
  .list-definitive-news .item-definitive-news .info-definitive-news {
    flex-direction: column;
  }
}

#ui-datepicker-div {
  padding: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
#ui-datepicker-div .ui-widget-header {
  background: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--dark-grey);
  padding-bottom: 20px;
}
#ui-datepicker-div .ui-widget-header .ui-datepicker-year,
#ui-datepicker-div .ui-widget-header .ui-datepicker-month {
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 18px;
  font-weight: 700;
}
#ui-datepicker-div .ui-widget-header .ui-datepicker-year::-ms-expand, #ui-datepicker-div .ui-widget-header .ui-datepicker-year::-ms-expand,
#ui-datepicker-div .ui-widget-header .ui-datepicker-month::-ms-expand,
#ui-datepicker-div .ui-widget-header .ui-datepicker-month::-ms-expand {
  display: none;
}
#ui-datepicker-div .ui-widget-header .ui-datepicker-prev,
#ui-datepicker-div .ui-widget-header .ui-datepicker-next {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}
#ui-datepicker-div .ui-widget-header .ui-datepicker-prev .ui-icon {
  background: url(../img/arrow-left-calendar.svg) center center;
  background-size: contain;
}
#ui-datepicker-div .ui-widget-header .ui-datepicker-next .ui-icon {
  background: url(../img/arrow-right-calendar.svg) center center;
  background-size: contain;
}
#ui-datepicker-div th,
#ui-datepicker-div td a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
#ui-datepicker-div td a {
  padding: 8px 16px;
}
#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-widget-content .ui-state-default,
#ui-datepicker-div .ui-widget-header .ui-state-default,
#ui-datepicker-div .ui-button,
#ui-datepicker-div .ui-button.ui-state-disabled:hover,
#ui-datepicker-div .ui-button.ui-state-disabled:active {
  border-radius: 50px;
  background: rgba(170, 170, 170, 0.2);
  text-align: center;
  border: none;
}
#ui-datepicker-div .ui-state-active,
#ui-datepicker-div .ui-widget-content .ui-state-active,
#ui-datepicker-div .ui-widget-header .ui-state-active,
#ui-datepicker-div .ui-button:active,
#ui-datepicker-div .ui-button.ui-state-active:hover,
#ui-datepicker-div .ui-state-hover,
#ui-datepicker-div .ui-button.ui-state:hover,
#ui-datepicker-div .ui-button.ui-state:active {
  color: var(--white) !important;
  background: var(--blue) !important;
}
#ui-datepicker-div .ui-state-highlight,
#ui-datepicker-div .ui-widget-content .ui-state-highlight,
#ui-datepicker-div .ui-widget-header .ui-state-highlight {
  border: 1px solid var(--blue);
}
#ui-datepicker-div .ui-datepicker-buttonpane {
  display: flex;
  justify-content: center;
  border: none;
}
#ui-datepicker-div .ui-datepicker-buttonpane .ui-datepicker-current {
  display: none;
}
#ui-datepicker-div .ui-datepicker-buttonpane button {
  background: var(--blue) !important;
  float: none;
  margin: 0;
  padding: 7.5px;
  max-width: 167px;
  font-size: 16px;
  width: 100%;
  line-height: normal;
  color: var(--white);
  font-weight: 600;
  font-family: inherit;
}
#ui-datepicker-div .ui-datepicker-buttonpane button:hover {
  background: var(--dark-blue) !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group .base-label {
  font-size: var(--fs-description-3);
  font-weight: 700;
  margin-bottom: 10px;
}
.form-group .base-label .asterisk {
  color: #ce3832;
}
.form-group .wrapper-input {
  position: relative;
  display: flex;
  flex: 1;
}
.form-group .wrapper-input .custom-icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
}
.form-group .wrapper-input .custom-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-group .wrapper-input .select2-selection {
  box-sizing: content-box;
}
.form-group .wrapper-input .select2-container--default .select2-selection--single {
  border: none;
  padding: 0;
  outline: none;
}
.form-group .wrapper-input .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.form-group .wrapper-input .select2-container,
.form-group .wrapper-input input,
.form-group .wrapper-input textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 15px 22px;
  font-size: var(--fs-description-2);
  color: black;
  outline: none;
}
.form-group .wrapper-input .select2-container::-moz-placeholder, .form-group .wrapper-input input::-moz-placeholder, .form-group .wrapper-input textarea::-moz-placeholder {
  color: #969696;
}
.form-group .wrapper-input .select2-container::placeholder,
.form-group .wrapper-input input::placeholder,
.form-group .wrapper-input textarea::placeholder {
  color: #969696;
}
.form-group .wrapper-input textarea {
  min-height: 185px;
}
.form-group .wrapper-input .box-files {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 15px 22px;
  font-size: var(--fs-description-2);
  color: black;
  outline: none;
}
.form-group .wrapper-input:has(#requirement-files) {
  position: relative;
}
.form-group .wrapper-input:has(#requirement-files) textarea {
  padding-bottom: 48px;
}
.form-group .wrapper-input:has(#requirement-files) input[type=file],
.form-group .wrapper-input:has(#requirement-files) .upload-attachment {
  display: none;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment {
  position: absolute;
  width: 100%;
  bottom: 15px;
  padding-inline: 22px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment label {
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  padding-block: 4px;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment label:hover {
  filter: brightness(0.7);
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment label {
  display: flex;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment label .custom-icon {
  position: static;
  width: 22px;
  translate: 0 0;
  height: 22px;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-height: 32px;
  overflow: auto;
  width: 100%;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files .file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f7f7f7;
  position: relative;
  min-width: 0;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files .file-item .file-name {
  flex: 1 1 auto;
  font-size: var(--fs-description-2);
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files .file-item button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  display: flex;
  align-items: center;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files .file-item button .custom-icon {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  translate: 0 0;
}
.form-group .wrapper-input:has(#requirement-files) .wrapper-attachment .list-files .file-item button:hover {
  filter: brightness(0.8);
}
.form-group .wrapper-input:has(.box-files) input[type=file] {
  display: none;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .upload-btn {
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  padding-block: 4px;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .upload-btn:hover {
  filter: brightness(0.7);
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .upload-btn {
  display: flex;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .upload-btn .custom-icon {
  position: static;
  width: 22px;
  translate: 0 0;
  height: 22px;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .placeholder-attachment {
  font-size: var(--fs-description-2);
  color: black;
  display: block;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment:not(:has(.list-files .file-item)) .list-files, .form-group .wrapper-input:has(.box-files) .wrapper-attachment:has(.list-files .file-item) .placeholder-attachment {
  display: none;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  max-height: 32px;
  overflow: auto;
  width: 100%;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files .file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f7f7f7;
  position: relative;
  min-width: 0;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files .file-item .file-name {
  flex: 1 1 auto;
  font-size: var(--fs-description-2);
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files .file-item button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  display: flex;
  align-items: center;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files .file-item button .custom-icon {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  translate: 0 0;
}
.form-group .wrapper-input:has(.box-files) .wrapper-attachment .list-files .file-item button:hover {
  filter: brightness(0.8);
}
.form-group .wrapper-input:has(.select2-selection) .custom-icon, .form-group .wrapper-input.date-wrapper .custom-icon {
  inset-inline-start: initial;
  inset-inline-end: 21px;
  height: 20px;
  width: 20px;
  pointer-events: none;
}
.form-group .wrapper-input:has(.select2-selection) .custom-icon {
  width: 13px;
  height: 14px;
  transition: 0.3s all ease-in-out;
}
.form-group .wrapper-input:has(.select2-container--open) .custom-icon {
  rotate: 180deg;
}
.form-group .error-msg {
  display: none;
  font-weight: 700;
  color: red;
}
.form-group.show-error .error-msg {
  display: block;
}
.form-group .form-check {
  font-size: var(--fs-description-1);
  color: var(--dark-text);
}
.form-group .form-check .form-check-input {
  margin-top: 0;
}
.form-group .form-check .form-check-label {
  margin: 0;
}

.select-group input {
  display: none;
}
.select-group .base-select-label {
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.select-group .base-select-label .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--dark-text);
  transition: 0.3s all ease-in-out;
  position: relative;
}
.select-group .base-select-label .check-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.select-group .base-select-label .option-text {
  color: var(--dark-text);
  font-weight: 500;
  font-size: var(--fs-btn-bold-title);
  transition: 0.3s all ease-in-out;
}
.select-group:has(:checked) .base-select-label .check-icon {
  border-color: var(--blue);
  border-width: 1px;
}
.select-group:has(:checked) .base-select-label .check-icon::before {
  opacity: 1;
}
.select-group:hover .base-select-label {
  border-color: transparent;
  background: var(--subtitle-color);
}
.select-group:hover .check-icon {
  border-color: var(--mid-blue);
  background: white;
}

.wrapper-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wrapper-form .group-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 778px) {
  .wrapper-form .group-row {
    gap: 16px;
  }
}
.wrapper-form .group-row .title-group {
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 120%;
  margin: 0;
  color: var(--black);
}
.wrapper-form .row-form {
  display: grid;
  gap: 24px 50px;
}
.wrapper-form .row-form.items-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .wrapper-form .row-form.items-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
  }
}
@media (max-width: 778px) {
  .wrapper-form .row-form.items-3 {
    grid-template-columns: 1fr;
    gap: 16px 24px;
  }
}
.wrapper-form .row-form .two-col {
  grid-column: span 2;
}
@media (max-width: 778px) {
  .wrapper-form .row-form .two-col {
    grid-column: 1;
  }
}
.wrapper-form .row-form .three-col {
  grid-column: span 3;
}
@media (max-width: 1200px) {
  .wrapper-form .row-form .three-col {
    grid-column: span 2;
  }
}
@media (max-width: 778px) {
  .wrapper-form .row-form .three-col {
    grid-column: 1;
  }
}
.wrapper-form .submit-form {
  max-width: 275px;
  border-radius: 160px;
}
@media (max-width: 778px) {
  .wrapper-form .submit-form {
    max-width: 100%;
  }
}

#footer {
  margin-top: 145px;
}
@media (max-width: 992px) {
  #footer {
    margin-top: 0;
  }
}

footer {
  background: var(--dark-blue);
  color: var(--white);
  position: relative;
}
footer .wrapper-footer {
  padding: 120px 0 24px;
}
footer .wrapper-footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .wrapper-footer .subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1445px;
  padding: 43px 56px;
  border-radius: 100px;
  margin-inline: auto;
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
@media (max-width: 992px) {
  footer .wrapper-footer .subscribe {
    position: static;
    translate: 0 0;
    background: none;
    padding: 0;
  }
}
@media (max-width: 778px) {
  footer .wrapper-footer .subscribe {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
}
footer .wrapper-footer .subscribe .left-side {
  flex: 1;
}
footer .wrapper-footer .subscribe .left-side .title {
  font-size: var(--fs-card-title);
  font-weight: 700;
  margin: 0;
  color: var(--white);
}
footer .wrapper-footer .subscribe .right-side {
  flex: 1;
  max-width: 608px;
}
footer .wrapper-footer .subscribe .right-side .form-subscribe {
  display: flex;
  align-items: center;
  gap: 27px;
}
footer .wrapper-footer .subscribe .right-side .form-subscribe .form-group {
  flex: 1;
  background: none;
}
footer .wrapper-footer .subscribe .right-side .form-subscribe .form-group input {
  background: none;
  font-size: var(--fs-description);
  color: var(--white);
  padding: 0;
  padding-bottom: 12px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--white);
}
footer .wrapper-footer .subscribe .right-side .form-subscribe .form-group input::-moz-placeholder {
  color: var(--white);
}
footer .wrapper-footer .subscribe .right-side .form-subscribe .form-group input::placeholder {
  color: var(--white);
}
footer .wrapper-footer .subscribe .right-side .form-subscribe .base-btn {
  font-size: var(--fs-description-2);
  font-weight: 600;
}
footer .wrapper-footer .footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 992px) {
  footer .wrapper-footer .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
footer .wrapper-footer .footer-top .main-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  flex: 1 1 auto;
}
@media (max-width: 992px) {
  footer .wrapper-footer .footer-top .main-footer {
    display: none;
  }
}
footer .wrapper-footer .footer-top .links-mobile {
  display: none;
}
@media (max-width: 991px) {
  footer .wrapper-footer .footer-top .links-mobile {
    display: block;
  }
}
footer .wrapper-footer .footer-top .links-mobile .accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .wrapper-footer .footer-top .links-mobile .accordion .accordion-body {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
  padding: 16px 0;
}
footer .wrapper-footer .footer-top .links-mobile .accordion .accordion-body ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .wrapper-footer .footer-top .links-mobile .accordion .accordion-body ul a {
  color: #fff;
  font-size: var(--body-1);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .wrapper-footer .footer-top .links-mobile .accordion .accordion-body ul a .custom-icon {
  height: 18px;
  width: 18px;
}
footer .wrapper-footer .footer-top .links-mobile .accordion .accordion-body ul a:hover {
  opacity: 1;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-item {
  border: none;
  border-radius: 4px;
  box-shadow: none;
  background: var(--dark-blue);
}
footer .wrapper-footer .footer-top .links-mobile:not(:first-child) .accordion-button {
  border-radius: 0;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-button {
  background: var(--dark-blue);
  box-shadow: none;
  color: #fff;
  padding: 16px 0;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-button::after {
  margin-left: 0;
  margin-right: 0;
  margin-inline-start: auto;
  filter: brightness(1000);
}
footer .wrapper-footer .footer-top .links-mobile .accordion-button {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
}
footer .wrapper-footer .footer-top .links-mobile .list-link {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .wrapper-footer .footer-top .links-mobile .list-link a {
  color: #fff;
  font-size: var(--body-1);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}
footer .wrapper-footer .footer-top .links-mobile .list-link a:hover {
  opacity: 1;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 32px;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-title::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/down-arrow.svg) no-repeat center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-title.open::after {
  transform: translateY(-50%) rotate(180deg);
}
footer .wrapper-footer .footer-top .links-mobile .accordion-content {
  display: none;
}
footer .wrapper-footer .footer-top .links-mobile .accordion-content.open {
  display: block;
}
footer .wrapper-footer .footer-top .footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
footer .wrapper-footer .footer-top .footer-col h4 {
  font-size: var(--fs-card-title);
  color: var(--white);
  margin: 0;
  padding-bottom: 15px;
  position: relative;
}
footer .wrapper-footer .footer-top .footer-col h4::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 1.5px;
  width: 57px;
  background-color: var(--light-grey);
}
footer .wrapper-footer .footer-top .footer-col p {
  color: var(--light-grey);
  line-height: 1.8;
  margin: 0;
}
footer .wrapper-footer .footer-top .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .wrapper-footer .footer-top .footer-col ul li a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: var(--fs-description);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s all ease-in-out;
}
footer .wrapper-footer .footer-top .footer-col ul li a .custom-icon {
  height: 18px;
  width: 18px;
  display: flex;
}
footer .wrapper-footer .footer-top .footer-col ul li a::before {
  content: url("../img/arrow-left-2.svg");
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: 180deg;
}
footer .wrapper-footer .footer-top .footer-col ul li a:hover {
  color: var(--dark-grey);
}
footer .wrapper-footer .footer-top .footer-col ul li span {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}
footer .wrapper-footer .footer-top .footer-col ul li p {
  margin: 0;
  font-size: var(--fs-description-3);
}
footer .wrapper-footer .footer-top .footer-col.about-footer {
  gap: 17px;
}
@media (max-width: 992px) {
  footer .wrapper-footer .footer-top .footer-col.about-footer {
    margin-bottom: 8px;
  }
}
footer .wrapper-footer .footer-top .footer-col.about-footer .footer-logo {
  display: inline-block;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .footer-logo img {
  max-width: 235px;
  height: auto;
}
footer .wrapper-footer .footer-top .footer-col.about-footer p {
  max-width: 320px;
}
@media (max-width: 992px) {
  footer .wrapper-footer .footer-top .footer-col.about-footer p {
    max-width: 100%;
  }
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links li {
  margin: 0;
  display: flex;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links li a::before {
  display: none;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .wrapper-footer .footer-top .footer-col.about-footer .social-links li a:hover {
  scale: 1.1;
}
footer .wrapper-footer .footer-top .footer-col.contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .wrapper-footer .footer-top .footer-col.contact ul li a::before {
  display: none;
}
footer .wrapper-footer .footer-top .footer-col.map {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  gap: 0;
  min-width: 250px;
}
footer .wrapper-footer .footer-top .footer-col.map #wrapper-map {
  min-height: 166px;
}
@media (max-width: 1400px) {
  footer .wrapper-footer .footer-top .footer-col.map #wrapper-map {
    min-height: 240px;
  }
}
footer .wrapper-footer .footer-top .footer-col.map .location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--blue);
}
footer .wrapper-footer .footer-top .footer-col.map .location .custom-icon {
  height: 20px;
  width: 20px;
  aspect-ratio: 1/1;
}
footer .wrapper-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .wrapper-footer .footer-bottom p {
  margin: 0;
  font-size: var(--fs-description-3);
  color: var(--light-grey);
}
@media (max-width: 992px) {
  footer .wrapper-footer {
    padding: 40px 0 20px;
  }
}/*# sourceMappingURL=style.css.map */