/*******************************************************/
/*********************** Homepage **********************/
/*******************************************************/
header {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 106px;
  z-index: 11;
}

.header {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  padding: 0 0;
  transition: all 0.35s ease;
}

.header.is-sticky {
  background-color: #fafbfd;
  padding: 0 0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  top: 0;
}

.header.is-sticky .header__wrap {
  padding: 10px 0;
}

.header.is-sticky .header__logo img {
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.header__wrap {
  width: 100%;
  background-color: #fafbfd;
  padding: 18px 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-primary);
}

.header__wrap.radius-0 {
  border-radius: 10px 10px 0 0;
}

.header__left {
  max-width: 418px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header__logo {
  max-width: 226px;
  width: 100%;
}

.header__gill-group-link {
  padding-left: 20px;
  margin-left: 30px;
  position: relative;
}

.header__gill-group-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 47px;
  width: 1px;
  background-color: rgba(0, 0, 0, 1);
}

.header__gill-group-link p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 1.4px;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.header__gill-group-link p a {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.header__gill-group-link p a:hover {
  color: rgba(0, 0, 0, 1);
}

.header__right {
  max-width: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__right nav {
  margin-right: 49px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav li {
  margin-left: 38px;
  position: relative;
}

.header__nav li:first-child {
  margin-left: 0;
}

.header__nav li a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color-primary);
  text-transform: capitalize;
  padding: 30px 0;
  display: block;
}

.header__nav li.current-menu-item a {
  color: var(--color-secondary);
}

.header__nav li a:hover {
  color: var(--color-secondary);
}

.header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1000;
  margin: 0;
}

.header__nav .sub-menu li {
  margin-left: 0;
}

.header__nav .sub-menu li a {
  padding: 12px 16px;
  display: block;
  font-size: 20px;
  color: var(--color-primary);
}

.header__nav .sub-menu li a:hover {
  color: var(--color-secondary);
}

.header__nav .sub-menu li a:hover {
  background: var(--color-primary);
}

.header__nav .sub-menu li.current-menu-item a {
  color: var(--color-secondary);
  background: var(--color-primary);
}

.header__nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav .menu-item-has-children > a {
  position: relative;
}

.header__nav .menu-item-has-children > a:not([href]):not([class]) {
  color: var(--color-primary);
}

.header__nav .menu-item-has-children > a:not([href]):not([class]),
a:not([href]):not([class]):hover {
}

.header__nav .menu-item-has-children > a::after {
  content: "";
  background: url(https://gillcivil.com/wp-content/uploads/2026/01/submenu-arrow-1.png)
    no-repeat;
  position: absolute;
  top: 60%;
  right: -36px;
  width: 30px;
  height: 16px;
  transform: translateY(-50%);
  background-size: 12px;
}

.header__btn-hamburger-menu {
  max-width: 34px;
  width: 100%;
  margin-left: 40px;
}

.header__btn-hamburger-menu svg path {
  transition: var(--transition-primary);
}

.header__btn-hamburger-menu.active svg path:first-child {
  transform: rotate(43deg) translate(4px, -4px);
}

.header__btn-hamburger-menu.active svg path:nth-child(2) {
  opacity: 0;
}

.header__btn-hamburger-menu.active svg path:last-child {
  transform: rotate(-43deg) translate(-15px, -3px);
}

@media only screen and (max-width: 1685px) and (min-width: 992px) {
  .header__nav .sub-menu {
    min-width: 13.056vw;
    border-radius: 0.356vw;
    transform: translateY(0.712vw);
  }

  .header__nav .sub-menu li a {
    padding: 0.712vw 0.95vw;
    font-size: 1.187vw;
  }

  .header__nav .menu-item-has-children > a::after {
    right: -2.136vw;
    width: 1.899vw;
    height: 1.899vw;
    background-size: 0.89vw;
  }
}

@media (max-width: 991px) {
  .header__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__nav .menu-item-has-children > a::after {
    display: none;
  }

  .header__nav > li {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
  }

  .header__nav a {
    width: 100%;
    padding: 14px 0;
  }

  .header__nav .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
    padding-left: 16px;
  }

  .header__nav li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
  }

  .header-mega-menu__content .header__nav li.menu-item-has-children a {
    padding: 18px 40px 18px 0;
    background: none;
  }

  .header__nav .menu-item-has-children > a::after {
    transition: transform 0.3s ease;
    top: 63%;
    right: -5px;
  }

  .header__nav .menu-item-has-children {
    position: relative;
  }

  /* Arrow toggle */
  .header__nav .submenu-toggle {
    position: absolute;
    right: 0;
    top: 30px;
    width: 32px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav .submenu-toggle::after {
    content: "";
    transition: transform 0.3s ease;
    background: url(https://gillcivil.com/wp-content/uploads/2026/01/submenu-arrow-1.png)
      no-repeat;
    position: absolute;
    top: 0;
    width: 32px;
    height: 16px;
    background-size: 15px;
  }

  /* Rotate arrow */
  .header__nav .menu-item-has-children.open > .submenu-toggle::after {
    transform: rotate(180deg);
  }

  /* Submenu */
  .header__nav .menu-item-has-children > .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .header__nav .menu-item-has-children.open > .sub-menu {
    max-height: 600px;
  }
}

/* Header Menu CSS start here */
.header-mega-menu {
  position: absolute;
  top: 102px;
  left: 0;
  right: 0;
  background-color: var(--color-light-200);
  width: 100%;
  padding: 15px 40px 32px;
  border-radius: 0 0 10px 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  /*transform: translateY(80px);
    transition: var(--transition-primary);*/
  box-shadow: 0 22px 22px rgba(0, 0, 0, 0.08);
}

.header-mega-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  /*transform: translateY(0px);*/
}

.header.is-sticky .header-mega-menu.active {
  top: 85px;
}

.header-mega-menu__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 73px;
}

.header-mega-menu__content {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.header-mega-menu__content .header__nav {
  display: none;
}

.header-mega-menu__nav-link {
  width: 100%;
  margin-bottom: 35px;
}

.header-mega-menu__nav-link li {
  border-bottom: 1px solid rgba(15, 76, 130, 0.3);
}

.header-mega-menu__nav-link li:last-child {
  display: none;
}

.header-mega-menu__nav-link li a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: var(--color-primary);
  text-transform: capitalize;
  padding: 21px 4px;
  display: inline-block;
}

.header-mega-menu__nav-link li.current-menu-item a {
  color: var(--color-secondary);
}

.header-mega-menu__nav-link li a:hover {
  color: var(--color-secondary);
}

.header-mega-menu__media {
  max-width: 652px;
  width: 100%;
}

.header-mega-menu__media figure {
  position: relative;
  padding-bottom: 72.55%;
  border-radius: 10px;
  overflow: hidden;
}

.header-mega-menu__media figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header Menu CSS end here */

/* Banner CSS Start here */
.banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 149px 0 149px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 1030px;
}

.banner__bg,
.banner-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.banner__bg::after,
.banner-bg:after {
  content: "";
  background: linear-gradient(
    268.76deg,
    rgba(0, 125, 241, 0.36) 5.04%,
    rgba(0, 18, 34, 0.5) 97.96%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner__bg img,
.banner-bg img,
.banner__bg video,
.banner-bg video,
.banner__bg iframe,
.banner-bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner__wrap {
  max-width: 888px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.banner__wrap .icon-box {
  margin: 0 0 50px 0;
}

.banner__wrap h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-light-200);
}

.banner__wrap h1 span {
  color: var(--color-secondary);
}

.banner__wrap h1 span.title-light {
  color: var(--color-light);
}

.banner__button-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 37px;
}

