@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/*------------------------- header ---------------------------------*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0.8rem 3rem;
  box-shadow: 1px 1px 5px #3f3f3f;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 60px;
}

.logo img {
  height: 100%;
  width: auto;
}

header ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  font-size: 14px;
  border-radius: 5px;
  padding: 0.65rem;
  transition: all ease-in-out 0.3s;
}

header ul li a:hover {
  background: #efeeee;
}

.menu-icon,
.menu-toggle {
  display: none;
}

.menu-icon,
.menu-icon,
.menu-icon img {
  width: 45px !important;
  height: 25px !important;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  header ul {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    background-color: #ffffff;
    height: 80vh;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 23px;
    z-index: 80;
  }

  .menu-toggle:checked~ul {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  header .logo {
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header .logo {
    height: 40px;
  }

  .menu-icon,
  .menu-icon,
  .menu-icon img {
    width: 35px !important;
    height: 20px !important;
  }
}

/*------------------------- header end ---------------------------------*/

/*------------------------- home ---------------------------------*/
.hero-section {
  height: 768px;
  background-image: url(../img/buildings-background.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #00000081;
  width: 100%;
  gap: 4rem;
  padding: 3rem 0;
}

.hero-content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  gap: 3rem;
  color: white;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  width: 325px;
}

.hero-content p {
  font-size: 16px;
  width: 400px;
  font-weight: 300;
}

.hero-image {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.hero-image img {
  width: 263px;
  height: auto;
}

.hero-content .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 474px;
}

.hero-content .cta a {
  width: 230px;
  height: 60px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.hero-content .cta a:first-child {
  background-color: #fff;
  color: #000;
  text-align: center;
}

.hero-content .cta a:last-child {
  background-color: #d4252f;
  color: #fff;
  text-align: center;
}

.hero-content .cta a:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: fit-content;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .hero-content {
    width: 100%;
    height: max-content;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 24px;
    width: 100%;
  }

  .hero-content p {
    font-size: 14px;
    width: 100%;
  }

  .hero-image {
    width: 150px;
    height: 150px;
    border-radius: 100%;
  }

  .hero-image img {
    width: 100px;
  }

  .hero-content .cta {
    width: 100%;
    gap: 1rem;
  }

  .hero-content .cta a {
    width: 50%;
    height: 50px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-image {
    display: none;
  }

  .hero-image img {
    width: 80px;
  }

  .hero-content .cta a {
    width: 60%;
    height: 40px;
    font-size: 10px;
  }
}

/*------------------------- home end ---------------------------------*/
/*------------------------- Our domains ---------------------------------*/
.our-domains {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.section-description {
  font-size: 16px;
  font-weight: 300;
  color: #3f3f3f;
  text-align: center;
  width: 600px;
}

.domains-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

.domain-card {
  background-color: #f2f2f2;
  border-radius: 10px;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 2rem 1rem;
  transition: all ease-in-out 0.3s;
}

.domain-card:hover {
  transform: scale(1.05);
}

.domain-card i {
  font-size: 2rem;
  color: #d4252f;
}

.domain-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.domain-card p {
  font-size: 14px;
  font-weight: 300;
  color: #3f3f3f;
  text-align: center;
}

.domain-card a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #d4252f;
  transition: all ease 0.3s;
}

.domain-card a:hover {
  border-bottom: 1px solid #d4252f;
}

@media screen and (max-width: 768px) {
  .our-domains {
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
    width: 100%;
  }

  .domains-container {
    gap: 1rem;
  }

  .domain-card {
    width: 45%;
    padding: 1.5rem 1rem;
    gap: 8px;
  }

  .domain-card h3 {
    font-size: 14px;
  }

  .domain-card p {
    font-size: 12px;
  }

  .domain-card a {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .our-domains {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 20px;
  }

  .section-description {
    font-size: 12px;
  }

  .domains-container {
    gap: 1rem;
  }

  .domain-card {
    width: 100%;
    padding: 1rem 0.5rem;
    gap: 5px;
  }

  .domain-card h3 {
    font-size: 14px;
  }

  .domain-card p {
    font-size: 12px;
  }

  .domain-card a {
    font-size: 12px;
  }
}

/*------------------------- Our domains end ---------------------------------*/

/*------------------------- Activities ---------------------------------*/
.activities {
  width: 100%;
  min-height: 800px;
  height: 800px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/buildings-background.webp);
  background-size: cover;
  background-position: center;
}

.activities .passed {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2rem;
}

.activities .passed h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 10px #000000a0;
}

