/* Agest style v.0.01 */

/* Custom Properties */
:root {
  /* background colors & text colors */
  --color-1: #27ae60;
  --color-2: #2ecc71;
  --color-3: #f39c12;
  --color-4: #ecf0f1;
  --color-5: #3498db;
  --color-6: #2c3e50;
  --color-7: #c6e4d5;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: inherit;
  cursor: pointer;
  border: none;
}

li {
  list-style: none;
}

html {
  font-family: "Montserrat";
  font-size: 10px;
  /*scroll-behavior: smooth;*/
}

body {
  background-color: var(--color-4);
  color: var(--color-6);
  font-size: 1.4rem;
  font-weight: 500;
  min-height: 100vh;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

/* Reuse styles */

.services,
.philosophy,
.cta,
.industries,
.team,
.Purpose,
.focus-area,
.key_areas,
.expertise {
  margin-top: 2rem;
}

.container {
  max-width: calc(1080px + 32px);
  margin-inline: auto;
  padding-inline: 16px;
}

.flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.w-100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* backto the top btn */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  /* box-shadow: 0 0 5px #000; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  /* animation-delay: 5s; */
  transition: all 0.5s;
  z-index: 900;
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.back-to-top.bounce {
  animation: bounce 500ms alternate infinite;
}

.back-to-top.active {
  opacity: 1;
  transform: scale(0.8);
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
.back-to-top a {
  font-size: 1.4rem;
  font-weight: 700;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding-inline: 30px;
  height: 45px;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.btn-secondary {
  background-color: var(--color-1);
  color: #fff;
}

.btn-secondary:hover {
  opacity: 0.8;
}

.btn-primary {
  background: transparent;
  color: var(--color-1);
  border: 1px solid var(--color-1);
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-1);
  z-index: -1;
  border-radius: 0 0 50% 50%;
  height: 0;
  transition: all 0.5s;

  /* From the bottom */
  top: auto;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.btn-primary:hover {
  color: white;
}

.btn-primary:hover:before {
  height: 190%;
}

.read-more {
  background: transparent;
  border: none;
  transition: all 0.5s;
}

.read-more:hover {
  text-decoration: underline;
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 3.6rem;
  padding: 0 0.3rem;
  border-radius: 2rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 12%);
  font-size: 1.3rem;
  color: #000;
  user-select: none;
  transition: all 0.5s;
}

.icon-btn:hover .arr {
  opacity: 0.8;
}

.icon-btn.right {
  padding-right: 1.6rem;
}
.icon-btn.left {
  padding-left: 1.6rem;
}

.icon-btn .arr {
  /* position: absolute; */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination .bullet {
  border-radius: 50%;
  background-color: #27ae5f9f;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease,
    width 0.3s ease, height 0.3s ease;
}

.pagination .bullet.active {
  background-color: var(--color-1);
  transform: scale(1.5);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.pagination .bullet.hidden {
  opacity: 0;
}

.pagination .bullet.size-1 {
  width: 8px;
  height: 8px;
  opacity: 0.7;
}

.pagination .bullet.size-2 {
  width: 6px;
  height: 6px;
  opacity: 0.5;
}

.green {
  color: var(--color-1);
}

/* title */
.title {
  position: relative;
  display: inline-block;
}

.title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 3px;
  z-index: -1;
  left: 0;
  background-color: var(--color-7);
}

.h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 40px;
}
.h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 36px;
}

.h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 30px;
}
.h4 {
  font-size: 2rem;
  font-weight: 700;
}
.h5 {
  font-size: 1.6rem;
  font-weight: 700;
}

/* card */
.card {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
}

.card img {
  width: 60px;
  height: 60px;
}
.card p {
  margin-block: 20px 15px;
}

/* overlay */
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #071d1084;
  z-index: 10;
  height: 100vh;
}

[data-section] > * {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s ease;
}