.banner__button-wrap .btn {
  margin-right: 28px;
}

.banner__button-wrap .btn:last-child {
  margin-right: 0;
}

/* Banner CSS End here */

/* Two Col Section CSS Start Here */
.two-col-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.two-col-section__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.two-col-section__content {
  /* max-width: 780px; */
  max-width: calc(50% - 20px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--color-light-200);
  border-radius: 10px;
  padding: 40px 60px;
}

.two-col-section__content h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.two-col-section__content .text-desc {
  max-width: 100%;
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--color-primary);
  margin-top: 19px;
  margin-bottom: 0;
}

.two-col-section__content .text-desc span {
  font-weight: 700;
  display: block;
}

.two-col-section__media {
  /* max-width: 780px; */
  max-width: calc(50% - 20px);
  width: 100%;
}

.two-col-section__media figure {
  width: 100%;
  position: relative;
  padding-bottom: 86.808%;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  height: 100%;
}

.two-col-section__media figure img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two Col Section CSS End Here */

/* Our Expertise CSS Start here */
.our-expertise {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 88px 0 55px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.our-expertise__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.our-expertise__bg::after {
  content: "";
  background: linear-gradient(
    268.76deg,
    rgba(0, 125, 241, 0.36) 5.04%,
    rgba(0, 18, 34, 0.5) 97.96%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-expertise__bg img,
.our-expertise__bg video,
.our-expertise__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-expertise__wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.our-expertise__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.our-expertise__title h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light);
}

.our-expertise__slick-control {
  width: 100%;
  max-width: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-expertise__slick-control button {
  padding: 5px 10px;
}

.our-expertise__slick-control button.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.our-expertise__content {
  width: 100%;
}

.our-expertise__content .slick-list {
  margin: 0 -13px;
}

.our-expertise__content .slide {
  padding: 0 13px;
}

.our-expertise__box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.our-expertise__media {
  width: 100%;
  position: relative;
}

.our-expertise__media-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 87.06%;
  overflow: hidden;
}

.our-expertise__media-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    385.22deg,
    rgba(15, 76, 130, 0.75) 0%,
    rgba(15, 76, 130, 0.4) 50%,
    rgba(15, 76, 130, 0) 100%
  );
  z-index: 5;
  pointer-events: none;
}

.our-expertise__media-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-expertise__box.add-image-overlay .our-expertise__media-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 76, 130, 0.47) 0%,
    rgba(15, 76, 129, 0.47) 100%
  );
  z-index: 1;
}

.our-expertise__overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  z-index: 9;
}

.our-expertise__overlay-content figure {
  max-width: 54px;
  width: 100%;
}

.our-expertise__overlay-content h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--color-light);
  text-transform: capitalize;
  margin-top: 20px;
}

.our-expertise__box-content {
  background-color: var(--color-light);
  width: 100%;
  padding: 17px 38px 25px 29px;
}

.our-expertise__box-content .text-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.our-expertise__box-content .text-desc p {
  line-height: 150%;
}

