@font-face {
  font-family: "Aeonik";
  src: url("../../fonts/aeonik-normal-400.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../../fonts/aeonik-normal-700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: rgba(237, 28, 36, 1);
  --white: rgba(255, 255, 255, 1);
  --aeonik: "Aeonik", sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--aeonik);
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  max-width: 1920px;
  margin: 0 auto;
}

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

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.primary-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  color: rgb(35, 35, 35);
}
.primary-title.uppercase {
  text-transform: uppercase;
}
.primary-title.white {
  color: var(--white);
  font-weight: 700;
}

.desc {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 1.1;
  color: rgb(255, 255, 255);
}
.desc.dark {
  color: rgb(95, 99, 104);
}

.primary-btn {
  border-radius: 8px;
  padding: 8px 24px;
  color: var(--white);
  border: 7px solid rgba(167, 167, 167, 0.1019607843);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  font-size: 14px;
  font-weight: 700;
  border: solid 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: 0px 1px 4px 0px rgba(31, 31, 31, 0.1);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
  width: 51%;
  height: 200px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: 0.8s all;
  z-index: -1;
}
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  width: 50%;
  height: 200px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: 0.8s all;
  z-index: -1;
}
.primary-btn.dark {
  border: 0;
  background: #000;
}
.primary-btn.dark:hover::before {
  transform: rotate(25deg) translate(-110px, -40px);
}
.primary-btn.dark:hover::after {
  transform: rotate(25deg) translate(40px, -40px);
}
.primary-btn:hover {
  color: var(--white);
}
.primary-btn:hover::before {
  transform: rotate(25deg) translate(-110px, -40px);
}
.primary-btn:hover::after {
  transform: rotate(25deg) translate(40px, -40px);
}

.secondary-btn {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 4px 12px;
  color: var(--white);
  border: 7px solid rgba(167, 167, 167, 0.1019607843);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(6.1999998093px);
  text-transform: capitalize;
  transition: 0.5s all;
}
.secondary-btn img {
  transition: 0.5s all;
}
.secondary-btn:hover {
  color: var(--white);
}
.secondary-btn:hover img {
  transform: rotate(48deg);
}

.badge-primary {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  text-transform: uppercase;
  display: block;
  position: relative;
  padding-left: 10px;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .badge-primary {
    font-size: 14px;
  }
}
.badge-primary::before {
  content: "";
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .offer-arrows .swiper-button-next,
  .offer-arrows .swiper-button-prev {
    width: 40px !important;
  }
}
@media screen and (max-width: 992px) {
  .offer-arrows {
    margin-top: 20px !important;
  }
}
.iti {
  width: 100%;
}
.iti .iti__flag-container .iti__selected-dial-code {
  font-size: 18px;
  font-weight: 400;
  color: rgb(150, 150, 150);
}
.iti .iti__flag-container .iti__country-name {
  font-weight: 400;
  color: rgb(150, 150, 150);
}
.iti .iti__flag-container .iti__selected-flag {
  padding-bottom: 10px;
}
.iti .iti__tel-input {
  padding-left: 90px !important;
}
.iti .iti__search-input {
  padding: 10px;
}

.toastify {
  font-family: var(--gilroySemiBold) !important;
  font-weight: 600 !important;
  color: #000 !important;
}
.toastify .toast-close {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 10px;
}

body.active {
  overflow: hidden;
}

