/* ========================== FONT ========================== */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaW01-Bold.eot");
  src: url("../fonts/HelveticaW01-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaW01-Bold.woff2") format("woff2"),
    url("../fonts/HelveticaW01-Bold.woff") format("woff"),
    url("../fonts/HelveticaW01-Bold.ttf") format("truetype"),
    url("../fonts/HelveticaW01-Bold.svg#HelveticaW01-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaW01-Light.eot");
  src: url("../fonts/HelveticaW01-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaW01-Light.woff2") format("woff2"),
    url("../fonts/HelveticaW01-Light.woff") format("woff"),
    url("../fonts/HelveticaW01-Light.ttf") format("truetype"),
    url("../fonts/HelveticaW01-Light.svg#HelveticaW01-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaW01-Roman.eot");
  src: url("../fonts/HelveticaW01-Roman.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaW01-Roman.woff2") format("woff2"),
    url("../fonts/HelveticaW01-Roman.woff") format("woff"),
    url("../fonts/HelveticaW01-Roman.ttf") format("truetype"),
    url("../fonts/HelveticaW01-Roman.svg#HelveticaW01-Roman") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaW01-Cn.eot");
  src: url("../fonts/HelveticaW01-Cn.eot?#iefix") format("embedded-opentype"),
    url("../fonts/HelveticaW01-Cn.woff2") format("woff2"),
    url("../fonts/HelveticaW01-Cn.woff") format("woff"),
    url("../fonts/HelveticaW01-Cn.ttf") format("truetype"),
    url("../fonts/HelveticaW01-Cn.svg#HelveticaW01-Cn") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================== PRESET ========================== */

:root {
  --blueColor: #0c59a9;
  --lightBlueColor: #E7EEF6;
  --greyColor: #a7a9ac;
  --headingColor: #1c1c1c;
  --black: #000000;
  --white: #fff;
  --HelveticaFont: "Helvetica", sans-serif;
  --menu-height: 158px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: var(--HelveticaFont);
}

body {
  overscroll-behavior: none;
  background: var(--white);
}

footer,
section {
  overflow: hidden;
}

.header {
  overflow-x: clip;
}

::selection {
  color: var(--white);
  background-color: var(--greyColor);
}

::-moz-selection {
  color: var(--white);
  background-color: var(--greyColor);
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus,
:focus-visible {
  outline-color: var(--blueColor);
  outline-offset: 3px;
  outline-width: 2px;
}

img,
figure,
video,
.aspect-ratio,
.embed-wrapper {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

button:hover,
button:focus,
button:focus-visible {
  border: 0;
  outline: none;
}

::-webkit-scrollbar {
  width: 5px;
  margin-left: 5px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background-color: var(--lightBlueColor);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(12, 89, 169, 0.5);
}
/* * {
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 89, 169, 0.5) var(--lightBlueColor);
} */
/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--headingColor);
  font-family: var(--HelveticaFont);
  margin-bottom: 0;
}

h1,
.h1 {
  font-weight: 300;
  font-size: 80px;
  line-height: 104px;
  color: var(--white);
}

.home h1 {
  font-size: 106px;
  line-height: 103px;
}

/* CHANGE ACC TO CONTENT */
.home h1 {
  font-size: 92px;
  line-height: 103px;
}

h2,
.h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 124%;
}

/* Paragraph */

p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgb(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

p:last-child {
  margin-bottom: 0;
}

/* Tagline */
.ah__subheading {
  position: relative;
}

.ah__subheading:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blueColor);
  width: 69px;
  height: 1px;
}

.ah__subheading--white::after {
  background: var(--white);
}

.ah__subheading span {
  color: var(--blueColor);
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
  padding-right: 8px;
  text-transform: uppercase;
}

.ah__subheading--white span {
  color: var(--white);
}

/* ========================== PRIMARY ========================== */
.section__padding {
  padding: 110px 0;
}

.img__zoom {
  overflow: hidden;
}

.img__zoom img {
  transition: transform 0.5s ease;
}

.img__zoom:hover img {
  /* cursor: pointer; */
  transform: scale(1.2);
}

/* ========================== HEADER ========================== */
#wpadminbar+.header {
  z-index: 9999;
}

.header {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  padding-top: 19px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.header__bg {
  padding: 20px 0;
  background-color: var(--blueColor);
}

.header:before {
  content: "";
  position: absolute;
  right: 0;
  top: 100px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  width: 75%;
  height: 1px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.header__menu__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0 0;
  gap: 45px;
}

.header__menu__wrapper li a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  text-transform: capitalize;
  transition: color 0.5s;
  position: relative;
  padding-bottom: 5px !important;
}

.header__menu__wrapper li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.5s, left 0.5s;
}

.custom-logo-link img {
  object-fit: contain;
  max-width: 135px;
  min-height: 118px;
  max-height: 118px;
  transition: 0.3s ease;
  width: 100%;
}

.header__menu__wrapper li.current-menu-item a:hover {
  opacity: 0.8;
}

.header__menu__wrapper li.current-menu-item:not(.contact__btn) a::before,
.header__menu__wrapper li a:hover::before {
  width: 100%;
  left: 0;
  cursor: pointer;
}

.header__menu__wrapper li.current-menu-item:not(.contact__btn) a,
.header__menu__wrapper li a:hover {
  color: var(--white);
  cursor: pointer;
  background: none;
}

.header__menu__wrapper .contact__btn a {
  padding: 0 !important;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
}

.header__menu__wrapper .contact__btn a {
  background: var(--white);
  width: 115px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blueColor) !important;
  font-weight: 700 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in;
  z-index: 1;
}

.header__menu__wrapper .contact__btn a::before,
.header__menu__wrapper .contact__btn a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  overflow: hidden;
  z-index: -1;
}

.header__menu__wrapper .contact__btn a::before {
  left: -10px;
  background: var(--blueColor) !important;
}

.header__menu__wrapper .contact__btn a::after {
  right: -10px;
  background: var(--blueColor) !important;
}

.header__menu__wrapper .contact__btn a:hover::before,
.header__menu__wrapper .contact__btn a:hover::after {
  width: 61%;
}

.header__menu__wrapper .contact__btn a:hover {
  color: var(--white) !important;
  transition: 0.3s;
  border: 1px solid var(--white);
}

