@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes fadeInAnimation{
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

body{
  /* background: rgb(205, 60, 60) !important; */
  background: rgb(255, 252, 252) !important;
  color: black;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  min-height: 900px;
}

h1{
  font-size: 80px;
  font-weight: 500;
}

h2{
  font-size: 40px;
  font-weight: 300;
}

h3{
  font-size: 30px;
  font-weight: 300;
}

p{
  font-size: 20px;
}

a{
  text-decoration: none;
  font-size: 18px;
  color: black;
}

li{
  padding-left: 20px;
  padding-right: 20px;
}

ul{
  margin-left: auto;
}

footer, .push{
  padding-top: 35px;
  height: 100px;
}

main{
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.container{
  min-width: 95%;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: justify;
}

.title-hold{
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.sub-hold{
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* footer{
  background: white !important;
} */

footer p{
  /* padding-top: 20px; */
  text-align: center;
  font-size: 15px;
  /* padding-bottom: 20px; */
  background: white;
  color: black;
}

.services{
  display: block;
  gap: 2rem;
}

.services > div{
  background: rgb(172, 172, 172);
  padding: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
  box-shadow: 0 2rem 3rem rgb(27, 26, 26);
  /* transition: all 300ms ease; */
}

.services > div .middle{
  align-items: center;
}

.services > div span{
  background-color: white;
  padding: 0.5rem;
  border-radius: 50%;
  color: rgb(255, 65, 65);
  font-size: 2rem;
}

.flex-container{
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 1rem;
}

#flexbox1{
  /* flex: 2; */
  flex: 3;
  text-align: justify;
}

#flexbox2{
  /* flex: 3; */
  flex: 2;
  padding-bottom: 50px;
  text-align: justify;
}

.photo-hold{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.first-contain{
  padding-bottom: 3rem;
  background-image: url('classroom_learning.jpg');
  background-size: cover;
  width: 100%;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

.question-contain{
  padding-bottom: 3rem;
  background-image: url('questions.jpg');
  background-size: cover;
  width: 100%;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  color: black;
}

.question-hold{
  padding-top: 8rem;
}

.question-hold .act-box{
  color: white;
}

.box-decor{
  padding-top: 10rem;
}

.act-box{
  background: rgb(65, 65, 65);
  width: fit-content;
  padding: 0.7rem;
  border-radius: 20px;
  opacity: 0.8;
  margin: auto;
}

/* button stuff */
button{
    background: rgb(255, 76, 76);
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    border: none;
    text-align: center;
    /* padding: 15px 15px; */
    display: inline-block;
    cursor: pointer;
    margin: auto;
    /* position: absolute; */
    /* width: 128px; */
    min-width: 120px;
    height: 45px;
    color: white;
}

button:hover{
    background: rgb(224, 224, 224);
    border-style: solid;
    border-width: thin;
    border-color: black;
    transition: all 300ms ease;
}

.btn-home{
    background-color: rgb(255, 76, 76);
    margin: auto;
    color: white;
    border: 1px solid white;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    padding: 10px 10px;
    font-family: "Roboto", sans-serif;
}

.btn-home:hover{
    background-color: rgb(224, 224, 224);
    color: black;
    transition: all 300ms ease;
}

.home-choose{
  display: block;
  gap: 1rem;
  margin-bottom: 2rem;
  color: black;
  padding-bottom: 35px;
}

.home-show{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  color: black;
  padding-bottom: 35px;
}

.home-choose > div{
  background: rgb(172, 172, 172);
  padding: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
}

.home-show > div{
  /* background: rgb(172, 172, 172); */
  background: rgb(246, 82, 82);
  color: black;
  padding: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
}

.home-show > div .middle{
  align-items: center;
}

.home-choose > div span{
  background-color: white;
  padding: 0.5rem;
  border-radius: 50%;
  color: rgb(255, 65, 65);
  font-size: 3rem;
}

.home-show > div span{
  background-color: white;
  padding: 0.5rem;
  border-radius: 50%;
  color: rgb(255, 65, 65);
  font-size: 3rem;
}

.span-hold{
  display: flex;
  gap: 1rem;
  padding-bottom: 20px;
}

#spanner1{
  padding-top: 10px;
}

.ban-hold{
  text-align: center;
  align-items: center;
}

.accordion {
  background-color: rgb(172, 172, 172);
  color: black;
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
  font-family: "Roboto", sans-serif;
  display: inline-block;
}

.active, .accordion:hover {
  background-color: black; 
  color: rgb(255, 65, 65);
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.form-have{
    margin: auto;
    max-width: 400px;
}

.form-container{
  text-align: left;
  max-width: 400px;
  margin: auto;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="date"],
.form-container input[type="number"],
.form-container input[type="email"],
.form-container select {
    /* Add your styles for form inputs */
    /* width: 150px; */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
}

.form-container textarea{
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}

@media only screen and (max-width: 992px){
  h1{
    font-size: 30px;
    font-weight: 500;
  }
  
  h2{
    font-size: 20px;
    font-weight: 300;
  }
  
  h3{
    font-size: 18px;
    font-weight: 300;
  }
  
  p{
    font-size: 15px;
  }
  
  a{
    text-decoration: none;
    font-size: 15px;
    color: black;
  }

  .services{
    display: block;
    gap: 1rem;
  }

  .flex-container{
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #flexbox1{
    flex: none;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
  }

  #flexbox2{
    flex: none;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: justify;
  }

  .home-show{
    display: block;
    gap: 50px;
    padding-bottom: 50px;
    justify-content: center;
    color: black;
  }

  .accordion{
    font-size: 15px;
  }

}


@media only screen and (max-width: 400px){
  h1{
    font-size: 27px;
    font-weight: 500;
  }
  
  h2{
    font-size: 20px;
    font-weight: 300;
  }
  
  h3{
    font-size: 18px;
    font-weight: 300;
  }
  
  p{
    font-size: 15px;
  }
  
  a{
    text-decoration: none;
    font-size: 15px;
    color: black;
  }

  .services{
    display: block;
    gap: 1rem;
  }

  .flex-container{
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #flexbox1{
    flex: none;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
  }

  #flexbox2{
    flex: none;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: justify;
  }

  .home-show{
    display: block;
    gap: 50px;
    padding-bottom: 50px;
    justify-content: center;
    color: black;
  }

  .span-hold{
    display: block;
    padding-bottom: 20px;
  }

  .accordion{
    font-size: 13px;
  }

}