.our-expertise__button {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.our-expertise__button p {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.our-expertise__button .btn-link {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: var(--color-secondary);
  vertical-align: baseline;
}

/* Our Expertise CSS End here */

/* Client Logo CSS Start Here */
.client-logo {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 31px 0 40px;
}

.client-logo__title {
  width: 100%;
  margin-bottom: 16px;
}

.client-logo__title h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.client-logo__content {
  width: 100%;
  background-color: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  padding: 34px 0;
}

.client-logo__content .slick-track {
  display: flex;
  align-items: center;
}

.client-logo__content .slick-list {
  margin: 0 -50px;
}

.client-logo__content .slide {
  padding: 0 50px;
}

.client-logo__content .slick-slide img {
  display: block;
  height: 75px;
  object-fit: contain;
  max-width: 230px;
  width: 100%;
}

/* Client Logo CSS End Here */

/* Latest News CSS Start here */
.latest-news {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 48px 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 847px;
  margin: 40px 0 0 0;
}

.latest-news__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.latest-news__bg::after {
  content: "";
  background: linear-gradient(
    268.76deg,
    rgba(0, 125, 241, 0.36) 5.04%,
    rgba(0, 18, 34, 0.5) 97.96%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.latest-news__bg img,
.latest-news__bg video,
.latest-news__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.latest-news__wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.latest-news__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.latest-news__title h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light-200);
}

.latest-news__title .link-view-all-news {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light);
}

.latest-news__title .link-view-all-news:hover {
  color: var(--color-secondary);
}

.latest-news__content {
  width: 100%;
  color: var(--color-light);
  margin: 30px 0 0 0;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-posts-grid {
  gap: 24px;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-posts-carousel {
  padding: 0 20px;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-carousel-slide {
  padding: 0;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-slider__btn--left {
  left: 0;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-slider__btn--right {
  right: 0;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-slider__btn-icon {
  width: 35px;
  height: 35px;
}

.latest-news__content .sk-ww-linkedin-page-post .sk-slider__btn {
  background-color: #edb60b;
  border-radius: 8px;
}

/* Latest News CSS End here */

/* Hero Banner CSS Start here */
.hero-banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 66px 0 70px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__bg::after {
  content: "";
  background: linear-gradient(
    261.05deg,
    rgba(15, 76, 130, 0.6) 16.78%,
    rgba(0, 18, 34, 0.9) 72.01%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner__bg img,
.hero-banner__bg video,
.hero-banner__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-banner__top-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.hero-banner__top-content-wrap {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-banner__top-content-wrap .icon-award {
  max-width: 50px;
  width: 100%;
  margin-bottom: 38px;
}

.hero-banner__top-content-wrap h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.hero-banner__top-content-wrap h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: 30px;
}

.hero-banner__top-content-wrap .text-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #b6b6b6;
}

.hero-banner__top-content-wrap .text-desc p {
  margin: 0 0 20px 0;
}

.hero-banner__bottam-content {
  width: 100%;
  position: relative;
  z-index: 12;
  margin-top: 50px;
}

.hero-banner__count-down {
  width: 100%;
  border-top: 1px solid #b6b6b6;
  border-bottom: 1px solid #b6b6b6;
}
.hero-banner__count-down .slick-track {
  display: flex;
}

.hero-banner__slick-control {
  width: 100%;
  max-width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 10px;
}

.hero-banner__slick-control button {
  padding: 5px 0;
}

.hero-banner__slick-control button.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* .hero-banner__count-down .slick-list{
    margin: 0 -30px;
} */
.hero-banner__count-down .slide {
  padding: 22px 16px;
  border-left: 1px solid #b6b6b6;
  min-height: 261px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* max-width: 410px; */
  width: 100%;
  height: auto;
}

.hero-banner__count-down .slide:last-child {
  border-right: 0;
}

.hero-banner__count-down .slide h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 64px;
  line-height: 150%;
  color: var(--color-secondary);
  margin-bottom: 8px;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hero-counter-animate {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.hero-counter-animate.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-banner__count-down .slide p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-light);
  max-width: 340px;
  margin-bottom: 12px;
}

.hero-banner__count-down .slide span.subtext {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(239, 239, 239, 0.75);
}

.count {
  font-size: 42px;
  font-weight: 700;
  color: #ffcf00;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  display: inline-block;
  min-width: 1ch;
}

.count.visible {
  opacity: 1;
  transform: translateY(0);
}

/* @media (max-width: 1599px) {
  .hero-banner__count-down .slide {
    max-width: max-content;
  }
} */

/* small responsive tweak */
@media (max-width: 640px) {
  .count {
    font-size: 32px;
  }
}

/* Hero Banner CSS End here */

/* Footer Css Start Here */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px;
}

.footer__wrap {
  width: 100%;
  background-color: var(--color-light-200);
  border-radius: 10px;
}

.footer__top {
  width: 100%;
  padding: 103px 0px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  max-width: 372px;
  width: 100%;
}

.footer__logo img {
  width: 100%;
}

.footer__logo a {
  max-width: 100%;
}

.footer__logo p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 36px;
  display: flex;
  gap: 7px;
}

.footer__logo p a {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}

.footer__logo p a:hover {
  color: rgba(0, 0, 0, 1);
}

.footer__nav-wrap {
  max-width: 740px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 58px;
}

.footer__nav h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0%;
  color: var(--color-primary);
}

.footer__nav-link {
  margin-top: 25px;
}

.footer__nav-link li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.footer__nav-link li:last-child {
  margin-bottom: 0;
}

.footer__nav-link li a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(15, 76, 130, 0.5);
}

.footer__nav-link li a:hover {
  color: var(--color-primary);
}

.footer__nav-link li a img {
  mix-blend-mode: multiply;
  max-width: 140px;
}

.footer__middel {
  width: 100%;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.footer__middel .client-logo__content {
  padding: 0;
  background-color: transparent;
}

.footer__middel .client-logo__content .slide figure img {
  mix-blend-mode: multiply;
}

.footer__bottom {
  width: 100%;
  padding: 36px 0;
}

.footer__bottom p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(133, 133, 133, 0.5);
}

.footer__bottom p span {
  display: block;
}

.footer__nav.mobile-block {
  display: none;
}

/* Footer Css Start Here */

@media only screen and (max-width: 1685px) and (min-width: 992px) {
  header,
  .header {
    top: 5vw;
  }

  .header__wrap {
    padding: 1.042vw 2.315vw;
    border-radius: 0.579vw;
  }

  .header__wrap.radius-0 {
    border-radius: 0.579vw 0.579vw 0 0;
  }

  .header__left {
    max-width: 24.19vw;
  }

  .header__logo {
    max-width: 13.079vw;
  }

  .header__gill-group-link {
    padding-left: 2vw;
    margin-left: 2vw;
  }

  .header__gill-group-link::after {
    height: 2.72vw;
    width: 0.058vw;
  }

  .header__gill-group-link p {
    font-size: 0.81vw;
    letter-spacing: 0.081vw;
  }

  .header__right {
    max-width: 47.454vw;
  }

  .header__right nav {
    margin-right: 2.836vw;
  }

  .header__nav li {
    margin-left: 2.199vw;
  }

  .header__nav li a {
    font-size: 1.157vw;
  }

  .header__btn-hamburger-menu {
    max-width: 1.968vw;
    margin-left: 2.315vw;
  }

  /* Header Menu CSS start here */
  .header-mega-menu {
    top: 16px;
    padding: 0.868vw 2.315vw 1.852vw;
    border-radius: 0 0 0.579vw 0.579vw;
    transform: translateY(4.63vw);
  }

  .header-mega-menu__content .header__nav {
    display: none;
    width: 100%;
  }

  .header-mega-menu__wrap {
    gap: 4.225vw;
  }

  .header-mega-menu__content {
    max-width: 41.667vw;
  }

  .header-mega-menu__nav-link {
    margin-bottom: 2.025vw;
  }

  .header-mega-menu__nav-link li a {
    font-size: 2.083vw;
    padding: 1.215vw 0.231vw;
  }

  .header-mega-menu__media {
    max-width: 37.731vw;
  }

  .header-mega-menu__media figure {
    border-radius: 0.579vw;
  }

  .header.is-sticky .header-mega-menu.active {
    top: 0;
  }

  /* Header Menu CSS end here */

  /* Banner CSS Start here */
  .banner {
    padding: 8.623vw 0 8.623vw;
    border-radius: 0.579vw;
    min-height: 59.606vw;
  }

  .banner__wrap {
    max-width: 51.389vw;
  }

  .banner__wrap h1 {
    font-size: 5.556vw;
  }

  .banner__button-wrap {
    margin-top: 2.141vw;
  }

  .banner__button-wrap .btn {
    margin-right: 1.62vw;
  }

  /* Banner CSS End here */

  /* Two Col Section CSS Start Here */
  .two-col-section {
    padding: 2.315vw 0;
  }

  .two-col-section__wrap {
    gap: 2.315vw;
  }

  .two-col-section__content {
    /* max-width: 46.718vw; */
    max-width: calc(50% - 1.156vw);
    border-radius: 0.579vw;
    padding: 2.315vw 3.472vw;
  }

  .two-col-section__content h2 {
    font-size: 3.183vw;
  }

  .two-col-section__content .text-desc {
    max-width: 100%;
    font-size: 1.157vw;
    margin-top: 1.1vw;
  }

  .two-col-section__media {
    /* max-width: 46.991vw; */
    max-width: calc(50% - 1.156vw);
  }

  .two-col-section__media figure {
    border-radius: 0.579vw;
  }

  /* Two Col Section CSS End Here */

  /* Our Expertise CSS Start here */
  .our-expertise {
    padding: 5.093vw 0 3.183vw;
    border-radius: 0.579vw;
  }

  .our-expertise__title {
    margin-bottom: 0.347vw;
  }

  .our-expertise__title h2 {
    font-size: 4.63vw;
  }

  .our-expertise__slick-control {
    max-width: 4.63vw;
  }

  .our-expertise__slick-control button {
    padding: 0.289vw 0.579vw;
  }

  .our-expertise__content .slick-list {
    margin: 0 -0.752vw;
  }

  .our-expertise__content .slide {
    padding: 0 0.752vw;
  }

  .our-expertise__box {
    border-radius: 0.579vw;
  }

  .our-expertise__overlay-content {
    padding: 1.736vw;
  }

  .our-expertise__overlay-content figure {
    max-width: 3.125vw;
  }

  .our-expertise__overlay-content h3 {
    font-size: 2.778vw;
    margin-top: 1.157vw;
  }

  .our-expertise__box-content {
    padding: 0.984vw 2.199vw 1.447vw 1.678vw;
  }

  .our-expertise__box-content .text-desc {
    font-size: 0.926vw;
    margin-bottom: 2.315vw;
  }

  .our-expertise__button {
    margin-top: 1.736vw;
  }

  .our-expertise__button p {
    font-size: 1.157vw;
  }

  /* Our Expertise CSS End here */

  /* Client Logo CSS Start Here */
  .client-logo {
    padding: 1.794vw 0 2.315vw;
  }

  .client-logo__title {
    margin-bottom: 0.926vw;
  }

  .client-logo__title h2 {
    font-size: 3.183vw;
  }

  .client-logo__content {
    border-radius: 0.579vw;
    padding: 1.968vw 0;
  }

  .client-logo__content .slick-list {
    margin: 0 -2.894vw;
  }

  .client-logo__content .slide {
    padding: 0 2.894vw;
  }

  /* Client Logo CSS End Here */

  /* Latest News CSS Start here */
  .latest-news {
    padding: 2.778vw 0;
    border-radius: 0.579vw;
    min-height: 49.016vw;
  }

  .latest-news__title {
    margin-bottom: 0.463vw;
  }

  .latest-news__title h2 {
    font-size: 4.63vw;
  }

  .latest-news__title .link-view-all-news {
    font-size: 1.157vw;
  }

  /* Latest News CSS End here */

  /* Hero Banner CSS Start here */
  .hero-banner {
    padding: 3.819vw 0 4.051vw;
    border-radius: 0.579vw;
  }

  .hero-banner__top-content-wrap {
    max-width: 55.556vw;
  }

  .hero-banner__top-content-wrap .icon-award {
    max-width: 2.894vw;
    margin-bottom: 2.199vw;
  }

  .hero-banner__top-content-wrap h3 {
    font-size: 1.157vw;
    margin-bottom: 1.042vw;
  }

  .hero-banner__top-content-wrap h2 {
    font-size: 4.63vw;
    margin-bottom: 1.736vw;
  }

  .hero-banner__top-content-wrap .text-desc {
    font-size: 0.926vw;
  }

  .hero-banner__bottam-content {
    margin-top: 2.894vw;
  }

  .hero-banner__count-down {
    border-top: 0.058vw solid #b6b6b6;
    border-bottom: 0.058vw solid #b6b6b6;
  }

  .hero-banner__slick-control {
    max-width: 4.63vw;
    margin-right: 1.157vw;
    margin-bottom: 0.579vw;
  }

  .hero-banner__slick-control button {
    padding: 0.289vw 0.579vw;
  }

  /* .hero-banner__count-down .slick-list{
        margin: 0 -1.736vw;
    } */
  .hero-banner__count-down .slide {
    padding: 1.273vw 1.3vw;
    border-left: 0.058vw solid #b6b6b6;
    min-height: 15.104vw;
    /* max-width: fit-content; */
  }

  .hero-banner__count-down .slide h4 {
    font-size: 3vw;
    margin-bottom: 0.463vw;
  }

  .hero-banner__count-down .slide p {
    font-size: 0.926vw;
    max-width: 19.676vw;
    margin-bottom: 0.694vw;
    word-break: break-all;
  }

  .hero-banner__count-down .slide span {
    font-size: 1.694vw;
  }

  /* Hero Banner CSS End here */

  /* Footer Css Start Here */
  .footer {
    margin-top: 2.199vw;
  }

  .footer__wrap {
    border-radius: 0.579vw;
  }

  .footer__top {
    padding: 5.961vw 0vw 2.778vw;
  }

  .footer__logo {
    max-width: 21.528vw;
  }

  .footer__logo p {
    font-size: 1.157vw;
    letter-spacing: 0.116vw;
    margin-top: 2.083vw;
  }

  .footer__nav-wrap {
    max-width: 47.824vw;
    gap: 3.356vw;
  }

  .footer__nav h4 {
    font-size: 1.157vw;
  }

  .footer__nav-link {
    margin-top: 1.447vw;
  }

  .footer__nav-link li {
    margin-bottom: 0.289vw;
  }

  .footer__nav-link li a {
    font-size: 0.926vw;
  }

  .footer__middel {
    border-top: 0.058vw solid var(--color-primary);
    border-bottom: 0.058vw solid var(--color-primary);
  }

  .footer__bottom {
    padding: 2.083vw 0;
  }

  .footer__bottom p {
    font-size: 0.926vw;
  }

  /* Footer Css Start Here */
}

@media only screen and (max-width: 991px) {
  header,
  .header {
    top: 40px;
  }

  .header__wrap {
    padding: 15px 20px;
  }

  .header.is-sticky .header__wrap {
    padding: 10px 0;
  }

  .header__right nav {
    display: none;
  }

  .header__right .btn {
    display: none;
  }

  .header__gill-group-link {
    display: none;
  }

  .header-mega-menu {
    padding: 20px;
  }

  .banner {
    margin: 0 0;
    width: auto;
    padding: 150px 0 48px;
    min-height: 804px;
  }

  .banner__wrap h1 {
    font-size: 62px;
  }

  .two-col-section__wrap {
    flex-direction: column;
  }

  .two-col-section__content {
    padding: 30px;
  }

  .two-col-section__content h2 {
    font-size: 36px;
  }

  .our-expertise__title h2 {
    font-size: 42px;
  }

  .our-expertise__overlay-content h3 {
    font-size: 36px;
  }

  .our-expertise__box-content .text-desc {
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .our-expertise__overlay-content {
    padding: 20px;
  }

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

  .client-logo__title h2 {
    font-size: 52px;
  }

  .latest-news__title h2 {
    font-size: 52px;
  }

  .latest-news__title {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-banner__top-content-wrap h2 {
    font-size: 52px;
  }

  .hero-banner__top-content-btn {
    display: none;
  }

  .hero-banner__top-content-wrap {
    max-width: 100%;
  }

  .hero-banner__count-down .slide {
    padding: 20px 34px;
    min-height: 200px;
  }

  .hero-banner__count-down .slide h4 {
    font-size: 60px;
  }

  .footer__top {
    padding: 40px 0px;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }

  .footer__nav-link li {
    margin-bottom: 5px;
    justify-content: flex-start;
  }

  .footer__nav-wrap {
    justify-content: space-between;
    gap: 40px;
  }

  .footer__logo {
    max-width: 100%;
    width: 100%;
  }

  .footer__logo > a {
    max-width: 280px;
    width: 100%;
    display: block;
  }

  .footer__logo p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 25px;
    display: block;
  }

  .header-mega-menu {
    top: 70px;
  }

  .header-mega-menu__wrap {
    flex-direction: column;
  }

  .header-mega-menu__nav-link li a {
    font-size: 32px;
    padding: 18px 4px;
    font-weight: 700;
    display: block;
  }

  .header-mega-menu__wrap {
    gap: 30px;
  }

  .header-mega-menu__nav-link {
    margin-bottom: 0;
  }

  .header-mega-menu__nav-link li:last-child {
    display: block;
  }

  .header-mega-menu__content .btn {
    display: none;
  }

  .header-mega-menu__nav-link li:last-child {
    border-bottom: 0;
  }

  .footer {
    margin: 20px;
    width: auto;
  }

  .hero-banner {
    padding: 60px 0;
  }

  .two-col-section__content .text-desc,
  .two-col-section__content,
  .two-col-section__media {
    max-width: 100%;
  }

  .header-mega-menu__content .header__nav {
    display: block;
    width: 100%;
  }

  .header-mega-menu__content .header__nav li {
    border-bottom: 1px solid rgba(15, 76, 130, 0.3);
    margin: 0;
  }

  .header-mega-menu__content .header__nav li a {
    font-size: 32px;
    padding: 18px 4px;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
  }

  .header-mega-menu__media {
    display: none;
  }

  .header-mega-menu.active {
    height: calc(100vh - 280px);
    overflow-y: auto;
  }

  .header-mega-menu.active::-webkit-scrollbar {
    width: 7px;
    height: 116px;
  }

  .header-mega-menu.active::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
  }

  .header-mega-menu.active::-webkit-scrollbar-thumb {
    background: #b5c3d1;
    border-radius: 10px;
  }

  .header-mega-menu.active::-webkit-scrollbar-thumb:hover {
    background: #94a2af;
  }

  .banner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .header.is-sticky .header-mega-menu.active {
    height: calc(100vh - 280px);
    overflow-y: auto;
    width: 100vw;
    margin: 0 -20px;
    top: 74px;
  }

  .header.is-sticky .header-mega-menu__content {
    max-width: 100%;
  }

  .header.is-sticky .cus-container {
    max-width: 100%;
    padding: 0 0;
    margin: 0 0;
  }

  .header.is-sticky {
    padding: 0 20px;
  }

  .client-logo__content .slide figure img {
    height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__wrap h1 {
    font-size: 40px;
  }

  .client-logo__title h2 {
    font-size: 32px;
  }

  .footer__nav-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .banner__button-wrap .btn {
    margin-right: 18px;
  }

  .banner__button-wrap {
    margin-top: 28px;
  }

  .banner {
    padding: 150px 0 48px;
  }

  .header__logo {
    max-width: 180px;
  }

  .header.is-sticky .header__logo {
    max-width: 180px;
  }

  .header.is-sticky .header-mega-menu.active {
    top: 60px;
  }

  .header__btn-hamburger-menu {
    margin-left: 0;
  }

  .header__right {
    max-width: 40px;
  }

  .header {
    padding: 0 0;
  }

  .two-col-section__content {
    padding: 20px;
  }

  .two-col-section__content h2 {
    font-size: 32px;
  }

  .two-col-section__content .text-desc {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .two-col-section__wrap {
    gap: 20px;
  }

  .two-col-section {
    padding: 20px 0;
  }

  .our-expertise__title h2 {
    font-size: 32px;
  }

  .our-expertise {
    padding: 20px 0;
  }

  .about-us .our-expertise {
    margin: 20px 0 0;
  }

  .our-expertise__title {
    margin-bottom: 14px;
  }

  .our-expertise__overlay-content figure {
    max-width: 40px;
  }

  .our-expertise__overlay-content h3 {
    font-size: 48px;
    margin-top: 12px;
  }

  .our-expertise__box-content .text-desc {
    line-height: 30px;
    margin-bottom: 35px;
  }

  .our-expertise__box-content {
    padding: 17px 49px 25px 20px;
  }

  .our-expertise__button p {
    font-size: 16px;
  }

  .our-expertise__button {
    margin-top: 20px;
  }

  .client-logo {
    padding: 20px 0;
  }

  .client-logo__title {
    margin-bottom: 14px;
  }

  .client-logo__content .slide {
    padding: 0 40px;
  }

  .client-logo__content .slick-list {
    margin: 0 -40px;
  }

  .client-logo__content .slide figure img {
    height: 40px;
  }

  .client-logo__content {
    padding: 24px 0;
  }

  .latest-news {
    padding: 20px 0;
  }

  .latest-news__title h2 {
    font-size: 32px;
  }

  .latest-news__title .link-view-all-news {
    display: none;
  }

  .latest-news {
    min-height: 822px;
  }

  .hero-banner {
    padding: 20px 0;
  }

  .hero-banner__top-content-wrap .icon-award {
    max-width: 37px;
    margin-bottom: 80px;
  }

  .hero-banner__top-content-wrap h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 14px;
    padding-right: 60px;
  }

  .hero-banner__top-content-wrap h2 {
    font-size: 32px;
  }

  .hero-banner__top-content-wrap h2 {
    margin-bottom: 23px;
  }

  .hero-banner__bottam-content {
    margin-top: 20px;
  }

  .hero-banner__count-down .slide h4 {
    font-size: 40px;
  }

  .hero-banner__count-down .slide p {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .hero-banner__count-down .slide {
    padding: 16px 20px;
    min-height: 166px;
    max-width: 100%;
  }

  .footer {
    margin: 20px;
  }

  .footer__logo > a {
    max-width: 187px;
    width: 100%;
    display: block;
  }

  .footer__nav.desktop-block {
    display: none;
  }

  .footer__nav.mobile-block {
    display: block;
    width: 100%;
  }

  .footer__bottom {
    width: 100%;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 575px) {
  .footer__nav-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 50px;
  }

  .header.is-sticky .header-mega-menu.active {
    left: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    position: fixed;
    transition: all 0.35s ease;
  }

  .two-col-section__content .icon-box img {
    width: 24px;
  }

  .footer__bottom p {
    font-size: 14px;
  }
}

/*******************************************************/

/*******************************************************/
/********************* Inner Banner ********************/
/*******************************************************/
.inner-banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 149px 0 149px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 1030px;
}

.inner-banner-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.inner-banner-bg img,
.banner__bg video,
.banner__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.inner-banner-bg::after {
  content: "";
  background: linear-gradient(
    268.76deg,
    rgba(0, 125, 241, 0.36) 5.04%,
    rgba(0, 18, 34, 0.5) 97.96%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inner-banner__wrap {
  max-width: 888px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.inner-banner__wrap h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-light-200);
}

.inner-banner__wrap h1 span.title-light {
  color: var(--color-light);
}

.inner-banner__wrap h1 span {
  color: var(--color-secondary);
}

.inner-banner__wrap .icon-box {
  margin: 0 0 30px 0;
}

.inner-banner__button-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 37px;
}

.inner-banner__button-wrap .btn {
  margin-right: 28px;
}

.inner-banner__button-wrap .btn:last-child {
  margin-right: 0;
}

/*******************************************************/

@media only screen and (max-width: 1280px) {
  .inner-banner__wrap h1 {
    font-size: 56px;
  }

  .inner-banner {
    min-height: 800px;
    padding: 149px 0 50px;
  }

  .client-logo__content .slide figure img {
    height: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .inner-banner__wrap h1 {
    font-size: 40px;
  }

  .inner-banner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/*******************************************************/

/*******************************************************/
/*********************** About Us **********************/
/*******************************************************/
.two-col-section.our-story-mission {
  padding: 0 0 40px 0;
}

.section-padding .two-col-section.our-story-mission {
  padding: 0 0 0 0;
}

.two-col-section__content .text-desc p {
  margin: 0 0 20px 0;
}

.corporate-responsibility .two-col-section__content .text-desc p {
  margin: 0 0 20px 0;
  font-size: 16px;
}

.corporate-responsibility .two-col-section__content .text-desc p:last-child {
  margin: 0;
}

.two-col-section__media {
  position: relative;
}

.two-col-section__media::after {
  content: "";
  background: #0f4c8233;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}

.our-story-mission .two-col-section__wrap {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 991px) {
  .our-story-mission .two-col-section__wrap {
    flex-direction: column;
  }

  .two-col-section.our-story-mission {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-section.our-story-mission {
    margin: 0 0 20px 0;
  }
}

/*******************************************************/

/*******************************************************/
/*********************** Sectors **********************/
/*******************************************************/
.two-col-section__content .text-desc ul {
  padding: 0 0 30px 40px;
}

.two-col-section__content .text-desc ul li {
  list-style: disc;
  line-height: 130%;
}

.two-col-section__content .icon-box {
  margin: 0 0 20px 0;
}

.hero-banner__top-content-wrap .text-desc p.txt-yellow {
  color: #edb60b;
  font-size: 16px;
  font-weight: 700;
  max-width: 627px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .two-col-section__content .text-desc ul {
    padding: 0 0 20px 40px;
  }
}

/*******************************************************/

/*******************************************************/
/*********************** Projects **********************/
/*******************************************************/
.projects {
  padding: 40px 0 0;
}

.project_box_main {
  margin: 0 0 30px 0;
}

.project_wrap .row {
  padding: 0;
  margin: 0 -20px;
}

.project_wrap .col-xl-6 {
  padding: 0 20px;
}

.project_box_main .project_img_box {
  position: relative;
}

.project_box_main .proj-icon-box {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

.project_box_main .project_img_box .proj-icon-box img {
  width: 52px;
  height: 52px;
}

.project_box_main .project_img_box img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 360px;
  object-fit: cover;
}

.project_box_main .project_desc {
  background: #fafbfd;
  padding: 40px 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.project_box_main .project_desc h2 {
  text-transform: uppercase;
  color: #0f4c82;
  margin: 0 0 25px 0;
  font-weight: 700;
  min-height: 80px;
}

.project_box_main .project_desc p {
  color: #0f4c82;
  font-size: 20px;
  margin: 0 0 30px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 80px;
}

.two-col-section__content .text-desc .our-philosophy-img {
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .project_box_main .project_desc {
    padding: 30px;
  }

  .project_box_main .proj-icon-box {
    bottom: 20px;
    left: 20px;
  }

  .project_box_main .project_desc h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .project_box_main .project_desc p {
    font-size: 16px;
  }

  .project_box_main .project_img_box .proj-icon-box img {
    height: auto;
  }

  .project_box_main .project_img_box img {
    object-fit: cover;
    height: 100%;
  }

  .project_box_main .project_desc {
    padding: 24px;
  }

  .two-col-section__content .text-desc .our-philosophy-img {
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .project_box_main .proj-icon-box {
    bottom: 20px;
    left: 60px;
  }
  .project_box_main .project_desc h2,
  .project_box_main .project_desc p {
    min-height: 100%;
  }
}

/*******************************************************/

/*******************************************************/
/*********************** Contact Us ********************/
/*******************************************************/
.inner-banner.contact-inner-banner {
  min-height: 703px;
  padding: 149px 0 70px;
}

.contact-page {
  padding: 40px 0;
}

.contact_page_wrap {
  background: #fff;
  border-radius: 10px;
  padding: 40px 40px;
}

.contact-title h2 {
  text-transform: uppercase;
  color: #0f4c82;
  font-size: 64px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 0 30px 0;
}

.contact-title p {
  color: #0f4c82bf;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.contact-details {
  margin: 40px 0;
}

.contact-details h3 {
  color: #0f4c82;
  margin: 0 0 30px 0;
  font-size: 32px;
  font-weight: 700;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px 0;
}

.contact-info p,
.contact-info a {
  color: #0f4c82;
  font-size: 20px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  filter: grayscale(100%) brightness(100%);
}

.map-wrapper iframe {
  width: 100%;
  height: 365px;
  border: 0;
  display: block;
}

.contact-map h3 {
  color: #0f4c82;
  margin: 0 0 30px 0;
  font-size: 32px;
  font-weight: 700;
}

.contact-map img {
  object-fit: cover;
  border-radius: 10px;
  height: 295px;
  width: 100%;
}

.contact-form-title h3 {
  color: #0f4c82;
  font-weight: 700;
  font-size: 40px;
  margin: 0 0 20px 0;
}

.contact-form-title p {
  color: #0f4c82;
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 20px 0;
}

.contact-form .form-control {
  border: 0.5px solid #0f4c82;
  border-radius: 5px;
  padding: 24px;
  height: 74px;
  color: #0f4c82;
  font-size: 18px;
  margin: 0 0 25px 0;
}

.contact-form .btn-md {
  padding: 22px 26px;
  width: 180px;
  height: 68px;
  border: 0;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
  border-radius: 5px;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form .btn:focus-visible {
  color: var(--color-light);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: 172px;
  resize: none;
}

.contact-form .form-control::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #0f4c8266;
  opacity: 1;
}

.contact-form .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #0f4c8266;
  opacity: 1;
}

.contact-form .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #0f4c8266;
  opacity: 1;
}

.contact-form form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0f4c8266;
  opacity: 1;
}

.contact-form textarea.form-control:-webkit-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0f4c8266;
  opacity: 1;
}

@media (max-width: 1199px) {
  .contact-title h2 {
    font-size: 42px;
  }

  .contact_page_wrap {
    padding: 24px 10px;
  }

  .contact-form .btn-md {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .contact-form-main {
    margin: 30px 0 0 0;
  }

  .contact-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .contact-title p {
    font-size: 16px;
  }

  .contact-form .btn-md {
    width: 132px;
  }

  .contact-details h3,
  .contact-map h3 {
    font-size: 24px;
  }
}

/*******************************************************/

/*******************************************************/
/******************** Meet the team ********************/
/*******************************************************/
.meet-the-team-wrap {
  background: #fafbfd;
  padding: 40px 60px;
  border-radius: 10px;
}

.meet-the-team-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meet-the-team-wrap h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 40px 0;
}

.meet-the-team-content .slide {
  padding: 0 13px;
}

.meet-the-team-content .team-img {
  margin: 0 0 30px 0;
}

.meet-the-team-content .team-desc h3 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.meet-the-team-content .team-desc span {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 400;
}

.meet-the-team__slick-control {
  width: 100%;
  max-width: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.founders-quote span {
  display: block;
  padding: 0 0 55px 0;
  color: #0f4c8280;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.founders-quote p {
  font-size: 24px;
  color: #0f4c8280;
  font-weight: 400;
}

.founders-quote img {
  padding: 0 0 35px 0;
}

.two-col-section__content .founders-quote h2 {
  text-transform: capitalize;
  margin: 0 0 32px 0;
  font-size: 64px;
}

.meet-the-team__slick-control.mobile-arrow {
  display: none;
}

@media (max-width: 1199px) {
  .founders-quote span,
  .founders-quote img {
    padding: 0 0 24px 0;
  }

  .founders-quote p {
    font-size: 16px;
  }

  .two-col-section__content .founders-quote h2 {
    margin: 0 0 16px 0;
  }
}

@media (max-width: 991px) {
  .meet-the-team-wrap {
    padding: 20px;
  }

  .meet-the-team-wrap h2 {
    font-size: 32px;
    margin: 0 0 0 0;
  }

  .meet-the-team-content {
    margin: 16px 0 0 0;
  }

  .two-col-section__content .founders-quote h2 {
    margin: 0 0 16px 0;
    font-size: 48px;
  }

  .meet-the-team__slick-control.mobile-arrow {
    display: block;
    max-width: 40px;
  }

  .meet-the-team__slick-control.desktop-arrow {
    display: none;
  }

  .meet-the-team-content .slide {
    padding: 0 5px;
  }

  .meet-the-team-content .team-desc span {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .meet-the-team .slick-slide img {
    display: block;
    width: 100%;
  }
}

/*******************************************************/

/*******************************************************/
/******************** Latest News ********************/
/*******************************************************/
.news_wrap {
  margin: 40px 0;
}

body .sk-ww-linkedin-page-post {
  background-color: transparent;
  font-size: var(--details-font-size);
  border-radius: 0;
  padding: 0;
  border: 0;
}

body .sk-ww-linkedin-page-post .sk-posts-footer .sk-footer-button {
  border-radius: 10px;
}

/*******************************************************/

/*******************************************************/
/******************** Form Error Msg ********************/
/*******************************************************/
.contact-form-main .wpcf7-form-control-wrap {
  position: relative;
}

.contact-form-main .wpcf7-not-valid-tip {
  color: #f00 !important;
  font-size: 13px !important;
  padding: 0 !important;
  line-height: 18px !important;
  display: inline-block !important;
  vertical-align: top !important;
  position: absolute !important;
  left: 10px !important;
  top: 100% !important;
  margin: 0px 0 0 0 !important;
}

.contact-form-main .wpcf7 form .wpcf7-response-output {
  text-align: center !important;
  margin: 20px 0 !important;
}

.contact-form-main .wpcf7-spinner {
  margin: -10px 10px;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-overflow-scrolling: touch) {
    /* Safari Only */
    .contact-form-main .wpcf7-not-valid-tip {
      color: #f00 !important;
      font-size: 13px !important;
      padding: 0 !important;
      line-height: 18px !important;
      display: inline-block !important;
      vertical-align: top !important;
      position: absolute !important;
      left: 10px !important;
      top: 100% !important;
      margin: 0px 0 0 0 !important;
    }
  }
}

/*******************************************************/

/*******************************************************/
/******************** 404 Error Page ******************/
/*****************************************************/
.inner-banner.contact-inner-banner.error-404-inner-banner {
  padding: 149px 0 0;
}

.error-404.not-found {
  width: 100%;
}

.error-404.not-found .inner-banner__wrap {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.error-404.not-found .inner-banner__wrap h1 {
  font-size: 220px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light);
}

.error-404.not-found .inner-banner__wrap h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-light);
  margin: 0 0 30px 0;
}

.error-404.not-found .inner-banner__wrap p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--color-light);
  margin: 0 0 30px 0;
}

@media (max-width: 991px) {
  .error-404.not-found .inner-banner__wrap {
    text-align: center;
    padding: 30px;
  }

  .error-404.not-found .inner-banner__wrap h1 {
    font-size: 120px;
  }

  .error-404.not-found .inner-banner__wrap h2 {
    font-size: 30px;
    margin: 0 0 20px 0;
  }

  .error404 .main {
    padding: 0;
  }
}

/*****************************************************/

.page-id-385 .footer,
.page-id-340 .footer,
.page-id-388 .footer {
  margin-top: 0;
}

.post,
.page {
  margin: 0;
}

/*******************************************************/
/*********************** CMS-Pages **********************/
/*******************************************************/
.cms-pages-desc-wrap {
  min-height: 100%;
  padding: 200px 0 50px;
  background: #fff;
  border-radius: 10px;
}

.cms-pages-desc-wrap h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 50px 0;
}

main.cms-main-pages {
  border-radius: 10px;
  padding: 0 20px;
  margin: 40px auto;
}

.cms-pages-content h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 5px 0;
}

.cms-pages-content h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 5px 0;
}

