@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');




:root{
  
    --header-color:#f99106;
    --main-color: #19c8fa;
    --second-color: #00aedd;
    /* --orang: #f99106; */
    --red:#e2003b;
    --green:#79c600;
    --purpel:#54266e;
    --orange:#f9ba60;
    --pink:#2fbce3;
    --black: #1d1c1c;
    --white: #fff;
    --light-color:#666;
    /* --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1); */
    --box-shadow:0 .5rem 1.5rem rgb(47 27 27 / 61%);
    --section-padding: 100px;
    --transparent-color:#4a0c5590;
}

*{
  
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
  list-style: none;

}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  list-style: none;
  a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
}

a:hover {
  color: #2fbce3;
  background-color: transparent;
  
}

section{

  padding: 3rem 7%;
}



.language { 
   font-size: 62.5%;
  font-size: 1.5rem;

}





.heading{
  font-size: 4rem;
  color: var(--header-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: bolder;
  margin-bottom: 3rem;
}

/* .heading span{
  color: var(--purpel);
  text-transform: uppercase;
} */

.sele{
 
  font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.btn{
  font-size: 1.7rem;
  margin-top: 1rem;
  display: inline-block;
  padding: .8rem 3rem;
  border-radius: .5rem;
  border: .2rem solid var(--orange);
  color: var(--purpel);
  background: none;
  cursor: pointer;
}

.btn:hover{
  background: var(--orange);
  color: var(--white);
}

/* header */

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5% 0 ;
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--orang);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo .LOGOPIC{

  height: 100px;
}




.header .logo i{
  color: var(--orange);
}




.header .navbar a{
  font-size: 1.7rem;
  margin: 0 1rem;
  color: var(--black);
}

.header .navbar a:hover,
.header .icons div:hover{
  color: var(--orange);
}

.header .icons div{
  font-size: 2.5rem;
  margin-left: 1.7rem;
  color: var(--black);
  cursor: pointer;
}

#menu-btn{
  display: none;
}



.header .login-form .box{
  width: 100%;
  margin: .7rem 0;
  background: #eee;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .login-form p{
  font-size: 1.4rem;
  padding: .5rem 0;
  color: var(--light-color);
}

.header .login-form p a{
  color: var(--orange);
  text-decoration: underline;
}

/* header ends */

/* home */

.home{
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  margin-top: 3rem;
}

.home .content{
  flex: 1 1 40rem;
  padding-top: 6.5rem;
}

.home .content h3{
  font-size: 6rem;
  color: var(--black);
}

.home .content h3 span{
  color: var(--orange);
}

.home .content p{
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.8;
  padding: 1rem 0;
}

.home .image{
  flex: 1 1 40rem;
}




.home .image img{
  width: 90%;
  padding: 3rem;
  position: relative;
  animation: up-and-down 5s linear infinite;
  z-index: 10;
  border-radius: 19%;
}

@keyframes up-and-down {
    0%,
    100% {
      top: 0;
    }
    50% {
      top: -50px;
    }
  }
  @keyframes bouncing {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40%,
    60% {
      transform: translateY(-15px);
    }
  }



.custom-shape-divider-bottom-1684324473 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1684324473 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 107px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1684324473 .shape-fill {
  fill: var(--pink);
}

/* end */

/* about us */

.about{
  background: var(--pink);
}





.about .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: url(images/teacher-bgorange.png);
}

.about .row .image{
  flex: 1 1 50rem;
}

.about .row .image img{
  width: 100%;
  height: 100%;
  
  border-radius: 9%;

}

.about .row .content{
  flex: 1 1 40rem;
}

.about .row .content h3{
  font-size: 3.5rem;
  color: var(--backcolor);
  line-height: 1.5;
}

.about .row .content p{
  font-size: 1.4rem;
  color: var(--backcolor);
  padding: 1rem 0;
  line-height: 2;
}

/* end */

/* education */
.education{ 
  background: url(/images/teacher-bgorange.png)
  /* background:var(--transparent-color);

  background-size: cover;
    */
}
.education .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.education .box-container .box{
  text-align: center;
  background: rgba(0,0,0,.1);
  border-radius: 2rem;
  box-shadow: var(--orange);
  outline: .1rem solid rgba(0,0,0,.1);
  /* outline-offset: -1rem; */
  overflow: hidden;
}

.education .box-container .box:hover img{
  transform: scale(1.1);
}

.education .box-container .box:nth-child(1){
  background: var(--pink);
}

.education .box-container .box:nth-child(2){
  background: var(--orange);
}
.education .box-container .box:nth-child(3){
  background: var(--orange);
}
.education .box-container .box:nth-child(4){
  background: var(--pink);
}
.education .box-container .box:nth-child(5){
  background: #4e2367bd;
}
.education .box-container .box:nth-child(6){
  background: #ff459cc9;
}

.education .box-container .box h3{
  
  font-size: 2.5rem;
  color: var(--backcolor);
  line-height: 1.8;
  padding-top: 3rem;
  padding-left: 2rem;
}