/* STICKY HEADER */
.sticky-header {
  background-color: var(--blueColor);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.sticky-header .header__wrapper {
  align-items: center;
  margin: -15px 0 !important;
  gap: 40px;
}

.sticky-header .header__menu__wrapper {
  padding: 0;
}

.sticky-header .header__logo a img {
  /* transform: scale(0.7); */
  transition: 0.3s ease;
  width: 90px;
}

.sticky-header #header__menu__list li a {
  font-size: 14px;
  transition: font-size 0.3s ease;
}

.sticky-header .contact__btn a {
  width: 100px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}

.sticky-header .contact__btn a:hover {
  color: var(--white);
  border: 1px solid var(--white);
}

.sticky-header:before {
  display: none;
}

/* ========================== HOME ========================== */
section.ah-banner.ah-banner--video {
  position: relative;
  /* height: calc(100vh - 20vh); */
  /* height: 912px; */
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

section.ah-banner.ah-banner--video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 331px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 14.23%,
      rgba(0, 0, 0, 0) 94.86%);
}

section.ah-banner.ah-banner--video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 14.23%,
      rgba(0, 0, 0, 0) 94.86%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.ah-banner__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*    z-index: -1;*/
}

.ah-banner__video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  transform: scale(1.5);
}

/*.ah-banner.ah-banner--video::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/02/AH-Banner-min.jpg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
} */
.ah-banner.ah-banner--video .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.ah-banner__heading,
.ah-banner__content-wrapper {
  color: white;
}

.ah-banner__content-wrapper--inner .ah-banner__heading {
  position: static;
  transform: unset;
  width: 100%;
  margin-bottom: 40px;
}

.ah-banner__heading {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ah-banner__heading h1 {
  /* max-width: 290px; */
  width: 100%;
  max-width: 719px;
}

/* .ah-banner-inn .ah-banner__heading h1 {
  max-width: 719px;
  width: 100%;
} */

.ah-banner__content-wrapper {
  position: absolute;
  bottom: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0 12px;
}

.ah-banner__content-wrapper--inner {
  flex-wrap: wrap;
}

.ah-banner__text {
  /* max-width: 440px; */
  max-width: 521px;
  position: relative;
}

.ah-banner__text:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 30%);
  width: 1px;
  height: 99px;
}

.ah-banner__text .ah-banner__description {
  font-size: 18px;
  /* font-weight: 400; */
  font-weight: 300;
  color: rgb(255 255 255 / 80%);
  padding-left: 30px;
}


.social-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 2rem; */
  /* padding: 0.75rem 1.25rem; */
  --primary-color: var(--blueColor);
  --gradient-color: linear-gradient(180deg, #d2ff00 0%, #00d2ff 100%);
}

.social-box ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.icon {
  display: inline-block;
  margin: 0;
}

.social-box .icon {
  padding: 0;
  font-size: 28px;
  width: 24px;
  height: 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  background: transparent;
  color: var(--blueColor);
  transition: all 0.75s ease;
}

.social-box .icon:hover {
  transform: scale(1.2);
}

.social-box .icon img[src$="linkedin-white.svg"],
.social-box .icon img[src$="linkedin-white-light.svg"] {
  transform: scale(1.8);
}


/* ========================== WHO WE ARE ========================== */
.who-we-are__header {
  width: 100%;
}

.who-we-are__content-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 67px;
}

.who-we-are__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 589px;
  /* max-width: 802px; */
}

.who-we-are__content {
  margin-bottom: -8px;
}

.who-we-are__content p {
  font-weight: 300;
  color: rgb(0 0 0 / 80%);
  margin-bottom: 35px;
}

.ah__button a {
  display: inline-flex;
  align-items: center;
  color: var(--blueColor);
}

.ah__button a,
.ah__button span {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  padding-right: 12px;
}

.ah__button img {
  object-fit: contain;
  max-width: 17px;
  max-height: 11px;
  transition: 0.3s ease;
}

/* ========================== OUR PORTFOLIO ========================== */
section.portfolio {
  background: var(--blueColor);
  color: var(--white);
}

.portfolio__header>div:last-child {
  display: flex;
  justify-content: flex-end;
}

.ah__button__underlined span {
  color: var(--white);
}

.ah__button__underlined.blue span {
  color: var(--blueColor);
}

.ah__button__underlined.blue img {
  filter: none;
}

.ah__button__underlined a {
  position: relative;
  padding: 0;
}

.ah__button__underlined.blue::before,
.ah__button__underlined.blue::after {
  background-color: var(--blueColor);
}

.ah__button__underlined img {
  filter: brightness(0) invert(1);
}

/* .ah__button__underlined a:after {
  content: '';
    position: absolute;
    background: var(--white);
    width: 100%;
    height: 1px;
    bottom: -5px;
} */

.portfolio__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}

.portfolio__title {
  margin-top: 30px;
  color: var(--white);
}

.portfolio__button.ah__button__underlined::before,
.portfolio__button.ah__button__underlined::after {
  top: 25px;
  z-index: 1;
}

/* PORTFOLIO CAROUSEL */
.portfolio__carousel {
  width: 100%;
}

.portfolio__item__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio__item__img {
  border-radius: 12px;
  /* min-height: max-content; */
  overflow: hidden;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4);
  transition: 0.3s ease;
}

.portfolio__item__img:hover {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, .4);
}

.portfolio__item__img img {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: top;
  transition: 0.3s ease-in-out;
}

.portfolio__item__content {
  text-align: center;
  margin-top: 22px;
}

.portfolio__item__content h5 {
  font-size: 25px;
  font-weight: 300;
  line-height: 124%;
  color: var(--white);
  /* text-transform: capitalize; */

  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio__item__content p:empty {
  display: none;
}

.portfolio__item__content p {
  line-height: 124%;
  font-weight: 300;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 0;
}

.portfolio-slider .owl-item .item {
  cursor: pointer;
  /* margin: 6% 8%; */
  transition: margin 0.4s ease;
  width: 100%;
  text-decoration: none;
}


.portfolio-slider .owl-item.center .item {
  cursor: auto;
  margin: 0;
}

/* .portfolio-slider .owl-item:not(.center)>div:hover {
  opacity: 0.75;
} */

.portfolio-slider.owl-drag .owl-item {
  margin-right: 30px;
  height: 745px;
  display: flex;
  align-items: center;
}

.portfolio-slider .owl-item .item .portfolio__item__img {
  height: 364px;
  transition: 0.3s ease-in-out;
}

.portfolio-slider .owl-item.active .item .portfolio__item__img {
  height: 491px;
}

.portfolio-slider .owl-item.active.center .item .portfolio__item__img {
  height: 654px;
}

/* PMC 6/17/25 */
.portfolio-slider.owl-drag .owl-item {
  height: 650px;
}

.portfolio-slider .owl-item .item .portfolio__item__img {
  height: 306px;
}

.portfolio-slider .owl-item.active .item .portfolio__item__img {
  height: 413px;
}

.portfolio-slider .owl-item.active.center .item .portfolio__item__img {
  height: 550px;
}

.portfolio-slider .owl-item .portfolio__item__content {
  display: none;
}

.portfolio-slider .owl-item.active.center .portfolio__item__content {
  opacity: 1;
  display: block;
}

.portfolio-slider .owl-item .portfolio__item__content {
  opacity: 0;
}

.portfolio-slider .owl-item .portfolio__item__img {
  position: relative;
}

.portfolio-slider .owl-item .portfolio__item__img:hover img {
  transform: scale(1.1);
}

.portfolio-slider .owl-item .portfolio__item__img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: 0.3s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.26%, rgba(0, 0, 0, 0.9) 100%);
}