.cms-pages-content p {
  color: #0f4c82;
  font-size: 20px;
  margin: 0 0 30px 0;
}

.cms-pages-content ul {
  padding: 0 0 30px 40px;
}

.cms-pages-content ul li {
  list-style: disc;
  line-height: 130%;
  color: #0f4c82;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.main.cms-pages-desc {
  padding: 0 0 30px 0;
  border-radius: 10px;
  background: #fff;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
  .main.cms-pages-desc {
    margin: 0 20px;
  }
}

@media (max-width: 1199px) {
  .main.cms-pages-desc {
    margin: 0 20px;
  }

  .inner-banner.cms-pages-title {
    padding: 110px 0 50px;
  }

  main.cms-main-pages {
    margin: 30px auto 0;
  }

  .cms-pages-desc-wrap {
    padding: 140px 0 0;
  }

  .cms-pages-desc-wrap h1 {
    font-size: 36px;
    margin: 0 0 30px 0;
  }
}

/*******************************************************/
/*********************** Testimonials **********************/
/*******************************************************/
.testimonials-main {
  background: #fafbfd;
  padding: 90px 60px;
  border-radius: 10px;
  margin: 40px 0 0 0;
}

.testimonials-main-wrap {
  text-align: center;
}

.testimonials-main-wrap h3 {
  display: block;
  padding: 0 0 55px 0;
  color: #0f4c8280;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.testimonials-content {
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-box .client-img {
  display: table;
  margin: 0 auto 50px;
}

.testimonials-box {
  max-width: 691px;
  margin: 0 auto;
}

.testimonials-box .client-name h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 50px 0;
}

