/* Reset & Base */
*,
:before,
:after {
  box-sizing: border-box;
}

/* Hero Slider */
.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.2),
    rgba(26, 26, 46, 0.9)
  );
  /* z-index: 1; */
}

/* Slide Text */
.hero-style {
  height: 850px;
  transition: all 0.4s ease;
  padding: 0 15px;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 100px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  text-transform: capitalize;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-style .slide-text p {
  font-size: 32px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 40px;
  color: var(--white);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.theme-btn,
.theme-btn-s2 {
  background-color: #ff6f61;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a2e;
}

.theme-btn:hover,
.theme-btn-s2:hover {
  background-color: #d4574e;
  color: #ffffff;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  color: var(--white);
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #f0f0f0;
  display: inline-block;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .hero-style .slide-title h2 {
    font-size: 70px;
  }
  .hero-style .slide-text p {
    font-size: 24px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-slider {
    height: 600px;
  }
  .hero-style {
    height: 600px;
    text-align: center;
    padding: 40px 20px;
  }
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin-bottom: 25px;
  }
  .hero-style .slide-text p {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .slide-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }
  .hero-style .slide-title h2 {
    font-size: 36px;
  }
  .hero-style .slide-text p {
    font-size: 18px;
  }
  .theme-btn,
  .theme-btn-s2 {
    font-size: 16px;
    padding: 8px 24px;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .hero-slider {
    height: 400px;
  }
  .hero-style .slide-title h2 {
    font-size: 28px;
  }
  .hero-style .slide-text p {
    font-size: 16px;
  }
  .theme-btn,
  .theme-btn-s2 {
    font-size: 14px;
    padding: 6px 18px;
  }
}

.about-our {
  background: var(--green-dark);
  position: relative;
}
.about-our .main-title {
  color: var(--white);
}
/* parallax */
.about-our-left {
  position: sticky;
  top: 0px; /* distance from top while scrolling */
  align-self: flex-start;
  /* height: fit-content; */
}
.parallax-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-evenly;
  width: 100%;
  min-height: 50vh;
  margin: 5rem 0;
}

.parallax-item h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem;
  border-radius: 1rem;
}
.parallax-item h4 {
  font-size: 4rem;
  color: var(--green);
}
.parallax-item p {
  font-size: 2rem;
  text-transform: capitalize;
  background-color: whitesmoke;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .parallax-item h2 {
    font-size: 1.5rem;
  }
}
/* management team */
.management-team {
  background: var(--off-white);
}
.member-image {
  border-radius: 1rem;
}
.member-image img {
  border-radius: 1rem;
}
.management-members-list {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.member {
  width: 100%;
  border-radius: 1rem;
}
.member img {
  width: 100%;
  border-radius: 1rem;
}
.management-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 50rem;
}
.management-info h2 {
  font-size: 6rem;
}
.message {
  font-style: italic;
  font-size: 2.5rem;
}
.member-info {
  margin-top: 2rem;
}
.member-info h4 {
  font-size: 2.5rem;
}
