/* HEADER */

.dkHd {
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  z-index: 22;
}

.language-selector {
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
}

.mainMenu ul {
  display: flex;
  align-items: center;
}

.mainMenu span {
  font-size: 12px;
  margin-left: 6px;
}

.mainMenu li {
  position: relative;
}

.mainMenu li a {
  padding: 15px;
  color: #fff;
}
  .subMenu {
 position: absolute;
  top: 40px;
  left: 0;
  background-color: var(--primary-color);
  width: 200px;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 222;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
@media screen  and (min-width:992px){


.mainMenu li:hover .subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
}

.subMenu::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid var(--primary-color);
  top: -12px;
  left: 0;
}

.subMenu li a {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  position: relative;
  transition: all 0.3s;
}

.subMenu li:last-child a {
  border-bottom: none;
}

.subMenu li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  transition: all 0.3s;
  background-color: #fff;
}

.subMenu li a:hover::before {
  height: 100%;
}

.subMenu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cstRw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 160px;
}

.settNav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dropdown-arrow {
  margin-left: 4px;
}
.language-selector {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 16px;
}

.selected-lang {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}

.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.language-dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  color: #000;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  z-index: 10;
  min-width: 100px;
  transition: all 0.3s;
}

.language-dropdown li {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.language-dropdown li:hover {
  background: #f0f0f0;
}

.language-dropdown li .flag-icon {
  margin-right: 8px;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-selector.active .dropdown-arrow {
  transform: rotate(180deg);
}
.search {
  cursor: pointer;
}
.search img {
  width: 20px;
}
.resMnBK {
  display: none;
}
/* HERO */
.dkHero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.heroSlider {
  height: 100vh;
}

.swiper-slide {
  height: 100vh;
}

.hroImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hroCont {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 22;
}

.hroCont h1 {
  font-size: var(--sec-head-size);
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.hroCont span {
  font-size: 79px;
  display: block;
}

.hroBtn {
  margin-top: 20px;
}

.hrBtn {
  margin-top: 40px;
}

.hrBtn a {
  background-color: #fff;
  border-radius: 100px;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(12px);
  padding: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
  width: fit-content;
  color: #fff;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding-right: 28px;
}
.hrBtn a:hover {
  background-color: var(--primary-color);
}

.hrBtn span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--primary-color);
  border-radius: 50%;
}

.hroBtn i {
  font-size: 20px;
}

.slideLink {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 20px;
  font-size: 16px;
  z-index: 2;
}

.slideLink li a {
  padding: 16px;
  border-radius: 50px;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.slideLink li a:hover {
  border-radius: 100px;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 217, 217, 0);
}

.slideLink li.active a {
  border-radius: 100px;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 217, 217, 0);
}

.dkHero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.5) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
  z-index: 2;
}

.hroMed::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    0deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.5) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
  z-index: 2;
}

.hroBtn a {
  border-radius: 100px;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(12px);
  padding: 12px;
  width: fit-content;
  display: flex;
  color: #fff;
}

.hroBtn span {
  font-size: 18px;
}

.hroMed img,
.hroMed video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.dkHero video {
  touch-action: none;
}
/* ABOUT SECTION */
.resDkAbt {
  display: none;
}
.abtContHd h2 span {
  color: var(--primary-color);
}

.abtContHd {
  margin-bottom: 24px;
  padding-left: 20px;
}

.abtContHd h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.abtCont p {
  color: var(--para-color);
  padding-left: 20px;
}

.secBtn a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--drake-black);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.secBtn a span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  margin-right: 15px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.secBtn a i {
  font-size: 1.2em;
  transform: translateX(2px);
  transition: transform 0.3s ease;
}

.secBtn a {
  position: relative;
}

.secBtn a::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 55px;
  width: calc(100% - 55px);
  height: 1px;
  background-color: var(--drake-black);
  transform-origin: bottom left;
}

.abtYrSlImg {
  line-height: 0;
  height: 100%;
}

.abtYrSlImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abtYrSlDv {
  background-color: rgba(0, 75, 141, 1);
  color: white;
  padding: 34px;
  width: 100%;
  height: 100%;
  position: relative;
}

.abtYr {
  font-size: 28px;
  font-weight: 500;
  margin: 10px 20px;
  position: relative;
}

.abtYrSlide .swiper-button-next svg,
.abtYrSlide .swiper-button-prev svg {
  height: 40% !important;
  z-index: 222 !important;
}
.yrNxtArr img,
.yrPrevArr img {
  width: 10px;
}
.yrPrevArr,
.yrNxtArr {
  cursor: pointer;
  position: absolute;
  top: 86px;
  z-index: 2;
  left: 35px;
}
.yrNxtArr {
  left: inherit;
  right: 45px;
}
.abtYrContSlide p {
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin-top: 10px;
}

.abtYrSlDv h3 {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.abtYrContSlide p {
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Gradient Shade Left and Right */
.abtYr::before,
.abtYr::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.abtYr::before {
  left: 0;
  background: linear-gradient(to right, #004b8d 0%, transparent 100%);
}

.abtYr::after {
  right: 0;
  background: linear-gradient(to left, #004b8d 0%, transparent 100%);
}

.abtCont .primeBtn {
  margin-top: 40px;
  padding-left: 20px;
}

.abtImg img {
  width: 385px;
  display: block;
  margin: auto;
}

.abtYrImg {
  line-height: 0;
}

.abtBtmCount {
  background-color: rgb(217 217 217 / 18%);
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

.pad-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.CntFlx {
  display: flex;
}

.abtIsoContain {
  padding: 34px;
  background: #fff;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.isoHd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.isoYr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.isoYr h3 {
  font-size: var(--sub-head-size);
  font-weight: 500;
}

.abtIsoContain h4 {
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 0.8px;
}

.abtIsoContain p {
  color: var(--para-color);
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
}

.abtCount h4,
.abtCount .num {
  font-size: 50px;
  font-weight: 300;
}
.abtCount h4 .abtCount span {
  font-size: 18px;
}
.abtCount .xy {
  width: fit-content;
  position: relative;
}
.abtCount .cntCurrency {
  position: absolute;
  top: 4px;
  font-size: 24px;
  right: -60px;
}

.abtCount {
  width: 33.3%;
}

.abtCount .cntLtr {
  color: var(--primary-color);
  font-size: 50px;
  display: inline-block;
  margin-left: -12px;
}

/* SERVICE SECTION */
.dkServices {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease-in-out;
  margin-top: 80px;
  min-height: 960px;
}

.dkServices::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.5) 70%,
    hsla(0, 0%, 100%, 0) 100%
  );
}

.tab {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 22;
}

.tab button {
  padding: 16px;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  background-color: transparent;
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: var(--para-size);
  transition: 0.3s;
}

.tab button.active {
  background: var(--primary-color);
}

.dkServices .tabcontent.active {
  max-height: 440px;
  overflow: visible;
}

.tabcontent {
  display: none;
  animation: fadeIn 0.8s ease;
}

.tabcontent.active {
  display: block;
}

.tabcontent .primeBtn a {
  color: #fff;
  margin: auto;
  margin-top: 24px;
}

.tabcontent .primeBtn a::after {
  background-color: #fff;
}

.tbCnt {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 22;
}

.tbCnt p {
  color: #fff;
  font-weight: 300;
}

.tbCnt h3 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  margin-bottom: 34px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.serBlk {
  background-color: #fff;
  padding: 35px;
  text-align: left;
  height: 100%;
}

.serviceBlkContain {
  margin: auto;
  margin-top: 100px;
  padding: 50px;
  background: #ffffff45;
  backdrop-filter: blur(30px);
  transition: all 0.3s;
  max-width: 85%;
}

.serCont h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 14px 0;
}

.serCont p {
  color: var(--para-color);
  font-size: 18px;
  font-weight: 300;
}

.serCont a {
  color: var(--primary-color);
  display: block;
  width: fit-content;
  margin-top: 18px;
}
.serIco {
  margin-bottom: 28px;
}
.serPrvArr,
.serNxtArr {
  position: absolute;
  top: 50%;
  left: 25px;
  z-index: 2;
  cursor: pointer;
}
.serNxtArr {
  left: inherit;
  right: 25px;
}
.serPrvArr img,
.serNxtArr img {
  width: 10px;
}
.serviceSlide {
  position: relative;
}
.serDetBlk {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(10px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.serDetBlk::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #14141457;
}
.serDetCont {
  position: absolute;
  top: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}
.serviceSlide:hover .serDetBlk {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.serDetCont h4 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding-top: 24px;
}
.serDetBlk .primeBtn a {
  margin-right: 0;
  margin-left: 0;
  color: #fff;
}
.serDetBlk .primeBtn a:hover span {
  background-color: var(--primary-color);
  color: #fff;
}
.serDetBlk .primeBtn a:hover i {
  color: #fff;
}
.serDetBlk .primeBtn a:hover {
  color: #fff;
}
.serDetBlk .primeBtn {
  margin-bottom: 10px;
}
.serDetBlk .primeBtn i {
  color: var(--primary-color);
}
.serDetBlk .primeBtn span {
  background-color: #fff;
}

/* PORTFOLIO SECTION */
.dkPortfolio {
  margin-top: 240px;
  background-color: var(--drake-black);
  padding-bottom: 80px;
}

.abHdCnt {
  color: #fff;
  display: flex;
  align-items: end;
  gap: 40px;
}

.dkPortfolio .abtContHd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  margin-bottom: 50px;
}

.abHdCnt h3 {
  color: #fff;
}

.abHdCnt .primeBtn a {
  color: #fff;
  margin-bottom: 8px;
}

.abHdCnt .primeBtn a::after {
  background-color: #fff;
}

.portfolioSelect select {
  padding: 24px;
  border-radius: 50px;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  transition: all 0.3s;
  background-color: transparent;
}

.msSelect {
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  background-image: url("../assets/icon/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
  cursor: pointer;
}

.msSelect::-ms-expand {
  display: none;
}

.msSelect option {
  color: var(--drake-black);
  background-color: #fff;
}
.portMainBlk {
  overflow: hidden;
}
.portMainBlk:hover img {
  transform: scale(1.02);
}
.portMainImg {
  position: relative;
  line-height: 0;
}

.portMainImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.portMainImg::after {
  content: "";
  display: block;
  padding-top: 60.5%;
}

.portMainBlk {
  position: relative;
}

.portMainBlk::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    360deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.5) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
}