[data-section].active > * {
  opacity: 1;
  transform: translateY(0);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Header */
.header {
  border-bottom: 1px solid #cdcdcd;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
  background-color: var(--color-4);
  overflow: hidden;
}

.header.active {
  position: fixed;
  top: 0;
  background-color: var(--color-4);
  border-block-start: 1px solid var(--cultured);
  box-shadow: var(--shadow-1);
  animation: slideIn 0.25s cubic-bezier(0.33, 0.85, 0.4, 0.96) forwards;
  z-index: 900;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
    background-color: var(--color-4);
  }

  100% {
    transform: translateY(0);
    background-color: var(--color-4);
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  width: 100%;
}

.header .container .logo {
  font-size: 2.8rem;
  font-weight: 700;
}

.header .container .menu-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .container .menu-list li {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  /* overflow: hidden; */
}

.header .container .menu-list li::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -2.3rem;
  left: 0;
  background-color: var(--color-1);
  transform: translateX(-100%);
  opacity: 0;
  transition: all 500ms ease;
}

.header .container .menu-list li:is(:hover, .active)::after {
  transform: translateX(0);
  opacity: 1;
}

/* Hero */
.hero {
  padding-top: 7rem;
  width: 100%;
  overflow: hidden;
}
.hero .container {
  min-height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding-block: 3.5rem 2rem;
  position: relative;
}

.hero .container .hero-content {
  /* width: 50%; */
  position: relative;
  max-width: 600px;
  height: 100%;
  padding: 70px 50px 50px 50px;
}

.hero .container .hero-content .section-title {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 1s;
}

.hero.active .container .hero-content .section-title {
  opacity: 1;
  transform: translateY(0%);
}

.hero .container .hero-content .plus,
.hero .container .hero-content .koronyo {
  position: absolute;
}
.hero .container .hero-content .plus {
  top: 0;
  left: -5px;
}
.hero .container .hero-content .koronyo {
  bottom: 0;
  left: -5px;
}
.hero .container .hero-content .h1 {
  /* max-width: 19ch; */
}

.hero .container .hero-content p {
  margin-block: 20px;
  font-size: 1.4rem;
  line-height: 22px;
}

.hero .container .hero-content .action-btns {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-block: 30px;
}

.hero .container .hero-banner {
  position: absolute;
  right: 0px;
  padding-top: 50px;
  /* height: 450px; */
  /* overflow: hidden; */
  /* background-color: red; */
  margin-right: -120px;
  width: 55%;
  /* background-color: red; */
  height: auto;
  /* border-radius: 20px; */
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s;
}
.hero .container .hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  box-shadow: 0 0 8px 0px #0000002a;
}

.hero.active .container .hero-banner {
  opacity: 1;
  transform: translateX(0%);
}

/* Mission */
.mission {
  margin-bottom: 70px;
  padding-top: 7rem;
}

.mission .h3 {
  margin-block: 1.5rem 1rem;
}

.mission .cards-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.mission .cards-list .card {
  background-color: #f8f8f8;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  padding: 20px;
  min-width: 260px;
  max-width: 25%;
  flex: 1;
  display: flex;
  flex-direction: column;
  /*opacity: 0;*/
  /*filter: blur(5px);*/
  /*transform: translateX(-100%);*/
  /*transition: all 1s;*/
}
.mission .cards-list .card:nth-child(2) {
  transition-delay: 200ms;
}

.mission .cards-list .card:nth-child(3) {
  transition-delay: 400ms;
}

.mission .cards-list .card:nth-child(4) {
  transition-delay: 600ms;
}

.mission .cards-list .card img {
  width: 80px;
  height: 80px;
}