.testimonials-box .client-desc p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: #0f4c8280;
  margin: 0 0 0 0;
}

.testimonials-main-wrap {
  position: relative;
}

.testimonials-main-wrap .js-testimonials-slider-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-main-wrap .js-testimonials-slider-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .testimonials-main {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .testimonials-box .client-name h2 {
    margin: 0 0 30px 0;
    font-size: 26px;
  }

  .testimonials-box .client-img {
    margin: 0 auto 30px;
  }

  .testimonials-box .client-desc p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .testimonials-main-wrap .js-testimonials-slider-next {
    right: -40px;
  }

  .testimonials-main-wrap .js-testimonials-slider-prev {
    left: -40px;
  }
}

/**********************************************************/
/******************** Flip Counter ************************/
/**********************************************************/
.hero-banner__count-down .slide h4.hero-counter-animate {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 1;
  margin-bottom: 50px;
}

.hero-banner__count-down .flip-digit {
  position: relative;
  width: 36px;
  height: 60px;
  background: #0b4f8a;
  border-radius: 10px;
  overflow: hidden;
}

.hero-banner__count-down .flip-digit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0px;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}

.hero-banner__count-down .flip-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #ffc800;
  backface-visibility: hidden;
}

.hero-banner__count-down .flip-face.top {
  bottom: 0;
  transform-origin: bottom;
  z-index: 1;
}

