@import url("https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Poppins&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border;
}
:root {
  --clr-black: #22343d;
  --clr-white: #ffffff;
  --clr-blue: #0270e8;
  --buttonColor: #05d7f0;
  --boxShadowColor: #e5e5e5;
  --lightButtonColor: #b8f3ff;
  --cardHeaderColor: #777777;
  --carouselColor: #979797;
  --cardTextColor: #22343d;
  --lightBg: #f1f7ff;
  --orange: #fe4c1c;
  --footerUnderlineColor: #e5e5ea;
  --mainFont: "Poppins", sans-serif;
  --secondaryFont: "Grand Hotel", cursive;
  --transition: all 0.3s linear;
}
body {
  font-family: var(--mainFont);
  font-size: 16px;
  color: var(--cardTextColor);
  overflow-x: hidden;
}
p {
  line-height: 26px;
  /* color: var(--cardTextColor); */
}
/* h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cardTextColor);
} */
/* a {
  text-decoration: none;
  color: var(--clr-white);
} */
li {
  list-style-type: none;
}

img {
  width: 100%;
  display: block;
}
/*
================
Global styles
================
*/

/*
=================
section-container
=================
*/

.container {
  background: linear-gradient(103.81deg, #1f0098 8.93%, #05d7f0 91.07%);
  height: 82vh;
}

.banner-container {
  margin-left: 3rem;
}
.banner-header {
  padding-top: 3rem;
  color: var(--clr-white);
}
.banner-link {
  margin-top: 0.5rem;
  display: flex;
  column-gap: 0.3rem;
}
.banner-link-separator {
  color: var(--clr-white);
}
.banner-about {
  color: var(--orange);
}
.banner-icons {
  margin-top: 1rem;
  width: 300px;
  height: 50px;
  display: flex;

  column-gap: 1rem;
}
.linkedin {
  color: var(--clr-white);
}
.twitter {
  color: var(--clr-white);
}
.facebook-container {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--clr-white);
  text-align: center;
  border-radius: 50%;
}
.facebook {
  color: blue;
}
.instagram {
  color: var(--clr-white);
  margin-left: -1rem;
}

.nav-menu {
  position: absolute;
  top: 1rem;
  right: 2rem;
  cursor: pointer;
  display: none;
}
.menu-icon {
  font-size: 2rem;
  color: var(--clr-white);
}