.mission .cards-list .card p {
  margin-top: 10px;
  /* max-width: 30ch; */
  position: relative;
}
.mission .cards-list .card .ul {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mission .cards-list .card .list {
  padding-left: 10px;
  /* background-color: red; */
  position: relative;
  /* background-color: red; */
  /* overflow: hidden; */
}

.mission .cards-list .card .list:not(:last-child) {
  /* line-height: 0; */
  margin-bottom: 2px;
}

.mission .cards-list .card .list::after {
  /* display: block; */
  content: "";
  position: absolute;
  /* top: -100%; */
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
  left: -10px;
  font-size: 5rem;
  z-index: 3;
  top: 20%;
  left: 0;
  transform: translate(-50%, 50%);
}

.hidden {
  display: none;
}

.read-more-btn {
  margin-top: 10px;
  max-width: max-content;
  text-decoration: underline;
  transition: all 0.5s ease;
}

.read-more-btn:hover {
  opacity: 0.8;
}

.mission .cards-list .card .title {
  margin-block: 15px;
}

/* Focus Area */
.expertise {
  margin-top: 4rem;
}
:is(.focus-area, .expertise) {
  margin-bottom: 70px;
  width: 100%;
  padding-inline: 16px;
}
:is(.focus-area, .expertise) .container {
  background-color: var(--color-7);
  padding: 30px 30px 60px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.focus-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.focus-flex figure {
  width: 40%;
  margin-top: 5rem;
}

.focus-flex :is(.focus-list, .expertise-list-container) {
  width: 60%;
}

:is(.focus-area, .expertise) .h2 {
  display: inline-block;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
:is(.focus-area, .expertise) .h2::after {
  content: "";
  position: absolute;
  width: 70%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(44, 62, 80, 20%);
}
:is(.focus-area, .expertise) :where(.focus-list, .expertise-list-container) {
  display: flex;
  align-items: flex-start;
  /* justify-content: center; */
  gap: 15px;
  row-gap: 40px;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.focus-area .focus-list {
  justify-content: center;
}

/* .focus-area .focus-item {
  min-width: 300px;
  margin: 3rem 0 0rem 0rem;
  max-width: 450px;
} */

.focus-area .focus-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: calc(50% - 15px);
  min-width: 300px;
}

.focus-area .focus-item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-6);
  color: var(--color-7);
  font-size: 2.6rem;
  font-weight: 700;
}

.focus-area .focus-item .h5 {
  margin-bottom: 15px;
}

/* Key areas industries */

.key_areas .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.key_areas .title {
  /* text-align: center; */
  margin-bottom: 6rem;
  display: inline-block;
}
.key_areas_container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  /*justify-content: center;*/
  /* flex-wrap: wrap; */
  perspective: 1000px;
}
.key_areas_card {
  flex: 1;
  background-color: #fff;
  /* min-width: 320px; */
  min-width: calc(33.3333% - 1rem);
  /* height: 350px; */
  overflow: hidden;

  display: flex;
  flex-direction: column;
  box-shadow: 0px 100px 79.4px -58px #0000001c;
  border-radius: 0.5rem;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-in-out;
}

.key_areas_card:hover {
  transform: translateZ(10px);
}

.key_areas_card .banner {
  width: 100%;
  height: 280px;
  background-color: #fff;
  padding-inline: 10px;
  border-radius: 8px;

  /* background-color: red; */
}

.key_areas_card .banner img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* aspect-ratio: 3/2; */
}
.key_areas_card .content {
  /* background-color: red; */
  padding: 2rem;
}

.key_areas_card .banner .space {
  /* padding: 2rem; */
}

.key_areas_card .banner .space-large {
  /* padding-inline: 2rem; */
  /* margin-top: 3rem; */
}

.key_areas_card .head {
  font-size: 1.6rem;
  font-weight: 700;
  color: #202a4e;
  /* padding-inline: 2rem; */
  margin-block: 2rem 1rem;
  width: 100%;
  height: 28%;
  /* background-color: red; */
}

/* TARGETED INDUSTRIES */
.target-industries .title {
  margin-bottom: 5rem;
}
.target-industries .card {
  background-color: #000;
  color: #fff;
}

/* Services */
.services,
.target-industries {
  margin-bottom: 120px;
}
:is(.services, .target-industries) .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services .center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
}
.services .container .h2 {
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  align-items: stretch;
  /* justify-content: center; */
  gap: 15px;
  margin-inline: auto;
}

.services-list .card {
  min-width: 320px;
  max-width: calc(30.333% + 30px);
}

.services .card p {
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-block: 20px 10px;
  text-align: left;
}

