@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Katibeh&display=swap');
:root {
    --clr-light: #FAFAFA;
  }
body, p, h1, h2, h3, h4,h5,h6{
    padding: 0;
    margin: 0;
}
body{
  background-color:#0c0c0c;
}
a{
  text-decoration: none;
}
li{
  list-style: none;
}
header {
  position: sticky;
  top: 0px;
  background-color: #000000BF;
  width: 100%;
  z-index: 1000;
}
.navbarr {
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: center;
}
.nav-btn {
  flex: 3;
  display: flex;
}
.logo{
  width: 200px;
} 
.nav-links {
  flex: 2;
}
.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
} 
.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
}  
.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}
.nav-links > ul {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 17px;
}
.nav-link {
  position: relative;
  background-color: #000;
  margin-right: 10px;
}
.nav-link > a {
  line-height: 3rem;
  color: #25a8e0;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}
.nav-link > a > i {
  margin-left: .2rem;
}
.nav-link:hover > a {
  transform: scale(1.1);
}
.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #F44242;
  position: relative;
  z-index: 1001;
  transition: .5s;
  }
.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #F44242;
  border-radius: 3px;
  transition: .5s;
}
.hamburger-menu div:before {
  transform: translateY(-7px);
}
.hamburger-menu div:after {
  transform: translateY(7px);
}
#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}
  @keyframes animation {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }
  #check {
    display: block;
  }
  .nav-btn {
      position: fixed;
      height: calc(100vh - 3rem);
      top: 3rem;
      left: 0;
      width: 100%;
      background-color: var(--clr-btn);
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow-x: hidden;
      overflow-y: auto;
      transform: translateX(100%);
      transition: .65s;
  }
  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
      animation: animation .5s ease forwards var(--i);
  }
  .nav-links {
      flex: initial;
      width: 100%;
      background-color: #000;
      height: 100vh;
      margin-top: 11px;
  }
  .nav-links > ul {
      flex-direction: column;
  }
  .nav-link {
      width: 100%;
      opacity: 0;
      transform: translateY(15px);
      margin: 5px 0;
  }
  .nav-links ul{
    padding-right: 2rem;
  }
  .nav-link > a {
      line-height: 1;
      padding: 1.6rem 2rem;
      font-size: 18px;
  }
  .nav-link:hover > a {
      transform: scale(1);
      background-color: var(--clr-nav-hover);
  }
    .nav-link > a > i {
      font-size: 1.1rem;
      transform: rotate(-90deg);
      transition: .7s;
    }
  }
  
.hero-home{
    background: url(../image/indx-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 600px;
    background-position: center;
}
.hero-home h1{
    font-family: "Katibeh", serif;
    font-weight: 400;
    font-size: 90px;
    text-align: center;
    color: #000;
}
.about-container h1, .faculty  h2, .classes h2, .compny h1{
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-size:44.82px;
    line-height:58.5px;
    letter-spacing:1px;
}
.about-container p{
    font-weight: 400;
    font-size: 18.85px;
    line-height:32.3px;
    font-family: "Open Sans", sans-serif;
}
.recreational-sec{
    border: 1px solid #F44242;
}
.recreational-sec h2, .summer-camp h2, .compny h2{
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-size:36.86px;
    line-height:48.1px;
    letter-spacing:1px;
}
.compny h2{
  font-size: 30px;
}
.recreational-sec h6{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size:17px;
    line-height:32.3px;
}
.recreational-sec h6 a{
    color: #F44242;
}
.recreational-bttn{
    background-color:#F44242;
    border: 2px solid #4254F4;
    width: 292.78px;
    display:inline-block;
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-size:16px;
    line-height:27.2px;
    border-radius: 6px;
    transition: .5s;
}
.recreational-bttn:hover{
    background-color: #000;
}
.form-sec{
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
}
.summer-camp-content h6{
    font-size: 20px;
    line-height: 26px;
    text-align: left;
}
.summer-camp-content h6 a{
    color: #F4428C;
}
.summer-camp-content h3{
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-size:25.67px;
    line-height:36.4px;
}
.footer-top{
    background: url(../image/footer-top-img.jpg);
    background-position: center;
    padding-top: 100px;
    padding-bottom: 400px;
}
footer{
  background-color: #000;
}
footer p{
    color: #F44242;
    font-weight: 400;
    font-size: 16.85px;
    line-height:32.3px;
    font-family: "Open Sans", sans-serif;
}
.hero {
    height: 130px;
    width: 100%;
    background: url(../image/hero-bttm-img.jpg) no-repeat top center / cover;
}
.classes p{
    font-size:18.85px;
}
.compny-pre span{
    color: #1B76ED;
    font-weight: 700;
}
.compny p{
    font-family: "Open Sans", sans-serif;
    font-size: 19px;
    line-height: 32.3px;
}
.compny-pre{
  font-size:15.85px !important;
}
.faculty{
    padding-top: 50px;
}
.faculty-heading{
    padding: 20px 50px 20px 20px;
    background-image: linear-gradient(150deg,#427FF4 0%,#000000 100%);
    box-shadow: 0px 2px 80px 0px rgba(0,0,0,0.3);
    margin-left: -60px;
    border-left: 3px solid #fff;
    width: 50%;
}
.faculty-heading h4{
  font-family: "Julius Sans One", sans-serif;
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
}
.faculty-content p{
    font-size: 18.85px;
    line-height: 1.7em;
    margin-top: 15px;
}
.faculty-content p span{
  color: #1A73E8;
}

@media screen and (max-width: 768px) {
    .hero-home {
      padding: 0 0 500px;
      }
      .hero-home h1{
        padding-top: 30px;
        font-size: 70px;
        line-height: 50px;
      }
    .about-container h1, .classes h2, .compny h1, .faculty h2{
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .about-container p {
        font-size: 16px;
        line-height: 30px;
      }
    footer p {
        font-size: 12.85px;
        line-height: 20px;
    }
    .recreational-sec h2, .summer-camp h2 {
        font-size: 32px;
        line-height: 45px;
    }
    .summer-camp-content h3 {
        font-size: 21px;
        line-height: 30px;
    }
    .summer-camp-content h6 {
        font-size: 18px;
        line-height: 26px;
        text-align: justify;
    }
    .dance-sec h1{
        font-size: 30px;
    }
    .faculty-heading{
      width: 100%;
      margin-left: 0;
    }
    .faculty{
      padding: 50px 25px 25px 25px;
    }
    .faculty-heading h4 {
      font-size: 25px;
    }
    .compny p {
      font-size: 18px;
    }
    .compny h2 {
      line-height: 39.1px;
    }
}

    