.hero-banner__count-down .flip-face.bottom {
  top: 0;
  transform-origin: top;
  z-index: 1;
}

.hero-banner__count-down .flip-anim {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b4a7c;
  font-size: 48px;
  font-weight: 700;
  color: #f9c300;
  backface-visibility: hidden;
  visibility: hidden;
}

.hero-banner__count-down .flip-anim.flip {
  visibility: visible;
}

.hero-banner__count-down .flip-anim.top.flip {
  animation: fold 0.3s forwards;
}

.hero-banner__count-down .flip-anim.bottom.flip {
  animation: unfold 0.3s forwards;
}

@keyframes fold {
  to {
    transform: rotateX(-90deg);
  }
}

@keyframes unfold {
  from {
    transform: rotateX(90deg);
  }

  to {
    transform: rotateX(0deg);
  }
}

.hero-banner__count-down .counter-unit {
  font-size: 36px;
  font-weight: 700;
  margin-left: 8px;
}
@media only screen and (max-width: 1728px) and (min-width: 992px) {
  .hero-banner__count-down .slide h4.hero-counter-animate {
    gap: 0.297vw;
    margin-bottom: 2.967vw;
  }

  .hero-banner__count-down .flip-digit {
    width: 1.97vw;
    height: 3.529vw;
    border-radius: 0.593vw;
  }

  .hero-banner__count-down .flip-digit::after {
    right: 0vw;
    height: 0.119vw;
  }

  .hero-banner__count-down .flip-face {
    font-size: 2.824vw;
  }

  .hero-banner__count-down .flip-anim {
    font-size: 2.824vw;
  }
  .hero-banner__count-down .counter-unit {
    font-size: 2.824vw;
    margin-left: 0.475vw;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero-banner__count-down .flip-digit {
    width: 40px;
    height: 60px;
  }

  .hero-banner__count-down .flip-face,
  .hero-banner__count-down .flip-anim {
    font-size: 40px;
  }

  .hero-banner__count-down .counter-unit {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-banner__count-down .flip-digit {
    width: 24px;
    height: 42px;
  }

  .hero-banner__count-down .flip-face,
  .hero-banner__count-down .flip-anim {
    font-size: 30px;
  }

  .hero-banner__count-down .counter-unit {
    font-size: 18px;
  }
}

.client-logo__title {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-logo__title .view-all-text {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

/*******************************************************/
/*********************** Inner-Projects **********************/
/*******************************************************/
.main.inner-projects {
  overflow: hidden;
}

.inner-banner.inner-projects-banner .inner-banner__wrap h1 {
  font-size: 55px;
}

.inner-banner.inner-projects-banner .inner-banner__wrap span {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0 0 20px 0;
  display: block;
}

.inner-banner.inner-projects-banner .inner-banner__wrap p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: var(--color-light-100);
  margin: 23px 0 53px;
  max-width: 594px;
}

.inner-banner.inner-projects-banner {
  min-height: 703px;
  padding: 149px 0 50px;
}

.two-col-section__content span {
  text-transform: uppercase;
  color: #0f4c8266;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 0 0 20px 0;
}

.projects-section-main h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 20px 0;
}

.projects-section-wrap {
  background: #fafbfd;
  border-radius: 10px;
  padding: 39px;
}

.projects-section-main .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 94px;
}

.projects-section-main .project-image {
  border-radius: 6px;
  overflow: hidden;
}

.projects-section-main .project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.projects-section-main .project-card h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-primary);
  margin: 20px 0 35px 0;
}