.services .card p.active {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
  max-height: 1000px; /* or some large value */
}

.services-list .card .read-more {
  font-weight: 600;
  margin-top: auto;
}

/* Philosophy */
.philosophy {
  margin-bottom: 70px;
  padding-inline: 16px;
}
.philosophy .container {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem 0rem 2rem 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12rem;
}

.philosophy .philo-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  padding-inline: 30px;
  border: 2px solid #27ae60;
  background-color: #c6e4d5;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  max-width: max-content;
}

.philosophy .swiper,
.philo-left {
  width: 50%;
}

/* .swiper {
  all: unset;
  overflow: hidden;
  position: relative;
} */

.slide-content {
  width: calc(100% - 20px);
  /* padding-inline: 10px; */
  overflow: hidden;
  /* background-color: red; */
}

.philosophy .swiper-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
  display: relative;
  /* padding-right: 20px; */
  /* padding-inline: 10px; */
  /* overflow: hidden; */
}

.swiper-wrapper .swiper-slide {
  height: 100%;
  min-width: 100%;
  cursor: pointer;
  scroll-snap-align: start;
  /* min-width: calc(90% + 25px); */
  background-color: #f8f8f8;
  flex: 1;
  /* display: none; */
}

.philo-left .h2 {
  margin-block: 2rem;
}

.philo-left .btn {
  margin-block: 30px;
}

.philosophy .action-btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* background-color: red; */
  margin-top: 50px;
}
.philosophy .action-btns-wrapper .flex {
  gap: 25px;
}
/* .swiper-pagination {
  position: relative;
  width: 100px;
  height: 3px;
  background-color: green;
} */

/* Swiper buttons */

.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: 0;
  width: max-content;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  display: none;
}

.swiper-pagination-bullet {
  background-color: #27ae5fcb;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #27ae5fcb;
}

/* cta */
.cta {
  margin-bottom: 70px;
}
.cta-container {
  background-color: #fff;
  display: flex;
  height: 100%;
  gap: 3rem;
  align-items: stretch;
  justify-content: center;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;

  /* justify-content: center; */
}
.cta-container .cta-content {
  margin-block: 4rem 3rem;
  /* padding: 3rem; */
  padding-left: 4rem;
  width: 60%;
  flex: 1;
}
.cta-container .cta-content .flex {
  margin-top: 1rem;
  align-items: flex-start;
}

.cta-container .cta-content .flex img {
  width: 150px;
  height: 150px;
}
.cta-container .cta-content .flex p {
  margin-top: 2rem;
}
.cta-container .cta-content .flex .btn {
  margin-top: 3rem;
}
/* 
.cta-container .cta-content .h2 {
  margin-top: 4rem;
} */

.cta-container .cta-banner {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

.cta-container .cta-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.cta-container .cta-banner img:hover {
  scale: 1.1;
}

.expertise .container {
  background-color: #fff;
  border: 1px solid #cfcaca;
  box-shadow: 0px 100px 79.4px -58px #0000001c;
}

.expertise .container .focus-flex {
  align-items: center;
  gap: 5rem;
}
.expertise .h2::after {
  width: 120%;
}

.expertise-list-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  /* margin-top: 4rem; */
}

.expertise-list {
  display: grid;
  gap: 1.5rem;
}

.expertise-list .list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expertise-list .list .text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  max-width: 20ch;
}

/* Industry */
.industries {
  margin-bottom: 70px;
}
.industries-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industries .sub-title {
  margin-block: 2rem;
  max-width: 48ch;
  text-align: center;
}
.industries .swiper {
  overflow: visible;
}
.slide-content-2 {
  width: 100%;
  overflow: hidden;
}

:is(.industries, .key_areas) .slides {
  width: 100%;
  position: relative;
  /* overflow: hidden; */
}

.card-wrapper,
.key_areas .key_areas_container {
  gap: 15px;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  /* overflow-x: auto; */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
}

