@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Hanuman&family=Roboto:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #fff;
  --secondary-color: #212121;
}

.dark-theme {
  --primary-color: #212121;
  --secondary-color: #fff;
}

#icon {
  width: 30px;
  position: absolute;
  cursor: pointer;
  right: 2rem;
  top: 1.5rem;
}

/* College Page */

.college {
  display: flex;
  justify-content: space-between;
  background: #5e17eb;
  align-items: center;
  color: #fff;
}

.main-text {
  width: 50%;
  margin-left: 5rem;
}

.main-text h1 {
  font-size: 50px;
}

.main-text p {
  font-size: 20px;
  margin: 2rem 0rem 3rem;
}

.main-text button {
  font-size: 16px;
  padding: 10px 20px;
  background: #373737;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}

.main-text button:hover {
  color: aqua;
}

.main-img {
  width: auto;
}

.main-img img {
  width: 450px;
}

@media screen and (max-width: 1100px) {
  .main-text h1 {
    font-size: 40px;
  }

  .main-text p {
    font-size: 18px;
}

.main-text button {
  padding: 8px 15px;
}

.main-img img {
  width: 400px;
}
}

@media screen and (max-width: 960px) {
  .main-text h1 {
    font-size: 30px;
  }

  .main-text p {
    font-size: 16px;
}

.main-text button {
  padding: 7px 13px;
}

.main-img img {
  width: 350px;
}
}

@media screen and (max-width: 830px) {
  .college {
    display: flex;
    flex-direction: column;
    height: 300px;
  }

  .main-text {
    width: 80%;
    margin: 2rem auto;
    text-align: center;
  }

  .main-img img {
    display: none;
}
}

@media screen and (max-width: 470px) {
  .college {
    height: 430px;
}

.main-text button {
  margin-bottom: 20px;
}

}




/* Benefits New */

.benefit{
  height: 230vh;
  width: 100%;
}

.benefit-container{
  display: flex;
  justify-content: space-between;
}

.b-text{
  width: 50%;
  margin: 15rem 7rem 0rem;
}

.b-text h2{
  font-size: 50px;
  color: #5e17eb;
  width: 450px;
}

.b-text p{
  font-size: 20px;
  width: 450px;
}

.b-img{
  width: 50%;
}

.b-img img{
  width: 500px;
  margin: 3rem 5rem;
}

#extra-img{
  display: none;
}

@media screen and (max-width: 1150px) {
  .b-text{
    margin: 10rem 7rem 0rem;
  }
  
  .b-text h2{
    font-size: 45px;
  }
  
  .b-text p{
    font-size: 18px;
  }
  .b-img img{
    width: 400px;
  }
}

@media screen and (max-width: 1030px) {
  #normal-img{
    display: none;
  }

  #extra-img{
    display: block;
    width: 400px;
  }
  
  .benefit {
    height: 350vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefit-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .b-text{
    text-align: center;
    width: auto;
    margin: 5rem auto;
  }

  .b-img{
    width: auto;
  }

  .b-img img{
    margin: 0rem 0rem;
  }
}

@media screen and (max-width: 510px) {

  .benefit {
    height: 300vh;
  }

.b-text h2 {
  font-size: 25px;
  padding: 10px 60px;
}

.b-text p {
  font-size: 16px;
  padding: 10px 60px;
  width: auto;
}
}

@media screen and (max-width: 470px) {
  .b-img img {
    width: 300px;
}

#extra-img {
  width: 300px;
}
}

@media screen and (max-width: 400px) {

  .benefit {
    height: 260vh;
  }

}







/* Slider */

.slider-container {
  min-height: 80vh;
  display: grid;
  place-items: center;
}

.slider-container h2 {
  color: #5e17eb;
  font-size: 40px;
}

.slider {
  height: 250px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll 40s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}

.slide {
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}

.slide img {
  width: 100%;
  transition: transform 1s;
}

.slide img:hover {
  transform: translateZ(20px);
}

/* gradient shadow */

.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

@media screen and (max-width: 960px) {
  .slider-container h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 400px) {
  .slider-container h2{
    font-size: 25px;
  }
}


/* Form / Schedule */

.schedule{
    height: 400px;
    width: 76%;
    display: flex;
    justify-content: center;
    margin: 5rem auto;
    align-items: center;
    background: #d6d4d5;
    border-radius: 10px;
}

.schedule-text{
    display: flex;
    flex-direction: column;
    padding: 0px 50px;
    gap: 2rem;
}

.schedule-text>h2{
    font-size: 35px;
}

.schedule-img>img{
    width: 500px;
    height: 400px;
    border-radius: 10px;
}

#schedule-btn{
    padding: 5px 20px;
    border: none;
    background: #3b3b3b;
    color: #fff;
    font-size: 18px;
    width: 150px;
    border-radius: 5px;
}

























/* Benefits */

/* .benefits h2 {
  font-size: 40px;
  color: #5e17eb;
  text-align: center;
  padding-top: 4rem;
}

.benefits p {
  font-size: 18px;
  text-align: center;
  padding: 0px 50px;
  margin: 2rem 0rem;
  color: var(--secondary-color);
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #cdcdcd;
}

.b-box {
  text-align: center;
  padding: 15px;
  width: 400px;
  align-items: center;
}

.b-box img {
  width: 100px;
}

.b-box h3 {
  color: #5e17eb;
}

.b-box p {
  font-size: 16px;
}

.b-box a {
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  .benefits h2 {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .benefits h2 {
    font-size: 25px;
  }

  .b-box img {
    width: 100px;
  }
} */

/* Image Heading */

/* .image-heading {
  margin-top: 15rem;
}

.image-heading img {
  width: 100%;
  height: 300px;
  opacity: 0.9;
}

.image-heading h2 {
  position: relative;
  bottom: 20rem;
  text-align: center;
  font-size: 40px;
}

@media screen and (max-width: 1100px) {
  .image-heading h2 {
    font-size: 30px;
  }
} */









/* Mentors */

/* .mentors {
  width: 100%;
  height: 40vh;
  margin-top: 25rem;
}



.mentors h2 {
  font-size: 40px;
  text-align: center;
  margin: -10rem 0rem;
  color: #5e17eb;
}

.mentor-container {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  gap: 0rem;
  justify-content: center;
  align-items: center;
  margin: 15rem auto 5rem;
  background: #fff;
  width: 1000px;
  border-radius: 30px;
  padding: 20px;
}

.mentor-container img {
  width: 100px;
  background: none;
  margin: 0rem 0rem 1rem 2rem;
}

#companies {
  position: relative;
  font-size: 20px;
  text-align: center;
  bottom: 3rem;
  color: var(--secondary-color);
}

@media (max-width: 991px) {

  .mentors {
    width: 100%;
    height: 45vh;
    position: relative;
    bottom: 15rem;
}

  .mentors h2 {
    font-size: 30px;
    text-align: center;
    color: var(--secondary-color);
    padding: 0px 10px;
    margin: 10rem 0rem;
  }

  .mentor-container {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 0rem;
    justify-content: left;
    align-items: center;
    margin: 3rem auto;
    background: #fff;
    width: 70%;
    border-radius: 30px;
    padding: 20px;
  }

  .mentor-container img {
    width: 80px;
    margin: 0rem 0rem 1rem 1rem;
  }

  #companies {
    bottom: 1rem;
  }

  .whoosh {
    display: none;
  }
}

@media (max-width: 700px) {
  .mentors h2 {
    font-size: 25px;
  }
} */
