@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-Regular.woff") format("woff"),
    url("../fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-Medium.woff") format("woff"),
    url("../fonts/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-SemiBold.woff") format("woff"),
    url("../fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-Bold.woff") format("woff"),
    url("../fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --body-font: "Work Sans";
  --container-width: 1520px;
  --section-block-space: 4rem;
  --section-inline-space: 2.5rem;
  --primary-color: #0d5898;
  --primary-alt-color: #101c2d;
  --primary-light: #eff6ff;
  --body-color: #4b5563;
  --white: #ffffff;
  --heading-color: #111318;
  --light: #a7a7a7;
  --content-gutter: 10px;
  --site-header-height: 190px;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-family: var(--body-font);
  font-weight: normal;
  color: var(--body-color);
  overflow-x: hidden;
  padding-top: var(--site-header-height);
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* Base input styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--heading-color);
  background-color: var(--white);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  outline: none;
  box-shadow: 0px 1px 2px 0px #0000000d;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  /* soft gray */
  font-size: 0.95rem;
  font-weight: 400;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin-bottom: var(--content-gutter);
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

.large-p,
.large-p :is(p, li) {
  font-size: 1.13rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
}

/* Typography – Headings (Responsive via clamp) */

h1 {
  font-size: clamp(2.25rem, 1.75rem + 2.1333vw, 3.75rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.875rem, 1.6667rem + 0.8889vw, 2.5rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.5rem, 1.35rem + 0.8vw, 1.875rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  line-height: 1.35;
}

h5 {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.4;
  font-weight: 600;
}

h6 {
  font-size: clamp(0.875rem, 0.85rem + 0.25vw, 1rem);
  line-height: 1.45;
  font-weight: 600;
}

a {
  color: var(--body-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.container {
  width: min(var(--container-width), calc(100% - 5rem));
  margin: 0 auto;
}

.wpb_text_column p a {
  text-decoration: underline;
  color: var(--primary-color);
}

.wpb_text_column p a:hover {
  color: var(--primary-alt-color);
}

/* Header Design */
.site-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: 0.4s ease-out;
  transition-property: background-color, transform;
}

body.logged-in .site-header {
  margin-top: var(--wp-admin--admin-bar--height, 0);
}

.site-header.fixed {
  background-color: var(--primary-alt-color);
}

body:not(.home) .site-header {
  background-color: #fff;
}

body:not(.home) .site-header.fixed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.site-logo img {
  transition: all 0.4s ease;
  filter: drop-shadow(0px 4px 17px #ffffff99);
}

.site-header.fixed .site-logo img {
  max-width: 120px;
}

.top-header {
  /* padding: 0.625rem 0;
  display: none; */
}

.top-bar-container-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  padding: 8px 0;
}

.top-bar-container-inner .top-bar-menu,
.top-bar-container-inner .top-bar-menu li:first-child {
  padding: 0;
}

.top-bar-menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.top-bar-container-inner .top-bar-nav {
  flex-shrink: 0;
}

.top-bar-menu a {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.top-bar-menu a:hover {
  opacity: 0.7;
}

.top-bar-menu>li {
  padding: 0 10px;
  border-right: 1px solid #fff;
  line-height: 1;
}

.top-bar-menu>li:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-info-boxes {
  margin-top: 1.5rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.site-nav {
  margin-left: auto;
  margin-right: 1rem;
}

.header-main-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.header-main-menu a {
  color: var(--white);
  display: inline-block;
  position: relative;
  font-weight: 600;
}

.header-main-menu a::before {
  content: "";
  position: absolute;
  width: 0rem;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -3px;
  transition: width 0.25s ease;
  max-width: 100%;
}

.header-main-menu a:hover::before,
.header-main-menu li.current-menu-item>a::before {
  width: 1.7rem;
}

.header-main-menu li:hover a:before {
  width: 1.7rem;
}

/* Header & Footer sub-menu design */
.footer-menu li,
.header-main-menu li {
  position: relative;
}

.footer-menu li>.sub-menu,
.header-main-menu li>.sub-menu {
  display: none;
  list-style: none;
}

.footer-menu li>.sub-menu,
.header-main-menu li>.sub-menu {
  box-shadow: 0 3px 3px rgb(0 0 0 / 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: auto;
  z-index: 99999;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  flex-direction: column;
  background: var(--primary-color);
  border-radius: 20px;
  opacity: 1;
  backdrop-filter: blur(29px);
  -webkit-backdrop-filter: blur(29px);
  padding: 0;
  row-gap: 1px;
  top: 45px;
  box-shadow: none;
}

.header-main-menu li>.sub-menu {
  padding-inline: 0;
  width: max-content;
}

.footer-menu li>.sub-menu>li>a,
.header-main-menu li>.sub-menu>li>a {
  width: max-content;
}

.header-main-menu li>.sub-menu>li>a::before {
  content: none;
}

.header-main-menu li>.sub-menu>li a,
.header-main-menu li>.sub-menu>li {
  width: 100%;
}

.header-main-menu li>.sub-menu>li>a {
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.header-main-menu li>.sub-menu>li:first-child {
  border-top-left-radius: inherit;
  overflow: hidden;
  border-top-right-radius: inherit;
}

.header-main-menu li>.sub-menu>li:last-child {
  border-bottom-left-radius: inherit;
  overflow: hidden;
  border-bottom-right-radius: inherit;
}

.header-main-menu li>.sub-menu>li:hover a,
.header-main-menu li>.sub-menu>li.current-menu-item a {
  background: #fff;
  color: #0d5898;
}

.footer-menu li>.sub-menu::after,
.header-main-menu li>.sub-menu::after {
  position: absolute;
  top: -20px;
  right: 0;
  content: "";
  width: 100%;
  height: 30px;
}

.footer-menu li.menu-item-has-children::after,
.header-main-menu li.menu-item-has-children::after {
  position: absolute;
  right: -15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 9px;
  height: 10px;
  background-image: url("../images/menu-has-item-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Header search wrapper */

.header-search {
  display: flex;
  justify-content: flex-end;
  /* flex-grow: 1; */
}

/* Form */
.search-form {
  position: relative;
  width: 228px;
}

/* Search input */
.txt_box_search {
  width: 100%;
  height: 36px;
  padding: 0 40px 0 14px;
  border-radius: 10px;
  border: 0;
  outline: none;
  font-size: 14px;
  background-color: var(--white);
}

/* Placeholder */
.txt_box_search::placeholder {
  color: #6b7280;
}

/* Submit button as icon */
.btn_submit {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M8.99528 -4.70039e-06C6.61081 0.00399274 4.32515 0.95299 2.63907 2.63907C0.952995 4.32514 0.00399744 6.6108 0 8.99527C0.00199286 11.3817 0.949866 13.6701 2.63594 15.359C4.32202 17.048 6.60881 17.9997 8.99528 18.0057C11.1118 18.0057 13.062 17.2611 14.6041 16.029L18.3496 19.7745C18.5394 19.9509 18.7901 20.0469 19.0492 20.0424C19.3082 20.0379 19.5554 19.9331 19.7389 19.7502C19.9223 19.5672 20.0278 19.3202 20.033 19.0612C20.0382 18.8022 19.9429 18.5512 19.7669 18.3609L16.0214 14.6116C17.3006 13.0207 17.998 11.0405 17.9981 8.99905C17.9981 4.04031 13.954 -4.70039e-06 8.99528 -4.70039e-06ZM8.99528 2.00315C12.8731 2.00315 15.995 5.12126 15.995 8.99527C15.995 12.8693 12.8731 16.0063 8.99528 16.0063C5.11748 16.0063 1.99937 12.8806 1.99937 9.00283C1.99937 5.12503 5.11748 2.00315 8.99528 2.00315Z' fill='%234B5563'/%3E%3C/svg%3E") no-repeat center / 20px;
}

.vc_grid .vc_btn3,
.btn-primary .vc_btn3-size-lg {
  font-size: 18px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  padding-top: 14px !important;
  padding-bottom: 15px !important;
}

.vc_btn3-container .vc_general.vc_btn3 {
  font-weight: 600 !important;
}

.btn-primary .vc_btn3-size-lg:hover {
  background-color: var(--primary-alt-color) !important;
}

/* Grid and Load more button design */
.vc_grid .vc_btn3 {
  background-color: var(--primary-color) !important;
}

.vc_grid .vc_btn3:hover {
  background-color: var(--primary-alt-color) !important;
}

/* Footer CSS */

.site-footer {
  background-color: var(--primary-alt-color);
  color: var(--light);
}

.footer-top {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 158px;
  gap: 40px 60px;
}

.footer-col--logo .footer-logo__link {
  display: block;
  margin-bottom: 28px;
}

.footer-col--logo img {
  max-width: 185px;
  height: auto;
  filter: brightness(1.08);
}

.footer-description {
  max-width: 320px;
}

.footer-col h4,
.footer-contact strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 12px;
  display: block;
}

.footer-contact strong {
  margin-bottom: 5px;
}

.footer-contact br {
  display: none;
}

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

.footer-menu li+li {
  margin-top: 8px;
}

.footer-menu a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-menu .current-menu-item>a {
  color: var(--white);
}

.footer-col--contact h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 331px;
}

.footer-contact p {
  margin-bottom: 0;
}

.footer-contact strong {
  color: var(--white);
}

.footer-contact img {
  width: 17px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 7px;
}

.footer-contact a {
  color: var(--light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li a {
  display: block;
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-social li a:hover {
  transform: translateY(-3px);
}

.footer-social img {
  width: 16px;
  max-height: 15px;
  object-fit: contain;
}

.footer-bottom {
  background: var(--primary-color);
  padding: 9.5px 0;
  font-size: 1.13rem;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  margin: 0;
  color: var(--white);
}

.footer-legal {
  margin: 0;
}

.footer-legal-menu {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.footer-legal-menu li {
  position: relative;
}

.footer-legal-menu li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -11px;
  width: 1px;
  height: 23px;
  background-color: #ffffff4d;
  top: 3px;
}

.footer-legal-menu a {
  color: var(--white);
  text-decoration: none;
}

.footer-legal-menu a:hover {
  opacity: 0.7;
}

/* Footer sub-menu Design */
.footer-menu li {
  /* width: max-content; */
}

.footer-menu li>.sub-menu {
  top: 50%;
  transform: translateY(-50%);
  left: 120%;
  row-gap: 5px;
}

.footer-menu li>.sub-menu::after {
  top: 0;
  right: unset;
  width: 20px;
  height: 100%;
  left: -20px;
}

.footer-menu li>.sub-menu li a {
  color: #fff;
}

/* Banner Slider CSS */

.hero-slide {
  min-height: 1050px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 210px 90px 480px;
  width: 100%;
  background: rgb(0 0 0 / 24%);
}

.home .hero-content-wrapper {
	background: rgba(0,0,0,0.45);
}

.hero-main-text .hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-background img,
.hero-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: var(--primary-color);
}

.hero-background img {
  display: none;
}

.hero-background video {
  z-index: 1;
  transform: scale(1.1);
}

.button {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  outline: none;
}

.btn-primary.button {
  color: var(--white);
  background-color: var(--primary-color);
  transition: all 0.4s ease;
}

.btn-primary.button:hover {
  background-color: var(--primary-alt-color);
}

.btn-light.button {
  background-color: #9898984d;
}

.btn-light.button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero-activities-tabs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.info-box.primary {
  font-size: 24px;
}

.info-box.secondary {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  padding-left: 10px;
  border-left: 2px solid var(--primary-color);
}

div .swiper-button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
  color: var(--primary-color);
}

div .swiper-button svg {
  width: 16px;
  height: 16px;
}

.hero-banner-inner {
  max-width: 752px;
}

.arrow-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.arrow-wrapper .container {
  position: relative;
}

div .swiper-button.swiper-button-prev {
  left: -90px;
}

div .swiper-button.swiper-button-next {
  right: -90px;
}

.hero-posts-swiper .swiper-button {
  top: 5px;
  margin-top: 0;
  border: 1px solid var(--primary-color);
}

div.hero-posts-swiper .swiper-button.swiper-button-prev {
  left: auto;
  right: 70px !important;
}

div.hero-posts-swiper .swiper-button.swiper-button-next {
  left: auto;
  right: 10px;
}

div .swiper-button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

div .swiper-button:hover svg * {
  fill: var(--white);
}

.news-footer .hero-post-read-more,
.search-read-more {
  font-weight: 700;
  color: var(--primary-alt-color);
  font-size: 14px;
}

.news-updates {
  position: absolute;
  bottom: 100px;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  padding: 0 70px;
}

.news-card__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.news-card__top>span:not(:last-child) {
  padding-right: 5px;
  margin-right: 5px;
}

.news-card__top>span:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  vertical-align: middle;
  background-color: var(--white);
  position: relative;
  left: 4px;
}

.news-card__footer {
  margin-top: 2.625rem;
}

.news-card__footer a {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.45;
  display: inline-block;
}

.news-card__footer a::after {
  content: "";
  width: 1.5rem;
  height: 0.625rem;
  display: inline-block;
  background-image: url("../images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  margin-left: 5px;
  top: 1px;
  position: relative;
}

.news-card__footer a:hover:after {
  transform: translateX(5px);
}

article.news-card {
  display: flex;
  flex-direction: column;
}

h3.news-card__title {
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.news-updates__grid {
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 40px 40px 40px 0;
  width: min(90%, 1294px);
  position: relative;
}

.news-updates__grid:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% + 50vw);
  height: 100%;
  background: #ffffff1a;
  backdrop-filter: blur(71px);
  z-index: -1;
}

.news-updates__grid h3 a {
  color: var(--white);
  font-size: inherit;
  line-height: 1.2;
  display: block;
}

.news-card__date {
  display: block;
}

.hero-slider .swiper-pagination-horizontal.swiper-pagination-bullets {
  bottom: 40px;
}

.hero-slider .swiper-slide {
  height: initial;
}

.hero-slide {
  height: 100%;
}

.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: var(--white);
  opacity: 1;
}

.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.hero-post-card-inner {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-post-card-inner h3 {
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.hero-posts-swiper-container .swiper-slide {
  height: initial;
}

.hero-post-card-inner h3 a {
  color: inherit;
}

.hero-posts-swiper-container {
  padding: 30px;
}

.news-footer {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  padding-top: 30px;
  color: #9ca3af;
  font-size: 12px;
}

.hero-post-tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: #eff6ff;
  align-self: flex-start;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

.hero-post-read-more {
  display: inline-block;
  transition: color 0.3s ease;
}

.hero-post-read-more:before {
  content: "";
  position: absolute;
  inset: 0;
}

.news-footer .hero-post-read-more:hover {
  color: var(--primary-color);
}

.hero-posts-swiper .hero-posts-swiper-container {
  padding: 20px;
  margin: -20px;
}

.cf7-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cf7-form-grid p {
  margin-bottom: 0;
}

.cf7-form-grid br {
  display: none;
}

.wpcf7-form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 10px;
}

.cf7-col-half {
  width: calc(50% - 8px);
}

.cf7-col-full {
  width: 100%;
}

.mobilemenu {
  display: none;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 15px;
}

.mobilemenu a.clickmenu {
  width: 25px;
  height: 20px;
  display: block;
  position: relative;
}

.mobilemenu a.clickmenu span {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -ms-transition: all ease-in 0.3s;
  -moz-transition: all ease-in 0.3s;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

body:not(.home) .site-header .mobilemenu a.clickmenu span {
  background-color: var(--primary-color);
}

.mobilemenu a.clickmenu span:nth-child(2) {
  top: 9px;
}

.mobilemenu a.clickmenu span:last-child {
  top: auto;
  bottom: 0;
}

.back_to_top_sec a {
  position: fixed;
  right: 30px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  z-index: 99;
  transition:
    all 0s,
    background-color 0.3s ease !important;
  background: var(--primary-color);
  border: 1px solid var(--white);
}

.back_to_top_sec a:hover {
  background-color: var(--primary-alt-color);
  border-color: var(--white);
}

.search-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.search-grid-box {
  background-color: #fafafa;
  border: 1px solid #f3f4f6;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.search-grid-box .search-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.search-grid-box .search-card-body .search-read-more {
  margin-top: auto;
  padding-top: 15px;
}

.search-card-body {
  padding: 30px;
}

.search-post-title {
  font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
}

.search-page-wrapper {
  padding: 64px 0;
}

.back_to_top_sec a svg {
  width: 25px;
  display: flex;
  margin: auto;
  height: 50px;
}

.search-thumb a {
  display: block;
  padding-bottom: 53%;
  position: relative;
  overflow: hidden;
}

.search-thumb a img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Pagination Wrapper */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-family: var(--body-font);
}

.nav-links .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: var(--primary-alt-color);
  background-color: var(--white);
  border: 1px solid rgba(13, 88, 152, 0.2);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.nav-links .page-numbers.current {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  cursor: default;
}

.nav-links .page-numbers.next {
  padding: 0 1.25rem;
  font-weight: 600;
}

.nav-links .page-numbers.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.3;
}

.breadcrumbs a:not(:hover) {
  color: #111318;
}

/* Timeline CSS */

.timeline-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  margin-bottom: 60px;
}

.timeline-content:before {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  width: 40px;
  height: 100%;
  top: 0;
  background-color: var(--primary-color);
}

.timeline-icon-heading {
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 54px 0px 0 54px;
  padding-right: 40px;
  gap: 28px;
  width: calc(50% - 20px);
}

.timeline-icon {
  width: 101px;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 10px solid var(--primary-alt-color);
  border-radius: 100%;
  flex-shrink: 0;
  transform: scale(1.09);
}

.timeline-heading {
  flex-grow: 1;
  text-align: center;
}

.timeline-icon img {
  max-width: 60px;
  max-height: 40px;
  object-fit: contain;
}

.timeline-content {
  padding: 40px 0;
}

.timeline-text {
  width: calc(50% - 20px);
}

.timeline-heading h3 {
  color: #fff;
}

.timeline {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  max-width: 630px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
  margin-bottom: 60px !important;
}

.timeline:before {
  content: "";
  width: 60px;
  height: 100%;
  box-shadow: 0px 0px 4px 0px #00000040;
  position: absolute;
  left: calc(50% - 30px);
  border-radius: 77px;
  top: 0;
  z-index: 0;
}

.timeline-item.right .timeline-content {
  flex-direction: row-reverse;
}

.timeline-item.right .timeline-icon-heading {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 40px;
  border-radius: 0 54px 54px 0;
  background-color: var(--primary-alt-color)
}

.timeline-item.right .timeline-icon {
  border-color: var(--primary-color);
}

.timeline-item.left .timeline-text {
  padding-left: 35px;
}

.timeline-item.right .timeline-text {
  padding-right: 35px;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-item:first-child .timeline-content:before {
  border-radius: 40px 40px 0 0;
}

.timeline-item:last-child .timeline-content:before {
  border-radius: 0 0 40px 40px;
}

.timeline-item.right .timeline-content:before {
  background-color: var(--primary-alt-color);
}

.timeline-content:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  border: 6px solid var(--white);
  border-radius: 100%;
}

.vc_editor .vc_row[data-vc-full-width].vc_hidden {
  opacity: 1 !important;
}

/* 404 CSS */

.error-box {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  background-color: #dee4e9;
  border-radius: 25px;
}

section.error-banner {
  padding: 70px 0;
  background: #F6F7F8;
  background-image: url('/wp-content/uploads/2026/02/world-map-bg.png?id=410');
  background-size: contain;
  min-height: calc(100vh - 193px - 450px);
  display: flex;
  align-items: center;
}

.error-box form.search-form {
  width: 100%;
  margin-bottom: 30px;
  margin-top: 20px;

}

.error-box .txt_box_search {
  height: 50px;
}

.legal-content .wpb_wrapper> :is(h2, h3, h4, h5):not(:first-child) {
  margin-top: 30px;
}

.single-breadcrumb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #F9FAFB;
}

.single-post-banner {
  padding: 60px 0;
  background: linear-gradient(rgb(1, 8, 40) 0%, rgb(4, 55, 143) 44%, rgb(1, 8, 40) 100%);
}

.single-post-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 400px;
}

.post-featured img {
  width: 100%;
  border-radius: 25px;
}

.post-heads h1 {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 0;
}

.single-post-date {
  color: #fff;
  margin-left: 5px;
  display: inline-block;
  margin-top: 7px;
  margin-bottom: 7px;
}

.post-heads .post-category {
  padding: 5px 15px;
  background: #f3f4f6;
  border-radius: 10px;
  color: #000;
}

.single-post-content-sec {
  padding: 64px 0;
}

.single-post-content-sec .container {
  --container-width: 1200px;
}

/* Access the Digital Data Form Section CSS Start */

.contact-from-section>.wpb_column {
  max-width: 935px;
  margin: 0 auto;
  float: unset;
}

.contact-from-section-heading-block .vc_custom_heading {
  margin-bottom: 12px;
}

.cmn-contact-from .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}

.cmn-contact-from .wpcf7-form p {
  margin-bottom: 15px;
}

.cmn-contact-from .wpcf7-form p label {
  font-weight: 400;
}

.cmn-contact-from .wpcf7-form p input:not(input[type="submit"]) {
  border-radius: 10px;
  box-shadow: unset;
  padding: 13px 16px;
}

.cmn-contact-from .wpcf7-form p:has(textarea) {
  width: 100%;
}

.cmn-contact-from .wpcf7-form p:has(input[type="submit"]) {
  margin-bottom: 0;
}

.contact-from-section-heading-block .wpb_text_column p {
  max-width: 511px;
  margin: 0 auto;
}

.cmn-contact-from .wpcf7-form>p:not(:has([type="submit"])):not(:has(textarea)) {
  width: calc(50% - 7.5px);
}

.cmn-contact-from .wpcf7-form .wpcf7-response-output {
  width: 100%;
  margin: 20px 0 0 0;
}

/* Access the Digital Data Form Section CSS End */

.activity-card .wpb_single_image>.wpb_wrapper.vc_figure,
.activity-card .wpb_single_image>.wpb_wrapper.vc_figure>.vc_single_image-wrapper {
  display: block;
}

.activity-card .wpb_single_image img {
  width: 100%;
  height: 267px;
  object-fit: cover;
}

.gulf-coast-section .gulf-coast-images .wpb_column .wpb_single_image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.gulf-coast-section .gulf-coast-images .wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_single_image>.wpb_wrapper.vc_figure,
.gulf-coast-section .gulf-coast-images .wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_single_image>.wpb_wrapper.vc_figure>.vc_single_image-wrapper {
  display: block;
}

.cmn-inner-banner.has-overlay>div:after {
  content: "" !important;
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  opacity: 0.36;
  pointer-events: none;
}

.wpb_content_element.video-box {
  margin: 0;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.cmn-inner-banner.about-page-banner .about-banner-content-wrapper>.vc_column-inner {
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  max-width: fit-content;
  margin-inline: 10px;
}

.cmn-inner-banner.about-page-banner.has-op-5 .about-banner-content-wrapper>.vc_column-inner {
  background: rgba(0, 0, 0, 0.55);
}

.about-banner-content-wrapper.wpb_column {
  width: fit-content;
  max-width: 100%;
}

.cmn-inner-banner.about-page-banner .about-banner-content-wrapper .vc_custom_heading {
  font-size: clamp(2rem, 1.75rem + 1vw, 2.75rem);
}

.follows-us-box > .wpb_wrapper {
	display: flex;
	gap: 15px;
	align-items: center;
}

.follows-us-box > .wpb_wrapper > h4 {
	margin: 0;
}

/* Mobile Tweak */
@media (max-width: 575px) {
  .nav-links {
    gap: 0.35rem;
  }

  .nav-links .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

}

@media (min-width: 1201px) {

  .footer-menu li:hover>.sub-menu,
  .header-main-menu li:hover>.sub-menu {
    display: flex;
  }

  body:not(.home) .site-header .header-main-menu>li>a {
    color: #111318;
    font-weight: 400;
  }

  body:not(.home) .header-main-menu li.menu-item-has-children::after {
    background-image: url("../images/menu-has-item-arrow-black.svg");
  }

  body:not(.home) .header-main-menu li>.sub-menu li>a:hover {
    background: var(--primary-alt-color);
    color: #fff;
  }
}

@media (min-width: 992px) {
  body.home {
    padding-top: 40px;
  }

  header .site-nav {
    /* display: block; */
  }
}

@media (max-width: 1720px) {
  div .swiper-button.swiper-button-prev {
    left: -20px;
  }

  div .swiper-button.swiper-button-next {
    right: -20px;
  }

  .hero-content-wrapper {
    padding: 210px 70px 480px;
  }
}

@media (max-width: 1520px) {
  .site-logo img {
    min-width: 120px;
  }

  .header-main-menu {
    gap: 1.5rem;
  }

  .header-main-menu a {
    white-space: nowrap;
  }

  .search-form {
    width: 100%;
  }

  .vc_row.contact-from-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .vc_row.contact-from-section-heading-block {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 1400px) {
  .hero-content-wrapper {
    padding: 210px 50px 560px;
  }

  .news-updates {
    padding: 0 50px;
  }

  .news-updates__grid {
    gap: 1.5rem 1.25rem;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .header-main-menu a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {

  body.home .site-header {
    background: #fff;
  }

  body.home .site-header .mobilemenu a.clickmenu span {
    background-color: var(--primary-color);
  }

  body.home .site-header.fixed {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .mobilemenu {
    display: flex;
    margin-right: 0;
    margin-left: auto;
  }

  body.open-menu {
    overflow: hidden;
  }

  .hero-info-boxes {
    margin-top: 0.9rem;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    position: absolute;
    left: -2.5rem;
    right: -2.5rem;
    top: calc(100% - 2px);
    width: auto;
    background-color: var(--primary-alt-color);
    z-index: 99;
    display: none;
    max-height: calc(100vh - var(--site-header-height) - 40px);
    overflow: hidden auto;
  }

  .header-main-menu {
    flex-direction: column;
    padding: 30px;
    align-items: flex-start;
  }

  .header-main-menu a:hover::before,
  .header-main-menu li.current-menu-item>a::before {
    width: 100%;
  }

  .header-search {
    flex-grow: 1;
    flex-shrink: 1;
  }

  .header-inner {
    padding: 0.625rem 0;
  }

  .site-logo img {
    max-width: 120px;
  }

  .site-header {
    background-color: var(--primary-alt-color);
  }

  .site-nav {
    margin-right: 0;
  }

  .search-form {
    width: 200px;
  }

  .header-main-menu {
    padding-left: 1.875rem;
    gap: 1rem;
  }

  .site-logo {
    max-width: 130px;
  }

  .site-header {
    background-color: var(--primary-alt-color);
  }

  .open-menu .mobilemenu a.clickmenu span:first-child {
    transform: rotate(45deg);
    top: 11px;
  }

  .open-menu .mobilemenu a.clickmenu span:nth-child(2) {
    opacity: 0;
  }

  .open-menu .mobilemenu a.clickmenu span:last-child {
    transform: rotate(-45deg);
    top: 11px;
  }

  /* .footer-menu li > .sub-menu, */
  .header-main-menu li>.sub-menu {
    position: unset;
    border: 0;
    box-shadow: unset;
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    float: unset;
    align-items: center;
    row-gap: 5px;
    backdrop-filter: unset;
  }

  .footer-menu li>.sub-menu,
  .header-main-menu li>.sub-menu {
    display: none;
  }

  .footer-menu li.menu-item-has-children.active>.sub-menu,
  .header-main-menu li.menu-item-has-children.active>.sub-menu {
    display: flex;
  }

  .header-main-menu li {
    /* text-align: center; */
  }

  .header-main-menu li.menu-item-has-children:not(.active)>a {
    pointer-events: none;
  }

  .footer-menu li>.sub-menu::after,
  .header-main-menu li>.sub-menu::after,
  .footer-menu li.menu-item-has-children::after,
  .header-main-menu li.menu-item-has-children::after {
    content: unset;
  }

  .footer-menu li.menu-item-has-children>a::after,
  .header-main-menu li.menu-item-has-children>a::after {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 9px;
    height: 10px;
    background-image: url(../images/menu-has-item-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .vc_row.contact-from-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .about-banner-content-wrapper p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 0.5fr 1fr 158px;
    gap: 50px 40px;
  }

  .news-card__top {
    margin-bottom: 3px;
  }

  .container {
    width: min(var(--container-width), calc(100% - 3.75rem));
  }

  .mobilemenu {
    display: flex;
    margin-right: 0;
    margin-left: auto;
  }

  .hero-info-boxes {
    margin-top: 0.9rem;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    position: absolute;
    left: -1.875rem;
    right: -1.875rem;
    top: calc(100% - 2px);
    width: auto;
    background-color: var(--primary-alt-color);
    z-index: 99;
    display: none;
  }

  .header-main-menu {
    flex-direction: column;
    padding: 30px;
  }

  .header-main-menu a:hover::before,
  .header-main-menu li.current-menu-item>a::before {
    width: 100%;
  }

  .header-search {
    flex-grow: 1;
    flex-shrink: 1;
  }

  .header-inner {
    padding: 0.625rem 0;
  }

  .site-logo img {
    max-width: 120px;
  }

  .site-header {
    background-color: var(--primary-alt-color);
  }

  .open-menu .mobilemenu a.clickmenu span:first-child {
    transform: rotate(45deg);
    top: 11px;
  }

  .open-menu .mobilemenu a.clickmenu span:nth-child(2) {
    opacity: 0;
  }

  .open-menu .mobilemenu a.clickmenu span:last-child {
    transform: rotate(-45deg);
    top: 11px;
  }

  .news-updates {
    position: static;
    background-color: var(--primary-color);
    padding: 0;
  }

  .news-updates__grid:before {
    content: none;
  }

  .news-updates__grid {
    width: 100%;
    padding-right: 0;
  }

  h3.news-card__title {
    font-size: 1rem;
  }

  .news-card__footer {
    margin-top: 1rem;
  }

  .hero-slide {
    min-height: 500px;
    align-items: center;
  }

  .hero-slider .arrow-wrapper>.container {
    display: none;
  }

  .hero-content-wrapper {
    padding: 100px 0;
    height: 100%;
  }

  .search-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-grid>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-grid>div:first-child {
    grid-column: span 3;
  }
}

@media (max-width: 767px) {

  .header-main-menu {
    align-items: flex-start;
  }

  .footer-menu {
    text-align: center;
  }

  .header-main-menu li {
    text-align: left;
  }

  .footer-menu li>.sub-menu,
  .header-main-menu li>.sub-menu {
    align-items: flex-start;
  }

  .cmn-inner-banner {
    min-height: 400px !important;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  div.hero-posts-swiper .swiper-button.swiper-button-prev {
    right: 55px !important;
  }

  .cf7-col-half {
    width: 100%;
  }

  .site-nav {
    left: -1.25rem;
    right: -1.25rem;
  }

  .container {
    width: min(var(--container-width), calc(100% - 2.5rem));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }

  .footer-col.footer-col--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    margin: 0 auto 1rem;
  }

  .footer-col--logo .footer-logo__link {
    margin-bottom: 1rem;
  }

  .footer-contact:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    font-size: 1rem;
  }

  .footer-legal-menu li:not(:last-child):after {
    height: 1.1rem;
  }

  .footer-top {
    padding: 3rem 0;
  }

  .search-form {
    width: min(100%, 200px);
  }

  .btn_submit {
    right: 10px;
  }

  .news-updates__grid {
    grid-template-columns: 1fr;
  }

  .hero-content-wrapper {
    padding: 60px 0 80px;
  }

  .hero-activities-tabs {
    flex-wrap: wrap;
  }

  .info-box.primary {
    font-size: 18px;
  }

  .info-box.secondary {
    font-size: 1rem;
  }

  .hero-slider .swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: 10px;
  }

  .search-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .search-card-body {
    padding: 25px;
  }

  .back_to_top_sec a {
    right: 15px;
    bottom: 20px;
  }

  .single-post-row {
    grid-template-columns: 1fr;
  }

  .post-heads {
    order: 2;
  }

  .cmn-contact-from .wpcf7-form>p:not(:has([type="submit"])):not(:has(textarea)) {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .timeline:before {
    width: 20px;
    left: calc(50% - 10px);
  }

  .timeline-content:before {
    width: 10px;
    left: calc(50% - 5px);
  }

  .timeline-content:after {
    width: 8px;
    height: 8px;
    left: calc(50% - 4px);
    border-width: 2px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }

  .timeline-icon-heading {
    gap: 5px;
  }

  .timeline-icon img {
    max-width: 30px;
    max-height: 24px;
  }

  .timeline-icon-heading,
  .timeline-text {
    width: calc(50% - 5px);
  }

  .timeline-content {
    gap: 10px;
  }

  .timeline {
    font-size: 16px;
    line-height: 1.3;
    padding: 6px 0;
    margin-bottom: 30px !important;
  }

  .timeline-item.left .timeline-text {
    padding-left: 20px;
  }

  .timeline-item.right .timeline-text {
    padding-right: 20px;
  }

  .timeline-heading h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .timeline-item.right .timeline-icon-heading {
    padding-left: 15px;
  }

  .timeline-icon-heading {
    padding-right: 20px;
  }

  .timeline-content {
    padding: 22px 0;
  }

  section.error-banner {
    padding: 40px 0;
  }

  .error-box {
    padding: 30px 20px;
  }
}