.portMainBlk:hover .DetBtn {
  opacity: 1;
  visibility: visible;
}
.DetBtn i {
  font-size: 22px;
}

/* .portMainBlk .DetBtn a {
  width: 55px;
  height: 55px;
} */

.portfolioHd {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 24px 35px;
  width: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolioHd h3 {
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 500;
  color: #ffff;
}

.portfolioHdCont {
  width: 100%;
}

.porttags p {
  font-weight: 300;
  color: #fff;
}

.porttags p span {
  font-weight: 500;
}

.porttags {
  display: flex;
  gap: 18px;
}

.portGrMd,
.portGrdLg,
.portGrdSm {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.portGrMd img,
.portGrdLg img,
.portGrdSm img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portGrMd::after {
  content: "";
  display: block;
  padding-top: 80%;
}

.portGrdLg::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.portGrdSm::after {
  content: "";
  display: block;
  padding-top: 60%;
}

.portGrid .col-md-6 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.psgrad {
  position: relative;
}

.psgrad::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: linear-gradient(
    360deg,
    hsl(0deg 0% 9.02%) 0%,
    hsl(0deg 0% 25% / 0%) 24%,
    hsla(0, 0%, 98%, 0) 100%
  );
  width: 100%;
  height: 100%;
}

.psgrad::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    178deg,
    hsl(0deg 0% 9.02%) 0%,
    hsl(0deg 0% 25% / 0%) 34%,
    hsla(0, 0%, 98%, 0) 100%
  );
  width: 100%;
  z-index: 2;
  height: 50%;
}

/* CLIENT SECTION */
.dkClients {
  position: relative;
}

.dkClients .abtContHd {
  text-align: center;
}

.dkClients .map {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dkClients .map img {
  display: block;
  margin: auto;
  width: 40%;
}

.clItem {
  width: 20%;
  padding: 20px 12px;
}
.clRw{
  max-width: 85%;
  margin: auto !important;
}
.clRw {
  display: flex;
  margin-right: -12px;
  margin-left: -12px;
  flex-wrap: wrap;
}

.clImg img {
  width: 200px;
  aspect-ratio: 3/2;
  object-fit: contain;
  display: block;
  margin: auto;
}

.clientsContain {
  margin-top: 120px;
  position: relative;
}

.clmainBr::before,
.cliSecBr::before,
.cliBrFst::before,
.cliBrSn::before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background: RGBA(255, 255, 255, 1);
  background: linear-gradient(
    273deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(0 0 0 / 7%) 40%,
    rgb(255 255 255 / 0%) 99%
  );
  position: absolute;
  top: 0;
  left: 24.5%;
}

.cliSecBr::before {
  left: 41.5%;
}

.cliBrFst::before {
  right: 24.5%;
  left: inherit;
}

.cliBrSn::before {
  right: 41.5%;
  left: inherit;
}

.clmainBr::after {
  content: "";
  display: block;
  height: 2px;
  width: calc(100% - 120px);
  background: RGBA(255, 255, 255, 1);
  background: linear-gradient(
    273deg,
    rgb(255 255 255 / 0%) -20%,
    rgb(0 0 0 / 7%) 62%,
    rgb(255 255 255 / 0%) 100%
  );
  position: absolute;
  top: 32.5%;
  left: 0;
  right: 0;
  margin: auto;
}

.cliBrTrd::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: RGBA(255, 255, 255, 1);
  background: linear-gradient(
    273deg,
    rgb(255 255 255 / 0%) -20%,
    rgb(0 0 0 / 7%) 62%,
    rgb(255 255 255 / 0%) 100%
  );
  position: absolute;
  bottom: 32.5%;
  left: 0;
}

/* NEWS/MEDIA SECTION */
.hdFlx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dkNews {
  background-color: #f5f5f5;
  margin-top: 100px;
  padding-bottom: 100px;
}

.newsBlk {
  background-color: #fff;
  border: 1px solid rgba(174, 174, 174, 0.45);
  transition: all 0.3s;
  overflow: hidden;
}

.newsBlk:hover .newsImg img {
  transform: scale(1.02);
}

.newsBlk:hover .newHdCnt h3 {
  color: var(--primary-color);
}

.newsImg {
  position: relative;
  overflow: hidden;
}

.newsImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: all 0.3s;
}

.newsImg::after {
  content: "";
  display: block;
  padding-top: 60%;
}

.newHdCnt {
  padding: 30px;
}

.newHdCnt h3 {
  font-weight: 500;
  margin-bottom: 14px;
  font-size: var(--sub-in-heading);
  transition: all 0.3s;
  line-height: 1.3;
}

.newHdCnt p {
  color: var(--para-color);
}

.newsDT {
  margin-top: 20px;
  font-size: 14px;
}

.newtag span {
  display: block;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 50px;
  background-color: rgba(234, 238, 242, 1);
  margin-bottom: 20px;
}

.newsContain {
  margin-top: 40px;
}

/* FOOTER */
.dkFtr {
  padding-top: 100px;
  background-color: var(--drake-black);
  color: #fff;
  padding-bottom: 40px;
}
.dkFtr a,
.dkFtr p {
  color: #fff;
}
.ftrCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 60px;
}

.ctaCont {
  width: 60%;
}

.ctaCont h3 {
  font-size: 70px;
  font-weight: 400;
}