header {
  padding: 30px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  header {
    padding: 15px 0 0 0;
  }
}
@media screen and (max-width: 992px) {
  header .desktop-header {
    display: none;
  }
}
header .desktop-header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 16px;
  background-color: rgba(45, 45, 45, 0.4);
  border: solid 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(23.3999996185px);
  border-radius: 10px;
}
header .desktop-header .header-main .main-menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown {
  position: relative;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown:hover a {
  color: var(--primary-color);
}
header .desktop-header .header-main .main-menu ul li.main-dropdown:hover a path {
  stroke: var(--primary-color);
}
header .desktop-header .header-main .main-menu ul li.main-dropdown:hover .dropdown-menu-main {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown:hover .dropdown-menu-main::before {
  visibility: visible;
  opacity: 1;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown a {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown a path {
  transition: 0.3s all;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main {
  position: absolute;
  top: 53px;
  left: 0;
  background: rgba(45, 45, 45, 0.4);
  border: solid 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 10px;
  visibility: 0;
  opacity: 0;
  transition: 0.3s all;
  width: 100%;
  min-width: 135px;
  pointer-events: none;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main::before {
  content: "";
  width: 100%;
  height: 50px;
  background: transparent;
  position: absolute;
  top: -35px;
  left: 0;
  padding: 10px;
  transition: 0.3s all;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main ul {
  display: block;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main ul li {
  margin-bottom: 5px;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main ul li:last-child {
  margin-bottom: 0;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main ul li a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
}
header .desktop-header .header-main .main-menu ul li.main-dropdown .dropdown-menu-main ul li a:hover {
  color: var(--primary-color);
}
header .desktop-header .header-main .main-menu ul li a {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
}
header .desktop-header .header-main .main-menu ul li a:hover {
  color: var(--primary-color);
}
header .desktop-header .header-main .action-btn-main {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .desktop-header .header-main .action-btn-main a:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
header .mobile-main {
  display: none;
}
@media screen and (max-width: 992px) {
  header .mobile-main {
    display: block;
  }
}
header .mobile-main .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 16px;
  background-color: rgba(45, 45, 45, 0.4);
  border: solid 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(23.3999996185px);
  border-radius: 10px;
}
header .mobile-main .mobile-main .mobileLogo {
  width: 80px;
}
header .mobile-main .mobile-main .mobile-bar-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .mobile-main .dropdown button {
  background: transparent;
  padding: 0;
}
header .mobile-main .dropdown button::after {
  display: none;
}
header .mobile-main .dropdown .dropdown-menu .dropdown-item {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: rgba(16, 16, 16, 0.6);
  transition: 0.3s all;
}
header .mobile-main .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: rgb(254, 196, 53);
}

.overflow-hidden .sidebar-bg {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-width: 350px;
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  background-color: #fff;
  z-index: 102;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  padding: 30px;
  opacity: 0;
}
.sidebar.active {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}
.sidebar .closeSidebar {
  opacity: 0.3;
  display: flex;
  justify-content: end;
}
.sidebar .mobile-menu > li {
  border-bottom: 1px solid rgba(35, 35, 35, 0.2);
  padding: 5px 0px;
}
.sidebar .mobile-menu > li.main-dropdown {
  position: relative;
}
.sidebar .mobile-menu > li.main-dropdown:hover a {
  color: var(--primary-color);
}
.sidebar .mobile-menu > li.main-dropdown:hover a path {
  stroke: var(--primary-color);
}
.sidebar .mobile-menu > li.main-dropdown:hover .dropdown-menu-main {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.sidebar .mobile-menu > li.main-dropdown:hover .dropdown-menu-main::before {
  visibility: visible;
  opacity: 1;
}
.sidebar .mobile-menu > li.main-dropdown a {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  transition: 0.3s all;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar .mobile-menu > li.main-dropdown a path {
  transition: 0.3s all;
  stroke: rgb(35, 35, 35);
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main {
  position: absolute;
  top: 53px;
  left: 0;
  background: rgba(45, 45, 45, 0.4);
  border: solid 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 10px;
  visibility: 0;
  opacity: 0;
  transition: 0.3s all;
  width: 100%;
  min-width: 135px;
  pointer-events: none;
  z-index: 99;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main::before {
  content: "";
  width: 100%;
  height: 50px;
  background: transparent;
  position: absolute;
  top: -35px;
  left: 0;
  padding: 10px;
  transition: 0.3s all;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main ul {
  display: block;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main ul li {
  margin-bottom: 5px;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main ul li:last-child {
  margin-bottom: 0;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main ul li a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
}
.sidebar .mobile-menu > li.main-dropdown .dropdown-menu-main ul li a:hover {
  color: var(--primary-color);
}
.sidebar .mobile-menu > li a {
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  padding: 5px 0px;
  display: block;
  width: max-content;
}
.sidebar .mobile-menu > li a.active {
  color: var(--primary-color) !important;
}
.sidebar .mobile-menu > li a.active path {
  stroke: var(--primary-color);
}
.sidebar .action-btn-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.sidebar .action-btn-main a {
  font-weight: 400;
}
.sidebar .action-btn-main a:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.945);
}
.sidebar .action-btn-main a:nth-child(1) img {
  filter: brightness(0.1);
}

.footer-main {
  border-top: 1px solid;
  border-image-source: linear-gradient(270deg, #FFFFFF 0%, #C8C8C8 50%, #FFFFFF 100%);
  padding: 0 0 30px 0;
}
.footer-main .divider {
  background: linear-gradient(270deg, #FFFFFF 0%, #C8C8C8 50%, #FFFFFF 100%);
  width: 100%;
  height: 1px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .footer-main .divider {
    margin-bottom: 40px;
  }
}
.footer-main .logo-text-icon {
  max-width: 290px;
  margin-bottom: 20px;
}
.footer-main .logo-text-icon .logo-main img {
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .footer-main .logo-text-icon .logo-main img {
    width: 200px;
  }
}
.footer-main .logo-text-icon .desc {
  margin-bottom: 30px;
}
.footer-main .logo-text-icon .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-main .logo-text-icon .social-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: solid 1px rgba(95, 99, 104, 0.5);
  background-color: rgba(95, 99, 104, 0.05);
  backdrop-filter: blur(119.6999969482px);
}
.footer-main .footer-menu {
  padding: 0 10px;
}
.footer-main .footer-menu h3 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(95, 99, 104, 0.6);
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .footer-main .footer-menu h3 {
    margin-bottom: 20px;
  }
}
.footer-main .footer-menu ul li a {
  font-size: 20px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  transition: 0.3s all;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .footer-main .footer-menu ul li a {
    font-size: 16px;
  }
}
.footer-main .footer-menu ul li a:hover {
  color: var(--primary-color);
}
.footer-main .footer-menu .icon-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer-main .footer-menu .icon-content {
    margin-bottom: 20px;
  }
}
.footer-main .footer-menu .icon-content:last-child {
  margin-bottom: 0;
}
.footer-main .footer-menu .icon-content .content span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(95, 99, 104, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-main .footer-menu .icon-content .content span a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(95, 99, 104, 0.6);
}
.footer-main .footer-menu .icon-content .content span a:hover {
  color: rgba(95, 99, 104, 0.6);
}
.footer-main .copy-right-text {
  max-width: 300px;
}
@media screen and (max-width: 992px) {
  .footer-main .copy-right-text {
    margin-top: 20px;
  }
}
.footer-main .copy-right-text p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 20px;
  line-height: 1.1;
}
.footer-main .copy-right-text p:last-child {
  margin-bottom: 0;
}
.footer-main .copy-right-text p a {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}
.footer-main .copy-right-text p a:hover {
  color: var(--primary-color);
}

.home-video {
  position: relative;
  z-index: 0;
}
.home-video.banner-img::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -25.53%, #000000 108.49%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home-video.banner-img .banner-content-main {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.home-video.banner-img .banner-content-main .content-main {
  max-width: 720px;
}
.home-video::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 98.03%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home-video .video-slider-main {
  width: 100%;
}
.home-video .video-slider-main video,
.home-video .video-slider-main img {
  width: 100%;
  object-fit: cover;
  height: 99vh;
}
.home-video .banner-content-main {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.home-video .banner-content-main .content-main {
  max-width: 700px;
}
@media screen and (max-width: 992px) {
  .home-video .banner-content-main .content-main {
    margin-bottom: 20px;
  }
}
.home-video .banner-content-main .content-main span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: rgb(255, 255, 255);
  display: block;
  text-transform: uppercase;
}
.home-video .banner-content-main .content-main .primary-title {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.home-video .banner-content-main .content-main .desc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.home-video .banner-content-main .content-main .desc .icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-video .banner-content-main .home-thumb-banner .video-card-main {
  background-color: rgba(35, 35, 35, 0.5);
  display: flex;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .home-video .banner-content-main .home-thumb-banner .video-card-main {
    padding: 10px;
  }
}
.home-video .banner-content-main .home-thumb-banner .video-card-main .text-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 0;
  height: auto;
}
.home-video .banner-content-main .home-thumb-banner .video-card-main .text-main span {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.home-video .banner-content-main .home-thumb-banner .video-card-main .text-main a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgb(217, 217, 217);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-video .banner-content-main .white-badge-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.home-video .banner-content-main .white-badge-main span {
  border: solid 1px rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  padding: 7px 20px;
  border-radius: 30px;
}
.home-video .banner-count-main {
  position: absolute;
  top: 30%;
  right: 5%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .home-video .banner-count-main {
    display: none;
  }
}
.home-video .banner-count-main .banner-count-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-video .banner-count-main .banner-count-pagination .banner-count-flex {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.home-video .banner-count-main .banner-count-pagination .banner-count-flex #HomeBannerCount {
  height: 30px;
}
.home-video .banner-count-main .banner-count-pagination .banner-count-flex span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.home-video .banner-count-main .banner-count-pagination .swiper-pagination {
  position: unset;
  transform: translate(0);
  display: flex;
  flex-direction: column-reverse;
}
.home-video .banner-count-main .banner-count-pagination .swiper-pagination .swiper-pagination-bullet {
  background: var(--white);
  height: 15px;
  width: 5px;
  border-radius: 5px;
  transition: 0.3s all;
  opacity: 1;
}
.home-video .banner-count-main .banner-count-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(163, 163, 163);
  height: 50px;
}

.discover-ideal {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .discover-ideal {
    padding: 40px 0;
  }
}
.discover-ideal .discover-box-main {
  position: relative;
  background-color: rgb(243, 243, 243);
  overflow: hidden;
  height: 456px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 25px;
  border-radius: 10px;
  transition: 0.8s all;
  z-index: 1;
  margin-bottom: 20px;
}
.discover-ideal .discover-box-main:hover .head-icon-main h3 {
  color: rgb(255, 255, 255);
}
.discover-ideal .discover-box-main:hover .head-icon-main span img {
  filter: brightness(1);
}
.discover-ideal .discover-box-main:hover .desc-icon p {
  color: rgb(255, 255, 255);
}
.discover-ideal .discover-box-main:hover .desc-icon a {
  border: solid 1px rgb(237, 28, 36);
}
.discover-ideal .discover-box-main:hover .desc-icon a::before {
  transform: translateX(0);
}
.discover-ideal .discover-box-main:hover .desc-icon a img {
  filter: brightness(1);
}
.discover-ideal .discover-box-main:hover .scale-img img {
  transform: scale(1);
}
.discover-ideal .discover-box-main .head-icon-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.discover-ideal .discover-box-main .head-icon-main h3 {
  font-size: 30px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 0;
  transition: 0.8s all;
}
.discover-ideal .discover-box-main .head-icon-main span img {
  filter: brightness(0.5);
  transition: 0.8s all;
}
.discover-ideal .discover-box-main .desc-icon {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.discover-ideal .discover-box-main .desc-icon p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  max-width: 310px;
  line-height: 1.1;
  transition: 0.8s all;
}
.discover-ideal .discover-box-main .desc-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 1px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
}
.discover-ideal .discover-box-main .desc-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.discover-ideal .discover-box-main .desc-icon a img {
  filter: brightness(0.5);
}
.discover-ideal .discover-box-main .scale-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.discover-ideal .discover-box-main .scale-img img {
  transform: scale(0.5);
  transition: 0.8s all;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .discover-ideal .discover-box-main .head-icon-main h3 {
    color: rgb(255, 255, 255);
  }
  .discover-ideal .discover-box-main .head-icon-main span img {
    filter: brightness(1);
  }
  .discover-ideal .discover-box-main .desc-icon p {
    color: rgb(255, 255, 255);
  }
  .discover-ideal .discover-box-main .desc-icon a {
    border: solid 1px rgb(237, 28, 36);
  }
  .discover-ideal .discover-box-main .desc-icon a::before {
    transform: translateX(0);
  }
  .discover-ideal .discover-box-main .desc-icon a img {
    filter: brightness(1);
  }
  .discover-ideal .discover-box-main .scale-img img {
    transform: scale(1);
  }
}

.engineering-strength {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .engineering-strength {
    padding-bottom: 40px;
  }
}
.engineering-strength .strength-img-main {
  position: relative;
  margin-top: -60px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .engineering-strength .strength-img-main {
    margin-top: -30px;
  }
}
.engineering-strength .strength-img-main .engineering-strength-img {
  width: 100%;
}
.engineering-strength .strength-img-main.active .strength-card-main .strength-card {
  transform: translateY(0);
}
.engineering-strength .strength-img-main .strength-card-main {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
@media screen and (max-width: 992px) {
  .engineering-strength .strength-img-main .strength-card-main {
    position: static;
    margin-top: 20px;
  }
}
.engineering-strength .strength-img-main .strength-card-main .col-lg-3:nth-child(1) .strength-card {
  transition: 1.5s all;
}
.engineering-strength .strength-img-main .strength-card-main .col-lg-3:nth-child(2) .strength-card {
  transition: 1.8s all;
}
.engineering-strength .strength-img-main .strength-card-main .col-lg-3:nth-child(3) .strength-card {
  transition: 2s all;
}
.engineering-strength .strength-img-main .strength-card-main .col-lg-3:nth-child(4) .strength-card {
  transition: 2.5s all;
}
.engineering-strength .strength-img-main .strength-card-main .strength-card {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: solid 1px rgb(150, 150, 150);
  border-radius: 10px;
  padding: 25px;
  transform: translateY(120%);
  height: 100%;
}
@media screen and (max-width: 992px) {
  .engineering-strength .strength-img-main .strength-card-main .strength-card {
    height: calc(100% - 20px);
    margin-bottom: 20px;
  }
}
.engineering-strength .strength-img-main .strength-card-main .strength-card .head-icon {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.engineering-strength .strength-img-main .strength-card-main .strength-card .head-icon h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}
.engineering-strength .strength-img-main .strength-card-main .strength-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(240, 240, 240);
}
.engineering-strength .managed-labor-img {
  overflow: hidden;
}
.engineering-strength .managed-labor-img.active img {
  transform: translateX(0);
}
.engineering-strength .managed-labor-img img {
  transform: translateX(-100%);
  width: 100%;
  transition: 1.5s all;
}
.engineering-strength .managed-labor-card {
  background-color: rgb(243, 243, 243);
  padding: 45px 30px 60px 30px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .engineering-strength .managed-labor-card {
    padding: 30px 20px;
  }
}
.engineering-strength .managed-labor-card.active .managed-labor-text {
  transform: translateX(0);
}
.engineering-strength .managed-labor-card .managed-labor-text {
  transform: translateX(-110%);
  transition: 1.5s all;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.engineering-strength .managed-labor-card .managed-labor-text h3 {
  font-size: 30px;
}

.building-excellence {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .building-excellence {
    padding-bottom: 40px;
  }
}
.building-excellence .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .building-excellence .heading-main {
    margin-bottom: 30px;
  }
}
.building-excellence .heading-main .text-main {
  max-width: 700px;
}
.building-excellence .building-slider {
  position: relative;
  overflow: hidden;
}
.building-excellence .building-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -7.67%, #000000 119.09%);
  z-index: 3;
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .building-excellence .building-slider::before {
    display: none;
  }
}
.building-excellence .building-slider .building-slider-main img {
  width: 100%;
  border-radius: 20px;
}
.building-excellence .building-slider .text-slider-pagination-main {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 3;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main {
    gap: 0;
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text {
  max-width: 600px;
  overflow: hidden;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text {
  margin-bottom: 50px;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text h3 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(223, 223, 223);
}
@media screen and (max-width: 992px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text {
    margin: 20px 0;
  }
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text h3 {
    color: rgb(35, 35, 35);
    font-weight: 400;
  }
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main .building-text p {
    color: rgb(95, 99, 104);
    line-height: 1.1;
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  color: rgb(223, 223, 223);
}
@media screen and (max-width: 1024px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main span {
    color: rgb(95, 99, 104);
  }
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .building-slider-text .building-text-main span img {
    filter: brightness(0.5);
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main {
  display: flex;
  align-items: center;
  gap: 20px;
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main span {
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main span img {
    filter: brightness(0.1);
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count {
  border-radius: 100%;
  border: solid 10px rgba(237, 28, 36, 0.2);
}
@media screen and (max-width: 767px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count {
    border: solid 7px rgba(237, 28, 36, 0.2);
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide {
    width: 50px;
    height: 50px;
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide span {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide span {
    font-size: 12px;
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide .count-building-slider {
  overflow: hidden;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide .count-building-slider {
    height: 18px;
  }
}
.building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide .count-building-slider .count-slider-main {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .building-excellence .building-slider .text-slider-pagination-main .building-slider-text-main .arrow-pagination-main .circle-slide-count .circle-slide .count-building-slider .count-slider-main {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .building-excellence .building-slider .text-slider-pagination-main {
    position: static;
  }
}

.horizontal-logo {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .horizontal-logo {
    padding: 40px 0;
  }
}
.horizontal-logo .horizontal-marque-main {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.horizontal-logo .horizontal-marque-main .horizontal-marque {
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.horizontal-logo .horizontal-marque-main .horizontal-marque span {
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .horizontal-logo .horizontal-marque-main .horizontal-marque span {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .horizontal-logo .horizontal-marque-main .horizontal-marque span img {
    width: 120px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.certification-sustainable-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .certification-sustainable-main {
    padding-bottom: 40px;
  }
}
.certification-sustainable-main .certification-sustainable {
  background-color: rgb(232, 232, 232);
  padding: 30px;
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .certification-sustainable-main .certification-sustainable {
    padding: 15px;
  }
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  padding: 50px 0;
}
@media screen and (max-width: 992px) {
  .certification-sustainable-main .certification-sustainable .certification-sustainable-card {
    padding: 30px 0;
  }
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card h3 {
  font-size: 30px;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .badge-primary {
  font-size: 14px;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .desc {
  margin-bottom: 30px;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span:hover {
  border: 1px solid #5F6368;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span:hover img {
  filter: brightness(1);
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span:hover::before {
  transform: translateY(0);
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-card .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-img {
  overflow: hidden;
}
.certification-sustainable-main .certification-sustainable .certification-sustainable-img .certificate-card-img img {
  width: 100%;
}

.feature-insight {
  padding-bottom: 70px;
}
.feature-insight.active .badge-primary {
  transform: translateX(0);
}
.feature-insight.active .primary-title {
  transform: translateX(0);
}
.feature-insight.active .desc {
  transform: translateX(0);
}
.feature-insight.active .feature-slider-text {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .feature-insight {
    padding-bottom: 40px;
  }
}
.feature-insight .badge-primary {
  transform: translateX(-100%);
  transition: 1s all;
}
.feature-insight .primary-title {
  transform: translateX(-100%);
  transition: 1s all;
}
.feature-insight .desc {
  transform: translateX(103%);
  transition: 1s all;
}
.feature-insight .feature-slider-text {
  overflow: hidden;
  margin-bottom: 30px;
  transform: translateX(101%);
  transition: 1s all;
}
.feature-insight .feature-slider-text .feature-card {
  overflow: hidden;
  margin-bottom: 30px;
}
.feature-insight .feature-slider-text .feature-card:hover .feature-img img {
  transform: scale(1.1);
}
.feature-insight .feature-slider-text .feature-card:hover .feature-img::before {
  background: rgba(35, 35, 35, 0.5);
}
.feature-insight .feature-slider-text .feature-card:hover .feature-img .arrow-icon {
  left: 50%;
  opacity: 1;
  visibility: visible;
}
.feature-insight .feature-slider-text .feature-card .feature-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
}
.feature-insight .feature-slider-text .feature-card .feature-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  z-index: 1;
}
.feature-insight .feature-slider-text .feature-card .feature-img > img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 384/396;
  transition: 0.5s all;
}
.feature-insight .feature-slider-text .feature-card .feature-img .arrow-icon {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  transition: 0.5s all;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.feature-insight .feature-slider-text .feature-card .feature-img .arrow-icon .arrow-img {
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 992px) {
  .feature-insight .feature-slider-text .feature-card .feature-img img {
    transform: scale(1.1);
  }
  .feature-insight .feature-slider-text .feature-card .feature-img::before {
    background: rgba(35, 35, 35, 0.5);
  }
  .feature-insight .feature-slider-text .feature-card .feature-img .arrow-icon {
    left: 50%;
    opacity: 1;
    visibility: visible;
  }
}
.feature-insight .feature-slider-text .feature-card .badge-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.feature-insight .feature-slider-text .feature-card .badge-flex span {
  border: solid 1px rgb(237, 28, 36);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(237, 28, 36);
  margin-left: 1px;
}
.feature-insight .feature-slider-text .feature-card h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.feature-insight .feature-slider-text .feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 0;
  text-transform: capitalize;
}
.feature-insight .arrow-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.feature-insight .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.feature-insight .arrow-main span:hover {
  border: solid 2px var(--primary-color);
}
.feature-insight .arrow-main span:hover img {
  filter: brightness(1);
}
.feature-insight .arrow-main span:hover::before {
  transform: translateY(0);
}
.feature-insight .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.feature-insight .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}

.extensive-covered {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .extensive-covered {
    padding-bottom: 40px;
  }
}
.extensive-covered .faq-heading-img .faq-img-main img {
  width: 100%;
}
.extensive-covered .faq-main .collapse-main {
  border: solid 1px rgb(95, 99, 104);
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 10px;
}
.extensive-covered .faq-main .collapse-main.active .collapse-head h3 {
  color: rgb(35, 35, 35);
}
.extensive-covered .faq-main .collapse-main.active .collapse-head .plus-icon img {
  transform: rotate(45deg);
}
.extensive-covered .faq-main .collapse-main:last-child {
  margin-bottom: 0;
}
.extensive-covered .faq-main .collapse-main .collapse-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.extensive-covered .faq-main .collapse-main .collapse-head h3 {
  font-size: 18px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 0;
  transition: 0.3s all;
  max-width: 500px;
}
.extensive-covered .faq-main .collapse-main .collapse-head .plus-icon {
  cursor: pointer;
  display: flex;
}
.extensive-covered .faq-main .collapse-main .collapse-head .plus-icon img {
  transition: 0.3s all;
}
.extensive-covered .faq-main .collapse-main .collapse-body {
  padding-top: 20px;
}
.extensive-covered .faq-main .collapse-main .collapse-body p {
  margin-bottom: 0;
}

.question-for-need {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .question-for-need {
    padding-bottom: 40px;
  }
}
.question-for-need .question-img-main {
  position: relative;
}
.question-for-need .question-img-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(202.3deg, rgba(0, 0, 0, 0) -18.74%, rgba(0, 0, 0, 0.6) 111.6%);
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .question-for-need .question-img-main::before {
    display: none;
  }
}
.question-for-need .question-img-main > img {
  border-radius: 20px;
  width: 100%;
}
.question-for-need .question-img-main .question-text-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 650px;
  margin: auto;
}
.question-for-need .question-img-main .question-text-main h2 {
  font-weight: 400;
}
.question-for-need .question-img-main .question-text-main a {
  margin: auto;
}
@media screen and (max-width: 992px) {
  .question-for-need .question-img-main .question-text-main {
    position: unset;
    text-align: left;
    max-width: unset;
    transform: translate(0);
    margin: 20px 0 0 0;
  }
  .question-for-need .question-img-main .question-text-main h2 {
    color: rgb(35, 35, 35);
  }
  .question-for-need .question-img-main .question-text-main .desc {
    color: rgb(95, 99, 104);
  }
  .question-for-need .question-img-main .question-text-main a {
    margin: 0;
  }
}

@media screen and (max-width: 992px) {
  .map-main {
    padding-bottom: 40px;
  }
}
.map-main .map-video-main {
  width: 100%;
}
.map-main .map-video-main video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.building-strength-main {
  padding-top: 70px;
}
@media screen and (max-width: 992px) {
  .building-strength-main {
    padding-top: 40px;
  }
}
.building-strength-main .primary-title {
  max-width: 720px;
}
.building-strength-main .building-img-main {
  height: 100%;
}
.building-strength-main .building-img-main img,
.building-strength-main .building-img-main video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.building-strength-main .building-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.building-strength-main .building-card-main .number-text-main {
  text-align: center;
}
.building-strength-main .building-card-main .number-text-main .num-text {
  border-bottom: solid 1px rgba(35, 35, 35, 0.2);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.building-strength-main .building-card-main .number-text-main .num-text:last-child {
  margin-bottom: 0;
}
.building-strength-main .building-card-main .number-text-main .num-text span {
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.1;
}
.building-strength-main .building-card-main .number-text-main .num-text p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  line-height: 1;
  text-transform: capitalize;
}

.creative-support-main {
  padding: 70px 0 0 0;
}
@media screen and (max-width: 992px) {
  .creative-support-main {
    padding-top: 40px;
  }
}
.creative-support-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.creative-support-main .heading-main > div {
  max-width: 670px;
}
.creative-support-main .heading-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.creative-support-main .heading-main .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.creative-support-main .heading-main .arrow-main span:hover {
  border: solid 2px var(--primary-color);
}
.creative-support-main .heading-main .arrow-main span:hover img {
  filter: brightness(1);
}
.creative-support-main .heading-main .arrow-main span:hover::before {
  transform: translateY(0);
}
.creative-support-main .heading-main .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.creative-support-main .heading-main .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}
.creative-support-main .heading-main .arrow-main .swiper-button-disabled {
  opacity: 0.5;
}
.creative-support-main .creative-support-slider {
  overflow: hidden;
}
.creative-support-main .creative-support-slider .swiper-slide {
  height: auto;
}
.creative-support-main .creative-support-slider .sub-service-card {
  position: relative;
  background: rgb(243, 243, 243);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  z-index: 1;
}
.creative-support-main .creative-support-slider .sub-service-card:hover .icon-box {
  background: rgb(255, 255, 255);
}
.creative-support-main .creative-support-slider .sub-service-card:hover .icon-box svg path {
  fill: var(--primary-color);
}
.creative-support-main .creative-support-slider .sub-service-card:hover .text-main h4 {
  color: rgb(255, 255, 255);
}
.creative-support-main .creative-support-slider .sub-service-card:hover .text-main p {
  color: rgb(255, 255, 255);
}
.creative-support-main .creative-support-slider .sub-service-card:hover .service-img img {
  opacity: 1;
}
.creative-support-main .creative-support-slider .sub-service-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(237, 28, 36);
  transition: 0.5s all;
  border-radius: 4px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .creative-support-main .creative-support-slider .sub-service-card .icon-box {
    margin-bottom: 0;
  }
}
.creative-support-main .creative-support-slider .sub-service-card .icon-box svg path {
  fill: #fff;
  transition: 0.5s all;
}
.creative-support-main .creative-support-slider .sub-service-card .text-main h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 10px;
  transition: 0.5s all;
  line-height: 1.1;
}
.creative-support-main .creative-support-slider .sub-service-card .text-main p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  transition: 0.5s all;
  line-height: 1.1;
}
.creative-support-main .creative-support-slider .sub-service-card .service-img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}
.creative-support-main .creative-support-slider .sub-service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s all;
}

.proven-work-main {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .proven-work-main {
    padding: 40px 0;
  }
}
.proven-work-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .proven-work-main .heading-main {
    margin-bottom: 30px;
  }
}
.proven-work-main .heading-main .text-main {
  max-width: 740px;
}
.proven-work-main .col-lg-3 {
  transition: 1s all;
}
.proven-work-main .col-lg-3:last-child .proven-work-card .border-divider {
  display: none;
}
.proven-work-main .col-lg-3:nth-child(2) .proven-work-card {
  transition-delay: 0.01s;
}
.proven-work-main .col-lg-3:nth-child(3) .proven-work-card {
  transition-delay: 1s;
}
.proven-work-main .col-lg-3:nth-child(4) .proven-work-card {
  transition-delay: 2s;
}
.proven-work-main .col-lg-3:nth-child(5) .proven-work-card {
  transition-delay: 3s;
}
.proven-work-main.active .proven-work-card {
  opacity: 1;
  visibility: visible;
}
.proven-work-main .proven-work-card {
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.proven-work-main .proven-work-card .circle-main {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(243, 243, 243);
  border-radius: 100%;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .proven-work-main .proven-work-card .circle-main {
    width: 120px;
    height: 120px;
  }
}
.proven-work-main .proven-work-card .circle-main .border-divider {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 110%;
  background: rgb(223, 223, 223);
  height: 2px;
}
@media screen and (max-width: 992px) {
  .proven-work-main .proven-work-card .circle-main .border-divider {
    display: none;
  }
}
.proven-work-main .proven-work-card .circle-main span {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
}
.proven-work-main .proven-work-card .text-main {
  max-width: 270px;
  width: 100%;
  margin: auto;
}
.proven-work-main .proven-work-card .text-main h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(35, 35, 35);
  margin-bottom: 10px;
}
.proven-work-main .proven-work-card .text-main p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: rgb(95, 99, 104);
}

.civil-contracting-main {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .civil-contracting-main {
    padding: 0 0 40px 0;
  }
}
.civil-contracting-main .civil-contracting-card {
  background: rgb(237, 28, 36);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.civil-contracting-main .civil-contracting-card .text-main {
  padding: 40px;
}
.civil-contracting-main .civil-contracting-card .text-main .primary-title {
  color: rgb(255, 255, 255);
}
.civil-contracting-main .civil-contracting-card .text-main .badge-primary {
  color: rgb(255, 255, 255);
}
.civil-contracting-main .civil-contracting-card .text-main .badge-primary::before {
  content: "";
  background: rgb(255, 255, 255);
}
.civil-contracting-main .civil-contracting-card .faqs-main {
  background: rgb(233, 233, 233);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main {
  background: rgb(233, 233, 233);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.3s all;
  padding: 30px 40px;
  overflow: hidden;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main.active {
  background: rgb(243, 243, 243);
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main.active .head {
  padding-bottom: 16px;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main.active .head img {
  transform: rotate(180deg);
  transition: 0.3s all;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main.active .body {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: 0.3s all;
  cursor: pointer;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main .head h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 0;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main .head img {
  transition: 0.3s all;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main .body {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: 0.5s height all;
}
.civil-contracting-main .civil-contracting-card .faqs-main .faqs-card-main .body p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
}
.civil-contracting-main .civil-contracting-img {
  height: 100%;
}
.civil-contracting-main .civil-contracting-img img {
  width: 100%;
  height: 100%;
}

.related-projects-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .related-projects-main {
    padding-bottom: 40px;
  }
}
.related-projects-main.listing {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .related-projects-main.listing {
    padding: 40px 0;
  }
}
.related-projects-main.listing ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.related-projects-main.listing ul li {
  transition: 0.3s all;
}
.related-projects-main.listing ul li.active label {
  background: var(--primary-color);
  border: solid 1px var(--primary-color);
  color: rgb(255, 255, 255);
}
.related-projects-main.listing ul li input {
  display: none;
}
.related-projects-main.listing ul li label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(95, 99, 104);
  border: solid 1px rgb(95, 99, 104);
  padding: 7px 20px;
  border-radius: 35px;
  background: transparent;
  transition: 0.3s all;
  cursor: pointer;
}
.related-projects-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .related-projects-main .heading-main {
    margin-bottom: 30px;
  }
}
.related-projects-main .heading-main .text-main {
  max-width: 700px;
}
.related-projects-main .related-projects-card {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
.related-projects-main .related-projects-card .related-projects-img {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  margin-bottom: 20px;
}
.related-projects-main .related-projects-card .related-projects-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  z-index: 1;
}
.related-projects-main .related-projects-card .related-projects-img img {
  aspect-ratio: 416/414;
  width: 100%;
  transition: 0.5s all;
}
.related-projects-main .related-projects-card .related-projects-img .related-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.related-projects-main .related-projects-card .related-projects-img .related-badge span {
  background: rgb(255, 255, 255);
  padding: 10px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  color: rgb(35, 35, 35);
}
.related-projects-main .related-projects-card .related-projects-img .arrow-icon {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  transition: 0.5s all;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.related-projects-main .related-projects-card .related-projects-img .arrow-icon .arrow-img {
  width: 52px;
  height: 52px;
}
.related-projects-main .related-projects-card .related-projects-text ul {
  display: block;
}
.related-projects-main .related-projects-card .related-projects-text ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}
.related-projects-main .related-projects-card .related-projects-text ul li:last-child {
  padding-bottom: 0;
}
.related-projects-main .related-projects-card .related-projects-text ul li span {
  font-size: 20px;
  font-weight: 400;
  color: #232323;
}
.related-projects-main .related-projects-card .related-projects-text ul li p {
  font-size: 20px;
  font-weight: 400;
  color: #5F6368;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  margin-bottom: 0;
  max-width: 280px;
}
@media screen and (max-width: 992px) {
  .related-projects-main .related-projects-card .related-projects-img img {
    transform: scale(1.1);
  }
  .related-projects-main .related-projects-card .related-projects-img::before {
    background: rgba(35, 35, 35, 0.5);
  }
  .related-projects-main .related-projects-card .related-projects-img .arrow-icon {
    left: 50%;
    opacity: 1;
    visibility: visible;
  }
}
.related-projects-main .related-projects-card:hover .related-projects-img img {
  transform: scale(1.1);
}
.related-projects-main .related-projects-card:hover .related-projects-img::before {
  background: rgba(35, 35, 35, 0.5);
}
.related-projects-main .related-projects-card:hover .related-projects-img .arrow-icon {
  left: 50%;
  opacity: 1;
  visibility: visible;
}
.related-projects-main .secondary-btn {
  padding: 8px 40px;
  display: inline-block;
}

.blog-listing-main {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .blog-listing-main {
    padding: 40px 0;
  }
}
.blog-listing-main ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
}
.blog-listing-main ul li {
  transition: 0.3s all;
}
.blog-listing-main ul li.active label {
  background: var(--primary-color);
  border: solid 1px var(--primary-color);
  color: rgb(255, 255, 255);
}
.blog-listing-main ul li input {
  display: none;
}
.blog-listing-main ul li label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(95, 99, 104);
  border: solid 1px rgb(95, 99, 104);
  padding: 7px 20px;
  border-radius: 35px;
  background: transparent;
  transition: 0.3s all;
  cursor: pointer;
}
.blog-listing-main .feature-card {
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-listing-main .feature-card:hover .feature-img img {
  transform: scale(1.1);
}
.blog-listing-main .feature-card:hover .feature-img::before {
  background: rgba(35, 35, 35, 0.5);
}
.blog-listing-main .feature-card:hover .feature-img .arrow-icon {
  left: 50%;
  opacity: 1;
  visibility: visible;
}
.blog-listing-main .feature-card .feature-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
}
.blog-listing-main .feature-card .feature-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  z-index: 1;
}
.blog-listing-main .feature-card .feature-img > img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 384/396;
  transition: 0.5s all;
}
.blog-listing-main .feature-card .feature-img .arrow-icon {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  transition: 0.5s all;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.blog-listing-main .feature-card .feature-img .arrow-icon .arrow-img {
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 992px) {
  .blog-listing-main .feature-card .feature-img img {
    transform: scale(1.1);
  }
  .blog-listing-main .feature-card .feature-img::before {
    background: rgba(35, 35, 35, 0.5);
  }
  .blog-listing-main .feature-card .feature-img .arrow-icon {
    left: 50%;
    opacity: 1;
    visibility: visible;
  }
}
.blog-listing-main .feature-card .badge-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-listing-main .feature-card .badge-flex span {
  border: solid 1px rgb(237, 28, 36);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(237, 28, 36);
}
.blog-listing-main .feature-card h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.blog-listing-main .feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 0;
  text-transform: capitalize;
}

.blog-detail-main {
  position: relative;
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .blog-detail-main {
    padding: 40px 0;
  }
}
.blog-detail-main .content-main h3 {
  font-size: 24px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main h3 {
    font-size: 20px;
  }
}
.blog-detail-main .content-main p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main p {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.blog-detail-main .content-main span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main span {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.blog-detail-main .content-main .blog-detail-img {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main .blog-detail-img {
    margin-bottom: 25px;
  }
}
.blog-detail-main .content-main .blog-detail-img img {
  width: 100%;
}
.blog-detail-main .content-main ul {
  margin-bottom: 40px;
  padding-left: 18px;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main ul {
    margin-bottom: 25px;
  }
}
.blog-detail-main .content-main ul li {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 10px;
  list-style: disc;
}
@media screen and (max-width: 992px) {
  .blog-detail-main .content-main ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.blog-detail-main .more-blog-card {
  position: sticky;
  top: 0;
  background: rgb(243, 243, 243);
  padding: 24px;
  border-radius: 20px;
}
.blog-detail-main .more-blog-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 30px;
}
.blog-detail-main .more-blog-card .more-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgb(200, 200, 200);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.blog-detail-main .more-blog-card .more-flex:hover .more-text span {
  color: var(--primary-color);
}
.blog-detail-main .more-blog-card .more-flex:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.blog-detail-main .more-blog-card .more-flex .more-text p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  text-transform: capitalize;
  margin-bottom: 5px;
}
.blog-detail-main .more-blog-card .more-flex .more-text span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 1.1;
  display: block;
  transition: 0.5s all;
}

.large-scale-project {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .large-scale-project {
    padding: 40px 0;
  }
}
.large-scale-project .about-project-main {
  border: solid 1px rgb(224, 224, 224);
  padding: 40px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.large-scale-project .about-project-main .head-main {
  margin-bottom: 20px;
}
.large-scale-project .about-project-main .head-main h3 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: rgb(35, 35, 35);
  text-transform: uppercase;
}
.large-scale-project .about-project-main ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px rgba(35, 35, 35, 0.1);
}
.large-scale-project .about-project-main ul li:last-child {
  margin-bottom: 0;
}
.large-scale-project .about-project-main ul li span {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  text-transform: uppercase;
  width: 50%;
}
.large-scale-project .about-project-main ul li p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 0;
  text-transform: capitalize;
  max-width: 200px;
  line-height: 1.1;
  text-align: right;
  width: 50%;
}
.large-scale-project .desc-card {
  position: relative;
  border: solid 1px rgb(224, 224, 224);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.large-scale-project .desc-card .box {
  position: absolute;
}
.large-scale-project .desc-card .box:nth-child(1) {
  top: 20px;
  left: 20px;
}
.large-scale-project .desc-card .box:nth-child(2) {
  bottom: 20px;
  left: 20px;
}
.large-scale-project .desc-card .box:nth-child(3) {
  top: 20px;
  right: 20px;
}
.large-scale-project .desc-card .box:nth-child(4) {
  bottom: 20px;
  right: 20px;
}
.large-scale-project .desc-card .box span {
  width: 16px;
  height: 16px;
  background: rgb(237, 28, 36);
  display: block;
}
.large-scale-project .desc-card .text-main h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.large-scale-project .desc-card .text-main p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 0;
  line-height: 1.1;
}
.large-scale-project .large-scale-img img {
  width: 100%;
}

.image-gallery-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .image-gallery-main {
    padding-bottom: 40px;
  }
}
.image-gallery-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.image-gallery-main .heading-main > div {
  max-width: 670px;
}
.image-gallery-main .heading-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.image-gallery-main .heading-main .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.image-gallery-main .heading-main .arrow-main span:hover {
  border: solid 2px var(--primary-color);
}
.image-gallery-main .heading-main .arrow-main span:hover img {
  filter: brightness(1);
}
.image-gallery-main .heading-main .arrow-main span:hover::before {
  transform: translateY(0);
}
.image-gallery-main .heading-main .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.image-gallery-main .heading-main .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}
.image-gallery-main .heading-main .arrow-main .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.image-gallery-main .image-gallery-slider {
  overflow: hidden;
}
.image-gallery-main .image-gallery-slider .image-gallery-card img {
  width: 100%;
}

.contact-us-main {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .contact-us-main {
    padding: 40px 0;
  }
}
.contact-us-main .contact-card {
  background: rgb(243, 243, 243);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  height: calc(100% - 50px);
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .contact-us-main .contact-card {
    height: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 20px;
  }
}
.contact-us-main .contact-card .contact-icon {
  width: 49px;
  height: 49px;
  min-width: 49px;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 8px;
}
.contact-us-main .contact-card .text-main h6 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 16px;
}
.contact-us-main .contact-card .text-main span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  line-height: 1.1;
}
.contact-us-main .contact-card .text-main span:last-child {
  margin-bottom: 0;
}
.contact-us-main .contact-card .text-main span a {
  color: rgb(95, 99, 104);
}
.contact-us-main .contact-card .text-main a {
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
}
.contact-us-main .send-msg-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .contact-us-main .send-msg-card {
    margin-bottom: 25px;
  }
}
.contact-us-main .send-msg-card .head {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .contact-us-main .send-msg-card .head {
    margin-bottom: 0;
  }
}
.contact-us-main .send-msg-card .head h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 10px;
}
.contact-us-main .send-msg-card .head p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 0;
}
.contact-us-main .send-msg-img img {
  width: 100%;
}
.contact-us-main .contact-form-main form .input {
  position: relative;
  margin-bottom: 20px;
}
.contact-us-main .contact-form-main form .input label {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  color: rgb(150, 150, 150);
  margin-bottom: 10px;
}
.contact-us-main .contact-form-main form .input .flex-select {
  border-bottom: solid 1px rgb(95, 99, 104);
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-us-main .contact-form-main form .input .flex-select input:checked + span {
  background: var(--primary-color);
  color: var(--white);
  border: solid 1px var(--primary-color);
}
.contact-us-main .contact-form-main form .input .flex-select label {
  margin-bottom: 0;
}
.contact-us-main .contact-form-main form .input .flex-select label span {
  border: solid 1px rgb(95, 99, 104);
  padding: 10px 30px;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(95, 99, 104);
}
.contact-us-main .contact-form-main form .input input,
.contact-us-main .contact-form-main form .input textarea {
  background: transparent;
  border: 0;
  border-bottom: solid 1px rgb(95, 99, 104);
  padding-bottom: 10px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: rgb(150, 150, 150);
  width: 100%;
  outline: none;
}
.contact-us-main .contact-form-main form .input input::placeholder,
.contact-us-main .contact-form-main form .input textarea::placeholder {
  color: rgb(150, 150, 150);
  text-transform: uppercase;
}
.contact-us-main .contact-form-main form .input .error-txt {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.our-prime-logo {
  padding: 70px 0;
}
@media screen and (max-width: 992px) {
  .our-prime-logo {
    padding: 40px 0;
  }
}
.our-prime-logo .heading-main {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .our-prime-logo .heading-main {
    margin-bottom: 30px;
  }
}
.our-prime-logo .heading-main > div {
  max-width: 670px;
}
.our-prime-logo .col-lg-3:last-child .prime-logo-card {
  height: 100%;
  margin-bottom: 0;
}
.our-prime-logo .prime-logo-card {
  background: rgb(240, 240, 240);
  border-radius: 10px;
  width: 100%;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  min-height: 305px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.our-prime-logo .prime-logo-card .prime-logo-name {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgb(248, 248, 248);
  border-top-left-radius: 10px;
  padding: 10px 24px;
  margin-left: 30px;
}
.our-prime-logo .prime-logo-card .prime-logo-name span {
  font-size: 14px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  display: block;
  text-transform: uppercase;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.client-testimonial-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .client-testimonial-main {
    padding-bottom: 40px;
  }
}
.client-testimonial-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.client-testimonial-main .heading-main > div {
  max-width: 670px;
}
.client-testimonial-main .heading-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-testimonial-main .heading-main .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.client-testimonial-main .heading-main .arrow-main span:hover {
  border: solid 2px var(--primary-color);
}
.client-testimonial-main .heading-main .arrow-main span:hover img {
  filter: brightness(1);
}
.client-testimonial-main .heading-main .arrow-main span:hover::before {
  transform: translateY(0);
}
.client-testimonial-main .heading-main .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.client-testimonial-main .heading-main .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}
.client-testimonial-main .client-testimonial-slider {
  background: rgb(239, 239, 239);
  position: relative;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .client-testimonial-main .client-testimonial-slider {
    height: calc(100% - 20px);
    border-radius: 10px;
    margin-bottom: 20px;
  }
}
.client-testimonial-main .client-testimonial-slider #ClientTestimonialText {
  height: 100%;
}
.client-testimonial-main .client-testimonial-slider .swiper-slide {
  height: 100%;
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .client-testimonial-main .client-testimonial-slider .client-testimonial-card {
    padding: 15px;
  }
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card .desc-main p {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 30px;
  line-height: 1.1;
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card .desc-main .client-profile-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card .desc-main .client-profile-main h6 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card .desc-main .client-profile-main span {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: rgb(95, 99, 104);
}
.client-testimonial-main .client-testimonial-slider .client-testimonial-card .man-absalute-img-main {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .client-testimonial-main .client-testimonial-slider .client-testimonial-card .man-absalute-img-main img {
    width: 450px;
  }
}
.client-testimonial-main #ClientTestimonial {
  overflow: hidden;
  height: 100%;
}
.client-testimonial-main #ClientTestimonial .client-testimonial-card-img {
  height: 100%;
}
.client-testimonial-main #ClientTestimonial .client-testimonial-card-img img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .client-testimonial-main #ClientTestimonial .client-testimonial-card-img img {
    border-radius: 10px;
  }
}

.about-learn-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .about-learn-main {
    padding-bottom: 40px;
  }
}
.about-learn-main .about-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
}
.about-learn-main .about-card-main .heading-main {
  margin-bottom: 30px;
}
.about-learn-main .about-card-main .about-text-slider {
  overflow: hidden;
}
.about-learn-main .about-card-main .about-text-slider .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
.about-learn-main .about-card-main .about-text-slider .swiper-slide:not(.active) .progress-line::before {
  transition: 0s !important;
  width: 0 !important;
}
.about-learn-main .about-card-main .about-text-slider .swiper-slide.active {
  display: block;
  opacity: 1;
}
.about-learn-main .about-card-main .about-text-slider .swiper-slide.active .progress-line::before {
  width: 100%;
}
.about-learn-main .about-card-main .about-text-slider .swiper-slide.active span {
  opacity: 1;
}
.about-learn-main .about-card-main .about-text-slider .about-text-main .progress-line {
  position: relative;
  background: rgb(240, 240, 240);
  width: 100%;
  height: 2px;
}
.about-learn-main .about-card-main .about-text-slider .about-text-main .progress-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 10s all;
}
.about-learn-main .about-card-main .about-text-slider .about-text-main span {
  font-size: clamp(16px, 2vw, 22px);
  color: rgb(35, 35, 35);
  font-weight: 700;
  padding: 20px 0;
  display: block;
  transition: 0.5s all;
  opacity: 0.1;
  text-transform: uppercase;
  line-height: 1.1;
}
.about-learn-main .about-img-slider {
  overflow: hidden;
}
.about-learn-main .about-img-slider .swiper-slide {
  display: none;
  opacity: 0;
}
.about-learn-main .about-img-slider .swiper-slide.active {
  display: block;
  opacity: 1;
}
.about-learn-main .about-img-slider .about-img-main {
  position: relative;
}
.about-learn-main .about-img-slider .about-img-main > img {
  width: 100%;
  border-radius: 10px;
}
.about-learn-main .about-img-slider .about-img-main .about-text-main {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgb(255, 255, 255);
  max-width: 440px;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .about-learn-main .about-img-slider .about-img-main .about-text-main {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: 460px;
    padding: 20px;
  }
}
.about-learn-main .about-img-slider .about-img-main .about-text-main span {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  line-height: 1.1;
  display: block;
}
@media screen and (max-width: 767px) {
  .about-learn-main .about-img-slider .about-img-main .about-text-main span {
    font-size: 14px;
  }
}

.vehicles-equipments-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .vehicles-equipments-main {
    padding-bottom: 40px;
  }
}
.vehicles-equipments-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.vehicles-equipments-main .heading-main > div {
  max-width: 670px;
}
.vehicles-equipments-main .heading-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vehicles-equipments-main .heading-main .arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 5px;
  border: solid 2px rgb(95, 99, 104);
  position: relative;
  overflow: hidden;
  transition: 0.8s all;
  cursor: pointer;
}
.vehicles-equipments-main .heading-main .arrow-main span:hover {
  border: solid 2px var(--primary-color);
}
.vehicles-equipments-main .heading-main .arrow-main span:hover img {
  filter: brightness(1);
}
.vehicles-equipments-main .heading-main .arrow-main span:hover::before {
  transform: translateY(0);
}
.vehicles-equipments-main .heading-main .arrow-main span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(101%);
  transition: 0.8s all;
}
.vehicles-equipments-main .heading-main .arrow-main span img {
  filter: brightness(0.3);
  transition: 0.8s all;
}
.vehicles-equipments-main .vehicles-equipments-slider {
  overflow: hidden;
}
.vehicles-equipments-main .vehicles-equipments-slider .vehicles-equipments-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.vehicles-equipments-main .vehicles-equipments-slider .vehicles-equipments-card img {
  transition: 0.5s all;
}
.vehicles-equipments-main .vehicles-equipments-slider .vehicles-equipments-card:hover > img {
  transform: scale(1.1);
}
.vehicles-equipments-main .vehicles-equipments-slider .vehicles-equipments-card .vehicles-text-main {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.vehicles-equipments-main .vehicles-equipments-slider .vehicles-equipments-card .vehicles-text-main span {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.labor-camp-main {
  padding-bottom: 70px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .labor-camp-main {
    padding-bottom: 40px;
  }
}
.labor-camp-main .heading-main {
  margin-bottom: 40px;
}
.labor-camp-main .heading-main > div {
  max-width: 1000px;
}
@media screen and (max-width: 992px) {
  .labor-camp-main .heading-main > div {
    max-width: unset;
  }
}
.labor-camp-main .labor-camp-img-main img {
  width: 100%;
}

.organizational-chart-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .organizational-chart-main {
    padding-bottom: 40px;
  }
}
.organizational-chart-main .heading-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .organizational-chart-main .heading-main {
    margin-bottom: 30px;
  }
}
.organizational-chart-main .heading-main .text-main {
  max-width: 740px;
}
.organizational-chart-main .chart-img-main img {
  width: 100%;
}

.building-structures-main {
  padding: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .building-structures-main {
    padding: 30px 0;
  }
}
@media screen and (max-width: 992px) {
  .building-structures-main .building-structures-card {
    text-align: center;
  }
}
.building-structures-main .building-structures-card .border-text {
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(270deg, #FFFFFF -11.17%, #C8C8C8 110.91%);
  border-image-slice: 1;
  padding: 10px;
  margin-bottom: 20px;
}
.building-structures-main .building-structures-card .border-text span {
  font-size: 18px;
  font-weight: 400;
  color: rgb(95, 99, 104);
}
.building-structures-main .building-structures-card .year-text h6 {
  font-size: 30px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
}
.building-structures-main .building-structures-card .year-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  margin-bottom: 0;
}
.building-structures-main .managed-labor-img {
  position: relative;
  z-index: 1;
  height: 100%;
}
.building-structures-main .managed-labor-img.right img {
  transform: translateX(70%);
}
.building-structures-main .managed-labor-img.right.active img {
  transform: translateX(0);
  width: 100%;
}
.building-structures-main .managed-labor-img.active img {
  transform: translateX(0);
  width: 100%;
}
.building-structures-main .managed-labor-img img {
  transform: translateX(-101%);
  width: 760px;
  height: 352px;
  transition: 1.5s all;
  object-fit: cover;
  border-radius: 20px;
}
.building-structures-main .managed-labor-card {
  background-color: rgb(243, 243, 243);
  padding: 45px 30px 60px 30px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .building-structures-main .managed-labor-card {
    padding: 30px 20px;
  }
}
.building-structures-main .managed-labor-card .managed-labor-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 550px;
}
.building-structures-main .managed-labor-card .managed-labor-text h3 {
  font-size: 30px;
}

.drive-every-project-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .drive-every-project-main {
    padding-bottom: 40px;
  }
}
.drive-every-project-main .drive-every-img img {
  width: 100%;
  border-radius: 10px;
}
.drive-every-project-main .sub-service-card {
  position: relative;
  background: rgb(243, 243, 243);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  z-index: 1;
}
.drive-every-project-main .sub-service-card .img-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(237, 28, 36);
  border-radius: 4px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .drive-every-project-main .sub-service-card .img-box {
    margin-bottom: 0;
  }
}
.drive-every-project-main .sub-service-card .text-main h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 10px;
}
.drive-every-project-main .sub-service-card .text-main p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  line-height: 1.1;
}