.education .box-container .box p{
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black);
  padding: 1rem 2rem;
}

.education .box-container .box img{
  width: 80%;
 height: 65%; 
}

/* end */

/* teacher */

.teacher{
  background: url(images/teacher-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.teacher .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.teacher .box-container .box:hover img{
  transform: scale(1.1);
}

.teacher .box-container .box{
  background: var(--white);
  padding: 1.2rem 1rem;
  text-align: center;
  /* box-shadow: var(--box-shadow); */
  border-radius: 2rem;
  background: url(images/teacher-bg.png);
}

.teacher .box-container .box img{
  height: 30rem;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow); 
}

.teacher .box-container .box h3{
  font-size: 2.5rem;
  color: var(--main-color);
  margin-top: 20px;
}

.teacher .box-container .box p{
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--header-color);
  margin-bottom: 1.1rem;
}

.teacher .box-container .box .share i{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  border-radius: .5rem;
  background: none;
  color: var(--pink);
  border: .1rem solid var(--pink);
  margin-left: .5rem;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.teacher .box-container .box .share i:hover{
  color: var(--white);
  border: .1rem solid var(--orange);
  background: var(--orange);
}

/* end */

/* activities */

.activities .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.activities .box-container .box{
  padding: 1.1rem 1.1rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
  outline: .1rem solid rgba(0,0,0,.1);
  outline-offset: -1rem;
}

.activities .box-container .box img{
  height: 8rem;
}

.activities .box-container .box:hover img{
  transform: scale(1.1);
}

.activities .box-container .box h3{
  font-size: 2.2rem;
  padding: 2rem 0;
  color: var(--black);
}

/* start magment  */

.product {
  /* padding-top: var(--main-padding-top); */
  padding-bottom: 50px;
  position: relative;
 
}
.product .product-slider{
  padding: 1rem;
}
.product .product-slider:first-child{
  margin-bottom: 2rem;

}
.product .product-slider .boxx{ 
  background: var(--backcolor);
  border-radius: 20px;
  text-align: center;
  padding: 1.2rem ;
  box-shadow: var(--orange);
  overflow: hidden;
 
}
@media (max-width: 450px) {
  .product .product-slider .boxx {
   min-height: 20rem;
  }
}
.product .product-slider:hover img{
  transform: translate(0px,-10px);;

  box-shadow: var(--box-shadow);

 

}
.product .product-slider .boxx img{
  max-width: 100%;
  box-shadow: var(--box-shadow);
  border-radius: 40px;
}
.product .product-slider h2{
  font-size: 1.5rem;
  color: var(--backbuttons)
  ;
}
.product .product-slider p{
  color: #ffffff;
  font-size: larger;


}
.product .product-slider a{
  font-size: 1.7rem;
  color: var(--orange);
  padding:.5rem;

}
  /* end mangment */

/* end */

/* gallery */

.gallery{
  background: url(images/gallery-bg.png) no-repeat;
  background-size: cover; 
}





.gallery .gallery-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery .gallery-container .box{
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery .gallery-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-container .box:hover img{
  transform: scale(1.2);
}

.gallery .gallery-container .box .icon{
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.4);
  display: none;
}

.gallery .gallery-container .box .icon i{
  font-size: 6rem;
  color: var(--white);
}

.gallery .gallery-container .box:hover .icon{
  display: flex;
}


.gallery .vidoebox-container { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}




.gallery .vidoebox-container .box video { 
max-width: 100%;
}


/* end */

/* Start Design  elzero*/
.design {
 padding: 3rem 2rem ;
  /* height: 600px; */
  position: relative;
  background-image: url("images/3d\ landing\ tree.jpg");
  background-size: cover;
  align-items: center;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.2rem;
}
.design::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}
.design .image,
.design .text {
  position: relative;
  z-index: 2;
  flex: 1;
}
.design .image {
  text-align: center;
}
@media (max-width: 991px) {
  .design .image {
    display: none;
  }
}
.design .image img {
  max-width: 90%;
  /* width: 400px; */
  /* position: relative; */
  bottom: -150px;
}

.design .values { 

display:flex;
justify-content: center;
/* align-items: center; */
gap: 1.2rem;

}
.design .text {
  color: white;
  /* background-color: var(--transparent-color); */
  text-align: center;
}
.design .text h2 {
  color: var(--orange);
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 2.3rem;
  text-align: center;
}
.design .text ul { 
  padding: 0px 10px;
}
.design .text ul li {
 
    padding: 15px 10px;
    font-size: 1.3rem;
    font-weight: 400;
}

.justifiy { 
  display: flex;
  justify-content: center;
}

/* End Design */







/* contact */

.contact .sociallinks{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem,1fr));
  gap: 1.5rem;
}
.contact .icons-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
  gap: 1.5rem;
}