.ctaInput {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.ctaInput input {
  width: calc(100% - 100px);
  display: block;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 18px;
  font-size: var(--para-size);
  padding-left: 0;
  background-color: transparent;
  font-weight: 300;
}
.ctaInput input::placeholder {
  color: #fff;
  text-transform: capitalize;
}

.ctaInput button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  transition: all 0.3s;
}
.ctaInput button:hover {
  background-color: #fff;
}

.ctaInput button span {
  line-height: 0;
}

.ftrLog {
  padding-right: 85px;
}

.ftrSocial ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ftrSocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s;
}

.ftrSocial a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.ftrSocial {
  margin-top: 20px;
}

.ftrCont h4 {
  font-size: 20px;
  color: rgba(140, 140, 140, 1);
  margin-bottom: 20px;
  font-weight: 400;
}

.ftrCont {
  padding-top: 80px;
}

.ftrCareer a {
  color: rgba(6, 120, 221, 1);
  border-bottom: 1px solid rgba(6, 120, 221, 1);
  display: block;
  width: fit-content;
  margin-top: 15px;
}

.ftrLnk a {
  color: #fff;
  display: block;
  margin-bottom: 14px;
}

.ftrContact p {
  margin-bottom: 14px;
}

.ftrLnk {
  padding-left: 40px;
}

.ftrContain {
  padding-top: 40px;
}

/* PROJECT PAGE */
.pageHeader {
  min-height: 800px;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  color: #fff;
  font-size: var(--sec-head-size);
}

.pgCrmb a {
  color: #fff;
  text-transform: capitalize;
}

.pageHeader::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.5) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
  z-index: 2;
}

.pgHdCont {
  padding-bottom: 160px;
  position: relative;
  z-index: 11;
}

.pgHdCont p {
  font-size: var(--sub-head-size);
  margin-top: 14px;
  font-size: 25px;

  line-height: 1.2;
  color: #ffff;
}

.pgHdCont h1 {
  font-size: 72px;
}

.pageHeader::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background: linear-gradient(
    360deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsl(0deg 0% 0% / 50%) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
  z-index: 2;
}

.projects {
  background-image: url(../assets/headerbg/projects.jpg);
}

.portPgMainImg {
  margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}


.portPgMainImg::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, hsla(0, 0%, 0%, 1) 0%, hsl(0deg 0% 72.44% / 25%) 50%, hsla(0, 0%, 100%, 0) 100%)
}

.iso-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.iso-nav li {
  cursor: pointer;
}

.iso-nav .active {
  font-weight: 500;
}

.portfolioPg {
  padding-bottom: 100px;
}
.portfolioPg .loadMore{
  margin-top: 80px;
}
.ripple {
  position: relative;
  text-decoration: none;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1.3s linear infinite;
}

.DetBtn {
  color: var(--primary-color);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  width: 70px;
  height: 70px;
  transform: translateX(4px);
}

.portPgMainImg:hover .DetBtn {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 0 25px rgba(255, 255, 255, 0);
  }
}

.projTgHd ul {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.projTgHd li {
  background-color: var(--primary-color);
  padding: 6px 20px;
  color: #fff;
  border-radius: 30px;
}

.projTgHd .date {
  background-color: rgba(0, 75, 141, 0.3);
  color: var(--primary-color);
}

.proInfRw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projTitle {
  margin-bottom: 36px;
}

.projTitle h2 {
  font-size: var(--main-head-size);
  font-weight: 500;
  margin-bottom: 14px;
}

.proItm h5 {
  color: #767676;
  font-weight: 300;
  margin-bottom: 10px;
}

.portLgImg {
  position: relative;
  margin: 40px 0;
}

.portLgImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.portLgImg::after {
  content: "";
  display: block;
  padding-top: 40%;
}

.projAchievement {
  background-color: rgba(0, 75, 141, 0.05);
  padding-bottom: 120px;
  padding-top: 100px;
  margin-top: 80px;
}

.projAchievement h3,
.projGallery h3,
.projServices h3,
.relHd h3,
.projDetCnt h3,
.projScop h3 {
  font-size: var(--sec-head-size);
  font-weight: 500;
}
.mobGallery {
  display: none;
}
.mobRelated { display: none; }
.achCnt p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--drake-black);
}

.achCnt p span {
  display: block;
}

.achCnt {
  position: relative;
  padding-left: 65px;
}

.achCnt::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 50px;
  padding: 20px;
  background-color: var(--primary-color);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 15px;
  text-align: center;
  background-position: center;
  background-image: url(../assets/icon/Path13.png);
}

.projAchievement h3,
.projGallery h3,
.relHd h3 {
  margin-bottom: 50px;
}

.galImg {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.galImg::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.galImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relHd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projDetCnt h3 {
  margin-bottom: 30px;
}

.projDetCnt p,
.projServices p {
  color: var(--para-color);
  padding-bottom: 14px;
}

.projServices h3 {
  margin-bottom: 30px;
}

.projScop {
  padding-top: 80px;
}

.projScop ul li {
  position: relative;
  margin-bottom: 20px;
  color: var(--para-color);
  padding-left: 30px;
}

.projScop li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../assets/icon/pt-ico.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.projRelated {
  padding-bottom: 100px;
}
.projRelated .relHd h3{
  margin-bottom: 0;
}
.projRelated .relHd{
  margin-bottom:50px;
}

.prSerlst ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.prSerlst li {
  position: relative;
  padding-left: 30px;
  width: 25%;
  margin-bottom: 28px;
  font-weight: 500;
  font-size: 18px;
}

.prSerlst li:last-child {
  margin-bottom: 0;
}

.prSerlst li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../assets/icon/tick.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.mfp-arrow-left.custom-arrow {
  left: 18px;
}

.mfp-arrow-right.custom-arrow {
  right: 18px;
}

.mfp-arrow.custom-arrow::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-style: normal;
  speak: none;
  display: inline-block;
  line-height: 1;
  font-size: 40px;
  color: #fff;
}

.mfp-arrow-left.custom-arrow::before {
  content: "\f104";
}

.mfp-arrow-right.custom-arrow::before {
  content: "\f105";
}

.mfp-content .mfp-arrow.custom-arrow {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.mfp-content:hover .mfp-arrow.custom-arrow {
  opacity: 1;
  pointer-events: auto;
}

.mfp-arrow-left:after,
.mfp-arrow-right:after {
  display: none !important;
}

/* ASSOCIATION PAGE */
.association {
  background-image: url(../assets/headerbg/association.jpg);
}

.clientPg {
  background: rgba(0, 75, 141, 0.05);
  padding-bottom: 100px;
}

.ClientLstPg {
  padding-bottom: 100px;
}

.abtScHd .abtContHd {
  padding-left: 0;
  margin-bottom: 34px;
}

.clientPgCont h3 {
  font-weight: 400;
  font-size: var(--sub-head-size);
  margin-bottom: 14px;
}

.clientPgCont p {
  padding-bottom: 18px;
}

.clientImg img {
  width: 80%;
  display: block;
  margin-left: auto;
}

.clientImg {
  position: relative;
}

.cli-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.cli-nav li {
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  font-size: 18px;
}

.cli-nav li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.cli-nav .active::after {
  width: 100%;
}

.cli-nav .active {
  font-weight: 500;
}
.cliRw{
  display: flex;
    margin-right: -12px;
  margin-left: -12px;
  flex-wrap: wrap;
}
.cliMnbr {
  position: relative;
  min-height: 520px;
}
.cliMnbr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 18%;
  width: 1px;
  height: 100%;
  background-color: #f5f5f5;
}
.cliMnbr::after {
  content: "";
  display: block;
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
}
.cliFsbr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 39%;
  width: 1px;
  height: 100%;
  background-color: #f5f5f5;
}
.cliFsbr::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 33%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
}
.cliSnbr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 40%;
  width: 1px;
  height: 100%;
  background-color: #f5f5f5;
}
.cliTrbr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 18%;
  width: 1px;
  height: 100%;
  background-color: #f5f5f5;
}

