:root {
  --primary-color: #0011ff;
  --secondary-color: #ffbb02;
  --white-color: #ffffff;
  --black-color: #000000;

  --bg-table-stripe: #f6f6f5;
  --b-table: #e3e3e2;
  --caption: #242423;

  --container-width-lg: 80%;
  --container-width-md: 92%;

  --h2-font-size: 1.25rem;
  --normal-font-size: 1rem;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* header {
  background-image: url(../images/banner-bg.jpg);
  height: 100%;
  width: 100%;
  object-fit: contain;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  overflow: hidden;
} */

nav {
  width: 100vw;
  height: 4rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /* box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2); */
}

.nav__container {
  width: var(--container-width-lg);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 0 0 5px 5px;
}
/* .nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(
    255,
    255,
    255,
    0.8
  );
} */

.nav__toggle-btn {
  display: none;
}

.nav__logo {
  width: 7rem;
  display: grid;
  place-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 100%;
}

.nav__links li {
  height: 100%;
}

.nav__links li a {
  position: relative;
  color: var(--primary-color);
  font-size: 500;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 400ms ease;
}

.nav__links li a:hover {
  color: var(--secondary-color);
}

.nav__links li a.active::after {
  content: "";
  display: block;
  background: var(--secondary-color);
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 20px;
}
/* =========== Banner Slider ========== */
/* Add these styles to your existing CSS */
/* Add this to your existing CSS code */
/* header {
  position: relative;
} */

.slider {
  width: 100%;
  height: 100vh; /* Adjust the height as needed */
  overflow: hidden;
  position: relative;
}

.slider__item {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider__item.active {
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.slider-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

.banner__content {
  background-color: #0011ff;
  top: 15rem;
  width: 50%;
  left: 25%;
  padding: 2rem 3rem;
  position: absolute;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.banner__text {
  text-align: center;
}

.banner__text h1 {
  font-weight: 900;
  font-size: 40px;
  color: var(--primary-color);
}

.banner__text p {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 1rem;
}

.banner__btn {
  margin-top: 1rem;
  padding: 1rem 0;
}

.banner__btn a {
  padding: 1rem 2rem;
  color: var(--primary-color);
  border-radius: 10px;
  border: var(--primary-color) 2px solid;
  transition: ease-in 0.5s;
}

.banner__btn i {
  padding-right: 1rem;
}

.banner__btn a:hover {
  color: var(--secondary-color);
}

/* ========= Banner Slider Ends ========= */
/* ========= Header Ends ========= */

/* ========== who we are starts =========== */
.whoweare__section {
  width: 100%;
  margin-top: 5rem;
}

.whoweare__container {
  margin: 0 6rem 0 6rem;
}

.whoweare__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.whoweare__left h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 20px;
}

.whoweare__left h2 {
  font-weight: 800;
  font-size: 30px;
}

.whoweare__right p {
  line-height: 2rem;
}

.whoweare__right p span {
  color: var(--primary-color);
  font-weight: bold;
}

.whoweare__btn {
  margin-top: 2rem;
}

.whoweare__btn a {
  padding: 1rem 2rem;
  color: var(--primary-color);
  border-radius: 10px;
  border: var(--primary-color) 2px solid;
  transition: ease-in 0.5s;
}

.whoweare__btn a i {
  margin-right: 1rem;
}

.whoweare__btn a:hover {
  background-color: var(--primary-color);
  border: var(--primary-color) 2px solid;
  color: var(--white-color);
}
/* who we are page */
.header__bg {
  background-image: url(../images/banner01.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
}

.whoweare__page {
  width: 100%;
  margin-top: 7rem;
}

.whoweare__page h2 {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
}

.whoweare__page-sec {
  margin: 0 6rem 0 6rem;
}

.page__content {
  line-height: 1.5rem;
}

.page__content p {
  margin-bottom: 1rem;
}

.page__content p span {
  color: var(--primary-color);
  font-weight: bold;
}

.whoweare__statement-page {
  width: 100%;
  margin-top: 7rem;
}

.statment__page-container {
  margin: 0 6rem 0 6rem;
}

.statement__content2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.statement__card2 h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  margin: 1rem 0;
}

.statement__card2 p {
  line-height: 1.5rem;
}

.responsibility__section2 {
  width: 100%;
  margin-top: 7rem;
}

.responsibility__bg {
  background-image: url(../images/1111.jpg);
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 12px 29px 81px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 12px 29px 81px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 12px 29px 81px 0px rgba(255, 255, 255, 0.75);
}

.responsibility__content2 {
  padding: 3rem 6rem 3rem 6rem;
  background-color: var(--primary-color);
}

.content__resp {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.responsibility__card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white-color);
  line-height: 1.5rem;
}

.responsibility__img2 {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 50%;
}

/* ========== who we are ends =========== */

/* ========== what we do starts =========== */
.whatwedo__section {
  width: 100%;
  margin-top: 7rem;
}

.whatwedo__container {
  margin: 0 6rem 0 6rem;
}

.whatwedo__header h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 20px;
}

.whatwedo__header h5 {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

.whatwedo__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
  gap: 5rem;
  place-content: center;
}

.whatwedo__bodyl,
.whatwedo__bodyr {
  line-height: 1.8rem;
}

.whatwedo__bodyl ul li i,
.whatwedo__bodyr ul li i {
  padding-right: 1rem;
  color: var(--primary-color);
}

.whatwedo__bodyl ul li,
.whatwedo__bodyr ul li {
  display: flex;
  align-items: first baseline;
}

/* what we do page */
.header__bg2 {
  background-image: url(../images/bannars3.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
}
.whatwedo__section2 {
  width: 100%;
  margin-top: 3rem;
}

.whatwedo__container2 {
  margin: 0 6rem 0 6rem;
}

.whatwedo__header2 {
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.25px;
}

.whatwedo__header2 h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5rem;
}

.other__content2 {
  margin-top: 3rem;
}

.other__text2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.text__container2 h5 {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 20px;
}

.text__container2 ul {
  margin-top: 1rem;
}

.other__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.text__container2 ul li {
  display: flex;
  gap: 1rem;
  align-items: first baseline;
  padding-bottom: 0.3rem;
}

.text__container2 ul li i {
  transform: rotate(90deg);
  color: var(--primary-color);
}

/* ========== what we do ends =========== */

/* =========== what we do others starts ========== */
.others__section {
  width: 100%;
  margin-top: 7rem;
}

.others__container {
  margin: 0 6rem 0 6rem;
}

.others__container h3 {
  color: var(--primary-color);
  text-align: center;
  font-size: 20px;
}

.other__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.other__text {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 1rem;
  border-radius: 10px;
}

.other__text img {
  border-radius: 5px 5px 0 0;
}

.text__container h5 {
  text-align: center;
  padding: 1rem 0;
  font-size: 16px;
  color: var(--black-color);
}

.text__container p {
  line-height: 1.5rem;
}

.text__container ul {
  padding: 1rem 0;
}

.text__container ul li {
  display: flex;
  gap: 1rem;
  align-items: first baseline;
}

.text__container ul li i {
  transform: rotate(90deg);
  color: var(--primary-color);
}

.others__btn {
  margin-top: 5rem;
  text-align: center;
}

.others__btn a {
  padding: 1rem 2rem;
  color: var(--primary-color);
  border-radius: 10px;
  border: var(--primary-color) 2px solid;
  transition: ease-in 0.5s;
}

.others__btn a i {
  margin-right: 1rem;
}

.others__btn a:hover {
  background-color: var(--primary-color);
  border: var(--primary-color) 2px solid;
  color: var(--white-color);
}

/* =========== what we do others ends ========== */

/* =========== our responsibilities starts ========== */
.responsibility__section {
  width: 100%;
  margin-top: 7rem;
}

.responsibility__container {
  margin: 0 6rem 0 6rem;
}

.responsibility__container h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 20px;
}