.portfolio-slider .owl-item.active.center .portfolio__item__img::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.portfolio-slider .owl-item.active .portfolio__item__img::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.portfolio-slider .owl-item.active.center+.owl-item.active .portfolio__item__img::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.portfolio-slider .owl-item.active.center+.owl-item .portfolio__item__img::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -0.01%, rgba(0, 0, 0, 0.3) 100%);
}

.portfolio-slider .owl-stage {
  display: flex;
  align-items: center;
}

.portfolio-slider .owl-nav {
  display: none;
}

.portfolio-slider .owl-stage-outer {
  overflow: hidden;
}

.portfolio-slider-wrapper {
  position: relative;
  width: 100%;
  cursor: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22 width=%22100%22 height=%22100%22%3E%3Crect x=%220%22 y=%220%22 width=%22100%22 height=%22100%22 rx=%22100%22 fill=%22%230C59A9%22/%3E%3Ctext x=%2250%22 y=%2250%22 font-family=%22Arial%22 font-size=%2218%22 font-weight=%22300%22 fill=%22white%22 text-anchor=%22middle%22 alignment-baseline=%22middle%22 text-transform=%22uppercase%22%3EDRAG%3C/text%3E%3C/svg%3E') 50 50, auto;
  z-index: 1000;
}

.portfolio-slider {
  position: relative;
  z-index: 1;
}

.portfolio-slider-wrapper:hover {
  cursor: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22 width=%22100%22 height=%22100%22%3E%3Crect x=%220%22 y=%220%22 width=%22100%22 height=%22100%22 rx=%22100%22 fill=%22%230C59A9%22/%3E%3Ctext x=%2250%22 y=%2250%22 font-family=%22Arial%22 font-size=%2218%22 font-weight=%22300%22 fill=%22white%22 text-anchor=%22middle%22 alignment-baseline=%22middle%22 text-transform=%22uppercase%22%3EDRAG%3C/text%3E%3C/svg%3E') 50 50, auto;
}