.cliCount {
  position: absolute;
  background-color: #fff;
  padding: 26px;
  bottom: 40px;
  left: 50px;
  max-width: 180px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}

.cliCount h3 {
  font-size: 40px;
  font-weight: 300;
  color: var(--primary-color);
}

.cliCount p {
  font-size: 16px;
  color: var(--para-color);
}

/* MEDIA CENTER PAGE */
.media {
  background-image: url(../assets/headerbg/media.jpg);
}

.mediaPg {
  padding-bottom: 100px;
}

.mediaContain .newsBlk {
  margin-bottom: 34px;
}

.loadMore button {
  border: none;
  background-color: transparent;
  color: var(--drake-black);
  text-transform: uppercase;
  font-size: var(--para-size);
  cursor: pointer;
  font-family: var(--primary-font);
  border-bottom: 1px solid var(--drake-black);
  margin: auto;
  display: block;
  margin-top: 30px;
}

/* MEDIA DETAIL PAGE */
.mobNews { display: none; }
.newsContent h2 {
  margin-bottom: 24px;
}

.newsContent p,
.newsBody p {
  color: var(--para-color);
  padding-bottom: 14px;
}

.newsBody {
  margin-top: 20px;
}

.newsContent p strong {
  font-weight: 500;
}

.newsContImg {
  position: relative;
}

.newsContImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.newsContImg::after {
  content: "";
  display: block;
  padding-top: 70%;
}

.newsDate {
  position: absolute;
  background-color: #fff;
  padding: 14px;
  bottom: 0;
  right: 30px;
  text-align: center;
}

.newsDate h4 {
  font-size: var(--sec-head-size);
  font-weight: 400;
}

.nwsShare ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nwsShare li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--drake-black);
  color: var(--drake-black);
  transition: all 0.3s;
}