.inner-projects .two-col-section__media {
  max-width: calc(50% - 20px);
  width: 100%;
}

.inner-projects .two-col-section__media::after {
  display: none;
}

.inner-projects .slick-dots {
  bottom: 36px;
}

.inner-projects .slick-dots .slick-active button {
  background: #fff;
  border-radius: 50%;
}

.inner-projects .slick-dots button {
  border: 1px solid #fff;
  border-radius: 50%;
}

.inner-projects .contact-form textarea.form-control {
  height: 480px;
  resize: none;
}

.inner-projects .map-wrapper iframe {
  height: 610px;
}
.main.inner-projects {
  padding: 40px 0 0 0;
}
.main.inner-projects .two-col-section {
  padding: 0 0 40px 0;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
  .inner-banner.inner-projects-banner .inner-banner__wrap h1 {
    font-size: 3.183vw;
  }

  .inner-banner.inner-projects-banner .inner-banner__wrap p {
    font-size: 1.157vw;
    line-height: 140%;
    margin: 1.331vw 0 3.067vw;
    max-width: 34.722vw;
  }

  .inner-banner.inner-projects-banner {
    min-height: 40.683vw;
    padding: 8.623vw 0 2.894vw;
  }

  .two-col-section__content span {
    font-size: 1.157vw;
    margin: 0 0 1.157vw 0;
  }

  .projects-section-main h2 {
    font-size: 3.183vw;
    margin: 0 0 1.157vw 0;
  }

  .projects-section-wrap {
    border-radius: 0.579vw;
    padding: 2.257vw 3.704vw;
  }

  .projects-section-main .projects-grid {
    gap: 5.44vw;
  }

  .projects-section-main .project-image {
    border-radius: 0.347vw;
  }

  .projects-section-main .project-image img {
    height: 23.148vw;
  }

  .projects-section-main .project-card h3 {
    font-size: 2.315vw;
    margin: 1.157vw 0 2.025vw 0;
  }

  .inner-projects .two-col-section__media {
    max-width: calc(50% - 1.156vw);
    width: 100%;
  }

  .inner-projects .slick-dots {
    bottom: 2.083vw;
  }

  .inner-projects .slick-dots button {
    border: 0.058vw solid #fff;
  }

  .inner-projects .contact-form textarea.form-control {
    height: 13.889vw;
  }

  .inner-projects .map-wrapper iframe {
    height: 19.676vw;
  }
  .main.inner-projects {
    padding: 2.315vw 0 0 0;
  }
  .main.inner-projects .two-col-section {
    padding: 0 0 2.315vw 0;
  }
}