@media screen and (max-width: 768px) {
  .nav-links {
    column-gap: 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  .nav-section {
    margin: 0 0.5rem;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .underline {
    width: 2.5rem;
  }
  .contact-link {
    width: 80px;
  }
  .banner-header {
    font-size: 1rem;
  }
  .banner-container {
    margin-left: 2rem;
  }
  .banner-icons {
    margin-top: 0.2rem;
  }
  .banner-link {
    margin-top: 0.3;
  }
}

@media screen and (max-width: 576px) {
  .nav-links-container {
    display: none;
  }

  .nav-menu {
    display: block;
  }
  .banner-container {
    height: 100%;
    width: 100%;

    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .logo {
    margin-left: 1rem;
  }
  .banner-icons {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
/*
==================
About Statements
==================
*/
.about-details {
  margin: 3.5rem;
}
.about-texts {
  margin-top: 3.5rem;
}
.small-header {
  margin-bottom: 0.5rem;
}
.big-header {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.about-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* .about-header :is(h3, p) {
  max-width: 500px;
} */
.about-header p {
  max-width: 500px;
  text-align: center;
  font-size: small;
}

.about-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.image-container {
  width: 300px;
  height: 500px;
  border-radius: 3px;
}
.about-section-details p {
  max-width: 30rem;
  font-size: 12px;
}
.about-paragraph {
  margin-top: 1rem;
}

.video-link-container {
  display: flex;
  margin-left: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  gap: 1rem;
}
.video-button {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  background: var(--buttonColor);
  align-items: center;
  border: 4px solid var(--lightButtonColor);
  border-radius: 50%;
  transition: var(--transition);
}
.video-info {
  color: var(--buttoncolor);
}

@media screen and (max-width: 576px) {
  .about-header {
    text-align: center;
  }
  .about-details {
    flex-direction: column;
    margin: 0.5rem;
    gap: 0;
  }
  .about-section-details {
    margin-top: 4.5rem;
    margin-left: 1rem;
  }

  .image-container {
    width: 100%;
  }
  .about-img {
    width: 100%;
  }
  .about-header h3 {
    font-size: 1rem;
  }
  .about-header p {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 20px;
  }
  .video-link-container {
    margin-left: 0;
  }
}

/*
============
Team Section
============
*/
.team-info-section {
  margin-top: 2.5rem;
  padding-left: 0.2rem;
  width: 100%;
  background: var(--lightBg);
  position: relative;
  height: 180px;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.section-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: absolute;
  gap: 1rem;
  top: -1.5rem;
}
.single-service {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: var(--clr-white);
  border-radius: 5px;
  gap: 0.5rem;
  width: 245px;
  height: 60px;
}
.service-icon-container {
  width: 30px;
  height: 30px;
  margin-left: 0.5rem;
  border-radius: 5px;
  background: var(--lightButtonColor);
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-icon {
  width: 18px;
}

@media screen and (max-width: 576px) {
  .section-container {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
  }
  .single-service {
    margin-right: 8px;
    width: 180px;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .section-container {
    column-gap: 0.2rem;
  }
  .single-service {
    width: 190px;
  }
}
/*
================
Team Section
================
*/

.team-members-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-members-container h3 {
  margin-top: 0.5rem;
}
.team-members-container h4 {
  margin-top: -7px;
}
.circle {
  width: 11px;
  height: 11px;
}
.team-section-header {
  display: flex;
  gap: 0.5rem;
}
.card-containers {
  margin-top: 1.5rem;
  height: 200px;
}
.single-card {
  height: 200px;

  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.slider-icon {
  font-size: 2rem;
  color: var(--boxShadowColor);
  cursor: pointer;
}
.slider-icon-container {
  height: 100%;
  display: flex;
  align-items: center;
}
.person-info {
  position: absolute;
  top: 11rem;

  width: 180px;
  height: 70px;
  background: var(--clr-white);
  box-shadow: 0 2px 5px var(--boxShadowColor);
  border-radius: 5px;
}
.person-info h5 {
  text-align: center;
  color: var(--cardHeaderColor);
}
.person-info p {
  font-size: 10px;
  color: var(--cardTextColor);
  text-align: center;
}
.card-image {
  width: 250px;
  height: 250px;
}
.card-icon-container {
  position: absolute;
  top: 3.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.card-icon {
  width: 20px;
  height: 20px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: var(--clr-blue);
}
.card-icon .facebook-container {
  width: 12px;
  height: 12px;
  position: relative;
}
.card-icon .facebook {
  font-size: 8px;
  position: absolute;
  top: 2px;
  left: 3px;
}
.person-icon {
  font-size: 12px;
}
.card-social-icons {
  display: none;
  justify-content: space-between;
  width: 75%;
}
.card-social-icons.visible {
  display: flex;
}
.dash-icon {
  background: var(--clr-white);
  border: 1px solid var(--boxShadowColor);
  box-shadow: 0 0 8px var(--boxShadowColor);
  margin-left: -0.3rem;
}
.dash-button {
  color: var(--lightButtonColor);
  font-size: 1.5rem;
}
.carousel-container {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.carousel {
  width: 10px;
  height: 10px;
  background: var(--carouselColor);
  border-radius: 50%;
}
.one {
  background: var(--lightButtonColor);
}
.card-two {
  display: none;
}
.card-three {
  display: none;
}
.card-four {
  display: none;
}
@media screen and (min-width: 576px) {
  .single-card {
    gap: 4rem;
  }
}

/*
=================
Patronage Section
=================
*/

.patronages-section {
  margin: 2.5rem 2.5rem;
}
.patronages-section h5 {
  text-align: center;
}
.patronage-boxes {
  display: flex;
  margin-top: 1.5rem;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 10rem;
}
.single-box {
  width: 80px;
  height: 25px;
  background: var(--carouselColor);
}