.nwsShare li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.nwsMrBlk {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nwsMore a {
  display: block;
  width: fit-content;
  border-bottom: 1px solid var(--drake-black);
  text-transform: uppercase;
}

.nwOpt {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nwOpt a span {
  font-size: 13px;
}

.newsMore {
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.newsRecent {
  padding-bottom: 100px;
  padding-top: 0;
}

.newsRecent .abtScHd {
  margin-bottom: 40px;
}

/* CONTACT PAGE */
.contact {
  background-image: url(../assets/headerbg/contact.jpg);
}

.contactPg {
  background-color: rgba(0, 75, 141, 0.05);
  padding-bottom: 100px;
}

.cntInp input,
.cntInp textarea {
  display: block;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  border: none;
  resize: none;
}

.contactInpBlk .inpBlk {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 16px;
}

.contactInpBlk .cntInp {
  width: 100%;
}

.cntInp textarea {
  min-height: 180px;
}

.contactForm {
  max-width:820px;
}
.contactForm p {
  padding-top: 20px;
  padding-bottom: 35px;
  font-weight: 500;
}
.cntInp input::placeholder{
  color: rgba(118, 118, 118, 1);
}
.cntInp button {
  display: block;
  width: fit-content;
  padding: 12px 30px;
  border: 1px solid var(--drake-black);
  color: var(--drake-black);
  background-color: transparent;
  font-family: var(--primary-font);
  margin-top: 28px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.cntInp button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.cntInfBlk {
  padding: 24px;
  border: 1px solid rgba(205, 205, 205, 0.3);
  transition: all 0.3s;
}

.cntInfHd {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cntIco {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
}

.cntInfHd h4 {
  font-size: 24px;
  font-weight: 500;
}

.cntInfHd h4 span {
  display: block;
}

.cntInfBlk {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  height: 100%;
}

.cntInfCont .cntPhone {
  font-weight: 500;
  font-size: 28px;
}

.cntInfCont a {
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
}

.cntInfCont p {
  font-weight: 400;
  font-size: 16px;
  color: var(--drake-black)
}

.contactInformation .col-md-3 {
  margin-bottom: 24px;
}

.contactInformation {
  padding-bottom: 90px;
}

.cntInfBlk:hover {
  border: 1px solid var(--primary-color);
  background-color: rgba(0, 75, 141, 0.05);
}
.contactInfo p{
  margin-bottom: 34px;
  color:var(--drake-black);
  font-weight: 500;
}
 .contactInfo h2{
  padding-bottom: 24px;
 }
/* CAREER PAGE */
.careers {
  background-image: url(../assets/headerbg/careers.png);
}

.careerImg img,
.careerOppImg img {
  width: 100%;
  height: 100%;
}

.careerCont {
  padding-right: 80px;
}

.careerCont h3 {
  font-weight: 400;
  font-size: var(--sub-head-size);
  margin-bottom: 30px;
}

.careerCont p {
  color: var(--para-color);
  margin-bottom: 40px;
}

.crrOppCont p {
  color: var(--para-color);
  padding-bottom: 20px;
}

.crrOppCont p:last-child {
  padding-bottom: 0;
}

.careerPg .row,
.careerOpp .row {
  align-items: center;
}

.careerOpp {
  background: rgba(0, 75, 141, 0.05);
  margin-top: 80px;
  padding-bottom: 100px;
}

.whWrkIco img {
  width: 50px;
  transition: all 0.3s;
}

.whWrkBlk:hover img {
  filter: invert(99%) sepia(98%) saturate(2%) hue-rotate(335deg)
    brightness(108%) contrast(100%);
}

.whWrkBlk:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.whWrkBlk:hover p {
  color: #fff;
}

.whWrkBlk {
  padding: 24px;
  border: 1px solid rgba(205, 205, 205, 0.3);
  height: 100%;
  transition: all 0.3s;
}

.whWrkIco {
  margin-bottom: 50px;
}

.whyWork .col-md-3 {
  margin-bottom: 24px;
}

.whyWork .abtScHd {
  text-align: center;
  margin-bottom: 60px;
}

.whyWork .abtScHd p {
  max-width: 700px;
  margin: auto;
  margin-top: 18px;
  color: var(--para-color);
}

.whWrkBlk p {
  font-size: 18px;
}

.whyWork {
  padding-bottom: 100px;
}

.careerApply {
  background: rgba(0, 75, 141, 0.05);
  padding-bottom: 100px;
}

.careerApply .abtContHd {
  text-align: center;
}

.careerApply p {
  max-width: 1200px;
  margin: auto;
  color: var(--para-color);
  margin-top: 18px;
}

.jobOpenContain h2 {
  text-align: center;
}

.jobOpenContain {
  padding-top: 50px;
}

.srchInp input,
.srchInp select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #d4d2d2;
}

.srchBlk {
  padding: 40px 0;
}
.srchInp select {
  width: 100%;
  background: white url("../assets/icon/select-arrow.svg") no-repeat right 15px
    center;
  appearance: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  cursor: pointer;
}

.srchLyr,
.srchInp {
  position: relative;
}

.srchLyr img {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 25px;
}

.jbBlkCrd {
  background-color: #fff;
  padding: 36px;
  border: 1px solid #d4d2d2;
  margin-bottom: 24px;
  height: 100%;
}
.jobContainer .col-md-6{
  margin-bottom: 24px;
}

.jbhd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
}

.jbhd .date {
  color: var(--para-color);
}

.jbhd .priority {
  background-color: #c8102e;
  padding: 8px 12px;
  color: #fff;
}

.jbCnt h3 {
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 12px;
}

.jbLoc ul {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jbLoc li img {
  width: 16px;
}

.jbLoc li span {
  position: relative;
  top: 2px;
}

.jbLoc li {
  color: var(--primary-color);
  background-color: rgba(2, 103, 255, 0.1);
  padding: 6px 10px;
  color: var(--drake-black);
}

.jbCnt p {
  color: var(--drake-black);
  font-weight: 300;
  padding-bottom: 28px;
}

.joinCareer {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding-bottom: 120px;
}

.joinCareer h2 {
  margin-bottom: 24px;
}

.joinCareer p {
  font-size: 18px;
  color: #fff;
}

.secoBtn a {
  padding: 12px;
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  transition: all 0.3s;
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
}

.secoBtn a:hover {
  background-color: #fff;
  color: var(--drake-black);
}

.joinCarSec {
  padding-bottom: 100px;
}

.joinCarSec .row {
  align-items: center;
}

.joinCarCont h2 {
  padding-bottom: 28px;
}

.joinCarCont p {
  color: var(--para-color);
}
.joinCarImg{
  position: relative;
  overflow: auto;
}
.joinCarImg::after{
  content: "";
  padding-top: 50%;
  display: block;
}
.joinCarImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.joinCarCont{
  padding-left: 50px;
}

/* CAREER DETAILS PAGE*/
.jbDetHd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.jbDetHd .date{
  color: #767676;
}

.bkLnk a {
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.jbDetHd h2 {
  max-width: 1080px;
}

.jbDtCont {
  padding-top: 40px;
}

.jbDtCont h3 {
  font-size: var(--sub-head-size);
  font-weight: 500;
  margin-bottom: 12px;
}

.jbDtCont p,
.jbDtCont li {
  font-weight: 300;
}

.jbDtCont ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.5;
}

.jbDtCont li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../assets/icon/tick.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.jbDtCont ul {
  margin-top: 24px;
}

.qualDt li::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 19px;
  background-image: url(../assets/icon/rg-arrw.svg);
  background-size: contain;
  background-repeat: no-repeat;
}


.jbDetailSec {
  padding-bottom: 130px;
}

.applyBtn button,
.applyBtn a {
  background-color: var(--primary-color);
  padding: 12px 24px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  width: fit-content;
  border: 1px solid var(--primary-color);
  margin-top: 60px;
  transition: all 0.3s;
  cursor: pointer;
}

.applyBtn button:hover {
  background-color: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.jbFrmRw{
  display: flex;
  align-items: center;
  gap:60px;
}
.intl-tel-input,
.iti{
  width: 100%;
}
.iti__country-name,
.iti__dial-code{
  color: var(--drake-black);
}
.crInp label {
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 16px;
}

.crInp input {
  width: 100%;
  border: none;
  padding: 14px;
  font-size: 16px;
}
.iti__selected-flag::after{
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  background-color: #ccc;
  width: 1px;
  height: 25px;
}
.iti__selected-flag{
  padding: 0 9px 0 8px !important;
}
.iti__country-list{
  max-width: 480px;
}
.crInp {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.iti--separate-dial-code .iti__selected-flag{
  background-color: #fff !important;
  color: var(--drake-black);
}

.upload-box {
  border: 1px dashed transparent;
  border-radius: 6px;
  background-color: #004a8f;
  padding: 60px;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  border-image: repeating-linear-gradient(
41deg, #ccc 0, #ccc 10px, transparent 10px, transparent 20px) 1 round
}
.crInpMb label{
  margin-bottom: 18px;
}
.upload-box:hover {
  background: #0059a9;
  cursor: pointer;
}

.upload-content {
  text-align: center;
}

.upload-content .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 0px;
}

.upload-content p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.upload-box.dragover {
  border-color: #fff;
}

.careerForm {
  background-color: var(--primary-color);
  max-width: 1100px;
  padding: 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 22;
  width: 100%;
}

.careerForm.show {
  opacity: 1;
  visibility: visible;
}

.carFrmBlk {
  text-align: center;
  margin-bottom: 40px;
}

.carFrmBlk p {
  color: #fff;
  padding-top: 14px;
  font-size: 20px;
  font-weight: 300;
}
.iti__arrow{
  background-image: url(../assets/icon/select-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px !important;
  height: 10px !important;
  border: none !important;
    margin-top: 4px !important;
    margin-left: 8px !important;
}

.crInpp button {
  background-color: #fff;
  color: var(--primary-color);
  margin-top: 28px;
  transition: all 0.3s;

}

.crInpp button:hover {
  background-color: var(--primary-color);
  border: 1px solid #fff;
  color: #fff;
}

.crInpp {
  margin-bottom: 0;
}

.crFrmClse {
  position: absolute;
  right: 40px;
  top: 24px;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009d;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* SERVICE  */

.dkServHe {
  background-image: url(../assets/headerbg/service.jpg);
}

.serContent h1 {
  font-size: var(--sec-head-size);
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.serContent p {
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.serContent {
  margin-bottom: 120px;
}

.serContent p a {
  color: #fff;
}

/* OUR SERVICE */

.dkOurSevice {
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.ourContent h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.ourContent h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 14px;
}

.ourCntImaage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ourImg01 {
  position: relative;
  padding-right: 200px;
}
/* HANISHA */
.ourImg02 {
  position: absolute;
  right: 150px;
  z-index: 2;
}

.ourImg02 img {
  width: 400px;
}

/* OUR SERVISE CATAGORY */

.dkOurSevice {
  background-color: #f2f6f9;
}

.ourCataText h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.ourCataText h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
}

.ourText {
  margin-bottom: 60px;
}

.align-items {
  align-items: end;
}

.cataMrgin {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cataImage{
  position: relative;
  overflow: hidden;
}
.cataImage::after{
  content: "";
  display: block;
  padding-top: 140%;
}
.cataImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.cataImage{
  line-height: 0;
}

.catagory {
  position: relative;
  margin-left: 1px;
  transition: all 1.2s;
}
.cataSlide .col-lg-3:nth-child(1) .catagory {
  margin-left: 0;
}

.catagory::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    358deg,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 35%, 0.088) 50%,
    hsla(0, 0%, 100%, 0) 100%
  );
  left: 0;
  display: block;
  z-index: 1;
  bottom: 0;
}
.cataImgText {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 24px 34px;
  width: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cataImgText h4 {
  font-size: var(--sub-head-size);
  font-weight: 500;
}

.catagory:hover .DetBtn {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 0 25px rgba(255, 255, 255, 0);
  }
}

.textSpan {
  display: block;
}
.catagory .DetBtn{
  width: 54px;
    height: 54px;
}
/*  */
.col-md-5ths {
  width: 20%;
  text-align: center;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.col-md-5ths:last-child {
  border-right: 0;
}
.col-md-5ths:nth-child(5) {
  border-right: 0;
}
.col-md-5ths:nth-child(6),
.col-md-5ths:nth-child(7),
.col-md-5ths:nth-child(8),
.col-md-5ths:nth-child(9),
.col-md-5ths:nth-child(10) {
  border-bottom: 0;
}

.orSectImg img {
  width: 55px;
  display: block;
  margin: auto;
}

.ourSect {
  padding: 30px;
  padding: 30px;
  transition: all 1s;
  position: relative;
}

.ourSect::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(178deg, #ffffff 0%, #d7dee4d3, #004b8d8a 100%);
  transition: all 0.3s;
  height: 0;
}
.ourSect:hover::after {
  height: 100%;
}
.ourSect p {
  padding-bottom: 30px;
  color: #000;
  font-weight: 500;
  font-size: var(--sub-in-heading);
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.orSectImg {
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.align-items-center {
  align-items: center;
}

.dkOurUsp {
  background-color: rgba(0, 75, 141, 1);
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 80px;
  position: relative;
}

.uspContain h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 300;
  color: #ffffff;
  font-size: var(--para-size);
}

.uspContain h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.stats-section {
  text-align: center;
  max-width: 900px;
}

.sub-title {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.uspImage {
  line-height: 0;
}

.uspImageCol {
  padding-left: 0 !important;
}
.uspBgdCol {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.dkOurUsp .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.uspBgdIcn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.uspBgdIcn img {
  width: 90%;
  display: block;
  margin-left: auto;
}
.uspContain .col-md-6 {
  margin-bottom: 30px;
}
.uspContain{
  padding-left: 40px;
}
.stat-box {
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.icon {
  margin-bottom: 35px;
}

.icon img {
  width: 55px;
  height: 55px;
}

.count-wrap {
  font-size: 57px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: #ffffff;
}

.prefix {
  font-size: 44px;
  font-weight: 300;
}

.count {
  font-size: 44px;
  font-weight: 300;
}

.suffix {
  font-size: 44px;
  font-weight: 300;
  margin-left: 2px;
}

.b-suffix {
  font-size: 24px;
  vertical-align: top;
  margin-left: 3px;
  font-weight: 400;
}

.stat-box p {
  margin-top: 18px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 300;
  color: #ffffff;
}

/* SERVICE OIL & GAS */

.dkOilGasHe {
  background-image: url(../assets/headerbg/oil&gas.jpg);
}

/* OILGAS */

.oilGasText h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.oilGasText h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}

.oilGasImage {
  padding-left: 100px;
}

.oG {
  margin-top: 35px;
}

.oilText h5 {
  font-size: 24px;
  font-weight: 500;
}

/* OIL & GAS SERVICES */

.dkOilGasServList {
  background-color: #f2f6f9;
  margin-top: 80px;
  padding-bottom: 80px;
}

.listHead h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.listHead h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
}

.listHead {
  margin-bottom: 50px;
}

.servList {
  padding-top: 50px;
}

.listImage {
  padding-bottom: 15px;
}

.lists h4 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.listss h4 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 46px;
  transition: all 0.3s;
}

p {
  font-size: var(--para-size);
  line-height: 26px;
  color: #767676;
}

.listss:hover h4 {
  color: #004b8d;
}

.lists:hover h4 {
  color: #004b8d;
}

/* COMPANY PROFILE */

.dkCOMPanyPrf {
  margin-top: 90px;
}
.companyPrfl {
  background-color: #004b8d;
  position: relative;
  padding: 80px;
  width: 100%;
}
.companyPrfl-blk {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.prflText {
  width: 65%;
}
.prfl {
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 0;
}
.prfl img {
  width: 550px;
}
.prflText h2 {
  color: #ffffff;
}

.prflText p {
  color: #fff;
  margin-bottom: 35px;
}

.dldBtn {
  display: block;
  color: #ffffff;
  border-bottom: 2px solid #ffff;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capaMenu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.capaMenu li {
  position: relative;
  padding: 25px;
  color: #222;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.capaMenu li:hover {
  color: #0056b3;
  background-color: #f8fbff;
}

.capaMenu li:hover::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../assets/service/oil&gas/capaicon.png");
  /* 👈 your icon file path */
  background-size: contain;
  background-repeat: no-repeat;
}

/* STRENGTH */

.dkStrength {
  background-color: #f2f6f9;
  margin-top: 80px;
  padding-bottom: 100px;
}
.strength h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.strength h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  margin-bottom: 100px;
}

.strKey {
  align-items: center;
  text-align: center;
  margin: auto;
  padding: 10px 30px;
}

.strKey h3 {
  color: #000 !important;
}
.strKey h3 span {
  display: block;
}

.strImg {
  padding-bottom: 28px;
}

.strImg img {
  width: 80px;
}

.menuItem {
  font-size: 20px;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 35px 0 35px 45px;
  border-bottom: 1px solid #f0e8e8;
  position: relative;
}

.menuItem:hover {
  color: #0056b3;
}

.menuItem.active::before,
.menuItem:hover::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("../assets/service/oil&gas/capaicon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.menuItem.active {
  color: #0056b3;
  font-weight: 400;
}
.rightContent {
  height: 100%;
}
.rightContent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
/* COMMITMENT PAGE */

.dkCommitHe {
  background-image: url(../assets/headerbg/commitment.jpg);
}

.sustainibility h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.sustainibility h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}

.sustainibility p {
  margin-bottom: 10px;
}

.sustainibility a {
  text-decoration: underline;
  color: #767676;
}

.sustainibility h4 {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 15px;
}

.sustainImg {
  padding-top: 60px;
}

.sustainsImg {
  padding-bottom: 35px;
}

.sustainbile {
  background-color: #f2f6f9;
  margin-top: 80px;
  padding-bottom: 80px;
}

.sustainImage {
  padding-top: 60px;
}
.sustainImage img,
.sustaiImage img {
  width: 100%;
}

.sustaiText h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.sustaiText h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}

.sustaiText {
  padding-bottom: 40px;
  padding-top: 145px;
}

.susSpn {
  display: block;
}

.sustainPoint {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.sustainPoint p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.susImg {
  background-color: #004b8d;
  padding: 8px 15px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.susImg img {
  width: 34px;
}

.LastPart {
  margin-top: 90px;
}

.LastPart p {
  margin-bottom: 10px;
}

/* OUR APPROCH */

.dkApprochHe {
  background-image: url(../assets/headerbg/approchhero.jpg);
}

.dkOurLeaders {
  padding-bottom: 80px;
}

.ourLead h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.ourLead h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}

.ourLead p {
  margin-bottom: 10px;
}
.ourLeadImage img {
  display: block;
  margin: auto;
}
/* MANAGEMENT */
.dkManageHe {
  background-image: url(../assets/headerbg/managementHero.jpg);
}

.dkBoardOfDir {
  background-color: #f2f6f9;
  padding-bottom: 50px;
}
.board {
  position: relative;
  z-index: 2;
}
.leftContent {
  flex: 1 1 50%;
}

.sub-title {
  font-size: 14px;
  color: #0071bc;
  font-weight: bold;
  margin-bottom: 10px;
}

.descBlock h4 {
  margin-bottom: 5px;
}

.descBlock {
  margin-bottom: 20px;
}

.dkleaders-section {
  padding-bottom: 120px;
}

.right-content {
  flex: 1 1 40%;
  position: relative;
}

.imageBox img {
  width: 50%;
}

.blck {
  display: block;
}

.statsCard {
  position: absolute;
  top: 49%;
  right: 110px;
  transform: translateY(-50%);
  background: white;
  padding: 30px;
  width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
}

.bg-logo {
  position: absolute;
  width: 200px;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.statItem h3 {
  font-size: 25px;
  font-weight: bold;
  color: #004b8d;
  margin: 0;
}

.plus {
  color: #004b8d;
  font-size: 24px;
  font-weight: bold;
}

.dkBoardOfDir {
  position: relative;
}
.boardPng {
  position: absolute;
  width: 75px;
  bottom: 11px;
  right: 0;
  z-index: 0;
  margin: auto;
  opacity: 0.1;
}

.boardsPng {
  position: relative;
}
.board .justify {
  justify-content: center;
}
.boardsPng {
  position: absolute;
  width: 75px;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: auto;
  opacity: 0.1;
}

.drBoard h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.drBoard h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
}

.drBoard {
  padding-bottom: 80px;
}

.board {
  text-align: center;
}

.board h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004b8d;
}

.firstRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 0 auto 40px;
  margin-bottom: 25px;
}

.secondRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.member {
  position: relative;
}

.member:hover .textDeteal {
  background-color: #004b8d;
  color: #ffffff;
}

.member:hover h3 {
  color: #ffff;
}

.member:hover .title {
  color: #ffff;
}

.member:hover .moreIcn {
  background-color: #ffffff;
  color: #004b8d;
  transition: all 0.3s;
}

.member:hover .detealBtn {
  color: #ffff !important;
}

.member img {
  width: 100%;
  height: auto;
}

.member h3 {
  margin-top: 15px;
  font-size: 16px;
  color: #0a2342;
  font-weight: 500;
}

.member .title {
  font-weight: 400;
  color: #004b8d;
}

.textDeteal {
  display: grid;
  background-color: #ffffff;
  width: calc(100% - 50px);
  padding: 10px;
  margin: auto;
  bottom: 60px;
  right: 0;
  left: 0;
  z-index: 2;
  min-height: 150px;
  position: relative;
  transition: all 0.3s ease;
}

.logImg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 14px;
}

.logImg img {
  width: 30%;
}

.detealBtn {
  color: #004b8d !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 10px;
}

.textDeteal p {
  color: var(--drake-black);
  font-weight: 300;
}

.member:hover p {
  color: #ffff;
}

.moreIcn {
  background-color: #004b8d;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #ffffff;
  font-size: 8px;
  transition: all 0.3s;
}
.awLn {
  position: relative;
  padding-top: 100px;
}
.awLn.awLn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 49%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background-color: rgb(23 23 23 / 4%);
  z-index: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modalContent {
  background: #fff;
  margin: 3% auto;
  width: 75%;
  max-width: 80%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.modalContent .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 10px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.modalContent .close:hover {
  color: #ffcc00;
}

.modalHeader {
  background: #0f509e;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  gap: 20px;
}


.modalHeader::after{
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 80px;
  background-image: url(../assets/management/smollicn.png);
  background-size: contain;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
}
.modalPhoto {
  width: 108px;
  height: 130px;
  object-fit: cover;
}

.headerRight {
  flex: 1;
}

.headerRight .position {
  font-size: 14px;
  text-transform: uppercase;
  color: #d6e6ff;
  margin-bottom: 5px;
  font-weight: 500;
}

.headerRight h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.modalBody {
  padding: 40px;
  background: #fff;
  color: #333;
  line-height: 1.7;
  max-height: 450px;
  overflow-y: scroll;
  font-size: 15px;
}

.modalBody::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

.modalBody::-webkit-scrollbar-track {
  background: #d9d9d9;
}

.modalBody::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.modalBody::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.modalBody p {
  padding-bottom: 14px;
}

.closeLink {
  text-transform: uppercase;
  font-weight: 600;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  margin-top: 30px;
}

.closeLink:hover {
  color: #0f509e;
}

.dkExicutive {
  position: relative;
}

.excutiPng {
  width: 60px;
  position: absolute;
  top: 50px;
  left: 2px;
  z-index: 1;
  opacity: 0.1;
}

.excutiPng img {
  width: 100%;
}

.excutivPng {
  width: 60px;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1;
  opacity: 0.1;
}

.blocks {
  display: block !important;
  color: #000 !important;
}

.exicHead h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.exicHead h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
}

.exicHead {
  padding-bottom: 70px;
}

.padd {
  padding-bottom: 35px;
}

.secondsRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 0 auto 40px;
  margin-bottom: 40px;
}

/* ABOUT US */

.dkAboutHero {
  background-image: url(../assets/headerbg/abouthero.jpg);
}

.dkAbouts {
  padding-bottom: 80px;
  background-color: #f2f6f9;
}

.abTexts h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}

.abTexts h2 {
  font-size: var(--main-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}

.abTexts h2 span {
  color: var(--primary-color);
}
.colam {
  display: flex;
  align-items: center;
  justify-content: center;
}

.abPthImg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.abNumberCount .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.abNumberCount .num {
  font-weight: 400;
  font-size: 40px;
  color: #222222;
  line-height: 1;
  letter-spacing: -0.5px;
}

.abNumberCount .plus {
  font-weight: 400;
  margin-left: 4px;
  font-size: 28px;
  color: #444444;
}

.abNumberCount .bat {
  color: #1a66b2;
  font-weight: 400;
  font-size: 30px;
}

.abNumberCount .currency {
  color: #1a66b2;
  font-weight: 400;
  margin-left: 6px;
  font-size: 18px;
}

.abNumberCount .label {
  font-size: 18px;
  color: #555555;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 420px) {
  .abNumberCount .num {
    font-size: 28px;
  }
}

.dkMissinVission {
  padding-bottom: 120px;
}

.miViImage {
  position: relative;
}

.spntag {
  background-color: #004b8d;
  padding: 30px 20px 30px 20px;
  width: 280px;
  position: absolute;
  bottom: -50px;
  right: -110px;
}

.spntag p {
  color: #ffff;
  margin-bottom: 25px;
  font-weight: 200;
  line-height: 23px;
}

.spntag h3 {
  color: #ffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  color: #ffff;
  font-size: 20px;
  margin-bottom: 15px;
}

.modalHeader {
  position: relative;
}
.drMv-blk {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.drMv-col {
  width: 30%;
}
.drMv-Txt {
  width: 60%;
  /* display: flex;
  justify-content: flex-end; */
}
.iconss {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 0;
}
.iconss img {
  width: 65%;
}
/* .miViText{
  padding-left: 156px;
} */
.miViText p {
  margin-bottom: 20px;
}
.miViText h3 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
}
.bcgImg {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 1;
}
.bcgImg img {
  width: 150px;
}
.dkHistory {
  background-color: #f2f6f9;
  padding-bottom: 80px;
}

.dkHistory .abtScHd {
  margin-bottom: 100px;
}
.timeline-nav .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-nav .swiper-slide-thumb-active {
  opacity: 1;
  color: #1e1d5a;
  font-weight: 700;
}

.timeline-text h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}

.timeline-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline-text h1 {
  font-size: 140px;
  color: var(--primary-color);
  font-weight: 400;
}

.timeline-image img {
  width: 100%;
}

.timeline-nav-wrap {
  height: 360px;
  position: relative;
}

.timeArrw .uparr {
  position: absolute;
  top: -30px;
  left: 40px;
  cursor: pointer;
}
.timeArrw .dwnarr {
  bottom: -30px;
  left: 40px;
  position: absolute;
  cursor: pointer;
}
.timelineYearSwiper {
  height: 100% !important;
}
.timelineYearSwiper span {
  font-size: 20px;
  font-weight: 500;
}

.timelineYearSwiper .swiper-wrapper {
  height: 100% !important;
}

.timelineYearSwiper .swiper-slide {
  height: auto !important;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.3);
}