.portfolio__arr_con {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ========================== OUR PARTNERS ========================== */
.partners__subheading {
  margin-bottom: 28px;
}

.partners__img {
  position: relative;
  width: 304px;
  height: 304px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CHANGE ACC TO CONTENT */
.holding-companies .partners__img {
  width: 100%;
}

.partners--sec .partners__img {
  width: 287px;
  height: 223px;
}

.partners__arr_con {
  display: flex;
  justify-content: flex-end;
}

.partners__img.remove-before::before {
  display: none;
}

.partners--sec .partners__carousel {
  width: 93.63%;
  margin-left: auto;
  margin-right: auto;
}

.partners__carousel .owl-item.active .partners__img:before {
  content: "";
  /* background: rgb(206 206 206 / 60%); */
  width: 1px;
  height: 181px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  border-right: 1px solid rgb(206 206 206 / 60%);
}

.partners__carousel .owl-item.active .partners__img:nth-child(1):after {
  content: "";
  /* background: rgb(206 206 206 / 60%); */
  width: 181px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  border-bottom: 1px solid rgb(206 206 206 / 60%);
}

.partners__img img {
  object-fit: contain;
  object-position: center;
  width: 150px;
  height: 120px;
}


.partners__carousel {
  margin-top: 20px;
}

.partners__img {
  transition: 0.5s;
  overflow: hidden;
}

.partners__img img {
  transition: 0.5s;
  opacity: 0.6;
}

.partners__img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
  opacity: 1;
}

.holding-companies .partners__img img {
  /* height: 200px; */
  height: 140px;
  filter: grayscale(1);
  opacity: 1;
  transition: 0.5s;
}

.holding-companies .partners__img:hover img {
  filter: grayscale(0);
  transition: 0.5s;
}

/* ========================== OUR SERVICES ========================== */
section.our-services {
  background: var(--blueColor);
  position: relative;
}

section.our-services:after {
  content: "";
  background: url(/wp-content/uploads/2025/03/background-shape.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  top: 0;
  background-position: left;
}

.our-services__container {
  position: relative;
}

.our-services__heading {
  max-width: 414px;
  position: absolute;
  left: 12px;
  /* top: 0; */
  top: 19px;
  z-index: 2;
}

.our-services__title {
  color: var(--white);
}

.our-services__subheading {
  margin-bottom: 27px;
}

.our-services__slide {
  display: flex !important;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
}

.our-services__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.our-services__item {
  position: relative;
}

.our-services__content {
  position: absolute;
  bottom: 13px;
  padding: 0 40px 0 16px;
  z-index: 1;
}

.our-services__content h4 {
  font-size: 28px;
  line-height: 122%;
  color: var(--white);
  font-weight: 300;
}

.our-services__slide .our-services__item:nth-child(1) .our-services__content h4,
.our-services__slide .our-services__item:nth-child(3) .our-services__img:first-child .our-services__content h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-services__slide .our-services__item:nth-child(2) .our-services__content {
  bottom: 38px;
  padding: 0 30px;
}

.our-services__slide .our-services__item:nth-child(3) .our-services__content {
  bottom: 8px;
  padding: 0 19px 0 16px;
}

.our-services__slide .our-services__item:nth-child(2) .our-services__content h4 {
  font-size: 39px;
}

.our-services__slide {
  --w1: 290px;
  --h1: 211px;

  --w2: 513px;
  --h2: 679px;

  --w3: 238px;
  --h3: 381px;

  --w4: 238px;
  --h4: 213px;

  --gap: 30px;
}

.our-services__slide.swiper-slide-active {
  z-index: 2;
}

/* .our-services__slide .our-services__item:nth-child(1), */
.our-services__slide .our-services__item:nth-child(1) .our-services__img {
  width: var(--w1);
  height: var(--h1);
}

.our-services__slide .our-services__item .our-services__img img {
  width: 100%;
  max-width: unset !important;
  height: 100% !important;
  object-fit: cover;
}

/* .our-services__slide .our-services__item:nth-child(2), */
.our-services__slide .our-services__item:nth-child(2) .our-services__img {
  width: var(--w2);
  height: var(--h2);
}

/* .our-services__slide .our-services__item:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
} */

/* .our-services__slide .our-services__item:nth-child(3) {
  width: var(--w3);
  height: calc(var(--h3) + var(--h4) + var(--gap));
} */

.our-services__slide .our-services__item:nth-child(3) .our-services__img:first-child {
  width: var(--w3);
  height: var(--h3);
}

.our-services__slide .our-services__item:nth-child(3) .our-services__img:nth-child(2) {
  width: var(--w4);
  height: var(--h4);
}

.our-services__slide .our-services__item:nth-child(3) .our-services__img:first-child {
  margin-bottom: var(--gap);
}


.our-services__img {
  position: relative;
  display: block;
}

.our-services__img:after {
  content: "";
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.our-services__img:empty:after {
  display: none;
}

.our-services__button {
  margin-top: 24px;
}

.our-services__button a {
  min-height: 28px;
}

.our-services__arrows .swiper-button-next,
.our-services__arrows .swiper-button-prev {
  width: 38px;
  height: 38px;
  background-color: #EFF7FF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;

  position: relative;
  inset: 0;
}

.our-services__arrows .swiper-button-next:after,
.our-services__arrows .swiper-button-prev:after {
  content: "";
  width: 19px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}

.our-services__arrows .swiper-button-next:after {
  background: url(/wp-content/uploads/2025/02/left-arrow.svg);
}

.our-services__arrows .swiper-button-prev:after {
  background: url(/wp-content/uploads/2025/02/right-arrow.svg);
}

.our-services__arrows {
  position: absolute;
  left: 12px;
  /* bottom: 125px; */
  bottom: 86px;
  display: flex;
  gap: 16px;
}

/* ========================== HOLDING COMPANIES ========================== */
section.holding-companies .partners__title {
  /* max-width: 82%; */
}


/* ========================== NEWS ========================== */
section.news {
  background: var(--blueColor);
  position: relative;
}

section.news:after {
  content: "";
  background: url(/wp-content/uploads/2025/03/background-shape1.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.news__container {
  z-index: 1;
  position: relative;
}

.news__header {
  display: flex;
  align-items: flex-end;
}

.news__subheading {
  margin-bottom: 28px;
}

.news__title {
  color: var(--white);
}

.news__headerCol:last-child {
  display: flex;
  justify-content: flex-end;
}

.news__button.ah__button__underlined {
  padding-bottom: 5px;
}

.news__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 85px !important;
}

.news__story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__story.featured {
  max-width: 70.5%;
  flex: 0 0 70.5%;
}

.news__stories {
  max-width: 27.5%;
  flex: 0 0 27.5%;
}

.news__story.featured .news__story__img {
  position: relative;
}

.news__story.featured .news__story__img:after {
  content: "";
  background: url(/wp-content/uploads/2025/03/news-overlay.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}

.news__story.featured .news__story__content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.news__story__content a {
  text-decoration: none;
}

.news__story.featured .news__headline {
  font-size: 39px;
  color: var(--white);
  font-weight: 700;
  max-width: 40%;
}

.news__date {
  color: rgb(255 255 255 / 90%) !important;
  font-size: 16px;
  font-weight: 300;
}

.news__intro p {
  color: rgb(255 255 255 / 80%);
  font-size: 20px;
  font-weight: 300;
  max-width: 60%;
}

.news__story__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news__story__btn {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: rgb(255 255 255 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.news__story.featured .news__date {
  display: block;
  margin: 10px 0 !important;
}

.news__stories .news__headline {
  font-size: 23px;
  font-weight: 300;
  color: var(--white);
  margin-top: 16px !important;
  margin-bottom: 7px !important;
}

.news__stories .news__story:first-child {
  margin-bottom: 40px !important;
}

.news__wrapper1 {
  margin-top: 86px;
}

.ft-pimgs img {
  max-width: 100% !important;
  height: 595px !important;
  object-fit: cover;
}

.fpost-content {
  position: absolute;
  bottom: 38px;
  left: 40px;
  width: 66.67%;
  z-index: 2;
}

.featured-post {
  position: relative;
}

.fpost-content h2 {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 800;
  font-size: 39px;
  line-height: 122%;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 16px;
}

.pdate {
  /* font-family: "Helvetica"; */
  font-style: normal;
  /* font-weight: 400; */
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.61);
  opacity: 0.8;
  margin-top: 0;
  margin-bottom: 10px;
}

.pdetails {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0.8;
}

.sml-img img {
  width: 100% !important;
  height: 200px !important;
  max-width: 100% !important;
  object-fit: cover;
}

.spost-content h2 {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 300;
  font-size: 23.9555px;
  line-height: 122%;
  text-transform: capitalize;
  color: var(--white);
}

.spost-content {
  margin-top: 16px;
}

.small-post:first-child {
  margin-bottom: 41px;
}

.fimage {
  background: 000;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}

.fimage img {
  opacity: 0.8;
  transition: 0.5s;
  overflow: hidden;
}

.fpost-content a,
.spost-content a {
  text-decoration: none !important;
}

.arrow-fp {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2.5px);
  border-radius: 50%;
  padding: 13px;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.ft-pimgs {
  transition: 0.5s;
}

.featured-post:hover img,
.small-post:hover img {
  transition: 0.5s;
  transform: scale(1.1);
  opacity: 0.5;
}

.featured-post:hover .arrow-fp,
.small-post:hover .arrow-fp {
  opacity: 1;
  transition: 0.5s;
}

.featured-post,
.fimage {
  background: var(--black);
  position: relative;
}

.featured-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.5;
  pointer-events: none;
}

.small-post .pdate {
  margin-top: 8px;
}

/* ========================== FOOTER ========================== */
.footer {
  background: #0c0c0c;
  padding: 120px 0 0 0;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  margin-bottom: 86px;
}

.footer__logo {
  display: inline-block;
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  padding: 19px 0 18px;
}

.footer ul {
  padding: 0 !important;
}

#footer__terms__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color: rgb(132 131 131 / 80%);
  position: relative;
  /* padding-bottom: 5px !important; */
  transition: color 0.5s;
}

.footer ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.5s, left 0.5s;
}

.footer ul li a:hover::before {
  width: 100%;
  left: 0;
  cursor: pointer;
}

.footer ul li a:hover {
  color: var(--white);
  cursor: pointer;
  background: none;
}

.footer .footer__social-list a::before {
  display: none;
}

.footer__block h4 {
  font-size: 22px;
  font-weight: 300;
  color: rgb(255 255 255 / 80%);
  margin-bottom: 27px;
}

.footer__block:last-child h4 {
  margin-bottom: 35px;
}

.footer__wrapper ul li {
  margin-bottom: 20px;
}

.footer__wrapper ul li:last-child {
  margin-bottom: 0;
}

ul.footer__social-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.footer__copyright:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 1px;
  top: 0;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.footer__copyright-text p {
  font-size: 16px;
  font-weight: 300;
  /* font-weight: 400; */
  color: rgb(132 131 131 / 80%);
}

.footer__intro,
.footer__updates-text {
  font-size: 16px;
  font-weight: 300;
  color: rgb(132 131 131 / 80%);
}

.footer__intro {
  max-width: 307px;
  margin-top: 8px;
}

.footer__updates-text {
  max-width: 333px;
}

.footer .footer__social-list li {
  margin: 0 !important;
}

.footer__social {
  margin-top: 37px;
  /* position: relative;
  left: -14px; */
}

.ah__button__underlined img {
  transition: 0.5s;
}

.ah__button:hover img {
  transform: rotate(45deg);
  transition: 0.5s;
}

.ah__button__underlined {
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: black;
  padding: 0 1px;
  transition: color ease 0.3s;
  height: max-content;
}

.ah__button__underlined::before,
.ah__button__underlined::after {
  content: "";
  position: absolute;
  background-color: var(--white);
  z-index: -1;
  height: 1px;
}

.ah__button__underlined::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}

.ah__button__underlined::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}

.ah__button__underlined:hover::before {
  width: 100%;
}

.ah__button__underlined:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}

