@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap);
* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
}
:root {
  --roboto: "Roboto", sans-serif;
  --montserrat: "Montserrat", sans-serif;
}
.flex-class {
  display: flex;
  justify-content: center;
  align-items: center;
}
body {
  font-family: var(--montserrat);
}
.wrap {
  flex-wrap: wrap;
}
.background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nav {
  height: 13vh;
  justify-content: space-between;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background-color: #fff;
}
.ham-menu-icon-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  justify-content: flex-start;
  color: #fff;
  z-index: 11;
  display: none;
  background-color: #fff;
  box-shadow: 4px 4px 20px 4px #00000060;
  height: 10vh;
  padding-left: 20px;
}
.logo {
  position: relative;
  width: 280px;
  height: auto;
}
.main-content {
  text-align: center;
  background-image: url(../assests/home-page/home-page-hero-image.jpg);
  position: relative;
  height: 70vh;
  color: #fff;
}
.hero-gradient {
  position: absolute;
  background-image: linear-gradient(90deg, #4a2395, #4b1a64);
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
ul {
  list-style: none;
}
.nav ul li {
  margin: 0 20px;
  cursor: pointer;
}
a {
  text-decoration: none;
}
.nav ul li a {
  color: #000;
}
.nav ul li:hover a {
  color: #774bc9;
}
.ham-menu {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 4px 4px 20px 4px #00000060;
}
.cross {
  font-size: xx-large;
  position: absolute;
  top: 10px;
  left: 20px;
}
.ham-menu ul {
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.ham-menu ul li a {
  color: #000;
}
.ham-menu ul li {
  padding: 20px;
  font-size: large;
  font-weight: 400;
  border-bottom: 1px solid #000;
}
.ham-menu ul li:last-child {
  border: none;
}
.ham-menu ul li:first-child {
  font-size: 25px;
  font-weight: 700;
  border-bottom: none;
}
.button-1 {
  padding: 13px 22px;
  background-color: transparent;
  border: 2px solid #000;
  margin: 25px;
  cursor: pointer;
  outline: 0;
}
.button-1:hover {
  background: #774bc9;
  border: 2px solid #774bc9;
  color: #fff;
}
.content {
  z-index: 1;
  transform: translateY(32px);
}
.main-title {
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 2px;
}
.sub-heading-hero {
  font-size: 25px;
  font-weight: 400;
}
.article {
  margin: 70px 0;
  padding: 0 60px;
  flex-direction: column;
  font-family: var(--montserrat);
}
.article-title {
  font-size: 45px;
  margin-bottom: 20px;
}
.article-text {
  width: 100%;
  line-height: 30px;
  letter-spacing: 1px;
}
.read-more {
  color: #774bc9;
  text-decoration: underline;
  cursor: pointer;
}
.read-more:hover {
  color: #3d0b57;
}
.stats-section {
    margin-top: 50px;
    background-color: #f8f8f8;
}
.stats-wrapper {
  margin: 0;
  padding: 50px 0;
  /* background-image: linear-gradient(#4a239590, #4b1a6490); */
}
.stat-card {
  text-align: center;
  width: 220px;
  height: 140px;
  margin: 20px;
  /* background-image: linear-gradient(to right , rgb(47, 170, 179),  rgb(5, 210, 194)); */
  /* border-left: 5px solid #4b1a64; */
  background-color: #fff;
  color: #000;
  flex-direction: column;
  box-shadow: 2px 2px 2px 2px #dfdfdf;
  justify-content: center;
  background-image: url(../assests/home-page/—Pngtree—background\ effect_1445121.jpg);
  background-size: cover;
}
.stat-card:hover {
  box-shadow: 2px 2px 5px 5px #c0c0c0;

}
.stat-number {
  font-size: 40px;
  color: #fff;
  font-weight: 500;
}

.stat-text{
  /* background-color: #4b1a64; */
  color: #fff;
  width: 100%;
  padding: 5px;
}

.main-content-wrapper {
  justify-content: space-around;
  align-items: flex-start;
}

.left-content {
  width: 60%;
}

.right-content {
  width: 30%;
  border-left: 1px solid #dbdbdb;
  padding-left: 40px;
  margin-top: 100px;
}

.right-content .tag {
  font-weight: 500;
  margin-top: 10px;
}

.input-accordian,
.input-accordian-item ul li,
.right-content input {
  height: 40px;
  width: 100%;
  margin: 10px 0;
  padding: 5px;
  background-color: #ececec;
  border: 1px solid #dbdbdb;
  font-size: large;
}

.input-accordian {
  justify-content: flex-start;
  cursor: pointer;
}

.input-accordian-item ul li {
  margin: 0;
  cursor: pointer;
}

.input-accordian-item ul li:hover {
  background-color: #ccc;
}

.button-2 {
  padding: 12px 40px;
  margin-top: 20px;
  background-color: #774bc9;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: large;
  border-radius: 5px;
  cursor: pointer;
}

.button-2:hover {
  background-color: #a984ec;
}

.curriculum {
  min-height: 45px;
  margin: 20px;
  width: 80%;
  margin-left: 100px;
  cursor: pointer;
  border: 1px solid #000;
  transition: 0.4s ease;

}
.card-curr {
  justify-content: space-between;
  padding: 20px;
}
.curr-content {
  padding: 20px;
}
.curriculum:hover {
  background-color: #f8f8f8;
}
.curriculum img {
  height: 20px;
}

.divider {
  height: 0.5px;
  width: 30px;
  background: #000;
  margin: 0 10px;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer li:hover {
  text-decoration: underline;
  color: #774bc9;
}
footer {
  overflow: hidden;
  background-color: #28292c;
  color: #fff;
}

.footer-bottom{
  background-color: #1a1b1d;
  padding: 30px;
  text-align: center;
}
.col-wrapper {
  align-items: flex-start;
  justify-content: space-evenly;
}
.col-1 {
  margin: 100px 20px 50px 20px;
}
footer li {
  margin: 20px 0;
  cursor: pointer;
}



.footer-heading {
  font-size: x-large;
  margin-bottom: 20px;
}
.round {
  cursor: pointer;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #fff;
  margin-right: 20px;
}
.round img {
  width: 100%;
  height: auto;
}
.round:hover {
  background-color: #77777760;
}
.news-letter {
  width: 330px;
  margin: 10px 0;
  background-color: #fff;
  padding: 30px;
  font-size: medium;
  flex-direction: column;
  overflow: unset;
}
.news-letter input[type="email"],
.news-letter input[type="text"] {
  margin: 10px 0;
  font-size: small;
  height: 35px;
  width: 100%;
  padding: 10px;
}
.news-letter .button-1 {
  font-size: small;
  margin-top: 10px;
  width: 100%;
  background-color: #3f3f3f;
  border: 1px solid #3f3f3f;
  color: #fff;
  cursor: pointer;
  transition: 0.4s ease;
}
.news-letter .button-1:hover {
  background-color: #262626;

}
.news-letter .footer-heading {
  color: #000;
}



.curriculam-article {
  margin-left: 100px;
  margin-top: 60px;
}

.main-images-wrapper {
  height: 90vh;
  width: 100vw;
  position: relative;
}

.image-sizer {
  width: 80%;
  height: 80%;
  position: relative;
}

.long-holder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s ease;
}

.slide-img{
  height: 80vh;
  width: auto;
  margin: 10px 20px;
}

.image-1,
.image-2,
.image-3,
.image-4,
.image-5 {
  height: 80vh;
  width: 100%;
  background-size: contain;
}

.slider-btns-holder {
  height: 60px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  left: -10px;
  justify-content: space-between;
}
.button-left,
.button-right {
  height: 60px;
  width: 60px;
  cursor: pointer;
}
.button-left {
  background-image: url(../assests/leftArrow.svg);
  background-color: #00000090;
}
.button-right {
  background-image: url(../assests/rightArrow.svg);
  background-color: #00000090;
}
.message {
  padding: 20px;
  position: fixed;
  top: -200px;
  left: 0;
  right: 0;
  background-color: #774bc9;
  z-index: 20;
  justify-content: space-between;
  font-size: xx-large;
  color: #fff;
  transition: 0.4s ease;
}
.show-message {
  top: 0;
}
.fade-up {
  transform: translateY(70px);
  opacity: 0;
  transition: 0.5s ease;
}
.fade-right {
  transform: translateX(70px);
  opacity: 0;
  transition: 0.5s ease;
}
.fade-left {
  transform: translateX(-70px);
  opacity: 0;
  transition: 0.5s ease;
}
.ham-menu-icon-wrapper p {
  margin-left: 20px;
}
.ham-menu-icon {
  background-image: url(../assests/ham-menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
  width: 30px;
}
.hidden {
  display: none;
}
.show {
  display: block;
}
.posiiton-hidden {
  top: -140%;
}
.position-shown {
  top: 0;
}
.stickey-desktop {
  background-color: #fff;
  transition: 0.4s ease;
  height: 10vh;
  box-shadow: 0 3px 20px 2px #00000050;
}


/* .outer-testimonial-card-holder{
  width: 10 0%;
  margin: auto;
  height: 500px;
  position: relative;
  overflow: hidden;
  touch-action:auto;
} */



.responsive , .responsive-slide-img{
  overflow: visible;
}



.responsive-main-wrap{
  background-color: #f8f8f8;
  padding-bottom: 20px;
}

.responsive-wrapper{
  text-align: center;
  padding-top: 50px;  
  color: #000;
}



.test-card-wrapper{
  padding-top: 80px;
  padding-bottom: 30px;
  pointer-events: none;
  margin-right: 20px;
  overflow: visible;
  margin: 30px;
}

.testimonial-card{
  pointer-events: none;
  height: 410px;
  width: 330px;
  min-width: 330px;
  border: 2px solid #eeeeee;
  /* border-left: 4px solid #ffdd45; */
  border-radius: 10px;
  /* border-top: 4px solid #774bc9; */
  padding: 30px;
  position: relative;
  overflow: visible;
  background-color: #ffffff99;
}

/* .testimonial-card-holder{
  touch-action: none;
  pointer-events: none;
  width: 143%;
  overflow: visible;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 0;
} */

.stu-img{
  pointer-events: none;
  overflow: visible;
  position: absolute;
  top: -60px;
  left: calc(50% - 60px);
  border-radius: 100%;
}

.stu-img img{
  pointer-events: none;
  height: 120px;
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff90;
}

.stu-detail{
  pointer-events: none;
  font-size: x-large;
  font-weight: 700;
  color: #262626;
  margin-top: 50px;
}



.main-test-wrapper{
  background-color: #9157fa;
position: relative;}

.main-visit-wrapper{
  background-color: #f8f8f8;
}

.quote{
  position: absolute;
  height: 200px;
  opacity: 0.5;
}

.l{
  top: 90px;
  left: -20px;
}

.r{
  bottom: 0;
  right: 0;
}

.stu-rank{
  pointer-events: none;
  font-size: small;
  /* color: #eec200; */
  color: #774bc9;
  font-weight: 600;
}

.stu-feedback{
  pointer-events: none;
  line-height: 22px;
  font-size: small;
}

iframe{
  width: 100%;
}

.video-title{
    color: #fff;
}

.video-card{
  background-color: #f8f8f820;
  backdrop-filter: blur(10px);
  padding: 30px;
  /* border: 2px solid #dbdbdb; */
  width: 40%;
  margin: 20px;
  /* box-shadow: 4px 4px 20px 6px #25272c; */
}

.video-back-image{
  background-image: url(../assests/home-page/anne-nygard-HD2MMUEQ5MM-unsplash.jpg);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
}

.video-main-wrapper{
  background-color:#2e364a;
  position: relative;
  background-image: url(../assests/home-page/video-bg.png);
}

.add-visit{
  padding-left: 30px;
}

.video-wrap{
  justify-content: center;
  padding-bottom: 100px;
}

.visit-cards-wrapper{
  width: 80%;
  justify-content: flex-start;
  margin: auto;
}

.visit-card{
  border: 2px solid #dbdbdb;
  overflow: hidden;
  width: 280px;
  height: auto;
  margin: 20px;
  transform:scale(1);
  background-color: #f8f8f8;
  padding: 5px;
  color: #424242;
}

.visit-card .pin-image{
  width: auto ;
  height: 80px;
  margin: 10px 20px 0px 20px;
  position: absolute;
  z-index: -10;
  opacity: 0.3;
  right: 0;
  bottom: 20px;
}

.loaction{
  font-weight: 700;
  font-size: large;
  margin-bottom: 10px;
}

.visit-details{
  padding: 10px 15px;
}

.visit-contact{
  justify-content: flex-start;
  margin-top: 10px;
}
.visit-contact img{
  height: 15px;
  width: 15px;
  margin-right: 5px;
  margin-left: 0;
}

.address{
  letter-spacing: 0px;
  line-height: normal;
  height: 60px;
  overflow: hidden;
}

.phone{
  margin-right: 10px;
}

.phone p{
  font-size: small;
}


.visit-card a{
  text-decoration: none;
  color: #000;
}

.visit-card:hover{
transform: scale(1.1);
transition: 0.4s ease;
}

.visit-card a:hover{
  text-decoration: underline;
}


@media only screen and (max-width:1150px){
  .testimonial-card-holder{
    width: 150%;
  }
}

@media only screen and (max-width: 1050px) {
  .slider-btns-holder {
    left: 0;
  }
  .article {
    padding-left: 50px;
  }
  .left-content {
    width: 55%;
  }
  .right-content {
    width: auto;
  }
  .testimonial-card-holder{
    width: 170%;
  }
}

@media only screen and (max-width:960px) {
  .testimonial-card-holder{
    width: 200%;
  }
}

@media only screen and (max-width:830px) {
  .testimonial-card-holder{
    width: 220%;
  }
}

@media only screen and (max-width:750px) {
  .testimonial-card-holder{
    width: 240%;
  }
}

@media only screen and (max-width: 710px) {
  .article {
    padding: 10px;
  }
  .left-content {
    width: 80%;
  }
  .right-content {
    width: auto;
    margin-bottom: 50px;
  }
  .nav {
    display: none;
  }
  .ham-menu-icon-wrapper {
    display: flex;
  }
  .nav {
    justify-content: flex-end;
  }
  .curriculam-article,
  .visit-article {
    margin-left: 50px;
  }
  .curriculum {
    margin: 20px;
    width: 90%;
  }
}

@media only screen and (max-width:680px) {
  .testimonial-card-holder{
    width: 260%;
  }

  .slide-img{
    height: 60vh;
  }
}

@media only screen and (max-width:610px) {
  .testimonial-card-holder{
    width: 280%;
  }
}

@media only screen and (max-width:560px) {
  .testimonial-card-holder{
    width: 340%;
  }
}

@media only screen and (max-width:470px) {
  .testimonial-card-holder{
    width: 380%;
  }
}

@media only screen and (max-width: 455px) {
  .main-title {
    font-size: 35px;
    margin: 0 20px;
  }
  .sub-heading-hero {
    font-size: 25px;
    margin: 0 20px;
  }
  .col-1 {
    margin: 30px;
  }
  .news-letter {
    padding: 20px;
    width: 100%;
  }
  .news-letter input {
    width: 100%;
  }
  .achivment-article {
    margin: 50px;
    margin-bottom: 0;
    margin-top: 100px;
  }
  .button-left,
  .button-right {
    height: 40px;
    width: 40px;
  }

  .testimonial-card-holder{
    width: 420%;
  }
}
@media only screen and (max-width: 555px) {
  .logo {
    width: 180px;
    margin-left: 20px;
  }

  .message {
    font-size: large;
  }

  .right-content{
      padding: 0 20px;
  }

  .add-visit{
    padding-left: 0;
  }

  .visit-article{
    padding: 0;
    margin:60px 30px;
  }

  .video-card{
    width: 100%;
  }
}

@media only screen and (max-width: 380px) {

  .outer-testimonial-card-holder{
    height: 500px;
  }

  .testimonial-card{
    width: 280px;
    height: 440px;
    min-width: 280px;
    min-height: 440px;
  }

  .slide-img{
    height: 50vh;
    margin: 10px;
  }
  iframe{
  height: auto; 
 }
 .add-visit{
  padding-left: 0;
}
}



@media only screen and (max-width: 370px) {
  .main-title {
    font-size: 30px;
    margin: 0 20px;
  }

  .article{
   padding-left: 0px;
   padding-right: 0px;
  }


  .article-title{
    font-size: 35px;
  }

  .sub-heading-hero {
    font-size: 20px;
    margin: 0 20px;
  }
  .col-wrapper {
    justify-content: flex-start;
  }
  .main-content {
    background-image: url(assests/home-page/home-page-hero-image-mobile.jpg);
  }
  .add-visit{
    padding-left: 0;
  } 
}