.timelineYearSwiper .swiper-slide-thumb-active {
  opacity: 1;
  color: var(--drake-black);
  font-weight: 700;
}

.timeArrw img {
  width: 20px;
}
.dkGlobalPresence {
  padding-bottom: 80px;
}
.global h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  font-size: var(--para-size);
}
.global h2 {
  font-size: var(--sec-head-size);
  font-weight: 500;
  padding-bottom: 15px;
}
.mapSection {
  position: relative;
  flex: 3;
  background: #e9eef3;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.mapSection img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.buttons {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.mapBtn button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.mapBtn button.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.infoSection {
  flex: 1;
  background-color: #004b8d;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.infoSection h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.infoSection p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  font-weight: 300;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 25px;
  gap: 20px;
}

.statBox {
  width: 170px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.statBox .number {
  font-size: 26px;
  font-weight: 500;
}

.statBox .label {
  font-size: 15px;
}

.countries {
  margin-top: 25px;
}

.countries h3 {
  font-size: 25px;
  margin-bottom: 18px;
  font-weight: 500;
}

.countries p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
}

.containeer {
  display: flex;
  gap: 10px;
  margin: 28px 0;
}

.compIcn img {
  width: 85%;
  display: block;
  margin-left: auto;
}

.compIcn {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 1;
}