.sub-btn input[type="submit"] {
  /* position: absolute; */
  width: 92px;
  height: 29px;
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 800;
  font-size: 19px;
  line-height: 150%;
  text-align: center;
  text-decoration-line: underline;
  color: var(--blueColor) !important;
  border: 0px;
  padding: 0;
  background: transparent !important;
  transition: 0.3s ease;
}

.sub-btn input[type="submit"]:hover {
  color: var(--white) !important;
}

.sub-mail input[type="email"] {
  background: transparent;
  border: 0px;
  padding: 0;
  color: var(--white);
}

.subscribe-form input[type="email"]:focus,
.sub-btn input[type="submit"]:focus {
  outline: unset;
}

.sub-btn {
  position: relative;
  margin-left: auto;
}


.sub-btn .wpcf7-spinner {
  margin: 0;
  position: absolute;
  left: -33px;
  top: 5px;
}

.subscribe-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 12px;
  width: 100%;
  margin-top: 34px;
  position: relative;
}

.subscribe-form .wpcf7-form-control-wrap {
  position: static;
}

.subscribe-form .wpcf7-not-valid-tip {
  bottom: -28px;
}

.subscribe-form input[type="email"]::placeholder {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 207%;
  color: #848383;
  opacity: 0.8;
}

.sub-mail {
  max-width: calc(77% - 92px);
}

/* Scroll Up */
.footer {
  position: relative;
}

.footer__top {
  position: absolute;
  bottom: 110px;
  right: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 99999;
}