.card-wrapper.no-transition,
.key_areas .key_areas_container.no-transition {
  scroll-behavior: auto;
}
.card-wrapper.dragging,
.key_areas .key_areas_container.dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.industries .card-wrapper.dragging .card {
  cursor: grab;
  user-select: none;
}

/* .industries .card-wrapper::-webkit-scrollbar {
  display: none;
} */
.industries .card,
.key_areas_card {
  /* min-width: 200px; */
  min-width: calc(33.333% - 10px);
  padding: 0;
  cursor: pointer;
  padding: 10px;
  scroll-snap-align: start;
}

.industries .card-banner,
.team .card-banner {
  width: 100%;
  height: 250px;
  /* padding: 10px; */
  /* background-color: red; */
}
.industries .card-banner {
  border-radius: 12px;
  overflow: hidden;
  background-color: #d9d9d9;
}

.industries .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s;
}

.industries .card-banner img:hover {
  scale: 1.1;
}
.industries .card-content {
  padding: 2rem;
}

.swiper-navBtns {
  position: absolute;
  top: 48%;
  box-shadow: 0px 15px 36px 0px #27ae6033;
}

.industries ul {
  /* margin-top: 2rem; */
  display: grid;
  gap: 1rem;
  padding: 2rem;
}
.industries ul li {
  list-style: disc;
}

.swiper-button-prev {
  padding-inline: 3px 1.5rem;
  left: -30px;
}

.swiper-button-next {
  right: -30px;
}

.industries .pagination {
  margin-top: 3rem;
}

/* Team */

.team {
  margin-bottom: 70px;
  /* padding-inline: 16px; */
}

.team-page .card {
  display: block;
  top: 0px;
  position: relative;
  border-radius: 4px;

  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;

  transition: all 0.2s ease-out;
}
.team-page .card:hover {
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  background-color: white;
}

.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/*.team-list {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  align-items: stretch;*/
/*  gap: 3rem;*/
/*  margin-top: 4rem;*/
/*  width: 100%;*/
/*}*/

/*.team .card {*/
/*  flex: 1;*/
/*  padding: 1rem;*/
/*  border-radius: 0;*/
/*  border: 0;*/
/*  min-width: calc(33.333% - 3rem);*/

/*}*/

/*.team-list:has(.card:only-child) .card {*/
/*  flex: none;*/
/*  width: auto;*/
/*  max-width: 33.333%;*/
/*}*/


.team-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  gap: 3rem;
  margin-top: 4rem;
  width: 100%;
}

.team .card {
  flex: 1;
  padding: 1rem;
  border-radius: 0;
  border: 0;
  min-width: calc(33.333% - 3rem);
  max-width: 33.333%;
}

/* If only one card exists, prevent it from stretching */
.team-list:has(.card:only-child) {
  justify-content: start; /* Center the single card */
}

.team-list:has(.card:only-child) .card {
  flex: none;
  width: auto;
  max-width: 400px; /* Adjust this to control the size */
}


.team .card-banner {
  background-color: #d9d9d9;
  /* width: 100%;
  height: 100%; */
}

.team .card-banner .inner-wrapper {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.team .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team .card-content {
  margin-top: 2rem;
  padding-inline: 8px;
}

.team .card-content .profile-title {
  font-weight: 700;
}

.team .icon-btn {
  margin-block: 5rem;
  height: 4rem;
  box-shadow: 0px 15px 36px 0px #27ae6033;
}

/* Footer */
.footer {
  background-color: #001f0d;
  color: #ecf0f1;
}

.footer-links .container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 5rem 8rem;
}

.footer-links .container > div {
  max-width: 25%;
  min-width: 200px;
}

.footer .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}

.footer .social-links .link {
  background-color: var(--color-2);
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 50%;
  transition: opacity 0.5s;
}

.footer .social-links .link:hover {
  opacity: 0.5;
}

.footer-links .container .h4 {
  margin-bottom: 1.5rem;
}
.footer-links .container .quick-links .link:not(:last-child) {
  margin-bottom: 10px;
}
.footer-links .container .quick-links .link a:hover {
  text-decoration: underline;
}