@media (max-width: 991px) {
  .projects-section-main .projects-grid {
    gap: 34px;
  }

  .projects-section-wrap {
    padding: 20px;
  }

  .projects-section-main .project-card h3 {
    font-size: 26px;
    margin: 20px 0;
  }

  .projects-section-main .project-image img {
    height: 240px;
  }
  .main.inner-projects .two-col-section:nth-child(even) .two-col-section__wrap {
    flex-direction: column-reverse;
  }
  .inner-projects .two-col-section__media {
    max-width: 100%;
    width: 100%;
  }
  .main.inner-projects .two-col-section {
    padding: 0 0 20px 0;
  }
  .main.inner-projects {
    padding: 40px 0 20px 0;
  }
  .inner-banner.inner-projects-banner .inner-banner__wrap h1 {
    font-size: 40px;
  }

  .inner-banner.inner-projects-banner .inner-banner__wrap h1 br {
    display: none;
  }

  .inner-banner.inner-projects-banner .inner-banner__wrap p {
    margin: 20px 0;
  }

  .projects-section-main h2 {
    font-size: 40px;
  }

  .inner-projects .contact-form textarea.form-control {
    height: 240px;
  }

  .inner-projects .map-wrapper iframe {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .projects-section-main .projects-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.inner-banner__wrap span.pre-title {
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin: 0 0 10px 0;
}

.inner-banner__wrap span.post-title {
  color: #fff;
  display: block;
  margin: 30px 0 0;
}

/*******************************************************/
/*********************** About Video **********************/
/*******************************************************/
.eq-about__video {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 61.3%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0 0 0;
}

.eq-about_video__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.eq-about_video__bg img,
.eq-about_video__bg video,
.eq-about_video__bg iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.eq-about_video__content__wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eq-about_video__content {
  max-width: 806px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
}

.eq-about_video__content h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  text-transform: inherit;
  color: var(--color-primary);
  margin: 0 0 13px 0;
}

.eq-about_video__content p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--color-primary);
  margin-bottom: 13px;
}

.eq-about_video__content .btn-sm img {
  max-width: 15px;
  width: 100%;
  margin-right: 9px;
}

.eq-about_video__content img.about-logo {
  text-align: center;
  margin: 0 auto 10px;
}

.eq-about_play__video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.eq-about_play__video span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--color-primary);
  margin-bottom: 0;
}

@media only screen and (max-width: 1728px) and (min-width: 992px) {
  .eq-about__video {
    border-radius: 0.579vw;
    margin: 2.315vw 0 0 0;
  }

  .eq-about_video__content {
    max-width: 46.644vw;
    border-radius: 0.868vw;
    padding: 2.315vw;
  }

  .eq-about_video__content h2 {
    font-size: 2.083vw;
    margin: 0 0 0.752vw 0;
  }

  .eq-about_video__content p {
    font-size: 0.926vw;
    line-height: 1.736vw;
    margin-bottom: 0.752vw;
  }

  .eq-about_video__content .btn-sm img {
    max-width: 0.868vw;
    margin-right: 0.521vw;
  }
}

@media (max-width: 991px) {
  .eq-about__video {
    padding-bottom: 128%;
  }

  .eq-about_video__content {
    max-width: 100%;
    margin: 0 20px;
  }
}

@media (max-width: 575px) {
  .eq-about_video__content {
    padding: 20px;
  }

  .eq-about_play__video {
    gap: 14px;
  }
}