.responsibility__sector {
  display: grid;
  grid-template-columns: repeat(5, 80px);
  gap: 5rem;
  justify-content: space-between;
  margin-top: 3rem;
}

.responsibility__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.responsibility__img {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 50%;
}

.responsibility__content p {
  text-align: center;
}

/* =========== our responsibilities ends ========== */

/* =========== projects starts ========== */
.project__section {
  /*   display: flex;
  justify-content: center;
  align-items: center; */
  margin-top: 7rem;
  background-image: url(../images/port7.jpg);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.project__section h3 {
  text-align: center;
  margin: 3rem;
  color: var(--primary-color);
  font-size: 20px;
}

.card__container {
  padding-block: 5rem;
  margin: 0 6rem 3rem 6rem;
}

.card__content {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.card__article {
  /* width: 300px; Remove after adding swiper js */
  border-radius: 1.25rem;
  border: 2px solid var(--white-color);
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--white-color);
}

.card__image {
  /* position: relative; */
  /* background-color: var(--secondary-color); */
  /* padding-top: 1rem; */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card__img {
  /* width: 380px; */
  margin: 0 auto;
  position: relative;
  border-radius: 10px 10px 0 0;
  z-index: 5;
}

.card__description {
  /* margin-bottom: 1rem; */
  /* color: var(--white-color); */
  text-align: center;
  padding-bottom: 2rem;
  font-weight: 600;
}

/* .card__button {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  color: var(--black-color);
  font-weight: 600;
} */

/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 1rem;
  color: var(--primary-color);
  display: none;
  background-color: #ffffff;
  padding: 1rem;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 2px;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: hsl(51, 96%, 51%);
  /* background-color: var(--white-color); */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

.projects__btn {
  margin: 2rem 0 4rem 0;
  text-align: center;
}

.projects__btn a {
  padding: 1rem 2rem;
  color: var(--white-color);
  border-radius: 10px;
  border: var(--primary-color) 2px solid;
  transition: ease-in 0.5s;
  background-color: var(--primary-color);
}

.projects__btn a i {
  margin-right: 1rem;
}

.projects__btn a:hover {
  background-color: var(--white-color);
  border: var(--white-color) 2px solid;
  color: var(--primary-color);
}

/* =========== projects ends ========== */

/* ========== statements starts ========= */
.statements__section {
  width: 100%;
  margin-top: 7rem;
}

.statements__container {
  margin: 0 6rem 0 6rem;
}

.statements__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.statements__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* .statements__img {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 50%;
  width: 80px;
} */

.statements__card p {
  line-height: 1.5rem;
}

.statements__card span {
  font-weight: bold;
}
/* ========== statements ends =========== */

/* ========== experience starts ========= */
.experience__section {
  width: 100%;
  margin-top: 7rem;
  background-image: url(../images/exp2.jpg);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: relative;
  background-size: cover;
  overflow: hidden;
  padding: 5rem 0;
}

.experience__container {
  margin: 0 6rem 0 6rem;
}

.experience__bg {
  background-color: var(--secondary-color);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 60%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.experience__container h2 {
  font-weight: 800;
  font-size: 30px;
  color: var(--white-color);
}

.experience__container p {
  margin: 1rem 0;
  color: var(--white-color);
  line-height: 1.5rem;
}

.experience__btn {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
}

.exp__btn1 a {
  padding: 1rem 2rem;
  color: var(--white-color);
  border-radius: 10px;
  border: var(--primary-color) 2px solid;
  transition: ease-in 0.5s;
  background-color: var(--primary-color);
}

.exp__btn2 a {
  padding: 1rem 2rem;
  color: var(--white-color);
  border-radius: 10px;
  border: var(--white-color) 2px solid;
  transition: ease-in 0.5s;
}

.exp__btn1 a i,
.exp__btn2 a i {
  margin-right: 1rem;
}

.exp__btn1 a:hover {
  background-color: var(--white-color);
  border: var(--white-color) 2px solid;
  color: var(--primary-color);
}

.exp__btn2 a:hover {
  background-color: var(--white-color);
  border: var(--white-color) 2px solid;
  color: var(--primary-color);
}
/* ========== experience ends =========== */

/* ========== footer starts ============ */
.footer__section {
  width: 100%;
  margin-top: 7rem;
}

.footer__container {
  margin: 0 6rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
}

.footer__menu h3,
.footer__policy h3,
.footer__support h3,
.footer__address h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.footer__menu ul,
.footer__policy ul,
.footer__support ul,
.footer__address ul {
  line-height: 2rem;
}

.footer__menu ul li a,
.footer__policy ul li a,
.footer__support ul li a,
.footer__address ul li a {
  color: var(--black-color);
  transition: ease-in 0.5s;
}

.footer__menu ul li a:hover,
.footer__policy ul li a:hover,
.footer__support ul li a:hover,
.footer__address ul li a:hover {
  color: var(--secondary-color);
}

.footer__address ul li {
  display: flex;
  gap: 1rem;
  align-items: first baseline;
}

.footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 0 0;
  flex-wrap: wrap;
  margin: 3rem 6rem 3rem 6rem;
  border-top: 1px solid var(--black-color);
  text-align: center;
}

.footer__copyright a {
  color: var(--primary-color);
  transition: ease-in 0.5s;
}

.footer__copyright a:hover {
  color: var(--secondary-color);
}

/* ========== footer ends =============  */
/* ========= contact page starts ============ */
.header__bg3 {
  background-image: url(../images/bannars4.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
}
.contact__section {
  width: 100%;
  margin-top: 5rem;
}

.contact__container {
  margin: 0 6rem 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__about {
  border-right: 1px solid var(--secondary-color);
  padding-right: 1rem;
}

.contact__about p {
  line-height: 1.5rem;
}

.contact__address ul li {
  display: flex;
  align-items: first baseline;
  gap: 1rem;
  padding-bottom: 1rem;
}

.contact__address ul li i {
  color: var(--primary-color);
}
.map__section {
  margin-top: 5rem;
}

/* ========= contact page ends ============= */

/* ========= qaqc policy starts/ community/hse/planning ============ */
.qaqc__section,
.comminity__section,
.hse__section,
.planning__section {
  width: 100%;
  margin-top: 3rem;
}

.qaqc__container,
.community__container,
.hse__container,
.planning__container {
  margin: 0 6rem 0 6rem;
}

.qaqc__container p,
.community__container p,
.hse__container p,
.planning__container p {
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

/* ========= qaqc policy ends ============= */

/* ========= projects starts ============ */
.projects__container {
  margin: 0 6rem 0 6rem;
}
table {
  background-color: transparent;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
}

thead td {
  font-weight: bold;
}

th {
  text-align: left;
}

.dcf-txt-center {
  text-align: center !important;
}

.dcf-txt-left {
  text-align: left !important;
}

.dcf-txt-right {
  text-align: right !important;
}

.dcf-table caption {
  color: var(--caption);
  font-size: 1.13em;
  font-weight: 700;
  padding-bottom: 0.56rem;
}

.dcf-table thead {
  font-size: 0.84em;
}

.dcf-table tbody {
  border-bottom: 1px solid var(--b-table);
  border-top: 1px solid var(--b-table);
  font-size: 0.84em;
}

.dcf-table tfoot {
  font-size: 0.84em;
}

.dcf-table td,
.dcf-table th {
  padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
  border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
  padding-left: 1em;
  padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
  border-bottom: 1px solid var(--b-table);
}

.dcf-table-striped tbody tr:nth-of-type(2n) {
  background-color: var(--bg-table-stripe);
}

.dcf-table thead td,
.dcf-table thead th {
  padding-bottom: 0.75em;
  vertical-align: bottom;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
  padding-top: 0.75em;
  vertical-align: top;
}

.dcf-table tbody td,
.dcf-table tbody th {
  padding-bottom: 0.75em;
}

.dcf-table-bordered thead th {
  padding-top: 1.33em;
}

.dcf-wrapper-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 1em;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media only screen and (max-width: 42.09em) {
  .dcf-table-responsive thead {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
  .dcf-table-responsive tr {
    display: block;
  }
  .dcf-table-responsive td {
    -webkit-column-gap: 3.16vw;
    -moz-column-gap: 3.16vw;
    column-gap: 3.16vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: left !important;
  }
  .dcf-table-responsive.dcf-table-bordered,
  .dcf-table-responsive.dcf-table-bordered thead th {
    border-width: 0;
  }
  .dcf-table-responsive.dcf-table-bordered tbody td {
    border-top-width: 0;
  }
  .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
    padding-bottom: 0.75em;
  }
  .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
    padding-bottom: 0;
  }
  .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped)
    tbody
    td {
    padding-right: 0;
  }
  .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
    border-bottom-width: 0;
  }
  .dcf-table-responsive tbody td:before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    padding-right: 1.78em;
  }
}

.dcf-overflow-x-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.dcf-w-100\% {
  width: 100% !important;
}

/* ================ Projects Section End ================== */

/*  */
/* ============= Nav bar ============ */
/* ============= ANIMATION 1 ================ */
/* .nav__links li {
  transform: rotate(-90deg) rotateY(90deg);
  transform-origin: top right;
  animation: animation1 1s ease forwards;
  opacity: 0;
}

.nav__links li:nth-child(2) {
  animation-delay: 300ms;
  transform-origin: top left;
  transform: rotateZ(90deg) rotateY(-90deg);
}

.nav__links li:nth-child(3) {
  animation-delay: 600ms;
}

.nav__links li:nth-child(4) {
  animation-delay: 900ms;
  transform-origin: top left;
  transform: rotateZ(90deg) rotateY(-90deg);
}

.nav__links li:nth-child(5) {
  animation-delay: 1200ms;
}

@keyframes animation1 {
  to {
    transform: rotate(0);
    opacity: 1;
  }
} */

/* ============= ANIMATION 2 ================ */
/* .nav__links li {
  transform: rotateY(90deg) rotateX(-90deg);
  transform-origin: top right;
  animation: animation2 1s ease forwards;
  opacity: 0;
}

.nav__links li:nth-child(2) {
  animation-delay: 300ms;
}

.nav__links li:nth-child(3) {
  animation-delay: 600ms;
}

.nav__links li:nth-child(4) {
  animation-delay: 900ms;
}

.nav__links li:nth-child(5) {
  animation-delay: 1200ms;
}

@keyframes animation2 {
  to {
    transform: rotate(0);
    opacity: 1;
  }
} */
/* ============= ANIMATION 3 ================ */
/* .nav__links li {
  transform: rotateX(90deg);
  transform-origin: top;
  animation: animation3 1s ease forwards;
  opacity: 0;
}

.nav__links li:nth-child(2) {
  animation-delay: 300ms;
}

.nav__links li:nth-child(3) {
  animation-delay: 600ms;
}

.nav__links li:nth-child(4) {
  animation-delay: 900ms;
}

.nav__links li:nth-child(5) {
  animation-delay: 1200ms;
}

@keyframes animation3 {
  to {
    transform: rotate(0);
    opacity: 1;
  }
} */

/* ============= ANIMATION 4 ================ */
/* .nav__links li {
  transform-origin: top;
  animation: animation4 500ms ease forwards;
  opacity: 0;
}

.nav__links li:nth-child(2) {
  animation-delay: 300ms;
}

.nav__links li:nth-child(3) {
  animation-delay: 600ms;
}

.nav__links li:nth-child(4) {
  animation-delay: 900ms;
}

.nav__links li:nth-child(5) {
  animation-delay: 1200ms;
}

@keyframes animation4 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
} */

/* ============= ANIMATION 5 ================ */
/* Media Queries */
@media screen and (max-width: 1024px) {
  /*   header {
    height: 100%;
    background-repeat: round;
    overflow: hidden;
  } */
  .nav__container {
    position: relative;
    width: var(--container-width-md);
  }
  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    display: none;
    perspective: 1000px;
    z-index: 2;
  }
  .nav__links li {
    width: 100%;
    box-shadow: -2rem 4rem 4rem rgba(0, 0, 0, 0.2);
  }
  .nav__links li a {
    background-color: var(--white-color);
    color: var(--primary-color);
    height: 4rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5rem 0 2.5rem;
    border-top: 1px solid #00c3f4;
  }
  .nav__links li a.active::after {
    display: none;
  }
  .nav__toggle-btn {
    display: inline-block;
    font-size: 2rem;
    color: var(--primary-color);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: ease 5s;
  }
  #nav__toggle-close {
    display: none;
  }
}