.passed-activity {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  width: 500px;
  min-height: 230px;
  border-radius: 10px;
  padding: 5px 5px;
}

.passed-activity img {
  width: 40%;
  height: 100%;
  display: inline-block;
  object-fit: cover;
  border-radius: 10px;
}

.passed-activity-details {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .8rem;
  padding: 10px 15px;
}

.passed-activity-details .activity-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.passed-activity-details .activity-date {
  font-size: 14px;
  font-weight: 600;
  color: #3f3f3f;
}

.passed-activity-details .activity-description {
  font-size: 14px;
  font-weight: 300;
  color: #3f3f3f;
}

.passed-activity-details .activity-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #d4252f;
  transition: all ease 0.3s;
}

.activities .upcoming {
  background-color: #0000008f;
  padding: 2rem 4rem;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
}

.upcoming-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #d4252f;
  width: 152px;
  height: 50px;
  background-color: #fff;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upcoming-activity-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.upcoming-activity-date {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.upcoming-activity-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.upcoming-activity-description {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.upcoming-activity-cta {
  display: flex;
  width: 85%;
  gap: 0;
}

.upcoming-activity-cta a {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upcoming-activity-cta a:first-child {
  height: 60px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}

.upcoming-activity-cta a:last-child {
  height: 60px;
  background-color: #d4252f;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all ease-in-out 0.2s;
}

.upcoming-activity-cta a:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .activities .passed {
    width: 60%;
  }

  .activities .upcoming {
    width: 40%;
    padding: 2rem 2rem;
  }
}

@media screen and (max-width: 899px) {
  .activities {
    flex-direction: column;
    height: fit-content;
  }

  .activities .passed {
    width: 100%;
    align-items: center;
    height: max-content;
  }

  .passed-activity {
    width: 100%;
  }

  .passed-activity-details .activity-title {
    font-size: 14px;
  }

  .passed-activity-details .activity-date {
    font-size: 12px;
  }

  .passed-activity-details .activity-description {
    font-size: 12px;
  }

  .activities .upcoming {
    width: 100%;
    height: max-content;
  }

  .upcoming-section-title {
    font-size: 16px;
    width: 130px;
    height: 40px;
    padding: 0 30px;
  }

  .upcoming-activity-title {
    font-size: 2.5rem;
  }

  .upcoming-activity-date {
    font-size: 0.9rem;
  }

  .upcoming-activity-subtitle {
    font-size: 0.9;
  }

  .upcoming-activity-description {
    font-size: 0.9rem;
  }

  .upcoming-activity-cta {
    width: 100%;
  }

  .upcoming-activity-cta a:first-child,
  .upcoming-activity-cta a:last-child {
    width: 48%;
    height: 50px;
    font-size: 12px;
  }

}

@media screen and (max-width: 480px) {

  .activities .passed h2 {
    font-size: 24px;
  }


  .passed-activity {
    flex-direction: column;
    gap: 1rem;
    min-height: max-content;
  }

  .passed-activity img {
    width: 100%;
    height: 250px;
  }

  .passed-activity-details {
    width: 100%;
    height: fit-content;
  }
}


/*------------------------- Activities end ---------------------------------*/
/*------------------------- Ours partners ---------------------------------*/
.our-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  gap: 3rem;
}

.our-partners-section-title-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.our-partners .section-title {
  position: relative;
}