.numTex {
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 20px;
  letter-spacing: 1px;
}
.cstStats .number{
  padding-right: 35px;
}

.number {
  position: relative;
}

/* CERTIFICATIONS */
.certification {
  background-image: url(../assets/headerbg/certifications.png);
}

.certPg {
  padding-bottom: 120px;
}

.certPg .abtContHd p {
  color: var(--drake-black);
  padding-top: 24px;
}

.certCntainBlk h3 {
  font-size: var(--sub-in-heading);
  margin: 60px 0;
  font-weight: 400;
}

.cerMb h3 {
  margin-bottom: 40px;
}

.certImgBlk {
  border: 1px solid #0000001a;
  padding: 45px;
  text-align: center;
}

.certImg img {
  width: 100%;
}

.certImgBlk span {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}

.certImgBlk h4 {
  font-weight: 500;
  font-size: 24px;
}

/* CREDITORS FORM */
.creditorForm {
  background-image: url(../assets/headerbg/creditors-form.jpg);
}

.crdFrmPg {
  padding-bottom: 100px;
}

.crdFrmPg .abtContHd p {
  color: var(--drake-black);
  padding-top: 24px;
}

.crdFrmHd h3 {
  font-weight: 300;
  color: #171717;
  font-size: var(--sub-in-heading);
  font-size: 22px;
}

