*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* @font-face {
  font-family: 'Semi-font';
  src: url('../fonts/AvertaStandardFont/AvertaStd-Semibold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
} */
@font-face {
  font-family: 'Regular-font';
  src: url('../fonts/AvertaStandardFont/AvertaStd-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Bold-font';
  src: url('../fonts/AvertaStandardFont/AvertaStd-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'ExtraBold-font';
  src: url('../fonts/AvertaStandardFont/AvertaStd-ExtraBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'RegularItalic-font';
  src: url('../fonts/AvertaStandardFont/AvertaStd-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
body {
  font-family: 'Regular-font',sans-serif;
  /* padding: 0; */
  background-color: var(--light-primary-background);
}

/* header open  */

header{
  padding: 0px 45px;
  background-color: #fff;
  width: 100%;
  height: 100px;
  position: fixed;
  top: -2px;
  transition: all var( --transition-time);
  z-index: 999;
}

header.sticky {
  height: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}
.logo-sec{
  flex-shrink: 0;
  width: 150px;
}
.menu-bar{
  padding: 6px 12px;
  display: none;
  cursor: pointer;
  border-radius: 5px;
}
.logo-head{
  font-size: 38px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: .9;
  text-wrap: nowrap;
}
.logo-sec span{
  font-size: 14px;
  font-weight: 600;
  text-wrap: nowrap;
}
.logo-sidebar{
  display: none;
}
.header-ul-link{
  align-items: center;
}
.header-ul-link a{
  color: var(--color-primary);
  font-size: 16px;
  text-wrap: wrap;
  font-family: 'Regular-font', sans-serif;
}
.header-ul-link li i{
  margin-right: 5px;
  font-size: 14px;
}
.header-icon a{
  border: 1px solid var(--color-primary);
  padding: 8px 10px;
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border-radius: 5px;
}
.header-li-rl{
  position: relative;
}
.rt-icon{
  transition: all .3s;
  margin-left: 5px;
}
.side-arrow-menu{
  cursor: pointer;
}
.header-li-ab{
  position: absolute;
  top: 105%;
  left: 0;
  background-color: #fff;
  box-shadow: var(--shadow);
  width: 250px;
  border-radius: 8px;
  transition: all .3s;
  height: 0;
  overflow: hidden;
  z-index: 2;
}
.header-li-ab li a{
  padding: 2px 8px;
  color: #333;
}
.header-li-ab a:hover{
  color: var(--color-primary-dark);
}
.header-li-rl.show .header-li-ab{
  padding: 5px 8px;
  height: auto;
  max-height: auto;
}
.header-li-rl.show .rt-icon{
  rotate: 90deg;
}
/* header close  */

/* hero section open  */
.hero-sec{
  background-color: var(--light-primary-background);
  padding: 64px 30px;
  padding-top: 150px;
}
.hero-div{
  width: 90%;
  color: var(--color-black);
}
.hero-div h1{
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: -3px;
}
.hero-div h3{
  font-weight: 600;
  font-size: 24px;
}
.hero-div p{
  font-size: 17.2px;
  font-weight: 500;
  line-height: 1.2;
  word-spacing: 1px;
}

.visit-center-btn,.register-btn, .reg-btn-side, .hero-action a{
  background-color: var(--color-primary);
  color: #fff;
  display: inline-flex;
  width: 200px;
  padding: 8px;
  justify-content: center;
  margin-right: 20px;
  border-radius: 8px;
  font-size: 15px;
  text-shadow: 2px 3px 8px rgb(255, 174, 0);
  box-shadow: 3px 3px 0px -1px rgba(0,0,0,1);
  flex-shrink: 0;
}
.hero-action p{
  font-weight: 700;
  line-height:1.2;

  font-family: 'Bold-font';
}
.hero-action p:last-of-type span{
  font-weight: 500;
  font-family: 'Regular-font';
}


/* .carousel-indicators{
  bottom: -50px;
}
.carousel-indicators [data-bs-target] {
  background-color: #000;
  opacity: 1;
  width: 10px;
  height: 4px;
}
.carousel-indicators .active{
  background-color: var(--color-primary);
} */
.hero-owl .item{
  aspect-ratio: 2/.9;
}

/* .carousel-control-prev, .carousel-control-next{
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
  opacity: 1;

}
.carousel-control-prev{
  left: -15px;
}
.carousel-control-next{
  right: -15px;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
  width: 15px;
} */
/* hero section close  */

/* About section open */
.about-sec{
  background-color: #fff;
}
.about-card-wrapper{
  border-radius: 15px;
  overflow: hidden;
  padding: 0;
}
.about-card{
  background-color: #fff;
  border: 2px solid;
  border-radius: 15px;
  padding: 3px;
  position: relative;
  padding: 10px 15px 20px;
}
.ab-card{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scale: 1.02;
  /* border: 1px solid; */
  background-color: #fff;
  background: linear-gradient(0deg,rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.11) 100%);
  opacity: .9;
  z-index: 1;
}
.card-in{
  z-index: 2;
  position: relative;
  /*padding:10px;*/
}
.registration-padding {
  padding:10px;
}
.about-card-img{
  width: 70px;
  height: 70px;
  background-color: #c8aeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-card-img .ab-div1{
  width: 38px;
}
.about-card-img div{
  width: 45px;
}
.about-card1{
  border-color: #c8aeff;
}
.about-card2{
  border-color:#ffaadd;
}
.ab-img2{
  background-color: #ffaadd;
}
.about-card3{
  border-color:#b8e7be;
}
.ab-img3{
  background-color:#d1ffbd;
}
.about-card4{
  border-color:#99dbff;
}
.ab-img4{
  background-color:#99dbff;
}
.about-card5{
  border-color:#ff8080;
}
.ab-img5{
  background-color:#ff8080;
}

.ab-card-heading{
  font-size: 22px;
  font-family: 'ExtraBold-font';
  font-weight: 700;
}
.mb-point-5 {
  margin-bottom:0.5rem;
}

.ab-card-p{
  font-size: 17.2px;
}
.know-more-btn{
  width: 70%;
  background-color: var(--color-primary);
  padding: 9px 20px;
  color: #fff;
  border-radius: 5px;
}
.know-more-btn:hover{
  color: #fff;
}


.about-div p{
  font-size: 17.2px;
  line-height: 1.3;
  width: 85%;
  margin-bottom: 15px;
  word-spacing: 2px;
}
.about-slider-sec .owl-carousel .item{
  background-color: var(--color-primary);
  /*height: 250px;*/
}
.about-owl .owl-nav button{
  border: 1px solid;
  position: absolute;
  top: 42%;
  transform: translateY(-42%);
}
.about-owl .owl-nav span{
  background-color: var(--color-black);
  color: #fff;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
}
.about-owl .owl-nav .owl-prev{
  left: -8px;
}
.about-owl .owl-nav .owl-next{
  right: -8px;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}
.owl-dot {
  width: 15px;
  height: 3.2px;
  background-color: var(--color-black)!important;
  display: inline-block;
  margin: 5px;
  transition: 0.3s;
}
.owl-dot.active {
  background-color: var(--color-primary)!important;
  opacity: 1;
}


/* About section close */

/* Registration section open */

.mobile-about-metre-div {
  display:none;
}

.registration-sec{
  background-color: var(--light-primary-background);
}
.line-bottom{
  width: 150px;
}
.registration-card{
  padding: 30px;
}
.registration-icon{
  width: 35px;
}
.reg-visit-icon img{
  width: 30px;
}
.visit-center-btn{
  box-shadow: none;
  text-transform: uppercase;
}
.registration-video-div{
  max-width: 800px;
  /* margin: 40px auto; */
  margin: 15px auto 5px;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 10px;
}
.registration-video-div iframe{
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.register-btn:hover, .visit-center-btn:hover{
  color: #fff;
}

.exam-conduction-img{
  width: 40px;
  flex-shrink: 0;
  margin-right: 10px;
  align-self: flex-start;
  justify-items: center;

}
.conduction-img-2 div{
  width: 30px;
}
.conduction-img-3 div{
  width: 25px;
}
.exam-conduc-details h5{
  font-size: 18px;
}
.exam-conduc-details p{
  font-size: 17px;
}
.exam-cond-img1{
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
}
.exam-cond-img2{
  border-radius: 10px;
  overflow: hidden;
  max-height: 200px;
}
.exam-note{
  font-style: italic;
}
.syllabus-row{
  row-gap: 30px;
}

.Syllabus-btn{
  border: 2px solid var(--color-primary);
  display: flex;
  width: 100%;
  justify-content: center;
  /* align-items: center ; */
  /* gap: 20px; */
  padding: 13px;
  font-weight: bold;
  font-size: 17px;
  border-radius: 10px;
  background-color: #fff;
}
.Syllabus-btn div{
  width: 25px;
  margin-right: 10px;
}
.Syllabus-btn div img{
  object-fit: contain;
}
.syllabus-row .syllabus-btn-div:nth-of-type(odd){
  padding-right: 80px;
}
.syllabus-row .syllabus-btn-div:nth-of-type(even){
  padding-left: 80px;
}
.sample-btn{
  background-color: var(--color-primary);
  color: #fff;
}
.sample-btn:hover{
  color: #fff;
}


/* Registration section close */

/* Coaching Institute section open */

.coaching-sec{
  background-color: #fff;
}
.coaching-row{
  gap: 25px;
  /* border: 1px solid; */
}
.coaching-card-wrapper, .coaching-card{
  border-radius: 0px;
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;

}
.coaching-card{
  border: 1px solid;
}
.coaching-card .ab-card{
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  background: linear-gradient(0deg,rgb(255, 255, 255) 0%, rgba(255, 255, 255, .1) 100%);
  opacity: 1;
  z-index: 1;
}
.coaching-card .card-in{
  z-index: 2;
  position: relative;
}
.coaching-card-img-div{
  height: 75px;
}
.coaching-card-img-div div{
  width: 70px;
  /* height: 75px; */
}
.coaching-card-img-div img{
  object-fit: contain;
}
.coaching-card1{
  border-color: #ff4545;
}
.coaching-card1-text{
  color: #ff4545;
}
.coaching-card2{
  border-color: #ffb303;
}
.coaching-card2-text{
  color: #ffc403;
}
.coaching-card3{
  border-color: #889eff;
}
.coaching-card3-text{
  color: #889eff;
}
.coaching-card4{
  border-color: #915aff;
}
.coaching-card4-text{
  color: #915aff;
}
.coaching-card5{
  border-color: #37bc4a;
}
.coaching-card5-text{
  color: #37bc4a;
}
.text-center h6.color-black{
  font-weight: 600;
}

/* Coaching Institute section close */


/* Results section open */

.result-btn-div{
  display: flex;
  flex-wrap: wrap;
}
.result-btn-div a{
  padding: 6px 18px;
  border-radius: 20px;
  background-color: #e2e2e2;
  margin-right: 8px;
  margin-bottom: 8px;
}
.result-btn-div a.active{
  background-color: var(--color-primary);
  color: #fff;
}

.result-owl .item{
  /* background-color: var(--color-primary); */
  background-color: #999;
}
/* Results section close */

/* success section open */
.success-img-div{
  width: 110px;
  margin-bottom: 15px;
}
.success-owl .item{
  /*height: 350px;*/
  /* background-color: var(--color-primary); */
  background-color: #999;
}
.success-owl{
  position: relative;
}
.result-owl .owl-nav button, .success-owl .owl-nav button{
  border: 1px solid;
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
}
.shorts-modal{
  height: 100%;
}
.short-video{
  width: 300px!important;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}
.short-video iframe{
  aspect-ratio: 9/16;
  display: block;
}
.result-owl .owl-nav span, .success-owl .owl-nav span{
  background-color: var(--color-black);
  color: #fff;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
}
.result-owl .owl-nav .owl-prev, .success-owl .owl-nav .owl-prev{
  left: -12px;
}
.result-owl .owl-nav .owl-next, .success-owl .owl-nav .owl-next{
  right: -12px;
}

/* success section close */

/* awarded section open */
.awarded-sec{
  padding-bottom: 24px;
}
.awarded-cont{
  background-color: inherit;
  padding-top: 0px;
  padding-bottom: 20px;
}
.awarded-slider-div{
  /*background-image:url("../img/Group1126.svg");*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*height: 205px;*/
  /*padding-top: 20px;*/
  /* border: 1px solid red; */
}
.awarded-div-img{
  /*background-color:#373435;*/
  width: 100%;
  /* height: 82%; */
  padding: 5px;
}
.awarded-owl .item{
  background-color: #fff;
  max-height: 146px;
  border-radius: 10px;
  /* border: 1px solid red; */
  overflow: hidden;
  cursor: pointer;
}
.youtube-modal{
  height: 100%;
}
.youtube-modal a{
  /* border: 1px solid green; */
  display: flex;
  /* height: 100%; */
  /* border: 1px solid; */
  /* object-fit: cover; */
}
/* .awarded-owl .item div img{
  all: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid red;
} */



/* awarded section close */

/* FAQS open */
.faqs-line{
  width: 200px;
}
.faqs-line img{
  height: auto;
}
.accordion-button{
  /* padding-left: 0; */
  font-size: 18px;
}
.accordion-body{
  font-size: 17px;
}
.accordion-button:focus{
  box-shadow: none;
  background-color: var(--light-primary-background);
  color: black;
}
.accordion-item {
  background-color: #fff;
  border: 3px solid rgba(0, 0, 0, .125);
}
/* FAQS close */

/* talk to expert open */

.talk-div{
  background: radial-gradient(circle,rgba(255, 123, 15, 1) 51%, rgba(255, 78, 2, 1) 90%);
  margin-inline: auto;
  max-width: 1000px;
  padding: min(4vw,30px);
  border-radius: 10px;
}
.talk-div h4{
  font-weight: 700;
  color: #f7f604;
  font-size: 26px;
  letter-spacing: 1px;
  text-shadow:
          -1px -1px 0 black,
          1px -1px 0 black,
          -1px  1px 0 black,
          1px  1px 0 black;
}
.call-us{
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  /* font-weight: 600; */
  font-size: 17px;
}
.talk-img{
  width: 120px;
}
.talk-img img{
  height: auto;
}
/* talk to expert close */

/* footer */
.footer-sec{
  background-color: #e6e6e6;
  padding-top: 40px;
}
.footer-logo{
  max-width: 350px;
}
.footer-list i{
  transform: rotate(40deg);
  color: #aaaaaa;
  margin-right: 5px;
}
.footer-list li{
  margin-bottom: 5px;
}
.footer-list a{
  padding: 1px 5px;
  font-weight: 700;
  font-size: 16px;
}
.footer-social-row{
  padding-block: 20px;
  border-top: 3px solid #aaaa;
  border-bottom: 3px solid #aaaa;
}
.footer-social{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-social a{
  width: 45px;
}

.metre-support {
  font-family: 'ExtraBold-font',sans-serif;
}
.faq-fs{
  font-size:20px !important;
}

/* About page */
.about-page-section{
  padding-top: 150px;
  padding-bottom: 30px!important;
}
.about-header{
  background: radial-gradient(circle,rgba(255, 123, 15, 1) 51%, rgba(255, 78, 2, 1) 90%);
  padding: 30px;
}
.ab-container{
  max-width: 1000px;
  margin-inline: auto;
}
.heading-ab-page{
  font-size: 20px;
  font-family: 'Bold-font',sans-serif;
}
.heading-ab-page>span{
  color: #fff;
}
.ab-container .breadcrumb-item{
  color: #000;
  font-size: 12px;
  font-family: 'Bold-font',sans-serif;

}
.ab-details p{
  margin-bottom: 15px;
  line-height: 1.3;
}
.ab-details .highlight{
  color: var(--color-primary-dark);
}

/* result page */
.result-page-owl .item{
  max-height: 400px;
}
.rewards-head *{
  font-size: 22px!important;
}
.rewards-head .aim{
  font-size: 18px!important;
}
.rewards-head .line-bottom{
  width: 80px;
  margin-top: -10px;
}
.class-box {
  border: 1px solid var(--color-primary-dark);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.card-reward-sec{
  background-color: #fff;
}
.result-reg p{
  margin-bottom: 0;
}

.result-container{
  max-width: 1290px;
  margin-inline: auto;
}

/* test center */
.search-top input{
  border-radius: 8px;
  width: 250px;
  padding: 5px 10px;
}
.table-bordered{
  border: 1px solid #fff;
}
.table td{
  width: auto;
}

.table thead tr:first-child {
  background-color: var(--color-primary-dark);
  color: white;
}

.table tbody tr:nth-child(odd) {
  background-color: #fde8db;
}

/* Even rows */
.table tbody tr:nth-child(even) {
  background-color: #ffd8ca;
}

.table-search {
  border-radius: 6px;
  border: 1px solid #ffffff;
  padding: 5px 8px;
  /* width: 50px; */
}

.input-group-text {
  background: white;
  border: none;
}
.input-group{
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 1;
}
tbody td{
  font-family: 'Bold-font', sans-serif;
}

/* media coverage */
.media-img{
  height: 200px;
  background-color: #ccc;
}
.media-view-btn{
  background: var(--color-primary-dark);
  padding: 2px 15px;
  font-size: 15px;
  color: #fff;
  border-radius: 20px;
}
.media-view-btn:hover{
  color: #fff;
}
.menu-gap{
  gap: 1rem;
}
.exam-cond-img1 img {
  object-fit: fill;
}
.select-div select:first-of-type{
  width: 150px;
}
.select-div select:nth-of-type(2){
  width: 100px;
}
.line-small{
  width: 100px;
  margin-top: -10px;
}
.card-victory-sec{
  background-color: #fff;
}
.select-owl .item{
  /* height: 250px; */
  aspect-ratio: 1/.5;
}
.media-owl .item{
  aspect-ratio: 1/.4;
}
.read-more-btn {
  background-color: var(--color-primary);
  padding: 9px 20px;
  color: #fff;
  border-radius: 5px;
}
.read-more-btn i {
  padding-left: 1.5rem;
}
.media-img-list {
  background-color: #ccc;
}


/* achiever-star */
.heading-achiever-star{
  color: #fcea09;
}

.ach-camp-sec{
  background-color: #fff;
}


.achiever-star-img{
  aspect-ratio: 1/.8;
  background-color: #ccc;
}
.achiever-sm-img{
  aspect-ratio: 1/.8;
  background-color: #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.achi-des-img-row>div, .achiever-sm-row>div{
  margin-bottom: 20px;
}

/* know more achiever */
.know-more-head span{
  color: #fcea09!important;
}


.mb-sm{
  margin-bottom: 0px;
}
.select-owl .item img{
  object-fit: contain!important;

}

/*-------floating button start---------*/
.index-float-body{
  position: relative;
}
.index-float-icon{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}


.quick-icon{

  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background-color: var(--color-primary);
  margin-bottom: 15px;
}
.whatsapp-icon{
  background-color: green!important;
  font-size: 24px;
  margin-bottom: 0;
}

/*-------------floating end----------------*/