.our-partners .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: #d4252f;
  border-radius: 2px;
}

.our-partners-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3rem;
  flex-wrap: wrap;
}

.our-partners-cta,
.activities-cta {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: #3f3f3f;
  color: #fff;
  border: 1px solid #3f3f3f;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: all ease 0.3s;
}

.our-partners-cta:hover,
.activities-cta:hover {
  color: #d4252f;
  background-color: #ffffff;
}

.partner-logo img {
  height: 60px;
  width: auto;
}

/*------------------------- Ours partners end ---------------------------------*/
/*------------------------- footer ---------------------------------*/
footer {
  background-color: #404040;
  color: #fff;
  padding: 2rem 0 0 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid #6f6f6f;
  padding: 0 3rem;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

.footer-container div:first-child {
  font-weight: 600;
}

.footer-container div:last-child {
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1.5rem;
    text-align: center;
  }

  .footer-container div:last-child {
    flex-direction: column;
    justify-content: center;
  }
}

/*----------------------------------- End Footer -----------------------------*/

/*------------------------------------ JCRE ----------------------------------*/
.activity-intro {
  height: 100vh;
  background-image: url(../img/buildings-background.webp);
  background-size: cover;
  background-position: center;
}

.activity-intro-container {
  background-color: #000000a2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  gap: 30px;
  padding: 20%;
}

.activity-intro-title {
  font-size: 60px;
  font-weight: 900;
}

.activity-intro-subtitle {
  font-size: 24px;
  font-weight: 800;
}

.activity-intro-description {
  font-size: 16px;
  font-weight: 300;
}

.activity-intro-cta {
  width: 230px;
  padding: 14px;
  text-decoration: none;
  color: white;
  background-color: #d4252f;
  font-size: 16px;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .activity-intro-container {
    padding: 10%;
  }

  .activity-intro-title {
    font-size: 40px;
  }

  .activity-intro-subtitle {
    font-size: 18px;
  }

  .activity-intro-description {
    font-size: 14px;
  }

  .activity-intro-cta {
    font-size: 14px;
    padding: 10px;
  }

}

@media screen and (max-width: 425px) {
  .activity-intro-container {
    padding: 3%;
  }

  .activity-intro-title {
    font-size: 24px;
  }

  .activity-intro-subtitle {
    font-size: 16px;
  }

  .activity-intro-description {
    font-size: 13px;
  }

  .activity-intro-cta {
    width: 200px;
    font-size: 13px;
  }
}

/*-------------------------------- activity intro end ----------------------------------*/
.about-activity-section {
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.about-activity-section h2 {
  font-size: 64px;
  font-weight: 800;
  width: 27%;
  line-height: 80px;
  color: #d4252f;
}

.about-activity-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-activity-content p,
.about-activity-content ul {
  font-size: 16px;
  font-weight: 300;
}

.divider-vertical {
  height: 200px;
  width: 1px;
  background-color: #000;
}

@media screen and (max-width: 1250px) {
  .about-activity-section h2 {
    font-size: 55px;
  }
}

@media screen and (max-width: 1024px) {
  .about-activity-section h2 {
    font-size: 50px;
  }
}

@media screen and (max-width: 969px) {
  .about-activity-section h2 {
    font-size: 45px;
  }
}

@media screen and (max-width: 868px) {
  .about-activity-section {
    flex-direction: column;
    padding: 3rem 0;
    gap: 1rem;
  }

  .about-activity-section h2 {
    font-size: 30px;
    width: 80%;
    text-align: center;
    line-height: 55px;
  }

  .about-activity-content {
    width: 80%;
  }

  .divider-vertical {
    display: none;
  }

}

@media screen and (max-width: 426px) {
  .about-activity-section {
    padding: 2rem 0;
  }
  .about-activity-section {
    gap: 20px;
  }

  .about-activity-section h2 {
    font-size: 24px;
  }

  .about-activity-content p,
  .about-activity-content ul {
    font-size: 14px;
  }


}