.committed-excellence-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .committed-excellence-main {
    padding-bottom: 40px;
  }
}
.committed-excellence-main .committed-excellence-img {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .committed-excellence-main .committed-excellence-img {
    margin-bottom: 30px;
  }
}
.committed-excellence-main .committed-excellence-img img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .committed-excellence-main .committed-excellence-img img {
    min-height: 270px;
    object-fit: cover;
  }
}
.committed-excellence-main .col-12 .committed-excellence-card {
  max-width: 760px;
  margin-bottom: 0;
}
.committed-excellence-main .committed-excellence-card {
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(270deg, #FFFFFF -11.17%, #C8C8C8 110.91%);
  padding-bottom: 12px;
  margin-bottom: 40px;
  max-width: 570px;
}
@media screen and (max-width: 992px) {
  .committed-excellence-main .committed-excellence-card {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.committed-excellence-main .committed-excellence-card .number-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 992px) {
  .committed-excellence-main .committed-excellence-card .number-text {
    margin-bottom: 10px;
  }
}
.committed-excellence-main .committed-excellence-card .number-text span {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 100%;
  font-size: 14px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.committed-excellence-main .committed-excellence-card .number-text h6 {
  font-size: 16px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 0;
}
.committed-excellence-main .committed-excellence-card p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  line-height: 1.1;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .committed-excellence-main .committed-excellence-card p {
    font-size: 14px;
  }
}

.project-highlights-main {
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .project-highlights-main {
    padding-bottom: 40px;
  }
}
.project-highlights-main .projects-completed-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.project-highlights-main .projects-completed-card > img {
  width: 100%;
}
.project-highlights-main .projects-completed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.project-highlights-main .projects-completed-card .projects-absalute {
  background: var(--white);
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 20px 16px;
  border-radius: 12px;
}
.project-highlights-main .projects-completed-card .projects-absalute span {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  color: var(--primary-color);
  display: block;
  margin-bottom: 27px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .project-highlights-main .projects-completed-card .projects-absalute span {
    margin-bottom: 10px;
  }
}
.project-highlights-main .projects-completed-card .projects-absalute p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
  line-height: 1.1;
}
.project-highlights-main .highlights-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.project-highlights-main .highlights-card-main .highlights-card {
  background: rgb(243, 243, 243);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  height: 100%;
}
.project-highlights-main .highlights-card-main .highlights-card h3 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin-bottom: 10px;
}
.project-highlights-main .highlights-card-main .highlights-card > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-highlights-main .highlights-card-main .highlights-card > div span {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  color: rgb(35, 35, 35);
  display: block;
  line-height: 1.1;
}
.project-highlights-main .highlights-card-main .highlights-card > div p {
  font-size: 12px;
  font-weight: 400;
  color: rgb(95, 99, 104);
  line-height: 1.1;
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