.nav__links {
  perspective: none;
}
.nav__links li {
  transform-origin: top right;
  animation: animation5 1s ease forwards;
  transform: rotateY(-90deg);
}

.nav__links li:nth-child(2) {
  animation-delay: 200ms;
}

.nav__links li:nth-child(3) {
  animation-delay: 400ms;
}

.nav__links li:nth-child(4) {
  animation-delay: 600ms;
}

.nav__links li:nth-child(5) {
  animation-delay: 800ms;
}

.nav__links li:nth-child(6) {
  animation-delay: 1000ms;
}

@keyframes animation5 {
  to {
    transform: rotate(0);
  }
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1120px) {
  .card__container {
    max-width: 1120px;
  }

  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
}

@media screen and (max-width: 1030px) {
  .experience__bg {
    width: 80%;
  }
  .other__text2 {
    grid-template-columns: 1fr;
  }
  .other__img2 {
    display: flex;
    justify-content: center;
  }
  .text__container2 h5 {
    text-align: center;
  }
}

@media screen and (max-width: 992px) {
  .banner__text h1 {
    font-weight: 900;
    font-size: 30px;
  }
  .other__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  .responsibility__sector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .experience__bg {
    width: 100%;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__content {
    margin-inline: 3rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .banner__text h1 {
    font-weight: 600;
    font-size: 20px;
  }
  .banner__text p {
    font-size: 14px;
  }
  .header__bg2 {
    background-image: url(../images/bannars-small.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
  }
  .whoweare__body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .whoweare__left h3 {
    text-align: center;
  }
  .whoweare__left h2 {
    text-align: center;
  }
  .whoweare__btn {
    text-align: center;
  }
  .whatwedo__header h5 {
    font-size: 20px;
    line-height: 1.5rem;
  }
  .other__content {
    grid-template-columns: 1fr;
  }
  .statements__content {
    grid-template-columns: 1fr;
  }
  .experience__bg {
    width: 100%;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
  .content__resp {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .contact__container {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  .contact__address ul li {
    display: flex;
    justify-content: center;
  }
  .contact__about {
    border-right: none;
    border-top: 1px solid var(--secondary-color);
    padding-top: 3rem;
  }
}

@media screen and (max-width: 698px) {
  .experience__btn {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  .experience__container h2,
  .experience__container p {
    text-align: center;
  }
  .other__list {
    grid-template-columns: 1fr;
  }
  .other__list {
    gap: 0;
  }
}

@media screen and (max-width: 600px) {
  .banner__content {
    width: 80%;
    left: 10%;
  }
  .whoweare__container,
  .whatwedo__container,
  .others__container,
  .responsibility__container,
  .statements__container,
  .experience__container,
  .footer__container,
  .footer__copyright,
  .whoweare__page-sec,
  .whatwedo__container2,
  .contact__container,
  .qaqc__container,
  .hse__container,
  .community__container,
  .planning__container,
  .projects__container {
    margin: 0 3rem 0 3rem;
  }
  .responsibility__content2 {
    padding: 3rem 3rem 3rem 3rem;
  }
  .whoweare__right p {
    text-align: center;
  }
  .whatwedo__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .statements__card p {
    line-height: 1.5rem;
    text-align: center;
  }
  .statements__card span {
    font-weight: bold;
    text-align: center;
  }
  .experience__bg {
    padding: 2rem 1rem;
  }
  .experience__container h2,
  .experience__container p {
    text-align: center;
  }
  .experience__btn {
    gap: 4rem;
    flex-direction: column;
    align-items: center;
  }
  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__menu h3,
  .footer__policy h3,
  .footer__support h3,
  .footer__address h3 {
    text-align: center;
  }
  .footer__menu ul li,
  .footer__policy ul li,
  .footer__support ul li {
    text-align: center;
  }
  .footer__address ul li {
    justify-content: center;
  }
  .footer__copyright {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .content__resp {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .responsibility__card2 p {
    text-align: center;
  }
  .whatwedo__header2 {
    text-align: center;
  }
  .text__container2 .text__p {
    text-align: center;
  }
}

/* For small devices */
@media screen and (max-width: 320px) {
  .card__data {
    padding: 1rem;
  }
}