.footer-links .container .contact-us .link:not(:last-child) {
  margin-bottom: 8px;
}

.footer-links .container .contact-us .link a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.footer-links
  .container
  .contact-us
  :is(.link:nth-child(2), .link:nth-child(3))
  span {
  text-decoration: underline;
}

.newsletter .form-wrapper {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  margin-top: 2rem;
}

.newsletter .form-wrapper .input-field {
  background: transparent;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: inherit;
  border: none;
  padding-inline: 2rem 10rem;
}
.newsletter .form-wrapper .send {
  width: max-content;
  height: 3.4rem;
  border-radius: 2rem;
  background-color: var(--color-1);
  color: var(--color-4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
  border: none;
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 1.2rem;
  transition: opacity 0.5s;
}

.newsletter .form-wrapper .send:hover {
  opacity: 0.8;
}

/* copyright */
.copyright-wrapper {
  border-top: 0.5px solid #ecf0f1;
}
.copyright-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
  text-align: center;
}

/* MEDIA QUER */
/* Tablets and Small Desktops */
@media (max-width: 991px) {
  /* Styles for medium devices */
  .container {
    max-width: calc(940px + 32px);
  }
  /* hero */
  .hero .container .hero-content {
    max-width: 400px;
    padding: 1.5rem 3rem 1.5rem 2rem;
    /* padding-left: 3rem; */
  }

  .hero .container .hero-banner {
    /* height: 400px; */
    margin-right: 0;
    right: -74px;
  }

  .focus-area .focus-item {
    max-width: 420px;
  }

  /* services */
  .services-list {
    justify-content: center;
  }

  .industries .swiper-button-prev {
    padding-inline: 3px 1.5rem;
    left: 0px;
  }

  .industries .swiper-button-next {
    right: 0px;
  }

  .cta-container .cta-banner,
  .cta-container .cta-content {
    width: 50%;
  }
  .cta-container .cta-content {
    margin-block: 2rem;
  }
  .cta-container .cta-content .flex p {
    margin-top: 1rem;
  }

  .cta-container .cta-banner {
    border-radius: 0;
  }

  /* .key_areas_card .banner img {
    object-fit: fill;
  } */

  /* .key_areas_card {
    width: calc(50% - (1.5rem));
  } */

  .key_areas_card p {
    padding-top: 2rem;
  }

  /* industries */

  .industries .slide-container {
    max-width: 720px;
    width: 100%;
  }
  .industries .card,
  .key_areas_card {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  /* reused style */
  .container {
    max-width: 720px;
  }

  /* header */

  .header.active {
    display: none;
  }
  .navbar {
    /* display: none; */
    scale: 0.5;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 70px;
    right: 40px;
    transition: all 200ms ease;
  }
  .navbar.active {
    scale: 1;
    opacity: 1;
    visibility: visible;
  }

  .menu-list {
    flex-direction: column;
    background-color: #fff;
    align-items: flex-end;
    padding: 3rem;
    border-radius: 20px;
    min-width: 240px;
  }

  .menu-list li {
    display: inline-block;
    text-align: left;
  }
  .header .container .menu-list li::after {
    bottom: -1rem;
  }

  .menu-toggle-btn {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition: all 500ms ease-in-out;
    transform: translateX(-50%);
  }

  .menu-toggle-btn:hover {
    background-color: rgba(128, 128, 128, 0.456);
  }

  .menu-toggle-btn.active .line:nth-child(2) {
    display: none;
  }

  .menu-toggle-btn.active .line:nth-child(1) {
    transform: rotate(45deg) translateY(2px) translateX(1px);
  }
  .menu-toggle-btn.active .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-4px) translateX(2px);
  }

  .menu-toggle-btn .line {
    width: 100%;
    height: 2px;
    background-color: #00000067;
  }

  .menu-toggle-btn .line:not(:last-child) {
    margin-bottom: 5px;
  }

  /* hero */
  .hero .container {
    flex-direction: column;
    min-height: max-content;
    margin-bottom: 90px;
  }
  .hero .container .hero-content {
    max-width: 100%;
  }
  .hero .container .hero-banner {
    all: unset;
    width: 50%;
    display: none;
  }

  /* mission */
  .mission .cards-list {
    justify-content: center;
  }

  /* focus area */
  .focus-area figure {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
  }

  /* .focus-area .focus-item {
    margin-inline: auto;
  } */

  .focus-flex figure .w-100 {
    width: 70%;
    height: 70%;
  }

  /* .expertise .focus-flex figure .w-100 {
    width: 50%;
    height: 50%;
  } */
  /* philosophy */
  .philosophy .container {
    background: transparent;
    gap: 3rem;
    flex-direction: column;
  }

  .philosophy .h2 {
    max-width: 28ch;
  }
  .philosophy .text {
    max-width: 60ch;
  }
  .philosophy .swiper,
  .philo-left {
    width: 100%;
  }

  /* cta */
  .cta-container {
    flex-direction: column;
  }

  .cta-container .cta-content,
  .cta-container .cta-banner {
    width: 100%;
  }

  .focus-flex :is(.expertise-list-container) {
    width: 100%;
  }

  /* key Areas */
  /* .key_areas_card {
    width: calc(50% - (1.5rem));
  } */

  .expertise figure {
    display: none;
  }

  /* .expertise .focus-flex {
    gap: 0;
  } */

  /* .expertise-list-container .list .text {
    min-width: max-content;
  } */

  .team .card {
    min-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .title::after {
    display: none;
  }

  .mission .cards-list .card,
  .services-list .card,
  .cards-wrapper .card,
  .industries .card,
  .key_areas_card {
    min-width: 100%;
  }

  .hero .container .hero-content {
    padding: 20px;
  }

  .focus-flex {
    flex-direction: column;
    align-items: center;
  }

  .focus-flex .focus-list {
    width: 100%;
  }
  .focus-flex figure .w-100 {
    width: 90%;
    height: 90%;
  }

  .focus-area .focus-item {
    /* max-width: calc(50% - 20px); */
    width: 100%;
    padding-inline: 20px;
    /* min-width: 0; */
  }

  /* mission */
  .mission .card p {
    margin-block: 0;
  }

  .mission .cards-list .card .list::before {
    /* top: -150%; */
  }

  /* philosophy */
  .philosophy .container {
    padding: 0;
  }

  .philo-left {
    padding-left: 2rem;
  }
  /* cta */
  .cta-container .cta-content {
    padding-left: 0;
    padding: 2rem;
  }
  .cta-container .cta-content .flex img {
    display: none;
  }

  /* .key_areas_card {
    width: calc(70%);
  } */

  /* Expertise */

  /* .expertise .focus-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: grey;
  } */
  .expertise figure {
    display: block;
    width: 80%;
  }

  .expertise-list-container {
    gap: 1.5rem;
  }
  .expertise-list-container .list .text {
    max-width: max-content;
  }

  /* SERVICES */
  .services-list .card {
    max-width: 90%;
  }

  .industries .swiper-button-prev {
    padding-inline: 3px 1.5rem;
    left: 0px;
  }

  .industries .swiper-button-next {
    right: 0px;
  }

  .team .card {
    min-width: calc(100%);
  }

  .footer .container {
    padding-left: 3rem;
  }
  .copyright-wrapper .container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links .container > div {
    max-width: 80%;
  }
}

/* small screen */
@media (max-width: 480px) {
  /* reused */
  .h1 {
    font-size: 2.8rem;
  }

  .h2 {
    font-size: 2.4rem;
  }

  .h3 {
    font-size: 2rem;
  }
  .h4 {
    font-size: 1.8rem;
  }
  .h5 {
    font-size: 1.6rem;
  }

  /* .key_areas_card {
    height: 300px;
  } */

  /* .key_areas_card {
    width: calc(100%);
  } */

  .focus-area .focus-item {
    padding-inline: 0;
  }

  .expertise figure {
    display: block;
    width: 100%;
  }

  .expertise figure .w-100 {
    width: 100%;
    height: 100%;
  }
}
