* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}

/* Root */
:root {
  --popins-font: "Roboto", sans-serif;
  --fire-font: "Fira Sans", sans-serif;
  /* --popins-font: "Poppins", sans-serif; */
  --primary-color: #e95d2a;
  --secondary-black: #363636;
}
body {
  position: relative;
}
/* Christmas Popup */
.christmas-pop-wrapper {
  position: fixed;
  display: none;
  left: 20px;
  bottom: 5vh;
  width: 50px;
  z-index: 4;
}

.christmas-pop-wrapper img {
  width: 100%;
}

/* Scroll to the Top */
.scroll-top-wrapper {
  position: fixed;
  bottom: 5vh;
  right: 0px;
  width: 70px;
  padding: 5px;
  z-index: 4;
  border-radius: 24px 0px 0px 24px;
  background-color: var(--primary-color);
  transform: translateX(100px);
  transition: 0.3s all linear;
}

.scroll-top {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--primary-color);
  cursor: pointer;
}

/* Whatsapp Button */
.whatsapp-container {
  transform: translateX(100px);
  position: fixed;
  right: 20px;
  bottom: 15vh;
  z-index: 1;
}

.chat-msg-wrapper {
  background-color: green;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;

  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: 0.3s all linear;
  transition-delay: 0.3s;
  animation: whatsapp 1s infinite;
}

@keyframes whatsapp {
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.chat-msg-wrapper:hover {
  background-color: rgb(23, 194, 23);
}

/* Show Scroll top */
.show-top {
  transform: translateX(0);
  transition: 0.3s all linear;
}

/* Carousel Home Page */
.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh + 90px);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
  background-image: url(https://fradfoundation.org/wp-content/uploads/2024/02/slider-01-mask.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200vw;
  /* background-color: #e49400; */
}

/* Sub Contents */
.sub-carousel-content {
  font-family: var(--popins-font);
}

.carousel-contents {
  position: relative;
  padding: 250px 100px;
  height: 100%;
  /* background-color: rgba(255, 255, 0, 0.808); */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-headline {
  font-size: 4.5rem;
  font-family: var(--fire-font);
  margin-bottom: 10px;
}

.carousel-contents p {
  font-family: var(--popins-font);
  width: 70%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.learn-more-btn {
  /* margin: 0 auto; */
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  font-family: var(--popins-font);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 34px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #fff;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: var(--primary-color);
  transition: 0.3s all linear;
}
/* Card Templates */
.support-card-container {
  padding: 100px;
  display: flex;
  gap: 50px;
}

.card-template-wrapper {
  /* background-color: rgb(255, 255, 255); */
  /* background-image: url(https://images.unsplash.com/photo-1588072432836-e10032774350?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTZ8fGNsYXNzcm9vbXxlbnwwfHwwfHx8MA%3D%3D); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 400px;
  height: 300px;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s all linear;
}

.card-template-wrapper:hover {
  transform: scale(0.95);
  transition: 0.3s all linear;
  cursor: pointer;
}

.card-overlay-wrapper {
  padding: 50px 20px;
  width: 100%;
  height: 100%;
  background-color: #000000ab;
}

.card-icon-temp {
  color: var(--primary-color);
}

.card-template-wrapper h2 {
  font-family: var(--popins-font);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-template-wrapper p {
  font-family: var(--fire-font);
}

/* About Us Styles */
.about-us-flex-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 100px;
  gap: 50px;
}

/* Image */
.abt-image-wrapper {
  width: 50%;
}

.abt-image-wrapper img {
  width: 100%;
}

/* About Us Content */
.abt-us-content-wrapper {
  padding: 20px;
  /* background-color: aqua; */
  width: 50%;
}

.abt-content-head {
  display: flex;
  gap: 5px;
  color: var(--primary-color);
  font-family: var(--fire-font);
  align-items: center;
}

.abt-us-content-wrapper h2 {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--popins-font);
}

.abt-us-content-wrapper h4 {
  font-family: var(--popins-font);
  color: var(--secondary-black);
  font-weight: 400;
}
/* our Core Values */
.abt-core-value-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--primary-color);
}

.abt-core-value-wrapper span {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--fire-font);
}

/* About List Styles */
.abt-check-list-wrapper {
  padding: 10px 20px;
  color: var(--secondary-black);
  font-family: var(--popins-font);
}

.abt-check-list-wrapper li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt-check {
  color: var(--primary-color);
}

/* Flex Learn More and Call Btn */
.flex-abt-contact-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

/* Our Vision */
.abt-our-vision-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  padding: 5px 5px;
  width: 170px;
  border-radius: 24px;
  font-family: var(--fire-font);
  color: #fff;
  transition: 0.3s all linear;
}