.footer__top img {
  width: 16px;
  height: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.footer__top:hover {
  transform: scale(1.1);
}

.footer__top p {
  margin-top: 15px !important;
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
}


/* Scroll Down */
.footer__down {
  position: fixed;
  bottom: calc(10% + 20px);
  right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 9999;
  color: #979797;
  /* pointer-events: none; */
}

.footer__down:hover {
  transform: scale(1.1);
}

.footer__down.visible {
  pointer-events: auto;
}

.footer__down p {
  font-weight: 300;
  font-size: 13px;
  line-height: 150%;
  color: inherit;
  writing-mode: vertical-lr;
  text-align: center;
  margin-bottom: 15px !important;
  transform: rotate(180deg);
}

/* Sidebar */
.sidebar__widgets {
  position: fixed;
  right: 20px;
    top: calc(50% - 40px);
  /* top: calc(50% - 20px); */
  transform: translateY(-50%);
  z-index: 99999;
}

.sidebar__widgets ul li {
  margin: 15px 0 !important;
}

.sidebar__widgets ul li a {
  background: var(--white);
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid rgb(12 89 169 / 30%);
  transition: 0.3s ease;
}

.sidebar__widgets ul li a:hover {
  transform: scale(1.2);
}


/* ========================== MEDIA QUERIES ========================== */


@media (min-height: 600px) {
  section.ah-banner.ah-banner--video {
    /* height: 630px; */
    height: 95vh;
  }

  .ah-banner__content-wrapper {
    bottom: 30px;
  }
}

@media (min-height: 900px) {
  section.ah-banner.ah-banner--video {
    height: 912px;
  }

  .ah-banner__content-wrapper {
    bottom: 65px;
  }

  .ah-banner__video {
    transform: scale(5) !important;
  }
}

@media (max-height: 650px) and (min-width:991px) {
  .home h1 {
    font-size: 75px !important;
  }
}

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

@media (min-width: 1200px) {
  .our-services.mobile {
    display: none;
  }
}

@media (min-width: 1600px) {
  .footer {
    padding-top: 117px;
  }

  .footer__block:first-child {
    max-width: 307px;
    flex: 0 0 307px;
  }

  .footer__block:nth-child(2) {
    margin-left: auto;
    max-width: 124px;
    flex: 0 0 124px;
  }

  .footer__block:nth-child(3) {
    margin-left: auto;
    max-width: 115px;
    flex: 0 0 115px;
  }

  .footer__block:last-child {
    margin-left: auto;
    max-width: 379px;
    flex: 0 0 379px;
  }

  section.news {
    padding: 120px 0;
  }

  .news__wrapper1>div:first-child {
    max-width: 914px;
    flex: 0 0 914px;
  }

  .news__wrapper1>div:last-child {
    margin-left: auto;
    max-width: 357px;
    flex: 0 0 357px;
  }

  .who-we-are {
    padding: 105px 0 151px;
  }

  .who-we-are__content-wrapper>div:first-child {
    max-width: 802px;
    flex: 0 0 802px;
  }

  .who-we-are__content-wrapper>div:last-child {
    margin-left: auto;
    max-width: 412px;
    flex: 0 0 412px;
  }

  .partners {
    padding: 98px 0;
  }

  .partners--sec .partners__carousel {
    margin-top: 54px;
  }

  .holding-companies {
    padding: 117px 0 53px;
  }

  .portfolio {
    padding: 120px 0 135px;
  }

  section.our-services {
    padding: 119px 0 121px;
  }

  .our-services__heading {
    left: 0;
  }

  .our-services__arrows {
    left: 0;
  }
}


@media (min-width:1600px) and (max-width:1920px) {

  .portfolio-slider.owl-drag .owl-item {
    margin-right: 0;
  }

  /* Default style for all items */
  .portfolio-slider .owl-item .item {
    transform: scaleX(0.6);
  }

  /* Fully visible active items */
  .portfolio-slider .owl-item.active:not(.center) .item {
    transform: scaleX(0.81);
  }

  /* Center item gets full scale and opacity */
  .portfolio-slider .owl-item.center .item {
    transform: scaleX(1);
  }

  .portfolio-slider .owl-item .item {
    position: relative;
    left: 121px;
  }

  .portfolio-slider .owl-item.active:not(.center) .item {
    position: relative;
    left: 14px;
  }

  .portfolio-slider .owl-item.active.center .item,
  .portfolio-slider .owl-item.active.center+.owl-item .item,
  .portfolio-slider .owl-item.center+.owl-item .item,
  .portfolio-slider .owl-item.center+.owl-item+.owl-item .item {
    left: 0;
  }

  .portfolio-slider .owl-item.center+.owl-item .item {
    margin-left: -14px;
  }

  .portfolio-slider .owl-item.center+.owl-item+.owl-item {
    margin-left: -121px;
  }


  .portfolio-slider.owl-drag .owl-item {
    height: 745px;
  }

  .portfolio-slider .owl-item .item .portfolio__item__img {
    height: 364px;
    transition: 0.3s ease-in-out;
  }

  .portfolio-slider .owl-item.active .item .portfolio__item__img {
    height: 491px;
  }

  .portfolio-slider .owl-item.active.center .item .portfolio__item__img {
    height: 654px;
  }
}

@media (max-width: 1440.98px) {

  h1,
  .home h1 {
    font-size: 75px;
    line-height: 85px;
  }

  /* CHANGE ACC TO CONTENT */
  .home h1 {
    font-size: 80px;
    line-height: 85px;
    max-width: 625px;
  }

  .who-we-are__image img {
    /* max-height: 450px; */
    max-height: 400px;
    object-position: top;
  }

  .fnews__content--big .fnews__title,
  h2,
  .h2 {
    font-size: 35px;
  }

  .amnt__text,
  .overview__itemText,
  .newsList__card__desc p,
  .jobDetail__desc li,
  .jobDetail__desc p,
  .policy_guidelines li,
  .boardMembers__excerpt p,
  .hlf__slide_desc p,
  .ah-banner__text .ah-banner__description,
  p {
    font-size: 16px;
  }

  .ah-banner__content-wrapper {
    bottom: 30px;
  }
}

@media (max-width: 1400.98px) {
  .section__padding {
    padding: 80px 0;
  }

  .footer {
    padding-top: 110px;
  }

  .footer__wrapper {
    margin-bottom: 80px;
  }

  .portfolio-slider.owl-drag .owl-item {
    margin-right: 20px;
  }

  .portfolio-slider .owl-item .portfolio__item__content {
    display: block;
  }

  .portfolio-slider.owl-drag .owl-item {
    height: 650px;
  }

  .portfolio-slider .owl-item .item .portfolio__item__img {
    height: 306px;
  }

  .portfolio-slider .owl-item.active .item .portfolio__item__img {
    height: 413px;
  }

  .portfolio-slider .owl-item.active.center .item .portfolio__item__img {
    height: 550px;
  }

}

@media (max-width: 1399px) {

  .heroSlider__contentWrap,
  .customDotsNavWrap,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 95% !important;
  }
}

@media (max-width: 1299px) {
  .our-services__heading {
    position: relative;
    top: 0;
    margin-bottom: 50px;
  }

  .our-services__arrows {
    left: inherit;
    bottom: inherit;
    top: 80px;
    right: 12px;
  }

  .our-services__heading {
    max-width: 100%;
  }
}

@media (max-width: 1200.98px) {
  .portfolio-slider .owl-item:not(.center) .item .portfolio__item__img {
    height: 413px;
  }

  .ah-banner__content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 1199.98px) {
  section.our-services.desktop {
    display: none;
  }

  .our-services__slide .our-services__item:nth-child(1) .our-services__img,
  .our-services__item {
    width: 100%;
  }

  .our-services__slide .our-services__item:nth-child(1) .our-services__img {
    height: 300px;
  }

  .our-services__heading {
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .our-services__arrows {
    position: relative;
    inset: 0;
  }

  .our-services__arrows .swiper-button-next,
  .our-services__arrows .swiper-button-prev {
    position: relative;
    inset: 0;
    margin: 0;
  }
}

@media (max-width: 991.98px) {

  .home h1,
  h1 {
    font-size: 65px;
    line-height: 75px;
  }

  .fpost-content h2,
  .fnews__content--big .fnews__title,
  h2,
  .h2 {
    font-size: 30px;
  }

  .ah__subheading span {
    font-size: 16px;
  }

  .header__menu__wrapper {
    gap: 15px;
  }

  .custom-logo-link img {
    max-width: 100px;
    max-height: 100%;
  }

  .who-we-are__header {
    display: block;
  }

  .who-we-are__header div {
    width: 100%;
  }

  .who-we-are__content-wrapper {
    margin-top: 40px;
  }

  .who-we-are__content p {
    margin-bottom: 20px;
  }

  .our-services__content h4 {
    font-size: 20px;
    line-height: 1.2em;
  }

  .our-services__slide .our-services__item:nth-child(2) .our-services__content h4 {
    font-size: 30px;
  }

  .partners__title {
    max-width: 80%;
  }

  .partners--sec .partners__img,
  .partners__img {
    width: auto;
    height: auto;
  }

  .fpost-content {
    bottom: 15px;
    left: 15px;
    width: 70%;
  }

  .pdetails {
    font-size: 18px;
    line-height: 125%;
  }

  .spost-content h2 {
    font-size: 20px !important;
  }

  .news__wrapper1 {
    margin-top: 30px;
  }

  .news__title {
    max-width: 80%;
  }

  .ah__button__underlined {
    text-wrap-mode: nowrap;
  }

  .spost-content {
    margin-top: 12px;
  }

  .small-post:first-child {
    margin-bottom: 20px;
  }


  .footer__wrapper {
    margin-bottom: 50px;
  }

  .footer__wrapper .footer__block:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px !important;
    text-align: center;
  }

  .footer__wrapper .footer__block {
    width: 25%;
  }

  .footer__wrapper .footer__block:last-child {
    width: 50%;
  }

  .footer__social {
    margin-top: 20px;
  }

  #footer__terms__list {
    gap: 15px;
  }

  .footer__block:last-child h4,
  .footer__block h4 {
    margin-bottom: 20px;
  }

  .ah-banner__text:before {
    height: 120%;
  }

  .ah-banner__text .ah-banner__description {
    padding-left: 15px;
  }

  .social-box {
    gap: 0;
    padding: 0;
    padding-right: 12px;

  }

  .social-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-box .icon {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .social-box .icon:last-child a img {
    width: 24px;
    height: 24px;
  }

  .who-we-are__heading {
    margin-top: 30px;
  }
}


