/* ===============================
  Hero section
================================ */

.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url(../images/about-hero.jpg) center / cover no-repeat;
  height: 540px;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  width: min(740px, 100%);
  margin-bottom: 60px;
}

.hero-heading {
  color: #fff;
  margin-bottom: 16px;
}

.white-para {
  color: #fff;
  opacity: 0.9;
}

.breadcrumb-navigaion {
  width: 100%;
  border-top: 1px solid rgba(255, 253, 253, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
}

.navigation-icon {
  width: 9.75px;
  height: 10.5px;
}

.navigation {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

/* ===============================
  Laptop
================================ */

@media (max-width: 1200px) {
  .hero-content {
    max-width: 680px;
    margin-bottom: 55px;
  }

  .hero-heading {
    font-size: 56px;
    line-height: 1.2;
  }

  .tag-line {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* ===============================
  Tablet
================================ */

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-content {
    max-width: 560px;
    margin-bottom: 40px;
  }

  .hero-heading {
    font-size: 46px;
    line-height: 1.2;
  }

  .tag-line {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ===============================
  Phone
================================ */

@media (max-width: 576px) {
  .hero-section {
    height: 500px;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.23;
    text-align: center;
  }

  .tag-line {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .desktop-break {
    display: none;
  }

  .breadcrumb-navigaion {
    padding: 12px 0;
  }
}
/* ===============================
  Hero section
================================  */

/* ===============================
  Our Story Banner
================================ */

.our-story {
  padding-block: clamp(35px, 5vw, 73px);
}
.our-story-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.story-content {
  width: 100%;
  max-width: 607px;
  /* min-width: 300px; */
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.our-story-banner {
  width: 100%;
  max-width: 580px;
  flex: 1 1 290px;
}

.story-banner {
  width: 100%;
  height: 428px;
  border-radius: 4px;
  overflow: hidden;
}

.our-story-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===============================
  Our Story Stats
================================ */

.our-story-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
}

.stats-wrapper {
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-story-stats .stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stats-wrapper img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.stat-number {
  width: 119px;
}

.stat-no-3 {
  width: 162px;
}

/* ===============================
  Stat Borders
================================ */

.stat1 {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.stat2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.stat3 {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

/* ===============================
  Laptop
================================ */

@media (max-width: 1200px) {
  .story-banner {
    height: 380px;
  }

  .our-story-stats {
    margin-top: 35px;
  }

  .stats-wrapper {
    height: 190px;
  }
}

/* ===============================
  Tablet
================================ */

@media (max-width: 900px) {
  .story-content {
    max-width: 100%;
  }

  .our-story-banner {
    max-width: 100%;
  }

  .story-banner {
    height: 400px;
  }

  .our-story-stats {
    margin-top: 35px;
  }
}

/* ===============================
  Phone
================================ */

@media (max-width: 576px) {
  .story-banner {
    height: 280px;
  }

  .our-story-stats {
    margin-top: 25px;
  }

  .stats-wrapper {
    height: 145px;
  }

  .our-story-stats .stat {
    gap: 10px;
  }

  .stats-wrapper img {
    width: 38px;
    height: 38px;
  }

  .stat-number,
  .stat-no-3 {
    width: auto;
  }

  .stats-wrapper .heading2 {
    font-size: 30px;
    line-height: 36px;
  }

  .stats-wrapper .para16 {
    font-size: 13px;
    line-height: 20px;
  }
}

/* ===============================
  Tablet
================================ */

@media (max-width: 900px) {
  .our-story {
    margin-top: 60px;
  }

  .our-story-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .our-story-banner {
    max-width: 100%;
  }

  .story-banner {
    height: 400px;
  }

  .our-story-stats {
    margin-top: 35px;
  }
}

/* ===============================
  Phone
================================ */

@media (max-width: 576px) {
  .our-story {
    margin-top: 45px;
  }

  .our-story-wrapper {
    gap: 35px;
  }

  .story-heading {
    margin-bottom: 12px;
  }

  p.story-para {
    margin-top: 20px;
  }

  .story-banner {
    height: 280px;
  }

  .our-story-stats {
    margin-top: 25px;
  }

  .stats-wrapper {
    height: 145px;
  }

  .our-story-stats .stat {
    gap: 10px;
  }

  .stats-wrapper img {
    width: 38px;
    height: 38px;
  }

  .stat-number,
  .stat-no-3 {
    width: auto;
  }

  .stats-wrapper .heading2 {
    font-size: 30px;
    line-height: 36px;
  }

  .stats-wrapper .para16 {
    font-size: 13px;
    line-height: 20px;
  }
}
/* ===============================
  Vision section
================================ */

.vision-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url(../images/vision-section.jpg) center / cover no-repeat;
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.vision-section-wrapper {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: minmax(0, 522px) minmax(0, 611px);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.vision-para {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}

.vision-content {
  width: 100%;
  max-width: 522px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vision-card-wrapper {
  width: 100%;
  max-width: 611px;
  display: grid;
  gap: 6px;
}

.vision-card {
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 27px 38px 38px 30px;
}

.vision-card img {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.vision-card-content {
  min-width: 0;
}

.vision-card-heading {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===============================
  Laptop
================================ */

@media (max-width: 1200px) {
  .vision-section-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 40px;
  }

  .vision-para {
    font-size: 21px;
    line-height: 32px;
  }

  .vision-card {
    padding: 25px 28px;
    gap: 24px;
  }
}

/* ===============================
  Tablet
================================ */

@media (max-width: 768px) {
  .vision-section {
    padding: 60px 0;
  }

  .vision-section-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-content,
  .vision-card-wrapper {
    max-width: 100%;
  }

  .vision-para {
    font-size: 20px;
    line-height: 30px;
  }
}

/* ===============================
  Phone
================================ */

@media (max-width: 576px) {
  .vision-section {
    padding: 45px 0;
  }

  .vision-section-wrapper {
    gap: 30px;
  }

  .vision-para {
    font-size: 16px;
    line-height: 26px;
  }

  .vision-card {
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
  }

  .vision-card img {
    width: 45px;
    height: 45px;
  }

  .vision-card-heading {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }

  .vision-card .para16 {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ================================
    Our Philosophy
================================ */

.philosophy-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 111px;
  padding: 96px 0;
}
.philosophy-para {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: 0%;
}

.philosophy-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: stretch;
  gap: 35px;
  flex: 1 1 600px;
}

.philosophy-card {
  width: 100%;
  max-width: 245px;
  min-width: 176px;
  flex: 1;
}

.philosophy-card-img {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  opacity: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.philosophy-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.philosophy-card-title {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #b0a634;
  margin: 16px 0 6px 0;
}

.philosophy-card-para {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}
@media (max-width: 1231px) {
  .mobile-none {
    display: none;
  }

  .philosophy-wrapper {
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .philosophy-wrapper {
    justify-content: center;
  }
  .philosophy-card-wrapper {
    justify-content: center;
  }
  .mobile-none {
    display: none;
  }
}

/* ===============================
  Team Section
================================ */

.team-section {
  max-width: 100%;
  width: 100%;
}

.team-section .team-container {
  padding: 0 !important;
}

.team-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

/* ===============================
  Profile
================================ */

.person {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
}
.team-profile {
  max-width: 720px;
  width: 50%;
  min-width: 0;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 68px 58px 70px 96px;

  overflow: hidden;

  flex: 1 1 500px;
}

.green {
  background-color: #116b3b;
}

.yellow {
  background: #b4ad2c;
}

.team-profile-content {
  width: 100%;
  max-width: 360px;
  /* align-self: center; */
  color: #fff;
}

.team-profile h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
}

.team-role {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: 0%;
  margin-top: 5px;
}

/* ===============================
  Profile Image
================================ */

.team-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.profile-image-wrapper {
  margin-top: 65px;
  height: 546px;
  width: 496px;
  margin-bottom: 8px;
}
.profile-img {
  height: 100%;
  width: 100%;
}

/* ===============================
  LinkedIn
================================ */

.linkedin-icon {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.linkedin-icon img {
  width: 48px;
  height: 48px;
  height: 100%;
  display: block;
}

/* ===============================
  Biography
================================ */

.team-bio {
  max-width: 720px;
  width: 50%;
  min-width: 0;

  background: #f5f5f5;

  padding: 81px 35px 83px 90px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: clamp(15px, 5vw, 30px);

  flex: 1 1 500px;
}

.team-bio p:last-child {
  margin-bottom: 0;
}
/* ================================
    Representation section 
================================ */
.rep-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(46px, 5vw, 92px);
  gap: clamp(145px, 4vw, 90px);
}

.international-rep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(19px, 1vw, 38px);
}

.rep-head-wrapper{
  display: flex;
  gap: 10px;
}

.rep-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 5vw, 25px);
}

.gold-line{
  border: 1px solid;
}

.grey {
  color: #c9c9c9;
}

.rep-card-wrapper {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  justify-content: flex-start;

  gap: clamp(16px, 2.5vw, 25px);
}


.rep-card {
  position: relative;

  /* flex: 1 1 260px; */

  width: 100%;
  max-width: 294px;
  min-width: 0;

  height: 378px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
  border-radius: 4px;
}
.img {
  transition: transform 0.3s ease-in-out;
}

.rep-card:hover .img {
  transform: scale(1.05);
}
.img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rep-details .accreditation {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #ffffff;
}
.rep-details {
  position: relative;
  padding: 0 26px 22px 21px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 20%,
    #000000 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.rep-title {
  margin-top: 11px;
  display: flex;
  flex-direction: column;
}
.rep-title .para16 {
  color: #fff;
  line-height: 26px;
  font-weight: 400;
}
.rep-title .para16 svg {
  margin-right: 6.5px;
}
.box-arrow {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 16px 21px;
}
.rep-card:hover .box-arrow svg {
  animation: slideFade 0.3s ease-in-out;
}
.w-full {
  width: 100%;
  max-width: 100% !important;
}
.uppercase{
  text-transform: uppercase;
}

/* ================================
    Representation section 
    ================================ */

@media (max-width: 999px) {
  .team-profile {
    max-width: 100%;
  }
  .team-bio {
    max-width: 100%;
  }
}
@media (max-width: 912px) {
  .rep-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .rep-card {
    max-width: 100%;
    height: 500px;
  }
}
@media (max-width: 468px) {
  .rep-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
