html {
  scroll-padding-top: 74px;
}
a.more-link {
    color: white;
}
.banner-subscribe-btn {
    width: 260px;
    line-height: 55px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 60px;
    background: linear-gradient(135deg, #00B4E5, #007BFF);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 180, 229, 0.4);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 2;
}

.banner-subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
    z-index: -1;
}

.banner-subscribe-btn:hover::before {
    left: 100%;
}

.banner-subscribe-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 180, 229, 0.6);
}


.close-icon {
  position: absolute;
  top: 50px;
  right: 10px;
  font-size: 28px;
  color: #000;
}
.menu-icon,
.close-icon {
  display: none;
}
.award-box:hover p {
   color: #fff !important;   
}
.award-content h3:hover {
  color: #fff !important;
}
.award-content p:hover {
  color: #fff !important;
}
.award-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff; /* ensure white color */
  font-size: 14px;
}
/* Show on mobile only */
@media (max-width: 1024px) {

    .menu-ul .menu-item-has-children a {
        position: relative;
        top: -7px !important;
    }

  .menu-icon {
    display: block;
  }

  .close-icon {
    display: none; /* JavaScript will toggle this when menu opens */
  }

  body.menu-open .close-icon {
    display: block;
  }

  body.menu-open .menu-icon {
    display: ;
  }
}


@media (max-width: 1024px) {
      .sub-menu .menu-item-has-children:hover > .sub-menu {
    display: none !important;
  }
  
        .mobile-icon {
        margin: inherit;
        top: 7px;
        left: 350px !important;
        }
  /* Default: all submenus hidden unless .open */
  .menu-item-has-children > .sub-menu,
  .menu-item-has-children .menu-item-has-children > .sub-menu {
    position: static;
    width: 100%;
    padding: 0 20px;
  }

  .sub-menu .menu-item-has-children > .sub-menu {
    position: static;
  }

  .sub-menu {
    display: none; /* Let JS handle visibility from here */
  }
}



@media (max-width: 768px) {
	.back-to-top span {
    top: 80px!important;

}
.footer-top-section {
        padding-top: 110px!important;
    }
    .sub-menu .menu-item-has-children:hover > .sub-menu {
    display: none !important;
}
  /* Stack first-level submenus vertically on mobile */
  .menu-item-has-children > .sub-menu {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 20px;
    position: relative;
    width: 100%;
  }

  /* Show nested sub-menus (third level) directly below parent */
  .sub-menu .menu-item-has-children > .sub-menu {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: none !important;
    width: 100%;
    padding: 10px 0;
    background-color: #001C30;
    box-shadow: none;
  }

  /* Optional: spacing for nested sub-menu links */
  .sub-menu .sub-menu li a {
    padding-left: 20px;
  }
}

grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

/* === First-Level Dropdown in Grid === */
.menu-item-has-children > .sub-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
  width: 100vw;
  max-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 40px 60px;
  background-color: #00203F;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

/* === Top-Level Submenu Items === */
.menu-item-has-children > .sub-menu > li {
  list-style: none;
}

/* === Top-Level Submenu Links === */
.menu-item-has-children > .sub-menu > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-has-children > .sub-menu > li > a:hover {
  color: #00c3ff;
}

/* === Nested Submenu (Second Level) === */
.sub-menu .menu-item-has-children:hover > .sub-menu {
  display: block !important;
}

.sub-menu .menu-item-has-children > .sub-menu {
  display: none !important;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  padding: 20px;
  background-color: white;
  font-weight: 600;
  z-index: 1100;
}

/* === Nested Links === */
.sub-menu .sub-menu li a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  padding: 6px 0;
  display: block;
}

.sub-menu .sub-menu li a:hover {
  color: #00c3ff;
}
@media (max-width: 400px) {
    .header-launguage {
        padding: 0px 15px 0px 0px!important;
    }
}

@media (max-width: 876px) {
    .menu-icon.open {
        top: 100px !important;
        color: black;
		display:block;
    }
}
@media (max-width: 768px) {
  .header-contact-info {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: space-between; /* Optional: evenly distributes items */
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    padding: 5px 10px; /* 🔽 Reduce top/bottom padding */
    height: auto; /* Let it size automatically */
    box-sizing: border-box;
	  width:100%;
  }
}
@media (max-width: 768px) {
  div[style*="position: fixed"][style*="right: 0"] {
    display: fixed !important;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    z-index: 9999;
	  width:30px;
  }
	div[style*="position: fixed"][style*="right: 0"] a {padding:10px!important;}
}

@media (max-width: 480px) {
    .menu-icon {
        right: 0;
        top: 0px !important;
    }
}

@media (max-width: 768px) {
    .main {
        width: 100%;
        margin-top: 0px !important;
    }
	.header{
		position:relative!important;
		margin-top:76px!important
	}
}
/* 2 landing page */
@media (min-width: 1024px) {
  .aboutshop-features a.main-btn.bro-link {
    margin-left: 270px;
  }
}
@media (max-width: 1800px) {
    .award-content p {
        font-size: 13px;
        display: none !important;
    }
@media (max-width: 768px) {
  .aboutshop-features a.main-btn.bro-link {
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}

.aboutshop-section {
  padding: 60px 0;
  font-family: 'Nunito', sans-serif;
}

.aboutshop-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Headings */
.aboutshop-title,
.aboutshop-features-title,
.aboutshop-sectors-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

/* About Content */
.aboutshop-content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* Logo + Image */
.aboutshop-logo-factory-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.aboutshop-logo,
.aboutshop-factory-image {
  flex: 0 0 auto;
  text-align: center;
}

.aboutshop-logo img,
.aboutshop-factory-image img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* Features */
.aboutshop-features {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.aboutshop-features-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 15px;
}

.aboutshop-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 10px;
}

.aboutshop-quote {
  font-style: italic;
  font-size: 14px;
  color: #444;
  margin-top: 20px;
}

.aboutshop-quote-author {
  font-weight: bold;
  margin-top: 10px;
  font-size: 14px;
}

/* Buttons */
.aboutshop-btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #b38e2f;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.aboutshop-btn:hover {
  background-color: #a07f28;
}

.aboutshop-btn.border-only {
  background-color: transparent;
  border: 2px solid #b38e2f;
  color: #b38e2f;
}

.aboutshop-btn.border-only:hover {
  background-color: #b38e2f;
  color: #fff;
}

.aboutshop-visit-link {
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  margin-top: 30px;
  font-size: 14px;
}