.crdFrmBlk {
  background-color: rgba(0, 75, 141, 0.05);
  padding: 32px;
  margin-bottom: 30px;
}

.crdFrmHd {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 48px;
}

.crdFrmOpt a {
  text-transform: uppercase;
  color: rgba(0, 75, 141, 1);
}

.crdFrmOpt {
  display: flex;
  align-items: center;
  gap: 24px;
}

.crdFrmOpt div {
  display: flex;
  align-items: center;
}

.crdFrmOpt span img {
  width: 18px;
}

.crdFrmOpt span {
  padding-left: 5px;
}

.crdSrch span img {
  width: 15px;
}

.crdSrch span {
  position: relative;
  top: 2px;
}

.crdtFrmContain {
  padding-top: 40px;
}

/* INVESTORS RELATION */

.investPg{
  padding-top: 80px;
}
.investors {
  background-image: url(../assets/headerbg/investors.jpg);
}

.invstImg img {
  width: 100%;
}

.invstData img{
  display: block;
  margin: auto;
}
.invstCont p {
  padding-bottom: 12px;
}

.shareDataImg img {
  width: 100%;
}

.finDatHd {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.finDatHd p {
  color: var(--drake-black);
  /* color: rgba(23, 23, 23, 1); */
}

.finLft {
  display: flex;
  gap: 18px;
}

.finRgt a {
  color: var(--primary-color);
}

.finDatBlk {
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.finDatCont {
  padding-top: 60px;
}

.finLft h4 {
  padding-bottom: 10px;
  font-weight: 500;
}

.finRgt a img {
  width: 18px;
  padding-left: 4px;
}
.finDatIc{
      background-color: rgba(0, 75, 141, 0.1);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcements {
  background-color: rgba(0, 75, 141, 0.05);
  padding-bottom: 100px;
  margin-top: 100px;
}

.invstSerCont {
  position: absolute;
  bottom: 0;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 22;
}

.invstSerCont h3 {
  font-size: var(--sub-head-size);
  font-weight: 500;
  color: #fff;
}

.invstSerBlk {
  position: relative;
}

.invstSerBlk:hover .DetBtn {
  opacity: 1;
  visibility: visible;
}

.invSerImg img {
  width: 100%;
}

.invSerImg {
  position: relative;
}

.invSerImg::after {
  content: "";
  display: block;
  padding-top: 90%;
}

.invSerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.invstSerBlk .DetBtn a {
  width: 55px;
  height: 55px;
}

.invstSerBlk::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00000046;
}

.invstNews {
  padding-bottom: 100px;
}
.invstNews .abtContHd{
  padding-left: 0;
}
.invstNews .hdFlx{
  margin-bottom: 40px;
}

.IntReportSec .finDatCont {
  padding: 0;
}

.IntReportSec .finRgt a,
.fnInfPg .finRgt a {
  border: 1px solid rgba(23, 23, 23, 0.1);
  padding: 8px 12px;
  border-radius: 50px;
  transition: all 0.3s;
}

.IntReportSec .finRgt a:hover,
.fnInfPg .finRgt a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.IntReportSec .finRgt a:hover img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(201deg)
    brightness(106%) contrast(106%);
}

.fnInfPg .finRgt a:hover img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(201deg)
    brightness(106%) contrast(106%);
}

.IntReportSec {
  padding-bottom: 100px;
}

.IntReportSec .finDatIc,
.fnInfPg .finDatIc {
  background-color: rgba(0, 75, 141, 0.1);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finDatIc img {
  width: 30px;
}

.IntReportSec .finLft h4 {
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 0;
}

.IntReportSec .finLft {
  align-items: center;
}

.finRghtBlk {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mobInvNews { display: none; }

/* FINANCIAL INFORMATION */

.finTabContain .finLft h4 {
  font-size: var(--sub-in-heading);
  font-weight: 400;
}

.finTabContain h2 {
  padding-bottom: 64px;
}

.finTab li {
  font-size: var(--sub-in-heading);
  transition: all 0.3s linear;
  font-weight: 400;
}

.finTab .active {
  font-weight: 500;
  color: var(--primary-color);
}

.finTab {
  margin-bottom: 90px;
}

.fnInfPg {
  padding-bottom: 100px;
}

.fnInfPg .finLft p {
  color: var(--para-color);
}

.fnInfPg .finLft h4 {
  padding-bottom: 2px;
}

.financialContain,
.annualContain {
  width: 100%;
}

/* WEB POPUP */
.webPop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  height: auto;
  z-index: 22;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.webPop::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: RGBA(0, 48, 90, 1);
  background: linear-gradient(
    180deg,
    rgba(0, 48, 90, 0) 30%,
    rgba(0, 75, 141, 1) 55%
  );
}

.webPopImg img {
  object-position: 0 -100px;
}

.webPopCont {
  color: #fff;
  position: absolute;
  bottom: 55px;
  left: 0;
  z-index: 2;
  padding: 0 40px;
  text-align: center;
}

.webPopCont h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 2px;
}

.webPopCont h3 span {
  font-weight: 600;
  display: block;
}

.webPopCont p {
  color: #fff;
  padding: 14px 0;
}

.webPopCont a {
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
}

.webPop .clsPop {
  position: absolute;
  right: 40px;
  top: 25px;
  cursor: pointer;
  z-index: 2;
}

/* AWARD PAGE (MH)*/

.dkAwardsHero {
  background-image: url(../assets/headerbg/awards.jpg);
}

.dkAwards {
  padding-bottom: 120px;
}

.Recognition {
  background-color: #f2f6f9;
  padding-bottom: 120px;
}

.awardContent {
  margin-bottom: 45px;
  padding-left: 108px;
}

.awrdsContents {
  margin-top: 30px;
}

.awsYear {
  display: flex;
  align-items: center;
  justify-content: center;
}

.awsYear h1 {
  font-size: 270px;
  color: #ebeff2;
  font-weight: 500;
}

.cpnyIcnCnts {
  display: flex;
  gap: 25px;
  padding-bottom: 20px;
}
.awsCtnts li{
    position: relative;
    padding-left: 38px;
    font-size: 17px;
    line-height:30px;
    color: #767676;
    margin-bottom: 20px;
}
.awsCtnts li::before{
  content: "";
  display: block;
  position: absolute;
    top: 3px;
    left: 0;
    width: 25px;
    height: 25px;
  background-image: url(../assets/icon/pt-ico.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.awsCtnts {
  background-color: #ffff;
  padding: 60px 60px 45px 20px;

  min-height: 300px;
}

.awsYear {
  margin-bottom: 70px;
}

.awsCtnts {
  margin-bottom: 70px;
}

.yearSpn {
  background-color: #004b8d;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: 500;
  padding: 14px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.yearSpn::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #004b8d;
  width: 120px;
  bottom: -8px;
  left: 0;
}

.year2Spn {
  background-color: #004b8d;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 5px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.year2Spn::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #004b8d;
  width: 120px;
  bottom: -8px;
  right: 0;
  z-index: 2;
}

.awardsYr {
  display: flex;
  align-items: start;
  margin-left: 55px;
    margin-top: 40px;
}
.yearAws {
  position: absolute;
  left: -60px;
  z-index: 2;
}
.year2Aws {
  position: absolute;
  right: -37px;
  z-index: 2;
}

.awardsYr2 {
  display: flex;
  align-items: start;
  justify-content: end;
  margin-right: 80px;
  margin-top: 40px;
}

.awardImage {
  display: flex;
  align-items: center;
  justify-content: end;
}