.contact .icons-container .icons{
  padding: 1rem;
  box-shadow: var(--box-shadow);
  border-radius: 2rem;
  text-align: center;
  outline: .1rem solid rgba(0, 0, 0, .1);
  /* outline-offset: -1rem; */
  margin: 10px;
}
/* //////////////////////////////////////////////////////////////icon style/////////////////// */
.contact .icons-container .icons i{
  font-size: 2.5rem;
  height: 6rem;
  width: 6rem;
  color: var(--white);
  line-height: 6rem;
  border-radius: 50%;
  background: var(--orange);
}

#instagram { 
  background: #8A2387;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F27121, #E94057, #8A2387); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}
#whatsapp { 
  background: #00b09b;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #96c93d, #00b09b);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #96c93d, #00b09b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

.contact .icons-container .icons h3{
  font-size: 2.2rem;
  padding: 1rem 0;
  color: var(--black);
}

.contact .icons-container .icons p{
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-color);
}

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
}

.contact .row .image{
  flex: 1 1 20rem;
}

.contact .row .image img{
  width: 100%;
}

.contact .row form{
  flex: 1 1 50rem;
  padding: 2rem;
  border: 0.1rem solid rgba(0,0,0,.4);
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
}

.contact .row form h3{
  font-size: 3rem;
  padding-bottom: 1rem;
  color: var(--black);
}

.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input{
  width: 49%;
}

.contact .row form .inputBox input,
.contact .row form textarea{
  font-size: 1.6rem;
  border: 0.1rem solid rgba(0,0,0,.3);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  color: var(--black);
  margin: .7rem 0;
}

.contact .row form .inputBox input:focus,
.contact .row form textarea:focus{
  border: 0.1rem solid var(--orange);
}

.contact .row form textarea{
  height: 15rem;
  width: 100%;
  resize: none;
}

/* end */

/* footer */

.footer{
  background: #25768c;
  background-image: url(images/FOOTR.png);
  background-size: cover;
  
}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem,1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3{
  font-size: 2.2rem;
  color: var(--orange);
  padding: 1rem 0;
}

.footer .box-container .box p{
  font-size: 1.5rem;
  color: var(--white);
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box a{
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  padding: 1rem 0;
}

.footer .box-container .box a:hover{
  color: var(--orange);
}

.footer .box-container .box a i{
  padding-right: .5rem;
  color: var(--orange);
}

.footer .credit{
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2rem;
  border-top: .1rem solid rgba(0,0,0,.3);
  text-align: center;
  color: var(--white);
  font-size: 2rem;
}



@media (max-width:991px){

  html{
    font-size: 55%;
  }

  .header{
    padding: 0px 3rem;
  }

  section{
  
    padding: 3rem;
  }

}

@media (max-width:768px){

  #menu-btn{
    display: inline-block;
  }

  .header .navbar{
    position: absolute;
    top: 110%; right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: var(--white);
  }

  .header .navbar.active{
    right: 2rem;
    transition: .4s linear;
  }

  .header .navbar a{
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
  }

  .home .content h3{
    font-size: 4.5rem;
  }

}

@media (max-width:450px){
  html{
    font-size: 50%;
  }
  .header{ 
    padding: 0px ;
  }

  .header .logo{
    font-size: 1.3rem;
  }
  .home .content h3{
    font-size: 3.5rem;
  }
  #menu-btn{ 
    font-size: 1.2rem;
  }
}


/* /////////////////////// video gallery /// */


.video-gallery-container {
  /* width: 900px; */
  font-family: "Roboto", sans-serif;
  /* background: #ffd166; */
  padding: 8px 0 0 0;
  margin: 0 auto;
}

.video-gallery-container,
.video-gallery-container * {
  box-sizing: border-box;
}

.video-gallery-container h2.title {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 24px;
}

.video-gallery-container .video-gallery {
  display: flex;
  background:url(images/teacher-bgorange.png);
  justify-content: center;
  padding: 16px;
  padding-top: 24px;
  gap: 24px;
  color: black;
  margin-top: 10px;
}

.video-gallery h3.video-title {
  line-height: 1.6;
  font-weight: 700;
  font-size: 20px;
  width: 100%;
}

.video-gallery .thumbnail {
  height: 120px;
  cursor: pointer;
}

.video-gallery .video {
  position: relative;
}

.video-gallery .video:hover .play-icon {
  opacity: 1;
}

.video-gallery .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
}

.video-gallery .video .play-icon img {
  height: 50px;
  width: 50px;
}

.video-gallery .all-videos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-gallery .responsive-iframe {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  padding-bottom: 30px;
}

.video-gallery .responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .video-gallery-container {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .video-gallery-container .video-gallery {
    flex-direction: column;
  }

  .video-gallery .all-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .video-gallery .thumbnail {
    height: unset;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .video-gallery .all-videos {
    grid-template-columns: 1fr;
  }

  .video-gallery-container {
    max-width: 400px;
  }

  .video-gallery-container h2.title {
    font-size: 24px;
    font-weight: bold;
  }
}
/* end of video gallery  */