.abt-our-vision-btn:hover {
  background-color: #fff;
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
  transition: 0.3s all linear;
}

.abt-right-svg {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--primary-color);
}

/* Phone Number - Call */
.call-us-flex-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.abt-call-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: teal; */
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 50%;
}

.abt-call-details {
  /* background-color: yellow; */
  line-height: 25px;
  /* font-size: 16px; */
}

.abt-call-details p {
  font-family: var(--fire-font);
  color: var(--secondary-black);
  font-weight: 400;
}

.abt-call-details span {
  font-family: var(--popins-font);
  font-weight: 500;
}

/* One Community */
.one-community-container {
  width: 100%;
  height: 400px;
  background-image: url(/Assets/Images/student-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.one-community-overlay {
  height: 100%;
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(11, 13, 32, 0.493);
}

.one-community-overlay h2 {
  font-size: 3rem;
  color: #fff;
  font-family: var(--popins-font);
}

.one-community-overlay p {
  color: #fff;
  font-family: var(--fire-font);
}

/* UN SUSTAINABLE GOAL AND UNICHEF */
.un-unicef-container {
  /* background-color: teal; */
  padding: 50px 100px;
}

/* UN Sustainable Goal */

.un-sus-goal-wrapper {
  display: flex;
  /* background-color: violet; */
  /* margin-bottom: 50px; */
  gap: 50px;
}

.un-sus-content-wrapper {
  width: 50%;
  /* background-color: aqua; */
}

.un-sus-head {
  /* background-color: turquoise; */
  text-transform: uppercase;
  font-family: var(--fire-font);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.un-color-hl {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.un-sus-tag-wrapper {
  width: 200px;
  aspect-ratio: 16/4;
  margin-bottom: 20px;
}

.un-sus-tag-wrapper img {
  width: 100%;
  font-family: var(--popins-font);
}

.un-sus-content-wrapper p {
  font-family: var(--popins-font);
  color: var(--secondary-black);
}

/* UN Sustainability Goal */
.un-goal-img-wrapper {
  width: 50%;
  aspect-ratio: 3/2;
}

.un-goal-img-wrapper img {
  width: 100%;
  object-fit: contain;
}

/* ALIGNED WITH UNICEF MISSION  */
.aligned-unicef-container {
  /* background-color: yellow; */
  display: flex;
  justify-content: left;
  gap: 50px;
}

.unicef-image-wrapper {
  width: 50%;
  aspect-ratio: 3/2;
}

.unicef-image-wrapper img {
  width: 100%;
  object-fit: contain;
}

.unicef-content-wrapper {
  /* background-color: yellowgreen; */
  width: 50%;
  font-family: var(--popins-font);
}

.unicef-content-wrapper h2 {
  font-family: var(--fire-font);
  margin-bottom: 10px;
}

/* UNICEF LOGO */
.unicef-logo-wrapper {
  /* background-color: aqua; */
  width: 300px;
  margin-bottom: 10px;
}

.unicef-logo-wrapper img {
  width: 100%;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 867px) {
  .overlay {
    background-size: cover;
  }
  .carousel-contents {
    padding: 20px;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .slide-headline {
    font-size: 3rem;
  }

  .carousel-contents P {
    width: 100%;
  }

  /* CARD TEMPLATES */
  .support-card-container {
    padding: 50px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .card-template-wrapper {
    gap: 0;
    width: 90%;
  }

  /* ABOUT US */
  .about-us-flex-container {
    padding: 50px 20px;
    padding: 0px;
    display: block;
  }
  .abt-image-wrapper {
    display: none;
  }
  .abt-us-content-wrapper {
    width: 100%;
  }

  .abt-our-vision-btn {
    font-size: 0.85rem;
    width: 150px;
  }

  .abt-call-btn {
    width: 40px;
    height: 40px;
  }

  .abt-call-details {
    font-size: 0.85rem;
  }

  /* ONE COMMUNITY */
  .one-community-overlay {
    padding: 50px 20px;
  }
  .one-community-overlay h2 {
    font-size: 2.5rem;
  }

  /* UN SUSTAINABLE GOAL AND UNICHEF */
  .un-unicef-container {
    padding: 50px 20px;
  }

  .un-sus-goal-wrapper {
    flex-direction: column;
  }

  .un-sus-content-wrapper {
    width: 100%;
  }

  /* UN Sustainable Goal Image */
  .un-goal-img-wrapper {
    width: 100%;
  }

  /* ALIGNED WITH UNICEF MISSION */
  .aligned-unicef-container {
    flex-direction: column-reverse;
  }

  .unicef-image-wrapper {
    width: 100%;
  }
  .un-sus-head {
    font-size: 1.5rem;
  }

  .unicef-content-wrapper {
    width: 100%;
  }
}
