@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}


.container{
  width:  80%;
  margin: 0 auto ; 
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #111;
}
html::-webkit-scrollbar-thumb {
  background: #008080;
}

i{
  color: #fff;
}

section {
  padding: 3rem 9%;
}

body {
  background: #FCF2C6;
  overflow-x: hidden;
}

h1{
  color: #008080;
}

h3{
  color: #fff;
}


h5{
  font-size: 15px;
  color: #111;
}




p{
  color: #fff;
  font-size: 1.5rem;
}
a{
  color: #008080;
  font-size: 1.5rem;
  text-decoration: none;
}

img{
  width: 100%;
  display: block;
  object-fit: cover ;
}



.our_partners_box{
  height: 100px;
  align-items: center;
}

//===========================Nav BAr Start=====================
.btn{
  color: #fff!important;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #008080;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 9%;
  line-height: 2;
}

.header .navbar a {
  font-size: 2rem;
  color: #fff;
  display: inline-block;
  margin: 0.1rem 1rem;
  text-decoration: none;
}
.header .navbar a:hover {
  color: #111;
}
.header .btn {
  margin-top: 0;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bolder;
  display: flex;
}
.logo img {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.logo strong {
  font-size: 15px;
}


#menu-btn {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
}


.logo img{
  border-radius: 50%;
}


/* ===========================Start About Achievement================ */
.about__achievements{
    padding-top: 100px;
}
.about__achievements-container{
  padding-top: 100px;
  display: grid;
  grid-template-columns: 40% 50%;
  gap: 5rem;
}
.about__achivements-right > p{
  margin: 1.6rem 0 2.5rem;
}

.achievements__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.achievement__card{
 background-color: #008080;
  padding: 1.6rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 400ms ease
}


.achievement__icon{
  background: #f75842;
  padding: 0.6rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.achievement__card:nth-child(2) 
.achievement__icon{
  background-color: #00bf8e;
}

.achievement__card:nth-child(3) 
.achievement__icon{
  background-color: #6c63ff;
}

.achievement__card p {
  margin-top: 1rem;
}

/* ===========================End About Achievement================ */
 

/* ===========================Start Team ================= */
.team{
  background: var(--color-bg1);
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}
.team__container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team__member{
  background: #d6f8f8;
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 400ms ease;
  position: relative; 
  overflow: hidden;
  border-radius: 8px;
}
.team__member:hover{
  background: transparent;
  border-color: #6c63ff;
}

.team__member-image img{
  width: 15rem;
  height: 15rem;
  filter: saturate(0);
}

.team__member:hover img{
  filter: saturate(1);
}

.team__member-info * {
  text-align: center;
  margin-top: 1.4rem;
}

.team__member-info p{
  color: rgba(255, 255, 255, 0.7);;
}
.team__member-socials{
  position: absolute;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: #6c63ff;
  border-radius: 1rem 0 0 1rem;
  box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
  transition: all 400ms ease;
}

.team__member:hover
.team__member-socials{
  right: 0;
}

.team__member-socials a{
  padding: 1rem;
}

/* =========================== Team End================= */

.footer_container{
  font-size: 1.5rem;
}

.footer_container h5{
  color: #008080;
}
/* ==================== Categories End ================= */




@media (max-width: 991px) {

  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 2rem;
  }

  /* ==============================Categories================= */
  .categories{
    height: auto;
  }
  .categories__container{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .categories__left{
    margin-right: 0;
  }
  /* ==========================Header================ */


  .header__container{
    gap: 0;
    padding-bottom: 3rem;
  }
  /* ============================== Courses ================= */
  .courses{
    margin-top: 0;
  }
  .courses__container{
    grid-template-columns: 2fr 1fr;
  }
  /* ============================== Courses ================= */
  /* ====================Footer Start================= */
  footer p{
    font-size: 1.2rem;
  }
  /* ====================Footer End================= */
  }
@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #008080;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  .header .navbar.active {
    display: inline-block;

    clip-path: polygon(0 0, 45% 0, 45% 100%, 0% 100%);
  }
  .header .navbar a {
    margin: 2rem;
    display: block;
  }

  
}
@media (max-width: 600px) {
  html {
    font-size: 50%;
  }

  .about .contant h3 {
    font-size: 3.5rem;
  }

  .banner .content h3 {
    font-size: 2.7rem;
  }
  .section_header{
    height: 100vh;
  }

  .header__container{
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 10px;
  }
  .header__left p{
    margin-bottom: 1.3rem;
  }
  .header__right-image{
    width: 297px;
    /* height: 250px; */
    display: inline-block;
  }

  /* ==================== Categories ==================== */
  .categories__right{
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  } 
  .category{
    padding: 1rem;
    border-radius: 1rem;
  }
  .category__icon{
    margin-top: 4px;
    display: inline-block; 
  }
   /* ==============================Start Archievement=========== */

   .about__achievements-container{
    padding-top: 50px;
    display: inline-block;
  }

  .about__achievements-right{
    padding-top: 10px;
    padding-bottom: 10px;
  }
 

    /* ==============================END Archievement=========== */
}



@media (max-height: 600px) {
  .header__right-image{
    width: 100px;
  }
  .section_header{
    padding-top: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