/* Sectors Grid */
.aboutshop-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.aboutshop-sector-item {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.aboutshop-sector-item:hover {
  transform: translateY(-5px);
}

.aboutshop-sector-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.aboutshop-sector-item .sector-title {
  font-weight: bold;
  font-size: 15px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #eee;
}

/* Mobile */
@media (max-width: 768px) {
  .aboutshop-logo-factory-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .aboutshop-title,
  .aboutshop-features-title,
  .aboutshop-sectors-title {
    font-size: 20px;
    text-align: left;
  }

  .aboutshop-sectors-grid {
    grid-template-columns: 1fr;
  }

  .aboutshop-content {
    text-align: center;
  }
}


/*      */
.about-section {
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: #000;
}

.about-section h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.about-content {
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-logo {
  text-align: center;
  margin: 30px 0 50px;
}

.about-logo img {
  max-width: 300px;
  height: auto;
}

/* Two-column layout for features */
.features-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.features-left {
  flex: 1 1 65%;
}

.features-left h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.features-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.features-paragraph {
  font-style: italic;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

.quote-author {
  font-weight: bold;
  margin-bottom: 20px;
}

.visit-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}

/* Right-side download button */
.features-right {
  flex: 1 1 30%;
  text-align: right;
}

.btn-download {
  display: inline-block;
  background-color: #00B9F1;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
  }

  .features-right {
    text-align: left;
    margin-top: 20px;
  }
}

.landing-project-section {
  padding: 40px 20px;
}
.project-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.project-box {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.project-box:hover {
  transform: translateY(-5px);
}
.project-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.project-caption {
  padding: 10px;
  font-size: 14px;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.arrow-icon {
  color: #00bfff;
  font-size: 16px;
}
.video-thumb {
  position: relative;
}
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #00bfff;
  background: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* General Button Style */
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Border-only button (Learn More) */
.border-only {
  background-color: transparent;
  border: 1px solid #00bfff;
  color: #00bfff;
}

/* Filled button (Download Brochure) */
.bro-link {
  background-color: #00bfff;
  color: #fff;
  border: 1px solid #00bfff;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.15);
}

@media (max-width: 768px) {
  .hero-content-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-title,
  .hero-description {
    flex: 1 1 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}


.btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid #00b4e6;
  background: transparent;
  color: #000;
}

.btn-outline:hover {
  background-color: #00b4e6;
  color: #fff;
}

.btn-primary {
  background-color: #00b4e6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #009ecc;
}

.landing-project-section {
  padding: 40px 20px;
}
.project-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.project-box {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.project-box:hover {
  transform: translateY(-5px);
}
.project-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.project-caption {
  padding: 10px;
  font-size: 14px;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.arrow-icon {
  color: #00bfff;
  font-size: 16px;
}
.video-thumb {
  position: relative;
}
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #00bfff;
  background: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.hero-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.hero-image {
    height: 550px;
    width: 1200px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-title {
  flex: 1 1 45%;
  min-width: 280px;
}

.hero-title h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin: 0;
}

.hero-description {
  flex: 1 1 50%;
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Border only style */
.main-btn.border-only {
  border: 1px solid #00b9f2;
  color: #00b9f2;
  background-color: transparent;
}
.main-btn.border-only:hover {
  background-color: #00b9f2;
  color: #fff;
}

/* Filled blue button */
.main-btn.bro-link {
  background-color: #00b9f2;
  color: #fff;
}
.main-btn.bro-link:hover {
  background-color: #008bbd;
}

/* Responsive stacking */
@media screen and (max-width: 768px) {
  .hero-content-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-title, .hero-description {
    flex: 1 1 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}


.btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid #00b4e6;
  background: transparent;
  color: #000;
}

.btn-outline:hover {
  background-color: #00b4e6;
  color: #fff;
}

.btn-primary {
  background-color: #00b4e6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #009ecc;
}
@media (max-width: 768px) {
  .hero-content-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.about-section {
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: #000;
}

.about-section h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.about-content {
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-logo {
  text-align: center;
  margin: 30px 0 50px;
}

.about-logo img {
  max-width: 300px;
  height: auto;
}

/* Two-column layout for features */
.features-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.features-left {
  flex: 1 1 75%;
}

.features-left h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.features-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.features-paragraph {
  font-style: italic;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

.quote-author {
  font-weight: bold;
  margin-bottom: 20px;
}

.visit-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}

/* Right-side download button */
.features-right {
  flex: 1 1 25%;
  text-align: right;
}

.btn-download {
  display: inline-block;
  background-color: #00B9F1;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
  }

  .features-right {
    text-align: left;
    margin-top: 20px;
  }
}

.footer-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  max-width: 100%;
}

.country-item {
  display: flex;
  align-items: start;
  gap: 8px;
  line-height: 1.6;
}
.country-item img {
  margin-top: 3px;
}

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  flex-wrap: wrap;
}

.sales-label {
  font-weight: 600;
  margin-right: 5px;
  white-space: nowrap;
}

.header-contact-info a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.header-contact-info img {
  margin-right: 5px;
}

.header-top-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.page-template-page-engineering .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button { 
    display: flex;
    position: relative;
    top: -55px;
    left: 790px;
}
.contact-details-grid {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.contact-details-grid.styled-contact-grid.aos-init.aos-animate {
    margin-bottom: 50px;
}
.contact-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* widened */
  gap: 40px;
  max-width: 1600px;
  margin: auto;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #007aff;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-left-color: #007aff; /* Brighter red on hover */
}

html[lang="fr-FR"] .arthub-title-with-btn .experience-detail-btns {
    top: 0;
    right: -20px;
    /* margin-left: 20px; */
}
.page-template-page-engineering a.main-btn.border-only.external-link-flip.brochure-btn {
    position: relative;
    left: 990px;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .page-template-page-engineering .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button { 
        left: 50%;
        transform: translateX(-50%);
    }

    .page-template-page-engineering a.main-btn.border-only.external-link-flip.brochure-btn {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-template-page-engineering .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button,
    .page-template-page-engineering a.main-btn.border-only.external-link-flip.brochure-btn {
        position: static;
        display: block;
        text-align: center;
    }
}

/* Ensure buttons are aligned in a row */
.banner-construction-brochure-pages {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    align-items: center;
    margin-left: 180px;
    flex-direction: column-reverse; /* Moves "View Brochure" above other buttons */
    gap: 10px; /* Space between buttons */
}
.banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
    display: flex;
    position: relative;
    top: 56px;
    left: 240px;
}

.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
    display: flex;
    position: relative;
    top: -117px;
    left: 90px;
 }
/* Desktop styling */
/*@media (min-width: 1024px) {*/
/*    .banner-construction-brochure-pages-experience {*/
/*        margin-top: -450px !important;*/
/*        margin-left: 30px !important;*/
/*    }*/

/*    .banner-construction-brochure-pages-1 {*/
/*        margin-left: 30px !important;*/
/*    }*/
/*    .experience-project-list {*/
/*    margin-top:320px !important;*/
/*   }*/

/*}*/

@media (min-width: 1024px) {
  .banner-construction-brochure-pages-1 {
    position: fixed;
    top: 510px;
    right: calc((100vw - 930px) / 2 - 20px); /* aligns to right edge of content minus offset */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .banner-construction-brochure-pages-experience {
    position: fixed;
    top: 560px;
    right: calc((100vw - 1000px) / 2); /* slightly more right than the first */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
      body.rtl .banner-construction-brochure-pages-experience {
        top: 540px; /* reduced top value for Arabic */
    }
}
@media (min-width: 1900px) {
  .banner-construction-brochure-pages-1 {
    position: fixed;
    top: 510px;
    right: 420px; /* Adjust until it aligns with your content */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .banner-construction-brochure-pages-experience {
    position: fixed;
    top: 570px;
    right: 400px; /* Adjust as needed */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 2053px) {
      .banner-construction-brochure-pages-1 {
    position: fixed;
    top: 510px;
    right: 600px; /* Adjust until it aligns with your content */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .banner-construction-brochure-pages-experience {
    position: fixed;
    top: 570px;
    right: 580px; /* Adjust as needed */
    z-index: 9999;

    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
}
}


.banner-construction-brochure-pages-experience a {
    text-decoration: none;
    line-height: 35px;
    padding: 0 40px 0 20px;
    border-radius: 50px; /* Fully rounded button *05    text-align: center;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text breaking */
}

/* ✅ First Button - "Download Brochure" */
.bro-link {
    background-color: #0073e6; /* Blue color */
    color: #fff;
    border: 2px solid #0073e6;
}

.bro-link:hover {
    background-color: #005bb5;
    border-color: #005bb5;
}

/* ✅ Second Button - "View Brochure" (border-only style) */
.exp-brochure-btn {
    background-color: transparent;
    color: #0073e6;
    border: 2px solid #0073e6;
}

.exp-brochure-btn:hover {
    background-color: #0073e6;
    color: #fff;
}
.page-template-page-engineering .banner-construction-brochure-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column-reverse;
    gap: 10px;
    margin-left: 0px;
}
/* ✅ Mobile-friendly adjustments */


@media (max-width: 1399px) {
    .sub-banner-logo img {
    position: relative;
    margin-top: -690px;
    }
    .sub-content-text {
    width: 100%;
    padding-top: 40px;
    margin-top: -90px;
}
  .banner-construction-brochure-pages-experience {
    flex-direction: column; /* Stack buttons on small screens */
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-left: 0; /* Remove fixed left margin */
  }
      .banner-construction-brochure-pages-1 {
        flex-direction: column; /* Stack buttons on mobile */
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin-left: 0 !important; /* Remove left margin */
        margin-top: 120px;
    }

}


@media (max-width: 768px) {
    .page-template-page-construction .banner-construction-brochure-pages {
        margin-left: 0px !important;
        margin-right: 200px; !important;
    }
.banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
    display: flex
;
    position: relative;
    top: 50px;
    left: 200px;
}

	.banner-down-icon{
		display:none!important
	}


    .banner-construction-brochure-pages-experience a {
        width: 90%; /* Make buttons full-width on mobile */
        text-align: center;
    }
}
@media (max-width: 768px) {
	.hp_banner_img {height:450px;object-fit:cover;}
    .banner-construction-brochure-pages-1 a {
        width: 90%; /* Make buttons responsive */
        text-align: center;
    }
}

.banner-construction-brochure-pages-1 a {
    text-decoration: none;
    padding: 0 40px 0 20px;
    border-radius: 50px; /* Rounded buttons */
    text-align: center;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    line-height: 35px;
}

/* ✅ Second Button - "View Brochure" */
.exp-brochure-btn,
.exp1-brochure-btn {
    background-color: transparent;
    color: #0073e6;
    border: 2px solid #0073e6;
}

.exp-brochure-btn:hover,
.exp1-brochure-btn:hover {
    background-color: #0073e6;
    color: #fff;
}
/* ✅ Desktop - Align to the right */
.page-template-page-arthub .banner-construction-brochure-pages {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 15px;
}

/* ✅ View Brochure Button */
.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.border-only.external-link-flip.brochure-btn {
    position: absolute;
    top: -117px; 
    left: 77%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-align: center;
}
.page-template-page-arthub .banner-construction-brochure-pages {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 15px;
    margin-top: 30px;
}

.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
    display: flex;
    position: relative;
    top: -140px; /* adjust as needed */
    margin-right: 100px; /* adjust for smaller screens */
    left: 0;
}

.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.border-only.external-link-flip.brochure-btn {
    position: absolute;
    top: -140px; /* adjust for smaller screens */
    left: 70%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-align: center;
}

/* 1800px and up overrides */
@media (min-width: 1800px) {
    .page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
        top: -157px;
        margin-right: 300px;
        left: 320px;
    }

    .page-template-page-arthub .banner-construction-brochure-pages a.main-btn.border-only.external-link-flip.brochure-btn {
        top: -157px;
        left: 80%;
    }
}

/* ✅ Download Brochure Button */
.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-align: center;
    white-space: nowrap;
}

/* 📱 Mobile & Tablet Fixes (768px and below) */
@media (max-width: 768px) {
    .banner-construction-brochure-pages {
    display: flex;
}
    .page-template-page-arthub .banner-construction-brochure-pages a.main-btn.border-only.external-link-flip.brochure-btn {
  transform: translateX(-15%);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-align: center;
}
    .page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn.construction-parent-category-button {
        display: flex
;
        position: relative;
        top: -117px;
        left: 100px;
    }

/* ✅ Download Brochure Button */
.page-template-page-arthub .banner-construction-brochure-pages a.main-btn.bro-link.brochure-btn {
    position: relative;
    display: inline-flex;
    transform: translateX(-15%);
    align-items: center;
    text-align: center;
    white-space: nowrap;
}
    .page-template-page-arthub .banner-construction-brochure-pages {
        flex-direction: column; /* Stack buttons */
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: static; /* Remove absolute positioning */
        width: 100%;
    }

    .page-template-page-arthub .banner-construction-brochure-pages a.main-btn {
        position: static !important; /* Ensure proper stacking */
        transform: none;
        margin: 5px 0;
        width: 80%; /* Make button width responsive */
        max-width: 300px; /* Prevent extra-wide buttons */
        text-align: center;
    }
}




.related-project-container {
    display: flex;
    justify-content: flex-start; /* Aligns items to the left */
    gap: 20px; /* Space between items */
    width:850px;
    margin-left: -130px;
}

.related-project-box,
.related-project-box-video {
    flex: 1; /* Allows both boxes to take equal space */
    width: 120%;
}

.related-project-box-video {
    width: 350px; /* Set desired width for the video box */
    height: 250px; /* Set desired height for the video box */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.related-project-videos {
    width: 107%;
    height: 110%; /* Adjusts the height for the image/video */
    overflow: hidden;
}

.related-project-videos img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the full box without distortion */
}

.related-project-text {
    padding: 10px 0;
    text-align: center;
}

.term-office-buildings .banner-construction-brochure {
    display: flex;
    padding-top: 25px;
    gap: 20px;
    width: 100%;
    margin-right: 20px;
    justify-content: flex-end;
}
.banner-construction-brochure {
    display: flex;
    padding-top: 25px;
    gap: 20px;
    width: 100%;
    margin-right: 140px;
    justify-content: flex-end;
}
.tax-engineering-category .banner-construction-brochure.bro-categories {
    display: flex;
    padding-top: 25px;
    gap: 20px;
    width: 100%;
    margin-left: -130px;
}
.banner-construction-brochure-categories{
    display: flex;
    padding-top: 25px;
    gap: 20px;
    width: 100%;
}
.main {
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.container-first {
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
}

.responsive-img {
  width: 100%;
}

.second-btn {
  padding: 0 25px;
  line-height: 55px;
  color: #fff;
  background-color: #00B4E5;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}


.second-btn::after {
  content: "";
  width: 0px;
  position: absolute;
  background-color: #000000;
  left: 0;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.second-btn:hover::after {
  width: 100%;
}

.second-btn span {
  position: relative;
  z-index: 2;
}


.banner {
  width: 100%;
  /*min-height: 80vh;*/
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
}

.guiness-img {
  width: 125px;
  position: absolute;
  bottom: 35px;
  right: 5%;
  z-index: 99;
}

.banner-title {
  font-family: "Montserrat", sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.banner-content {
  font-family: "Montserrat", sans-serif !important;
  text-transform: uppercase !important;
}

.banner-down-icon {
  width: 62px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 99;
}

.banner-down-icon::after {
  content: "";
  width: 15px;
  height: 79px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  background-image: url(../images/arrow-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 99;
  animation: MoveUpDown 2s linear infinite;
}


.inner-down-icon {
  width: 62px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 80px;
  z-index: 99;
}

.inner-down-icon::after {
  content: "";
  width: 15px;
  height: 79px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  background-image: url(../images/arrow-black.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 99;
  animation: MoveUpDown 2s linear infinite;
}


@keyframes MoveUpDown {

  0%,
  100% {
    bottom: 20;
  }

  50% {
    bottom: 30px;
  }
}

.footer {
  padding-top: 80px;
  width: 100%;
  overflow: hidden;
}

.footer .container {
  max-width: 1650px;
}

.footer-top-section {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.back-to-top {
  width: 90px;
  height: 138px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  text-align: center;
}

.back-to-top span {
  color: #000;
  position: absolute;
  bottom: 0;
  opacity: 0.6;
  font-size: 15px;
  top: 120px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: block;
}

.back-to-top::after {
  content: "";
  width: 15px;
  height: 79px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  background-image: url(../images/back-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 99;
  animation: MoveUp 2s linear infinite;
}

@keyframes MoveUp {

  0%,
  100% {
    bottom: 30;
  }

  50% {
    bottom: 40px;
  }
}

.call-btn {
  display: block;
  font-size: 24px;
  line-height: 27px;
  padding-left: 32px;
  font-weight: 500;
  color: #00B4E5;
  margin-left: auto;
  background-image: url(../images/call-icon.png);
  background-repeat: no-repeat;
  background-position: left top 2px;
  height: 30px;
}

.footer-second-section {
  width: 100%;
  padding: 60px 0 100px;
  align-items: flex-start;
}

.footer-news-letter-wrap {
  width: 29%;
}

.footer-news-letter-wrap p {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.footer-news-letter-wrap span {
  font-size: 12px;
  color: #848484;
  line-height: 20px;
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.subscription {
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.subscription-form {
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: 1px solid #CECECE;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  padding: 0px 170px 0 25px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #848484;
}

.subscription-btn {
  width: 150px;
  line-height: 55px;
  display: block;
  position: absolute;
  -webkit-border-radius: 60px !important;
  -moz-border-radius: 60px !important;
  border-radius: 60px !important;
  right: 0;
  top: 0;
  background-color: #00B4E5;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.subscription-btn:hover {
  background-color: #000;

}

.footer-second-section h3 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 22px;
  width: 100%;
  display: block;
}

.quick-links {
  width: 29%;
  margin-left: 4%;
  display: flex;
  flex-wrap: wrap;
}

.quick-links ul {
  width: 50%;
  padding-right: 20px;
}

.quick-links ul li+li {
  margin-top: 20px;
}

.quick-links ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #363636;
}

.quick-links ul li a:hover {
  color: #00B4E5;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-countries-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.country-item img {
  width: 16px;
  height: 12px;
  object-fit: cover;
}

.footer-address {
  width: 20%;
}

.footer-address p {
  color: #363636;
}

.footer-address a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #363636;
  margin-top: 20px;
  display: block;
}

.footer-address a:hover {
  color: #00B4E5;
}

.footer-social {
  width: 16%;
  margin-left: 2%;
}

.footer-social ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}

.footer-social ul li a {
  font-size: 22px;
  color: #535353;
}

.footer-social ul li a:hover {
  color: #00B4E5;
}

.footer-rights {
  padding: 25px 0;
  border-top: 1px solid #B3B3B3;
}

.footer-rights p {
  color: #363636;
  margin-bottom: 0px;
}

.footer-rights ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-rights ul li {
  padding: 0 10px;
  position: relative;
}

.footer-rights ul li::after {
  content: "";
  width: 1px;
  height: 68%;
  background: #000;
  position: absolute;
  right: 0;
  margin: auto;
  top: -3px;
  bottom: 0;
}

.footer-rights ul li:last-child::after {
  display: none;
}

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

.hme-company-section {
  width: 100%;
  padding: 100px 0;
  background-color: #002951;
}

.hme-company-box-container {
  display: flex;
  flex-wrap: wrap;
}

.main-company-box {
  width: 31.3%;
  height: 700px;
  margin-left: 1%;
  margin-right: 1%;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.main-img-box {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main-company-box::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 3;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*.main-company-box:hover {*/
/*  box-shadow: 0px 0px 70px 0px rgba(0, 180, 229, 0.20);*/
/*  background: rgba(0, 0, 0, 0.5);*/
/*}*/


.company-contents {
  width: 100%;
  height: 100%;
  padding: 65px 40px;
  position: relative;
  z-index: 99;
}

.company-logo {
  max-width: 90%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
}

.company-logo img {
  max-height: 55px;
}


.company-services {
  padding: 30px 0;
  min-height: 320px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*opacity: 0;*/
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main-company-box .company-services {
  opacity: 1;
  min-height: 350px;
}

.company-services ul li {
  width: 100%;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.company-services ul li:hover {
  padding-left: 30px;
  background-position: left 10px top 5px;
}

.company-services ul li a {
  font-size: 15px;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.company-services ul li a:hover {
  color: #00B4E5;
  font-weight: bold;
}

.company-details {
  text-align: center;
  width: 100%;
}

.company-details p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

.company-details p span {
  display: inline-block;
  padding: 0 5px;
  color: #fff;
  margin-bottom: 4px;
}

.hme-about-section {
  width: 100%;
  padding: 110px 0;
  overflow: hidden;
}

.hme-about-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hme-about-content {
  width: 46%;
  padding-right: 20px;
}

.hme-about-logo {
  margin-bottom: 15px;
  max-width: 370px;
}

.hme-about-content ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  margin-bottom: 15px;
}

.hme-about-content ul li {
  font-weight: bold;
  padding: 0px 10px;
  line-height: 28px;
  background-color: #cccccc;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
}

.hme-about-content h4 {
  font-size: 16px;
  margin-bottom: 0;
}

.main-btn {
  margin-top: 10px;
  background-color: #00B4E5;
  border: 1px solid #00B4E5;
  color: #fff;
  line-height: 35px;
  cursor: pointer;
  display: inline-block;
  padding: 0 40px 0 20px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.main-btn.border-only {
  background-color: transparent;
  border: 1px solid #00B4E5;
  color: #000;
  font-weight: 500;
}

.main-btn.border-only:hover {
  background-color: #00B4E5;
  color: #fff;
}

.main-btn.border-only:hover::after {
  background-image: url(../images/arrow-btn.png);
}

.main-btn.border-only::after {
  background-image: url(../images/arrow-btn-blue.png);
}


.main-btn.border-btn {
  background-color: #fff;
  border: 1px solid #00B4E5;
  color: #000;
}

.arthub-first-section .main-btn.border-btn {
  background-color: transparent;
}

.main-btn.border-btn:hover {
  background-color: #00B4E5;
  color: #fff;
}

.main-btn.border-btn:hover::after {
  background-image: url(../images/arrow-btn.png);
}

.main-btn.border-btn::after {
  background-image: url(../images/arrow-btn-blue.png);
}

.main-btn:hover {
  background-color: #fff;
  color: #000;
}

.main-btn::after {
  content: "";
  width: 8px;
  height: 12px;
  background-image: url(../images/arrow-btn.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
}

.main-btn:hover::after {
  background-image: url(../images/arrow-btn-blue.png);
}

.hme-about-video {
  width: 54%;
  object-fit: cover;
  position: relative;
}

.video-btn {
  width: 112px;
  height: 112px;
  display: block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.video-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  background-image: url(../images/play.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.video-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  animation: pulse 1.2s infinite;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #00B4E5;
  left: 0;
  top: 0;
  z-index: 1;
}

.mask-img {
  mask-image: url(../images/video-bg.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  height: 840px;
  width: 100%;
}

.hme-client-slider {
  width: 100%;
  margin-top: 100px;
}

.hme-client-slider .main-title {
  text-align: center;
}

.main-title {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 10px;
}

.main-title span {
  font-weight: 200;
}

.main-title span b {
  font-weight: bold;
}

.clients-slider {
  width: 100%;
  margin-top: 60px;
  height: auto;
  border: 1px solid #BEBEBE;
  background-color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: relative;
}

.clients-slider::after {
  content: "";
  width: 148px;
  height: 1px;
  position: absolute;
  left: -148px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(90deg, rgba(190, 190, 190, 0.00) -0.42%, #BEBEBE 100%);
}


.clients-slider::before {
  content: "";
  width: 148px;
  height: 1px;
  position: absolute;
  right: -148px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(90deg, #BEBEBE -0.42%, rgba(190, 190, 190, 0.00) 100%);
}

.client-img-box {
  width: 100%;
  min-height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #BEBEBE;
  ;
}

.client-img-box img {
  width: auto !important;
  width: 100%;
  max-width: 200px;
  height: 100%;
}

.clients_carousel {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;

}

.clients_carousel .owl-stage {
  margin-left: -80px;
}

.hme-history-section {
  width: 100%;
  height: auto;
  padding: 120px 0 100px;
  background-color: #002951;
  color: #fff;
  overflow: hidden;

}

.hme-history-left {
  width: 50%;
  padding-right: 8%;
}

.hme-history-right {
  width: 50%;
}

.hme-history-right h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hme-history-right h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.hme-history-right h2 span {
  font-size: 29px;
  font-weight: 100;

}

.hme-history-second-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -80px;
  padding-bottom: 110px;
  overflow: hidden;
}

.hme-history-second-img {
  width: 50%;
  padding-right: 5%;
}

.hme-history-content {
  width: 50%;
  padding-top: 110px;
}



.hme-history-second-img img {
  -webkit-border-top-right-radius: 15px;
  -moz-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.hme-awards-section {
  padding: 110px 0;
  height: 100%;
  background-color: #F6F6F6;
  overflow: hidden;
}

.hme-awards-section .main-title {
  text-align: center;
}

.awards-slider {
  width: 100%;
  margin-top: 50px;
}


.award-swiper {
  width: 100%;
  overflow: visible;
  position: relative;
}

.award-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  transition: all 0.3s ease;
  margin-top: 160px;

  opacity: 0.4;
}

.award-swiper .swiper-slide.swiper-slide-prev,
.award-swiper .swiper-slide.swiper-slide-next {
  transform: scale(1.1);
}

.award-swiper .swiper-slide.swiper-slide-active {
  color: #fff;
  transform: scale(1.1);
  z-index: 2;
  margin-top: 30px;
  opacity: 1;
}

/* ARROWS */


/* PAGINATION */
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}


.award-box {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  position: relative;
}

.award-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
}

.award-content {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 50px;
  text-align: left;
  z-index: 3;
}

.award-content h3 {
  font-size: 26px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.award-content p {
  color: #fff;
  font-size: 14px;
}

.award-box:hover h3,
.award-box:hover p {
  color: #fff;
}

.award-box img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.award-box:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.award-swiper-nav {
  width: 120px;
  height: 42px;
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.award-swiper-nav .swiper-button-prev,
.award-swiper-nav .swiper-button-next {
  width: 42px;
  height: 42px;
  background-color: #00B4E5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}

.award-swiper-nav .swiper-button-prev:hover,
.award-swiper-nav .swiper-button-next:hover {
  background-color: #000;
}

.award-swiper-nav .swiper-button-prev:after,
.award-swiper-nav .swiper-button-next:after {
  font-size: 20px;
}

.hme-dna-section {
  width: 100%;
  padding-bottom: 110px;
}

.hme-dna-section .container {
  padding-top: 100px;
  border-top: 1px solid #E6E6E6;
}

.hme-dna-section .second-title {
  text-align: center;
  text-transform: uppercase;
}

.hme-dna-content {
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;

}


.dna-tabs-content div:not(:first-child) {
  display: none;
}

.hme-dna-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dna-tabs-nav {
  width: 38%;
}

.dna-tabs-nav li {
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #CCCCCC;
}

.dna-tabs-nav li.active a {
  color: #000;
}

.dna-tabs-nav li:last-child {
  border-bottom: none;
}

.dna-tabs-nav li a {
  font-size: 22px;
  line-height: 28px;
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color: #868686;
}

.dna-tabs-content {
  width: 48%;
  margin-left: auto;
}

.dna-tabs-content img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}


.hme-dna-content ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.hme-dna-content ul li {
  width: 47%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  min-height: 120px;
  font-size: 22px;
  line-height: 28px;
  background-color: #F6F6F6;
  font-weight: 600;
  display: flex;
  color: #011831;
  align-items: center;
  font-family: "Poppins", sans-serif;
  padding: 0px 30px 0px 110px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.hme-dna-content ul li:hover {
  background-color: #00B4E5;
  color: #fff;
}

.hme-dna-content ul li:hover .dna-icon img {
  filter: brightness(0) invert(1);
}

.hme-dna-content ul li::after {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: solid 11px rgb(255 255 255);
  border-right: solid 11px rgb(255 255 255);
  border-left: solid 11px transparent;
  border-top: solid 11px transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.hme-dna-content ul li:nth-child(3)::before,
.hme-dna-content ul li:nth-child(5)::before {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: solid 11px rgb(255 255 255);
  border-right: solid 11px rgb(255 255 255);
  border-left: solid 11px transparent;
  border-top: solid 11px transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}


.hme-dna-content ul li:nth-child(2n)::after {
  left: 0;
  top: 0;
  rotate: 180deg;
}

.hme-dna-content ul li:nth-child(2)::after {
  left: 0;
  top: inherit;
  bottom: 0;
  rotate: 90deg;
}

.hme-dna-content ul li:nth-child(4)::before {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: solid 11px rgb(255 255 255);
  border-right: solid 11px rgb(255 255 255);
  border-left: solid 11px transparent;
  border-top: solid 11px transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  rotate: 90deg;
}


.hme-dna-content ul li:nth-child(5):after,
.hme-dna-content ul li:nth-child(3)::after,
.hme-dna-content ul li:nth-child(7)::after {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: solid 11px rgb(255 255 255);
  border-right: solid 11px rgb(255 255 255);
  border-left: solid 11px transparent;
  border-top: solid 11px transparent;
  position: absolute;
  top: 0;
  right: 0;
  rotate: -90deg;
}

.dna-icon {
  width: 70px;
  height: auto;
  position: absolute;
  left: 25px;
}

.dna-icon img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}



/*experience*/

.sub-banner {
  width: 100%;
  padding-top: 60px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.sub-banner::after {
  content: "";
  width: 100%;
  height: 300px;
  background: #002951;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.sub-banner-img {
  width: 45%;
  min-height: 540px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-top-right-radius: 15px;
  -moz-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.sub-banner-img img {
  -webkit-border-top-right-radius: 15px;
  -moz-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
}



.sub-banner-content {
  width: 55%;
}

.sub-banner-content-inner {
  padding-left: 10%;
}

.sub-banner-logo {
  min-height: 240px;
  display: flex;
  align-items: center;
}

.sub-content-text {
  width: 100%;
  padding-top: 40px;
}

.sub-content-text ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  margin-bottom: 20px;
}

.sub-content-text ul li {
  display: block;
  padding: 0px 15px;
  line-height: 28px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  background-color: #CCCCCC;
  font-weight: bold;
}

.experience-project-list {
  width: 100%;
  padding: 220px 0 50px;
  position: relative;
}

.experience-custamized-section {
  width: 100%;
  height: auto;
  padding-top: 60px;
}

.experience-custamized-section .second-title {
  text-align: center;
}

.second-title {
  font-size: 42px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 10px;
}

.second-title {
  font-size: 42px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 10px;
}


.third-title {
  font-size: 34px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.third-title span {
  font-weight: 200;
}


.fourth-title {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.fourth-title span {
  font-weight: 200;
}


.sixth-title {
  font-size: 24px;
  margin-bottom: 0px;
  line-height: 30px;
  font-weight: bold;
}

.sixth-title span {
  font-weight: 300;
}



.second-title span {
  font-weight: 300;
}


.fifth-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}


.side-wall-option-section {
  width: 100%;
  padding: 100px 0;
  background-color: #F3F5FA;
  margin-top: 40px;
}

.side-wall-option-box {
  width: 100%;
  margin-top: 30px;
}

.side-wall-option-box h4 {
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 10px;
}

.side-wall-option-section ul {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-left: -0.5%;
  margin-right: -0.5%;
}

.side-wall-option-section ul li {
  width: 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.side-wall-option-section ul li a {
  cursor: initial;
}

.side-wall-content {
  width: 100%;
  padding: 20px;

}

.side-wall-tumb {
  overflow: hidden;
}

.side-wall-tumb img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.side-wall-option-section ul li:hover .side-wall-tumb img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.side-wall-content h3 {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 5px;
  margin-bottom: 0px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #DFE1E7;
}

.side-wall-content h3 span {
  font-weight: 300;
}

.options-section {
  width: 100%;
  padding-top: 70px;
}

.options-section ul {
  margin-top: 20px;
  margin-left: -1%;
  margin-right: -1%;
  row-gap: 35px;
  display: flex;
  flex-wrap: wrap;
}

.options-section ul li {
  width: 31.3%;
  margin-left: 1%;
  margin-right: 1%;
  background: #F3F5FA;
  position: relative;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}

.options-section ul li::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: #00B4E5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.options-section ul li:hover h3 {
  color: #fff;
}

.options-section ul li:hover::after {
  width: 100%;
}

.options-section ul li:hover .option-icon img {
  filter: brightness(0) invert(1);
}

.options-section ul li a {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 130px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  z-index: 2;
  cursor: initial;
}

.options-section ul li:hover a {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.options-section ul li h3 {
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 0;
  font-weight: 400;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.option-icon {
  width: 69px;
  left: 40px;
  text-align: center;
  position: absolute;
}

.option-icon img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.parent {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
  grid-row-gap: 25px;
}

.div1 {
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
}

.div2 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.div3 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.div4 {
  width: 56%;
  margin-left: 1%;
  margin-right: 1%;
}

.div5 {
  width: 40%;
  margin-left: 1%;
  margin-right: 1%;
}

.div6 {
  width: 30%;
  margin-left: 1%;
  margin-right: 1%;
}

.div7 {
  width: 66%;
  margin-left: 1%;
  margin-right: 1%;
}

.div8 {
  width: 66%;
  margin-left: 1%;
  margin-right: 1%;
}

.div9 {
  width: 30%;
  margin-left: 1%;
  margin-right: 1%;
}

.div10 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;

}

.div11 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;

}

.div12 {
  width: 30%;
  margin-left: 1%;
  margin-right: 1%;
}

.div13 {
  width: 66%;
  margin-left: 1%;
  margin-right: 1%;
}

.div14 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.div15 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}



.parent .div15:nth-child(15)~div {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.experience-box {
  padding: 40px;
  overflow: hidden;
  min-height: 540px;
  background-color: #000;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}



.experience-btn {
  padding: 15px 65px 15px 35px;
  font-size: 28px;
  text-transform: uppercase;
  background-color: #011831;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.experience-btn span {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.experience-btn:hover span {
  padding-left: 15px;
}

.experience-btn:hover::after {
  right: 15px;
  top: -20px;
}

.experience-btn::after {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../images/experience-arrow.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  right: 33px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.experience-box .main-btn {
  position: absolute;
  right: 40px;
  bottom: 35px;
}

.sub-banner-detail {
  width: 100%;
  padding-top: 25px;
  position: relative;
  min-height: 289px;
  display: flex;
  flex-wrap: wrap;
  background: #002951;
}

.sub-banner-breadcrumb {
  width: 100%;
}

.experience-box .main-btn.border-btn:hover {
  border-color: #fff;
  background-color: transparent;
}

.main-btn.border-btn.blank-btn:hover {
  border-color: #fff;
  background-color: transparent;
}

.sub-banner-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sub-banner-breadcrumb ul a,
.sub-banner-breadcrumb ul span {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400px;
  line-height: 20px;
}

.sub-banner-breadcrumb ul li {
  position: relative;
}

.sub-banner-breadcrumb ul li:first-child:after {
  display: none;
}

.sub-banner-breadcrumb ul li::after {
  content: "";
  width: 8px;
  height: 14px;
  left: -18px;
  top: 3px;
  position: absolute;
  background-image: url(../images/bread-arrow.png);
  background-repeat: no-repeat;
}

.sub-banner-breadcrumb ul li+li {
  margin-left: 35px;
}

.experience-detail-section {
  width: 100%;
  padding-bottom: 120px;
  margin-top: -180px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.experience-detail-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding-right: 160px;
  position: relative;
}

.experience-detail-title .second-title {
  color: #fff;
  margin-bottom: 0px;
  text-transform: uppercase;
}


.experience-detail-banner {
  width: 100%;
}

.experience-detail-banner img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.experience-detail-text {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
}

.experience-detail-text-left {
  width: 100%;
  margin-top: 35px;
}

.experience-detail-text-left ul {
  padding-left: 19px;

}

.experience-detail-text-left ul li {
  width: 100%;
  list-style: disc;
  margin-bottom: 5px;
  color: #5A5A67;
}

.experience-detail-text-left p {
  color: #5A5A67;
}

.experience-detail-text-right {
  width: 100%;
}

.experience-detail-text-right h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

.experience-detail-text-right ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.experience-detail-text-right ul li {
  width: 47%;
  padding: 20px 0;
  border-bottom: 1px solid #D3DCE0;
  padding-left: 60px;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #181D4E;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}



/* .experience-detail-text-right ul li a {
  font-size: 24px;
  line-height: 37px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #181D4E;
  cursor: inherit;
} */

.experience-detail-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  padding: 2px;
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.experience-detail-images,
.experience-detail-images ul li img {
  width: 100%;
}

.experience-detail-images ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}

.experience-detail-images ul li {
  width: 47%;
  overflow: hidden;
  padding: 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid #7F8082;
}

.related-project-slider {
  width: 100%;
}

.related-project-slider-section .second-title span {
  text-align: center;
  width: 100%;
  font-weight: 400;
}

.related-project-slider {
  width: 100%;
  height: auto;
  margin-top: 55px;
}

.related-project-box {
  width: 100%;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  overflow: hidden;
  background-color: #F3F5FA;
}

.related-project-box a {
  display: block;
}

.related-project-box a:hover {
  cursor: pointer;
}

.related-project-img {
  overflow: hidden;
  position: relative;
}

.related-project-img img {
  height: 350px;
  object-fit: cover;
}

.related-project-img img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.related-project-text {
  width: 100%;
  padding: 35px;
  display: block;
}

.related-project-text span {
  width: 100%;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #6C6C6C;
  padding-left: 30px;
  background-image: url(../images/btn-icon.png);
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.related-project-box a:hover .related-project-text span {
  padding-left: 40px;
  background-position: left 10px top 0px;
}

.related-project-text:hover span {
  padding-left: 40px;
  background-position: left 10px top 0px;
}

.related-project-box a:hover .related-project-img img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.sub-banner-inner-page {
  width: 100%;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px 0;
  position: relative;
}


.sub-banner-inner-page::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(148deg, rgba(1, 24, 49, 0.65) 15.1%, rgba(0, 12, 26, 0.65) 81.94%);
  z-index: 0;
}


.sub-banner-inner-page h1 {
  font-size: 100px;
  line-height: 100px;
  margin-bottom: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
}

.sub-banner-inner-page h1 span {
  font-weight: 100;
}

.main-about-content {
  width: 100%;
  height: auto;
}

.inner-page-nav {
  width: 100%;
  padding-top: 65px;
}

.inner-page-nav ul {
  display: flex;
  flex-wrap: wrap;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #CECECE;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  padding: 5px;
  column-gap: 4px;
}

.inner-page-nav ul li a {
  padding: 0px 15px;
  font-size: 16px;
  color: #777777;
  line-height: 42px;
  display: inline-block;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
}

.inner-page-nav ul li a:hover {
  color: #00B4E5;
}

.inner-page-nav ul li.active a {
  background-color: #00B4E5;
  color: #fff;

}

.section-about {
  padding: 115px 0;
  overflow: hidden;
}

.section-about-inner {
  width: 100%;
  max-width: 1275px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-left {
  width: 55%;
}

.about-img {
  width: 40%;
  margin-left: auto;
}

.about-img img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.section-mission {
  background-color: #002951;
}

.about-dna-section {
  padding: 100px 0;
}

.about-dna-section .second-title {
  text-align: center;
  text-transform: uppercase;
}

.founders-section {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: #F6F6F6;
  overflow: hidden;
}

.founders-section .second-title {
  text-align: center;
}

.founders-main {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  margin-top: 65px;
}

.founders-main ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
}

.founders-main ul li {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 4%;
}

.founders-main ul li:last-child {
  margin-right: 0px;
}

.founder-img {
  width: 40%;
}

.founder-img img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid #5A5A5A;
}

.founder-content {
  width: 60%;
  padding: 0px 30px;
}

.founder-content h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}

.founder-content p {
  font-size: 18px;
}

.awards-section {
  width: 100%;
  padding: 100px 0;
}

.awards-section .second-title {
  text-align: center;
}

.awards-tab-section {
  width: 100%;
  margin-top: 30px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #CECECE;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  padding: 5px;
  column-gap: 4px;
}


.tabs-nav li {
  padding: 0px 10px;
  font-size: 16px;
  color: #777777;
  cursor: pointer;
  line-height: 42px;
  display: inline-block;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
}

.tabs-nav li.active {
  background-color: #00B4E5;
}


.tabs-nav li.active a {
  color: #fff;
}

.tabs-nav li a:hover {
  color: #00B4E5;
}

.tabs-nav li.active:hover a {
  color: #fff;
}

.tabs-nav li a {
  text-decoration: none;
  color: #777777;
}

.awards-tab-content {
  margin-top: 80px;
}

.award-tab {
  width: 100%;
  height: auto;
}

.award-tab ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
}

.award-tab ul li {
  margin-left: 1%;
  margin-right: 1%;
  width: 23%;
  min-height: 262px;
  padding: 25px;
  background-color: #011831;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}



.certificate-tab ul {
  display: flex;
  flex-wrap: wrap;
}

.sustainability-section {
  width: 100%;
  padding: 60px 0;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  position: relative;
  background-position: right;
}

.sustainability-inner {
  width: 100%;
  max-width: 870px;
  padding: 40px 0;
  height: max-content;
  position: absolute;
  right: 14%;
  margin: auto;
  top: 0;
  bottom: 0;
}

.sustainability-inner p {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.sustainability-inner h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.sustainability-btn {
  padding-left: 20px;
  display: block;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  background-image: url(../images/btn2-arw.png);
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sustainability-btn:hover {
  color: #fff;
  padding-left: 25px;
  background-position: left 5px top 2px;
}

.about-history-section {
  width: 100%;
  padding: 100px 0 130px;
  background-color: #002951;
  position: relative;
}

.about-history-section .second-title {
  text-align: center;
  color: #fff;
}

.about-history-main {
  padding-top: 50px;
}

.mission-tab {
  display: flex;
  flex-wrap: wrap;
}



.experience-detail-btns {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  column-gap: 10px;
  row-gap: 10px;
  position: absolute;
  right: 0;
  margin-top: 0;
}

.experience-box-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.experience-box:hover .experience-box-inner {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.certificate-img {
  max-width: 268px;
  width: max-content;
  height: auto;
  overflow: hidden;
  border: 1px solid #D7D7D7;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.certificate-content {
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.certificate-tab ul {
  margin-left: -2%;
  margin-right: -2%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 110px;
}

.certificate-tab ul li {
  width: 46%;
  height: auto;
  margin-left: 2%;
  margin-right: 2%;

}

.certificate-tab ul li .second-title {
  text-align: left;
}

.certificate-tab ul li .second-btn {
  margin-top: 15px;
}

.mission-tab-nav {
  width: 22%;
  padding-left: 2%;
}

.mission-tab-content-main {
  width: 78%;
  padding-left: 0%;
  border-left: 1px solid #335474;

}

.core-value-section {
  padding: 85px 0 110px;
  border-top: 1px solid #335474;
  overflow: hidden;
}

.mission-tab-content {
  padding: 40px 0;
  min-height: 550px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 90px;
}

.mission-tab-content p {
  line-height: 28px;
}

.mission-tab-nav {
  padding-top: 70px;
}

.mission-tab-nav li {
  margin-bottom: 20px;
}

.mission-tab-content .second-title,
.mission-tab-content p {
  color: #fff;
}

.mission-tab-nav li.active a {
  background-color: #00B4E5;
  border: 2px solid #00B4E5;
}

.mission-tab-nav li img {
  opacity: 0.2;
}

.mission-tab-nav li.active img {
  opacity: 1;
}

.mission-tab-nav li a {
  width: 199px;
  height: 199px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #00456F;
  background-color: #00456F;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: relative;
  z-index: 2;
}

.mission-tab-nav li {
  width: 100%;
  position: relative;
}



.mission-tab-nav li::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #00456F;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  z-index: 1;
}

.mission-tab-nav li.active::before {
  content: "";
  width: 16px;
  height: 100px;
  background-image: url(../images/mission-line1.png);
  position: absolute;
  right: -16px;
  top: calc(50% - 2px);
  z-index: 1;
  background-position: bottom;
}

.mission-tab-nav li:nth-child(2).active::before {
  content: "";
  width: 16px;
  height: 100px;
  background-image: url(../images/mission-line2.png);
  position: absolute;
  right: -16px;
  top: inherit;
  bottom: calc(50%);
  z-index: 1;
  background-position: top;
}

.mission-tab-nav li.active::after {
  background-color: #00B4E5;
}

.mission-tab-core {
  width: 100%;
}

.mission-tab-core-inner {
  width: 78%;
  padding-left: 0%;
  border-left: 1px solid #335474;
  margin-left: auto;
}


.corevalue-content-wrap .second-title {
  color: #fff;
}

.corevalue-content-wrap ul {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.corevalue-content-wrap ul li {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.core-icon {
  width: 50px;
  margin-right: 10px;
}

.core-icon img {
  max-width: 100%;
}

.corevalue-content-wrap ul li p {
  width: calc(100% - 60px);
  color: #fff;
  margin-bottom: 0px;
}



.timeline-slider {
  width: 580px;
}

.timeline-slider .owl-stage-outer {
  overflow: visible !important;
}

.timeline-slider .owl-stage {
  min-height: 480px;
}

.timeline-slider .owl-stage::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #314E6A;
  position: absolute;
  top: 46%;
  left: 0px;
  visibility: visible;
  z-index: -1;
}





.timeline_carousel .owl-item.active .item::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00B4E5;
  position: absolute;
  left: -100%;
  top: 110%;
}

.timeline_carousel .owl-item.active .item.last-one::before {
  display: none;
}



.owl-item.active .dot {
  width: 40px;
  height: 40px;
  background-image: url(../images/circles.png);
  background-repeat: no-repeat;
  background-position: center;
  bottom: -40px;
  background-size: contain;
  animation: zoom-in-zoom-out 1s ease infinite;
}

.dot {
  content: "";
  width: 11px;
  height: 11px;
  background-color: #00B4E5;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  bottom: -26px;
  z-index: 999;
}

/* .timeline_carousel.owl-carousel .owl-item:nth-child(even) .dot {
  top: -33px;
  bottom: inherit;
} */

.time-line-content {
  height: 200px;
  padding: 10px;
  overflow: auto;
}

.time-line-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  line-height: 40px;
  font-weight: 600;
  color: #8296AA;
  margin-bottom: 10px;
}

.time-line-content p {
  color: #8296AA;
}

.owl-item.active .time-line-content h3,
.owl-item.active .time-line-content p {
  color: #fff;
}


.about-history-main {
  overflow: hidden;
}

.timeline_carousel.owl-carousel .owl-item:nth-child(odd) .time-line-content {
  transform: translateY(130%);
  align-items: flex-start;
}

.time-line-coming {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 184px;
  right: -111px;
}

.time-line-coming h4 {
  font-size: 44px;
  line-height: 40px;
  margin-bottom: 0px;
  color: #FAFAFA;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  background-color: #002951;
  color: #8296AA;
  padding: 5px;
  display: inline-block;

}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

.custom-nav {
  width: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.custom-nav .owl-prev,
.custom-nav .owl-next {
  width: 42px;
  height: 42px;
  background-color: #00B4E5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.custom-nav .owl-prev:hover,
.custom-nav .owl-next:hover {
  background-color: #000;
}

.custom-nav .owl-prev {
  background-image: url(../images/arrow-prev.png);
  position: absolute;
  left: 0;
}

.custom-nav .owl-next {
  background-image: url(../images/arrow-next.png);
  left: auto;
  right: 0;
}

.sticky-company-nav .main-page-menu {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  padding: 5px 0;
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
}

.sticky-company-nav .main-page-menu .inner-page-nav ul li a {
  font-size: 14px;
  line-height: 24px;
}

.sticky-company-nav .main-page-menu .inner-page-nav {
  padding-top: 0px;
}

.main-about-wrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
}

.iteam {
  opacity: 1;
}

.has-mask-fill>span {
  position: relative;
  display: inline;
  -webkit-text-fill-color: rgba(0, 0, 0);
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0% 200%;
}

.white .has-mask-fill>span {
  position: relative;
  display: inline;
  -webkit-text-fill-color: rgba(255, 255, 255, .08);
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0% 200%;
}


.has-mask-fill.text-bold span {
  font-weight: bold !important;
}

.item-2 {
  opacity: 0;
}

.founder-popup {
  width: 100%;
  max-width: 730px;
  padding: 40px 30px 30px;
  font-family: "Poppins", sans-serif;
}

.founder-popup h2 {
  line-height: 28px;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
}

.founder-popup h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}

.founder-popup p {
  color: #333333;
  font-weight: 500;
}

.founder-popup-text {
  margin-top: 20px;
}

.founder-popup-text-second {
  max-width: 425px;
  margin-top: 20px;
}

.founder-popup-text-second p {
  font-size: 20px;
  line-height: 32px;
  font-style: italic;
}

.fancybox-slide--html .founder-popup .fancybox-close-small {
  color: currentColor;
  padding: 7px;
  right: 3px;
  top: 3px;
}

.scroll-up .header {
  position: fixed !important;
  background: #ffffff;
  z-index: 9999;
  top: 0px;
  border: 1px solid #e5e5e5;
}

.scroll-up .header .menu-ul a {
  line-height: 50px;
}

.scroll-up .header .header-btn {
  line-height: 40px;
}

.scroll-up .header .menu-ul>li a::before {
  bottom: 7px;
}

.scroll-up .header .menu-ul .menu-item-has-children>a::before {
  bottom: 7px;
}

.corevalue-content-wrap {
  display: flex;
  flex-wrap: wrap;
}

.corevalue-content {
  width: 45%;
  padding-right: 50px;
}

.core-value-img {
  width: 55%;
  overflow: hidden;
}

.core-value-img img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}



.acc-container {
  width: 100%;
  border-top: 1px solid #335474;
  margin-top: 20px;
}

.acc {
  padding: 15px 0px;
  border-bottom: 1px solid #335474;

}

.acc-head {
  display: flex;
  flex-wrap: wrap;
  font-size: 22px;
  position: relative;
  cursor: pointer;
  align-items: center;
}

.acc-head::before,
.acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all .3s;
}

.acc-head::before {
  right: 9px;
  width: 2px;
  height: 20px;
  margin-top: -10px;
}

.acc-head::after {
  right: 0px;
  width: 20px;
  height: 2px;
  margin-top: -1px;
}

.acc-head p {
  color: #fff;
  font-weight: 500;
  width: calc(100% - 80px);
  margin-bottom: 0px;
  padding-right: 20px;
}


.acc-content {
  padding: 15px 0px;
  display: none;
  padding-left: 60px;
  width: 95%;
}

.acc-content p {
  color: #fff;
}

.acc-head.active::before {
  transform: rotate(90deg);
}

.banner-contents {
  text-align: center;
  width: 100%;
  margin-top: -60px;
}

.banner-contents h2 {
    /*display:none;*/
  font-size: 80px;
  line-height: 70px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.banner-contents h3 {
  font-size: 63px;
  line-height: 60px;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.experience-detail-btns .main-btn {
  margin-top: 0px;
}

.sub-banner-content h3 {
  font-size: 34px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.sub-banner-content h3 span {
  font-weight: 100;
}

.sub-banner-content h4 {
  font-size: 29px;
  line-height: 35px;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.sub-banner-text-content {
  min-height: 250px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.construction-product-section {
  width: 100%;
  padding-top: 60px;
}


.construction-nav {
  width: 100%;
  min-height: 78px;
  background-color: #00336B;
  margin-top: 30px;
}

.construction-nav ul {
  display: flex;
  white-space: nowrap;
}

.construction-nav ul li {
  position: relative;
}

.construction-nav ul li a {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 24px 21px;
  display: inline-block;
  text-transform: uppercase;
}

.construction-nav ul li::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #245080;
  position: absolute;
  right: 0;
}

.construction-nav ul li:last-child:before {
  display: none;
}

.construction-nav ul li.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #00B4E5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.construction-listing {
  width: 100%;
  padding-top: 52px;
}

.construction-list-box {
  width: 100%;
  min-height: 100vh;
  background-color: #00456F;
  margin-bottom: 3px;
  overflow: hidden;
}

.construction-list-box .experience-btn {
  margin-top: 50px;
}

.experience-btn-inner {
  padding: 15px 70px 15px 35px;
  font-size: 28px;
  text-transform: uppercase;
  background-color: #011831;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.experience-btn-inner::after {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../images/experience-arrow.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  right: 33px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.construction-services {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 590px;
  position: absolute;
  bottom: 75px;
}


.construction-services ul {
  width: 100%;
}

.construction-list-box .container {
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 70px 0;
  z-index: 9;
}


.construction-services ul li {
  width: 100%;
  padding: 15px 0;
  padding-left: 35px;
  background-image: url(../images/costruction-arrow.png);
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-bottom: 1px solid #F6FAFF;
}

.construction-services ul li:hover {
  padding-left: 50px;
  background-position: left 15px top 15px;
}

.construction-services ul li a {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
}

.construction-services ul li:hover a {
  color: #00B4E5;
  font-weight: bold;
}

.background {
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.background::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8127626050420168) 70%);
}

.background-panel {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity .75s
}

.margin-right-new {
  padding-right: calc((100% - (1450px - .5rem))/2);
}

.sticky-company-nav .construction-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  min-height: 40px;
  margin-top: 0px;
}

.sticky-company-nav .construction-nav ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
}


.construction-details-section {
  width: 100%;
  padding: 60px 0 110px;
  overflow: hidden;
}

.construction-nav.detail-page {
  margin-top: 0px;
}

.main-construction-wrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.main-construction-wrap .inner-page-nav {
  padding-top: 40px;
}

.main-construction-detail-wrap {
  padding-top: 50px;
  position: relative;
}

.main-construction-detail-box {
  width: 100%;
}

.construction-detail-img {
  width: 35%;

  overflow: hidden;
}

.construction-detail-img img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
}

.construction-detail-content {
  padding-left: 70px;
  padding-top: 10px;
  width: 57%;
}

.construction-detail-content .second-title {
  margin-bottom: 15px;
}

.construction-detail-btns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 35px;
  margin-top: 20px;
}

.construction-detail-btns .main-btn {
  margin-top: 0px;
}

.sticky-company-nav .construction-nav.dteail-page {
  position: static;
}

.project-detail-slider-main {
  width: 100%;
  height: auto;
}



.construction-detail-nav {
  width: 100%;
  min-height: 78px;
  background-color: #00336B;
  margin-top: 30px;
}

.construction-detail-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.construction-detail-nav ul li {
  position: relative;
}

.construction-detail-nav ul li a {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  padding: 24px 21px;
  display: inline-block;
  text-transform: uppercase;
}

.construction-detail-nav ul li::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #245080;
  position: absolute;
  right: 0;
}

.construction-detail-nav ul li:last-child:before {
  display: none;
}

.construction-detail-nav ul li.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #00B4E5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.construction-detail-slider-main {
  padding: 60px 0 100px;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main-construction-detail-wrap.open .construction-detail-slider-main {
  display: block;
  opacity: 1;
}

.project-title {
  background-color: #011831;
  padding: 20px 30px;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 8;
  -webkit-border-radius: 0 11px 11px 0px;
  -mox-border-radius: 0 11px 11px 0px;
  border-radius: 0 11px 11px 0px;
}

.project-title h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-slider-close {
  width: 25px;
  height: 25px;
  display: block;
  margin-left: auto;
  margin-bottom: 15px;
  cursor: pointer;
}

.project-image-slider {
  width: 100%;
  max-width: 1050px;
}

.project-image-slider.fancybox-content {
  padding: 0px;
  background-color: #000;
}

.swiper_main .swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper_main .swiper-slide video {
  width: 100% !important;
  height: calc(100% - 50px) !important;
}

.swiper_thumbnail .swiper-slide img {
  object-fit: cover;
}

.swiper_main .swiper-slide video.controls {
  width: 100% !important;
}

.swiper_thumbnail {
  padding: 8px 0;
}

.swiper_thumbnail img {
  height: 100px;
  object-fit: cover;
}

.swiper_main .swiper-button-prev {
  left: 0;
}

.swiper_main {
  position: relative;
}

.swiper_main .swiper-button-next {
  right: 0;
}

.swiper_main .swiper-button-prev,
.swiper_main .swiper-button-next {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
}

.fancybox-button svg {
  background: rgb(137 137 137 / 50%);
  border-radius: 100%;
  padding: 6px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 22px;
  color: #fff;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 0px;
  right: 10px;
  top: 10px;
}

.project-image-slider.fancybox-content .fancybox-button svg path {
  fill: #fff;
}

.project-popup-title {
  width: 100%;
  min-height: 40px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  z-index: 4;
  padding: 10px 40px;
  display: flex;
  align-items: center;
}

.project-popup-title h3 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

.construction-detail-bottom {
  width: 100%;
  min-height: 790px;
  overflow: hidden;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../images/construction-bottom-bg.jpg);
}

.construction-detail-round {
  width: fit-content;
  height: fit-content;
  position: relative;
  margin-left: auto;
  margin-right: 200px;
}

.construction-detail-round img {
  height: 590px;
}

.construction-label {
  width: fit-content;
  position: absolute;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.construction-label1 {
  right: -55px;
  top: 1%;
}

.construction-label2 {
  right: -240px;
  top: 23%;
}

.construction-label3 {
  right: -230px;
  top: 60%;
}

.construction-label4 {
  right: -175px;
  top: 92%;
}

.construction-contact-bottom {
  width: 100%;
  margin-top: 0;
  padding: 90px 0;
  background-color: #011831;
}

.construction-contact-inner {
  width: 100%;
  max-width: 1023px;
  margin: 0 auto;
}

.construction-contact-title {
  text-align: center;
  color: #fff;
}

.construction-contact-form {
  width: 100%;
  margin-top: 30px;
}

.construction-contact-form ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.construction-contact-form ul li {
  width: 49%;
}

.construction-contact-form ul li.full-width {
  width: 100%;
}

.form-text {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  border: none;
}

textarea.form-text {
  padding: 20px 25px;
  line-height: 25px;
  resize: none;
  height: 150px;
}

.construction-contact-form ul li .main-btn {
  min-width: 150px;
}

.construction-container-main {
  width: 58%;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 5;
}

.construction-container-main img {
  width: 100%;
}

.nav-toggle-inner {
  display: none;
}

/*arthub*/

.arthub-banner {
  width: 100%;
  height: auto;
  position: relative;

}

.arthub-banner .container {
  display: flex;
  align-items: flex-end;
  height: 660px;
}

.arthub-banner .main-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.arthub-banner h2 {
  font-size: 38px;
  line-height: 60px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 50px;
}

.arthub-banner h2 span {
  font-weight: 200;
}

.art-hub-banner-logo {
  position: absolute;
  max-width: 260px;
  right: 0px;
  top: 50px;
  z-index: 3;
}

.arthub-first-section {
  width: 100%;
  height: auto;
  padding: 110px 0;
  background-color: #F4F6FB;
  overflow: hidden;
}

.arthub-title-with-btn {
  position: relative;
}

.arthub-title-with-btn .main-title {
  line-height: 60px;
  text-transform: uppercase;
}

.arthub-title-with-btn .experience-detail-btns {
  top: 0;
}

.arthub-listing-main {
  padding-top: 70px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 70px;
}

.arthub-listing-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.arthub-listing-box:nth-child(2n) {
  flex-direction: row-reverse;
}

.arthub-listing-img {
  width: 66%;
  min-height: 560px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}

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


.arthub-listing-content {
  width: 100%;
  height: fit-content;
  max-width: 560px;
  padding: 50px;
  box-sizing: border-box;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.arthub-listing-box:nth-child(2n) .arthub-listing-content {
  left: 0;
  right: inherit;
}

.arthub-journey-section {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}

.arthub-journey-img {
  width: 50%;
  overflow: hidden;
  -webkit-border-top-left-radius: 15px;
  -moz-border-top-left-radius: 15px;
  border-top-left-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-bottom-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.arthub-journey-content-inner {
  padding-right: 70px;
}

.arthub-journey-content {
  width: 50%;
}

.arthub-project-section {
  padding-bottom: 100px;
}

.arthub-why-choose-section {
  background-image: url(../images/why-choose.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0 150px;
}

.arthub-why-choose-section .main-title {
  text-align: center;
}

.arthub-why-choose-section .main-title span {
  font-weight: 300;
  text-align: center;
}

.arthub-why-choose-list {
  margin-top: 70px;
}

.arthub-why-choose-list ul {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.arthub-why-choose-list ul li {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}


.arthub-why-choose-list ul li:hover .arthub-why-box h4 {
  color: #fff;
}

.arthub-why-choose-list ul li:hover .arthub-why-box {
  background-color: #00B4E5;
}


.arthub-why-box {
  width: 100%;
  padding: 20px;
  display: flex;
  min-height: 248px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arthub-why-icon {
  width: 90px;
  height: 90px;
  background-color: #00B4E5;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arthub-why-box h4 {
  font-size: 22px;
  line-height: 28px;
  color: #011831;
  font-weight: 600;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.arthub-why-box h4 span {
  font-weight: 300;
}

.arthub-why-box-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.arthub-project-section .second-title {
  margin-bottom: 30px;
}



.banner-construction {
  width: 100%;
  height: auto;
}

.banner-construction-content {
  width: 100%;
  padding-top: 70px;
}

.banner-construction-title {
  width: 50%;
  padding-right: 40px;
}

.banner-construction-text {
  width: 50%;
}


.sub-banner.construction-banner .container {
  height: auto;
  display: flex;
  align-items: flex-start;
}



.construction_carousel img {
  height: 613px;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.banner-construction-title .second-title {
  font-size: 34px;
  text-transform: uppercase;
}

.construction_carousel .owl-dots {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.construction_carousel .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.construction_carousel .owl-dots .owl-dot.active {
  background-color: #00b4e5;
}

.owl-prev,
.owl-next {
  border: none;
}

.banner-construction-content {
  overflow: hidden;
}

.sub-banner.construction-banner {
  overflow: hidden;
}

.construction-contact-form .wpcf7-response-output {
  color: #d7d7d7;
  border: 1px solid #00a0d2;
}


/*engineering*/

.eng-banner {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px 0 70px;
  position: relative;
}

.eng-banner-left {
  width: 50%;
}

.eng-banner-left img,
.eng-banner-bg img {
  width: 100%;
}

.eng-banner-bg {
  width: 53%;
  position: absolute;
  left: 25%;
  top: 15px;
  z-index: -1;
}

.eng-banner-content {
  width: 50%;
  padding-left: 60px;
}

.eng-banner-content-inner {
  max-width: 70%;
}

.eng-banner-content-inner .fifth-title {
  margin-bottom: 25px;
}

.eng-solution-section {
  width: 100%;
  padding: 60px 0 80px;
}

.eng-solution-section .third-title {
  text-transform: uppercase;
}

.eng-solution-slider-wrap {
  width: 100%;
  padding-top: 20px;
}

.eng-solution-img {
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  position: relative;
}

.eng-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.eng-solution-title {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.eng-manufacturing-section {
  width: 100%;
  height: auto;
  padding: 80px 0;
  overflow: hidden;
  background-color: #002951;
}

.eng-manufacturing-section .flex {
  align-items: center;
}

.eng-manufacturing-left {
  width: 100%;
}

.eng-manufacturing-right {
  width: 100%;
  display: block;
  position: relative;
}

.eng-manufacturing-left .main-title {
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.eng-manufacturing-left p {
  color: #fff;
}

.eng-manufacturing-video {
  background-color: #000;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.eng-manufacturing-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}


.eng-video-popup {
  width: 60%;
}

.eng-video-popup video {
  width: 100% !important;
  height: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: block;
}

.eng-video-popup.fancybox-content {
  background-color: #002951;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.eng-video-popup.fancybox-content .fancybox-button svg path {
  fill: #fff;
}

.eng-solution-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  background: rgba(0, 41, 81, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.eng-solution-over h3 {
  position: absolute;
  top: 45px;
  padding: 0px 20px;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.eng-solution-over h4 {
  width: 100%;
  font-size: 18px;
}

.eng-solution-slider .item:hover .eng-solution-over {
  opacity: 1;
  visibility: visible;
}

.eng-solution-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 14px;
  box-sizing: border-box;
}

.eng-solution-icon-box {
  text-align: center;
}

.eng-solution-over h4 {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
  text-align: center;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

.eng-solution-over h4 span {
  font-weight: bold;
}

.eng-service-section {
  width: 100%;
  padding: 15px 0 60px;
}

.eng-service-slider-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.eng-service-slider-img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.eng-service-slider-img img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.eng-service-slider-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.5606617647058824) 66%);
}

.eng-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 35px;
}

.eng-service-content .sixth-title {
  color: #fff;
  margin-bottom: 10px;
}

.eng-service-content p {
  color: #fff;
  margin-bottom: 5px;
}

.eng-service-btn {
  width: 100%;
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
}

.learn-btn {
  width: auto;
  display: inline-block;
}

.learn-btn span {
  width: 100%;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding-left: 25px;
  background-image: url(../images/learn-icon.png);
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.learn-btn:hover span {
  padding-left: 35px;
  background-position: left 10px top 0px;
}

.eng-quality-section {
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
}


.military-section {
  width: 100%;
  padding-top: 110px;
  overflow: hidden;
}

.eng-quality-inner {
  width: 100%;
  align-items: center;
}

.eng-quality-left {
  width: 55%;
  padding-right: 130px;
}

.eng-quality-left .second-title {
  margin-bottom: 25px;
}

.eng-quality-img {
  width: 45%;
}

.eng-quality-img img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.eng-banner-content-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.eng-manufacturing-left .has-mask-fill>span {
  -webkit-text-fill-color: rgba(255, 255, 255, .08);
  background-image: linear-gradient(#fff, #fff);
}

.military-solution-slider .owl-nav,
.eng-service-slider .owl-nav,
.eng-solution-slider .owl-nav {
  display: flex;
  justify-content: center;
  column-gap: 12px;
  margin-top: 15px;
}

.military-solution-slider .owl-nav .owl-prev,
.military-solution-slider .owl-nav .owl-next,
.eng-service-slider .owl-nav .owl-prev,
.eng-service-slider .owl-nav .owl-next,
.eng-solution-slider .owl-nav .owl-prev,
.eng-solution-slider .owl-nav .owl-next {
  width: 42px !important;
  height: 42px !important;
  background-color: #00B4E5 !important;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 35px !important;
  line-height: 38px !important;
  color: #fff !important;
}

.military-solution-slider .owl-nav .owl-prev span,
.military-solution-slider .owl-nav .owl-next span,
.eng-service-slider .owl-nav .owl-prev span,
.eng-service-slider .owl-nav .owl-next span,
.eng-solution-slider .owl-nav .owl-prev span,
.eng-solution-slider .owl-nav .owl-next span {
  position: relative;
  top: -3px;
}

.military-solution-section {
  width: 100%;
  padding: 90px 0 120px;
  margin-top: 130px;
  background-color: #F3F5FA;
}

.military-img {
  height: 640px;
  object-fit: cover;
  object-position: center;
}

.military-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 40px;
  text-align: l;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: flex-end;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(0 0 0 / 90%) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.military-over .sixth-title {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.military-hover-content {
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.military-over:hover .military-hover-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.military-over:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 100%) 100%);
}

.military-hover-content p {
  color: #fff;
}

.military-hover-content .learn-btn {
  margin-top: 5px;
}

.eng-miltry-right {
  width: 55%;
  padding-left: 110px;
}

.military-section-inner {
  width: 100%;
  align-items: center;
}

.eng-miltry-right .second-title {
  margin-bottom: 25px;
}

.engineering_features {
  margin-top: 60px;
}

.sustainability_first_section {
  width: 100%;
  padding: 80px 0;
  background-color: #002951;
  overflow: hidden;
}

.sustainability_about_wrap {
  justify-content: space-between;
  align-items: flex-start;
}

.sustainability_about_left {
  width: 45%;
}

.sustainability_about_left .main-title {
  margin-bottom: 30px;
}

.sustainability_about_left h5 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 35px;
}

.sustainability_about_left p {
  color: #fff;
}

.sustainability_about_right {
  width: 48%;
  display: flex;
  justify-content: flex-end;
}

.sustainability_about_list {
  margin-top: 50px;
}

.sustainability_about_list .experience-detail-text-right ul li {
  color: #fff;
}

.sustainability_about_list .experience-detail-text-right ul li:nth-child(1),
.sustainability_about_list .experience-detail-text-right ul li:nth-child(2) {
  border-top: 1px solid #335474;
}

.sustainability_about_list .experience-detail-text-right ul li {
  border-bottom: 1px solid #335474;
}

.sustainability_building_section {
  width: 100%;
  padding: 110px 0;
  background-color: #F3F5FA;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}

.sustainability_building_left img {
  width: 100%;
  -webkit-border-top-right-radius: 15px;
  -moz-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}

.sustainability_building_left {
  width: 20%;
}

.sustainability_building_right {
  width: 70%;
  justify-content: space-between;
  align-items: center;
}

.sustainability_building-content {
  width: 45%;
}

.sustainability_building-content .main-title {
  margin-bottom: 30px;
}

.sustainability_building-img {
  width: 45%;
}

.sustainability_building-img img {
  width: 100%;
  -webkit-border-top-left-radius: 15px;
  -moz-border-top-left-radius: 15px;
  border-top-left-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-bottom-left-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden;
}

.sustainability_project_section {
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
}

.sustainability_project_section .construction-detail-slider-main {
  padding-bottom: 0;
}

.careers-banner-main {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}

.careers-banner-main h1 {
  font-size: 70px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.careers-list_title {
  max-width: 1160px;
}

.careers-list-section {
  width: 100%;
  padding: 110px 0 80px;
  background-color: #F4F6FB;
}

.careers-list-section .main-title {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.careers-list_wrap {
  width: 100%;
  padding-top: 70px;
}

.careers-list_inner {
  width: 100%;
  padding-top: 50px;
}

.careers-list_inner ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.careers-list_inner ul li {
  width: 47%;
  margin-left: 1.5%;
  margin-right: 1.5%;
}

.careers-list-box {
  width: 100%;
  border: 1px solid #DFDFDF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}

.careers-list-icon {
  width: 200px;
  height: 200px;
  background-color: #00B2E2;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.careers-list-content {
  width: calc(100% - 200px);
  padding: 15px 30px;
  display: flex;
  align-items: center;
}

.careers-list-content h4 {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.careers-list-content span {
  color: #909090;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.careers-list-content p {
  color: #000;
  font-size: 15px;
}

.careers-list-content-inner label {
  line-height: 31px;
  padding: 0 18px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  background-color: #00B2E2;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

.careers-details-section {
  width: 100%;
  padding: 50px 0 80px;
}

.careers-details-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.careers-details-nav ul li a,
.careers-details-nav ul li span {
  font-size: 16px;
  color: #666666;
  font-weight: 600;
}

.careers-details-nav ul li {
  padding-right: 46px;
  position: relative;
}

.careers-details-nav ul li::after {
  content: "";
  width: 7px;
  height: 12px;
  background-image: url(../images/detail-arrow.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 4px;
}

.careers-details-nav ul li:last-child:after {
  display: none;
}

.careers-details-title {
  width: 100%;
  padding-top: 35px;
}

.careers-details-title label {
  font-size: 16px;
  color: #000000;
}

.careers-details-title .second-title {
  text-transform: uppercase;
  margin-top: 10px;
}

.careers-details-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.careers-details-breadcrumb ul li {
  padding-right: 50px;
  font-size: 20px;
  color: #000;
  position: relative;
}

.careers-details-breadcrumb ul li+li::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: -25px;
  top: 0;
}

.careers-details-content {
  padding-top: 70px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.careers-details-left {
  width: 55%;
  padding-right: 120px;
  border-right: 1px solid #cdcdcd;
}

.careers-details-box .third-title {
  text-transform: uppercase;
}

.careers-details-box ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 20px;
}

.careers-details-box+.careers-details-box {
  margin-top: 70px;
}

.careers-details-box ul li {
  padding-left: 20px;
  position: relative;
  width: 100%;
}

.careers-details-box ul li::after {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(../images/career-detail-icon.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}

.careers-details-box ul li b {
  display: block;
}

.careers-details-right {
  width: 45%;
  padding-left: 100px;
}

.career-form-wrap {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  margin-top: 80px;
}

.career-form-wrap .second-title {
  text-transform: uppercase;
  text-align: center;
}

.career-form-box {
  margin-top: 50px;
}

.career-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.career-form li {
  width: 48%;
  margin-bottom: 15px;
}

.career-form .wpcf7-form-control-wrap {
  width: 100%;
}

.career-form .form-control::placeholder {
  color: #000;
}

.career-form .form-control {
  width: 100%;
  line-height: 49px;
  border: none;
  border-bottom: 1px solid #d9d9d9;
}


.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
}

.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0px 20px;
  display: block;
  width: 100%;
  pointer-events: none;
  z-index: 20;
  height: 50px;
  line-height: 50px;
  border: 1px solid #DEDEDE;
  color: #000;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-weight: 300;
  background-image: url(../images/upload.png);
  background-repeat: no-repeat;
  background-position: right 30px center;
}

.file-upload-wrapper:before {
  content: "Browse";
  height: 50px;
  line-height: 50px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 500;
  background-color: #D9F4FB;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  color: #00B2E2;
  text-transform: uppercase;
  font-size: 15px;
  position: absolute;
  z-index: 22;
  right: 0;
  top: 0;
}



.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

.eng-service-slider .owl-stage {
  margin: auto;
}

.related_carousel .owl-stage {
  margin: auto;
}

.custom-file-upload {
  width: 100%;
}

.career-form li.full-width {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 10px;
}

.file-upload-field {
  height: 100% !important;
}


.main-btn-submit {
  margin-top: 5px;
  background-color: #00B4E5;
  border: 1px solid #00B4E5;
  color: #fff;
  height: 50px;
  line-height: 51px;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  padding: 0 20px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 0 auto;
  display: block;
}

.parent .div15:nth-child(15)~div {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.main-btn-submit:hover {
  border: 1px solid #000;
  background-color: #000;
}

.contact-wrap-section {
  width: 100%;
  padding: 100px 0 80px;
}

.contact-wrap-section .careers-list_title {
  text-align: center;
  margin: 0 auto;
}

.contact-wrap-section .careers-list_title .main-title {
  margin-bottom: 15px;
}

.careers-form-wrap {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  margin-top: 40px;
}

.career-form textarea.form-control {
  width: 100%;
  resize: none;
  height: 140px;
  line-height: 25px;
  margin-top: 10px;
}

.nice-select.form-control {
  height: 49px;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.career-form .nice-select li {
  width: 100%;
  margin-bottom: 0;
}

.contact-wrap-reginal {
  width: 100%;
  padding: 80px 0 100px;
  background-color: #F4F6FB;
}

.contact-wrap-reginal h3 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #011831;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-wrap-reginal h5 {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 16px;
}

.contact-wrap-reginal #bodyContent {
  padding: 20px 20px 15px;
}

.contact-wrap-reginal .gm-style-iw-chr {
  position: absolute !important;
  right: 5px !important;
  top: -5px !important;
}

.contact-wrap-reginal p {
  font-size: 14px;
  line-height: 22px;
}

.contact-wrap-reginal a {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.contact-wrap-reginal a:hover {
  color: #00a0d2;
}

.contact-map-list {
  width: 100%;
  margin-top: 40px;
}

.contact-map-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-map-list ul li .map-list-box {
  height: 65px;
  line-height: 65px;
  border: 1px solid #00B2E2;
  background-color: #fff;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  padding: 0 28px;
  font-size: 15px;
  text-transform: uppercase;
  color: #00B2E2;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
}

.contact-map-list ul li .map-list-box:hover {
  background-color: #00B2E2;
  color: #fff;
}

.search-box {
  width: 500px;
  height: 65px;
  font-style: italic;
  line-height: 65px;
  border: 1px solid #DFDFDF;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  border-radius: 300px;
  padding: 0 60px 0 30px;
  font-size: 15px;
  background-color: #fff;
  background-image: url(../images/search-icon.png);
  background-repeat: no-repeat;
  background-position: right 30px center;
}

.contact-map-box {
  width: 100%;
  height: 630px;
  margin-top: 50px;
}

.footer-logo {
  max-width: 300px;
}

.error-404 .main-btn {
  margin-top: 30px;
}

/*Experience Popup*/

.get_quote {
  width: 100%;
  max-width: 900px;
}

.get_quote .third-title {
  text-transform: uppercase;
}

.get_quote_form {
  margin-top: 20px;
  overflow: hidden;
}

.screen-reader-text {
  display: none;
}

.sticky-company-nav .data-scroll-container {
  padding-top: 50px;
}

.awards-section .second-title {
  font-size: 25px;
  line-height: 35px;
}


.banner video {
  width: 100%;
  height: 100%;
}

.banner-contents {
  position: absolute;
  top: 45%;
  z-index: 2;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.clientSwiper {
  overflow: hidden;
  border-radius: 20px;
}

.banner .banner-contents {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner .banner-contents .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.banner .banner-contents h2,
.banner .banner-contents h3 {
  margin: 0;
	padding-bottom:100px;
  line-height: 1.2;
}
.styled-contact-grid {
  margin-top: 20px;
}

.contact-card {
  padding: 20px;
  margin-bottom: 20px;
}

.careers-form-wrap {
  margin-top: 50px;
}

.contact-card strong {
  display: block;
  margin-bottom: 5px;
}

.contact-card br {
  line-height: 1.6;
}
.contact-details-grid.styled-contact-grid .contact-grid-inner{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}

.contact-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:22px 24px;
  box-shadow:0 6px 22px rgba(0,0,0,.06);
  line-height:1.65;
  word-break:break-word;
}

.contact-card h4{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.2;
}

.contact-card strong{
  display:block;
  font-weight:700;
  margin:18px 0 6px;
}

.contact-card strong:first-of-type{
  margin-top:0;
}

@media (max-width: 900px){
  .contact-details-grid.styled-contact-grid .contact-grid-inner{
    grid-template-columns:1fr;
    gap:20px;
  }
  .contact-card{
    padding:18px 20px;
  }
}