@media (max-width: 768.98px) {
  :root {
    --menu-height: 138px;
  }

  .section__padding {
    padding: 50px 0;
  }

  .footer {
    padding-top: 80px;
  }

  .footer__wrapper {
    margin-bottom: 50px;
  }


  .header__menu__wrapper {
    display: none;
    flex-direction: column;
    /* background-color: rgb(0 0 0 / 90%); */
    background-color: var(--blueColor);
    position: fixed;
    top: 130px;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30px 12px 40px 12px !important;
    z-index: 99999999;
    /* min-height: 280px; */
    /* height: 280px; */
    height: 300px;
    width: 100%;
    /* max-width: 95%; */
    /* align-items: flex-start; */
  }

  .sticky-header .header__menu__wrapper {
    top: 97px;
  }

  .header__wrapper {
    align-items: center;
  }

  .header__hamburger {
    display: block;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    position: relative;
    /* z-index: 10; */
    width: 30px;
    height: 15px;
  }

  .header__hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    /* margin: 5px 0; */
    background-color: var(--white);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .header__hamburger span:nth-child(1) {
    top: 0;
  }

  .header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .header__hamburger span:nth-child(3) {
    bottom: 0;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .header__bg {
    padding: 10px 0;
  }

  .our-services__heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {


  .footer ul li a {
    font-size: 14px;
  }

  .subscribe-form {
    padding-bottom: 5px;
  }

  .sub-btn input[type="submit"] {
    font-size: 16px;
  }

  .subscribe-form {
    position: relative;
  }

  .sub-btn input[type="submit"] {
    right: 0;
  }

  .pdetails {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }


  .partners__title {
    max-width: 100% !important;
  }

  .our-services__arrows .swiper-button-next,
  .our-services__arrows .swiper-button-prev {
    right: 0;
  }

  .arrow-fp {
    right: 15px;
  }

  h2 {
    font-size: 25px;
  }

  .our-services__slide .our-services__item:nth-child(1) {
    max-width: 100%;
  }

  .our-services__slide {
    display: block !important;
  }

  .our-services__img img {
    object-fit: cover;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 450px !important;
    min-height: 450px !important;
  }

  .footer__copyright {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__wrapper .footer__block {
    width: 50%;
  }

  .footer__wrapper .footer__block:last-child {
    width: 100%;
    margin-top: 30px !important;
  }

  .sub-mail {
    max-width: calc(100% - 92px);
    width: max-content;
  }

  .sub-btn {
    position: absolute;
    right: 0;
  }

  .news__title {
    max-width: 100%;
  }

  .news__headerCol:last-child {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .news__wrapper1 .row div {
    padding: 0;
  }

  .ft-pimgs img {
    height: 100% !important;
  }

  .featured-post {
    margin-bottom: 30px;
  }

  .home h1,
  h1 {
    font-size: 60px;
    line-height: 1.2em;
  }

  .ah-banner__content-wrapper {
    right: 0;
    left: 12px;
    bottom: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px 0;
    width: calc(100% - 12px);
  }

  .ah-banner__text .ah-banner__description {
    font-size: 16px;
    padding-left: 15px;
  }

  .ah-banner__social {
    width: 100%;
  }

  .social-box {
    padding-bottom: 0;
  }

  .who-we-are__content p {
    margin-top: 30px;
  }


  .sidebar__widgets {
    right: 10px;
  }

  .footer__down {
    right: 20px;
  }

  .partners__arr_con {
    margin-top: 30px;
    justify-content: flex-start;
  }

  .portfolio-slider-wrapper {
    max-width: 95% !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
  }

  .portfolio-slider.owl-drag .owl-item {
    margin-right: 2px;
    margin-left: 2px;
  }

  .portfolio-slider.owl-drag .owl-item {
    height: 550px;
    height: auto;
  }

  .portfolio-slider .owl-item.active.center .item .portfolio__item__img,
  .portfolio-slider .owl-item:not(.center) .item .portfolio__item__img {
    height: 450px;
    height: auto;
  }

  .portfolio__header {
    margin-bottom: 30px;
  }

  .portfolio__header>div:last-child {
    margin-top: 30px;
    justify-content: flex-start;
  }

  .ah-banner__video {
    transform: scale(2.5);
  }

  /* ul.footer__social-list {
    padding-left: 12px !important;
  } */
}


@media (max-width: 575.98px) {

  .home h1,
  h1 {
    font-size: 50px;
    line-height: 1.2em;
  }

  /* CHANGE ACC TO CONTENT */
  .home h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .fnews__content--big .fnews__title,
  h2,
  .h2 {
    font-size: 28px;
  }

  .fpost-content h2 {
    font-size: 20px;
  }

  .header:before {
    right: -55px;
  }

  .fpost-content {
    bottom: 10px;
    left: 10px;
    width: 75%;
  }

  .holding-companies .partners__img img {
    height: 160px;
  }

  .portfolio-slider.owl-drag .owl-item {
    height: 450px;
    height: auto;
  }

  .portfolio-slider .owl-item.active.center .item .portfolio__item__img,
  .portfolio-slider .owl-item:not(.center) .item .portfolio__item__img {
    height: 350px;
    height: auto;
  }

  .ah-banner__video {
    transform: scale(3.5);
  }
}

@media (max-width: 480.98px) {
  .partners__item {
    display: flex;
    align-items: center;
  }

  .partners__img.remove-before::before {
    display: block;
  }

  .partners__img::after,
  .partners__item .partners__img.remove-before:last-child:before {
    display: none;
  }

  .our-services__heading {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 350.98px) {

  /* CHANGE ACC TO CONTENT */
  .ah-banner__heading {
    position: relative;
    top: 130px;
    transform: unset;
  }
}


@media (min-width:991px) and (max-width:1200.98px) {
  .portfolio-slider.owl-drag .owl-item {
    height: 700px;
  }

  .portfolio-slider .owl-item:not(.center) .item .portfolio__item__img {
    height: 450px;
  }

  .portfolio-slider .owl-item.active.center .item .portfolio__item__img {
    height: 600px;
  }
}

.ext-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.ext-modal.hidden {
  display: none;
}

.ext-modal__content {
  background: #fff;
  padding: 60px 30px 30px;
  border-radius: 8px;
  max-width: 400px;
  position: relative;
}

.ext-modal__content h3 {
  font-size: 23px;
  font-weight: 300;
  line-height: 124%;
}

.ext-modal__content p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding-left: 30px;
  padding: 10px 0;
}

#ext-continue,
#ext-cancel {
  background: #0c59a9;
  width: 118px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in;
  z-index: 1;
}

.ext-modal__buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ext-modal__buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#ext-cancel,
#ext-continue:hover {
  background-color: #fff;
  color: #0c59a9;
  border: 1px solid #0c59a9
}

#ext-cancel:hover {
  background-color: #0c59a9;
  color: #fff;
  border: unset
}

.ext-close.teamMemberModal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  /* background: transparent!important;
    border: none;
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    color: #575757!important; */
  transition: 0.3s ease;
  border: 0;
}

.ext-close.teamMemberModal__close svg {
  width: 15px;
}

.gmnoprint.gm-style-mtc-bbw {
  z-index: -1 !important;
}


@media (max-width:557.98px) {
  .ext-modal__content {
    padding: 40px 15px 20px;
    max-width: 400px;
    margin: 0 10px;
  }
}



/* EXTA WORK */
.cMap .hotelResult,
.cMap #map-canvas div:not(.gmnoprint)>button {
  display: none !important;
}


#map-canvas div:not(.gmnoprint)>button {
  margin: 20px !important;
  width: 48px !important;
  height: 48px !important;
}

#map-canvas div:not(.gmnoprint)>button img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(6%) hue-rotate(315deg) brightness(96%) contrast(111%);
  transition: 0.3s ease;
}

#map-canvas div:not(.gmnoprint)>button:hover img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(86%) saturate(2508%) hue-rotate(199deg) brightness(103%) contrast(90%);
}


div.gmnoprint gmp-internal-camera-control>button {
  display: none !important;
}

div.gmnoprint menu {
  display: block !important;
  right: 10px !important;
  bottom: 32px !important;
  margin: 0 !important;
  width: 40px !important;
  height: 80px !important;
  background: #FFFFFF !important;
  /* border-bottom: 1px solid #E5E5E5 !important; */
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.15));
}

div.gmnoprint.gm-bundled-control {
  bottom: 0 !important;
  right: 0 !important;
}


div.gmnoprint menu>li {
  display: none !important;
}

div.gmnoprint menu>li:nth-child(5),
div.gmnoprint menu>li:nth-child(6) {
  display: block !important;
}

div.gmnoprint menu>li:nth-child(5)>button {
  border-bottom: 1px solid #E5E5E5 !important;
}

div.gmnoprint menu>li>button {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

div.gmnoprint menu>li>button img {
  transition: 0.3s ease;
  filter: brightness(0) saturate(100%) invert(17%) sepia(86%) saturate(2508%) hue-rotate(199deg) brightness(103%) contrast(90%);
}

div.gmnoprint menu>li>button:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(277deg) brightness(95%) contrast(106%);
}



/* 
.map-container-inner {
    width: 70%;
    height: 100%;
    position: relative;
} */


.gm-style-iw.gm-style-iw-c {
  background-color: var(--black);
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-ch {
  display: none;
}

.cMap #map-canvas div:not(.gmnoprint)>button[aria-label="Close"],
#map-canvas div:not(.gmnoprint)>button[aria-label="Close"] {
  margin: 0 !important;
  width: 24px !important;
  height: 18px !important;
  right: 0;
  top: 0px;
  margin-left: auto !important;
  display: block !important;
}

#map-canvas div:not(.gmnoprint)>button[aria-label="Close"] span {
  background: var(--white);
  margin: 0 !important;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d {
  overflow: auto !important;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul {
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  max-height: 150px;
  padding-right: 10px;
  margin-bottom: 0;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d h3 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
}

/* .cMap .maptooltip h3 span {
    font-size: 0;
}
.cMap .maptooltip h3 span:before {
    content: 'Office';
    font-size: 24px;
} */
.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul li:not(:last-child) {
  margin-bottom: 5px;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul li a {
  color: var(--white) !important;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul li a:focus,
.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul li a:target, 
.gm-style-iw.gm-style-iw-c .gm-style-iw-d ul li a:active {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.gm-style-iw.gm-style-iw-c {
  background-color: #000;
  padding: 5px 10px !important;
  width: 270px;
  min-width: 225px !important;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.gm-style-iw.gm-style-iw-c .gm-style-iw-d {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  overflow: hidden; /* Disable scrolling entirely */
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


.gm-style .gm-style-iw-tc::after {
  background: #000000 !important;
}

.gm-info-window {
  padding: 10px;
  min-width: 200px;
}

.gm-info-window h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.gm-info-window p {
  margin: 0 0 10px 0;
  color: #666;
}

.gm-info-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

#single-map-canvas div.gmnoprint menu,
#single-map-canvas div:not(.gmnoprint)>button,
#single-map-canvas div.gmnoprint menu>li:nth-child(5),
#single-map-canvas div.gmnoprint menu>li:nth-child(6) {
  display: none !important;
}

@media (max-width:557.98px) {
  #map-canvas div:not(.gmnoprint)>button {
    width: 40px !important;
    height: 40px !important;
  }
}
 