* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
:root {
  --megenta: #450903;
  --red: #E90000;
  --gray: #737373;
  --gray-light:#D5D5D5;
  --white: #ffffff;
  --black: #000000;
  --border: #CCCCCC;

  /* font-family */
  --inter: "Inter", sans-serif;
  --dm-sans: "DM Sans", sans-serif;

  /* font-size */    
    /* --size-16:1rem;
    --size-18:1.125rem;
    --size-21:1.313rem;
    --size-22:1.375rem;
    --size-24:1.5rem;
    --size-35:2.313rem;
    --size-40:2.5rem;
    --size-46:2.875rem;
    --size-48:3rem;
    --size-64:4rem; */

    --size-16: clamp(14px, 1vw, 16px);
    --size-18: clamp(15px, 1.2vw, 18px);
    --size-21: clamp(17px, 1.5vw, 21px);
    --size-22: clamp(18px, 1.5vw, 22px);
    --size-24: clamp(20px, 1.8vw, 24px);
    --size-35: clamp(30px, 2vw, 35px);
    --size-40: clamp(30px, 2.2vw, 40px);
    --size-46: clamp(34px, 3.2vw, 46px);
    --size-48: clamp(38px, 4vw, 48px);
    --size-64: clamp(45px, 4.8vw, 64px);

    /* Line height */
    --line-height-120: 120%;
    --transition: all 0.3s linear;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--inter);
}
h1,h2,h3,h4,h5,h6{
  font-family: var(--dm-sans);
}
p {
  font-size: var(--size-18);
  font-weight: 400;
  /* line-height: normal; */
  font-family: var(--inter);
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: var(--black);
}
img {
  width: 100%;
  height: auto;
}
.btn-cdx{
  font-size: var(--size-16);
  padding: 0.8rem 2rem;
  font-family: var(--inter);
  border-radius: 0.6rem;
  color: var(--white);
  display: inline-block;
  flex: 0 0 auto;
  font-weight: 600;
  background-image: linear-gradient(to right, #511B16, #FF0C00, #FF0C00, #511B16);
  background-size: 300% 100%;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  border: none;
}
.btn-cdx-outline{
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #3F3F3F;
  color: #3F3F3F;
}
.btn-cdx-outline:hover {
  border-color: var(--red);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}
.btn-cdx-outline::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 0.2rem;
    background: linear-gradient(45deg, #511B16, #FF0C00);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
    transform: rotate(15deg);
}
.btn-cdx-outline:hover::before {
    top: 100%;
    left: 100%;
}
.btn-cdx-arrow img{
  width: 0.8rem;
  margin-left: 0.9rem;
  position: relative;
  top: -0.1rem;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.btn-bg-green{
  border: 1px solid var(--white);
  background-image: linear-gradient(to right, #13A400, #13A400, #13A400, #511B16);
}
.btn-cdx-arrow:hover img{
  transform: rotate(50deg);
}
.btn-cdx:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.svg-icon{
  max-width: 1.2rem;
}
/* Header */
.header{
  width: 100%;
  padding: 1rem 0;
  background: var(--black);
}
.info-card{
  padding: 0;
  margin: 0;
}
.info-card li{
  list-style: none;
  display: inline-block;
  margin-right: 2rem;
}
.info-card li a{
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 600;
  padding: 1rem 0 1rem 1.5rem;
}
.info-card li:nth-of-type(1) a{  
  background: url('../img/icon/call-w.svg') no-repeat;
  background-size: 1rem;
  background-position: left center;
}
.info-card li:nth-of-type(2) a{  
  background: url('../img/icon/envelop-w.svg') no-repeat;
  background-size: 1rem;
  background-position: left center;
}
.social-network{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* navbar */
.navbar{
  width: 100%;
  background: var(--white);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  white-space: normal;
  width: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand img{
  width: 6rem;
  transition: all 0.5s ease-in-out;
  padding-right: 0.5rem;
  border-right: 2px solid var(--gray);
}
.navbar-brand p{
  margin: 0 0 0 0.5rem;
  font-size: var(--size-18);
}
.navbar-sticky{
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-link {
  font-size: var(--size-16);
  font-weight: 400;  
  color: var(--black);
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 1rem 1.5rem;
}
.nav-link:focus, .nav-link:hover,
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  color: var(--red);
}
.navbar-nav li .dropdown-menu{
  background-color: var(--blue);
  padding: 1rem;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
} 
.navbar-nav li .dropdown-item{
  font-size: var(--size-18);
  padding: 0.5rem 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 0.5rem;
}
/* BANNER */
.banner-cardflyx{
  padding: 4rem 0;
  position: relative;
}
.banner-content h1{
  font-size: 3.6rem;
  font-weight: bold;  
  opacity: 0.8;
  font-family: var(--dm-sans);
}
.banner-content h1 span{
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; color: white;
}
.banner-content ul{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.banner-content ul li{
  width: 48%;
  font-size: var(--size-16);
  color: var(--black);
  background: rgb(255,112,112,0.33);
  padding: 0.5rem;
  border-left: 0.4rem solid var(--red);
  list-style: none;
}
/* .banner-content{

} */
.banner-cardflyx .diamond-1{
  width: 40px;
  top: 80px;
  left: 15%;
  position: absolute;
}
.banner-cardflyx .diamond-2{
  width: 60px;
  top: 150px;
  left: 35%;
  position: absolute;
  transform: rotate(45deg);
  filter: drop-shadow(0px 0px 7px #0000007a);
}
.banner-cardflyx .diamond-3{
  width: 110px;
  position: absolute;
  bottom: 50px;
  left: 44%;
  transform: rotate(-30deg);
  filter: drop-shadow(0px 0px 7px #0000007a);
}
/* cardflyx-jewel-academy */
.cardflyx-jewel-academy{
  padding: 4rem 0;
}
.jewel-academy-title{
  margin-bottom: 5rem;
}
.jewel-academy-title h2{
  font-size: var(--size-64);
  font-weight: 400;
  margin-bottom: 2rem;
}
.jewel-academy-title h2 span{
  font-weight: bold;
  font-family: var(--dm-sans);
}
.quick-enquiry-form{
  width: 88%;
  margin-left: auto;
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0rem 0rem 1.25rem rgba(0, 0, 0, 0.2);
}
.enquiry-title{
  width: 100%;
  background: var(--megenta);
  padding: 2rem;
  text-align: center;
}
.enquiry-title h4{
  font-size: var(--size-35);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
}
.enquiry-title p{
  font-size: var(--size-18);
  color: var(--white);
  font-weight: 400;
}
.form-body{
  padding: 2rem;
}
.form-group{
  margin-bottom: 1rem;
}
.enquiry-input{
  font-size: var(--size-16);
  color: var(--black);
  border: 1px solid var(--border);
  padding: 0.7rem;
  font-family: var(--inter);
  font-weight: 500;
}
.form-select:focus,
.form-control:focus {
  color: var(--black);
  border-color: var(--black);
  outline: 0;
  box-shadow: 0 0 0 0rem transparent;
}
.enquiry-input::placeholder {
   color:var(--black);
}
.enquiry-input::-ms-input-placeholder {
  color: var(--black);
}
textarea.enquiry-input {
  height: 120px;
}
/* cardflyx-premier-jewellery */
.cardflyx-premier-jewellery{
  padding: 4rem 0;
}
.premier-jewellery-pic{
  position: relative;
  padding: 2rem 0 0 2rem;
}
.premier-jewellery-pic::before{
  content: '';
  width: 80%;
  height: 80%;
  background: #B50000;
  border-radius: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.premier-jewellery-pic img{
  width: 90%;
  border: 0.5rem solid var(--white);
  border-radius: 1.5rem;
  margin: auto;
}
.title-cardflyx{
  margin-bottom: 1rem;
}
.title-cardflyx h2{
  color: var(--black);
  font-size: var(--size-48);
  margin-bottom: 0rem;
  line-height: 120%;
  font-weight: 300;
}
.title-line{
  display: inline-block;
  width: 5rem;
  height: 0.4rem;
  background: var(--red);
}
.content-premier .title-cardflyx{
  opacity: 0.7;
}
.content-premier .title-cardflyx h2 span{
  display: block;
}
.title-cardflyx h2 span{
  font-weight: bold;
  font-family: var(--dm-sans);
}
.content-premier p{
  color: var(--black);
  font-size: var(--size-18);
  opacity: 0.7;
  line-height: 30px;
}
.btn-box{
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
/* popular-course-wrap*/
.popular-course-features{
  padding: 4rem 0;
  position: relative;
   background: url('../img/bg-effect.jpg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.title-cardflyx-p h2{
  opacity: 0.7;
}
.title-cardflyx-p p{
  padding: 1rem 0;
  color: var(--gray);
  font-size: var(--size-18);
  opacity: 0.7;
  line-height: 30px;
}
#courses .owl-stage{
  margin: 1rem 0;
}
.owl-carousel .owl-stage{
  display: flex;
}
.course-popular{
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 0.7rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.courseImg{
  width: 100%;
  height: 13rem;
  overflow: hidden;
}
.course-popular img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  &:hover{
    transform: scale(1.1);
  }
}
.content-course,
.btn-view{
  padding: 1rem;
}
.btn-view{
  padding-top: 0;
}
.course-popular h4{
  font-size: var(--size-24);
  color: var(--black);
  margin:0.5rem 0 1rem;
}
.course-popular p{
  padding:0;
  margin: 0;
  color: var(--gray);
  font-size: var(--size-16);
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 6.6rem;
}
.course-popular .btn-cdx{
  padding: 0.8rem 1rem;
}
#courses.owl-theme .owl-nav [class*='owl-'] {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--gray);
  font-size: var(--size-46);
  margin:0;
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10rem;
  border: 4px solid var(--gray);
  position: absolute;
  top: 40%;
}
#courses.owl-theme .owl-nav .owl-next{
  right: -4rem;
}
#courses.owl-theme .owl-nav .owl-prev{
  left: -4rem;
}
/* Our Features */
.our-features{
  text-align: center;
}
.our-features img{
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
.our-features h4{
  font-size: var(--size-24);
  color: var(--black);
  padding: 1rem 0;
  margin-bottom: 0;
}
.our-features p{
  font-size: var(--size-16);
  color: var(--gray);
  margin-bottom: 0;
  line-height: 25px;
}
/* build-career-wrap */
.build-career-wrap{
  padding: 8rem 0;
  text-align: center;
}
.build-career-content h2{
  color: var(--white);
  font-size: var(--size-35);
  margin-bottom: 1rem;
}
.build-career-content p{
  color: var(--white);
  font-size: var(--size-18);
}
/* cardflyx-benefit */
.cardflyx-benefit{
  padding: 4rem 0;
}
.benefit-pic-wrap,
.benefit-small-pic,
.benefit-flex{
  display: flex;
  gap: 1rem;
}
.benefit-content{
  padding-right: 2rem;
}
.benefit-small-pic{
  flex-direction: column;
}
.benefit-pic{
  max-width: 58%;
  width: 100%;
}
.benefit-small-pic{
  max-width: 40%;
  width: 100%;
}
.benefit-pic img{
  width: 100%;
  height: 30.25rem;
  border-radius: 1rem;
  object-fit:cover;
}
.benefit-small-pic img{
  width: 100%;
  height: 14.50rem;
  border-radius: 1rem;
  object-fit:cover;
}
.benefit-content h4{
  color: var(--black);
  font-size: var(--size-40);
  opacity: 0.7;
  margin: 2rem 0;
  font-weight: 300;
}
.benefit-content p{
  color: var(--black);
  font-size: var(--size-18);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.benefit-content .benefit-list :where(h3,h4,h5,h6){
  margin: 0;
  opacity: 1;
  color: var(--black);
  font-size: var(--size-24);
}
.benefit-list ul{
  padding-left: 0;
} 
.benefit-list ul li{
  color: var(--gray);
  font-size: var(--size-16);
  padding: 0.5rem 0rem 0.5rem 1.2rem;
  background: url('../img/icon/done-red.svg') no-repeat;
  background-size: 0.8rem;
  background-position: left center;
  list-style: none;
}
.career-videos{
  border-radius: 0.5rem;
  border:0.5rem solid #FFFFA7;
  position: relative;
  margin-right: 20px;
}
.career-videos iframe,
.video-thumbnail{
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
.play-overlay {
  position: absolute;
  top: 40%;
  left: 40%;
  cursor: pointer;
}
.play-overlay img{
  width: 4rem;
}
/* Testimonials */
.catdflyx-testimonial{
  padding: 4rem 0;
}
.catdflyx-testimonial .container-fluid{
  max-width: 1920px;
  overflow-x: hidden;
}
.tesimonials-title{
  margin-bottom: 3rem;
}
.tesimonials-title h2{
  color: var(--white);
}

.testimonials-box{
  width: 100%;
  height: 92%;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0rem 0rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.items.testimonials-box{
  height: auto;
}

.testimonials-box p{
  font-size: var(--size-18);
  margin: 0;
  padding: 1rem 0;

  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 6.6rem;
}
.testimonial-user-flex{
  margin-top: 1rem;
}

.testimonial-user-flex,
.student-left-box,
.starts{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.student-left-box{
  gap: 1rem;
}
.student-pic{
  flex: 0 0 auto;
}
.student-pic img{
  width: 3.5rem!important;
  height: 3.5rem;
  border-radius: 100%;
}
.student-content h4{
  margin: 0;
  color: var(--black);
  font-size: var(--size-21);
}
.student-content p{
  font-size: var(--size-16);
  margin: 0;
  padding: 0;
}
.divider-line{
  width: 0.1rem;
  height: 3rem;
  background: var(--gray);
  margin: 0 1rem;
}
.student-brand img{
  width: 4rem;
}

#testimonial.owl-theme .owl-nav {
    margin-top: 4rem;
}
#testimonial.owl-theme .owl-nav [class*='owl-'] {
  width: 3rem;
  height: 3rem;
  color: var(--black);
  font-size: var(--size-35);
  margin:0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10rem;
  border: 1px solid var(--black);
}
#testimonial.owl-theme .owl-nav [class*='owl-']  span{
  line-height: 0px;
  height: 0px;
  position: relative;
  top: -6px;
}
#testimonial.owl-theme .owl-nav .owl-prev{
  margin-right: 1rem;
}

#testimonialBottom .items.testimonials-box{
  text-align: end;
}
#testimonialBottom .testimonial-user-flex,
#testimonialBottom .starts{
  flex-direction : row-reverse;
}
#testimonialBottom .student-left-box{
 /* justify-content: flex-end; */
 flex-direction : row-reverse;
}
/* footer navbar */
.footer{
  padding: 4rem 0 0rem;
}
.footer-barnd img{
  width: 10rem;
}
.footer-content{
  margin: 2rem 0;
}
.footer-content p{
  color: var(--white);
  font-size: var(--size-16);
  opacity: 0.8;
}
.footer-social-net{
  justify-content: flex-start;
  margin-top: 2rem;
}
.footer-social-net li a{
  display: inline-block;
  /* padding-right: 1rem; */
}
.footer-main-wrap,
.located-info-call,
.copyright,
.btn-book{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.footer-main-wrap{
  justify-content: space-between;
  padding: 0 4rem;
}
.located-info-call{
  align-items: center;
  margin-bottom: 0.5rem;
}
.located-info a,
.located-info p,
.located-info-call a{
  color: var(--white);
  font-size: var(--size-14);
  font-family: var(--inter);
   transition: var(--transition);
}
.located-info-call a:hover{
  color: var(--red);
}
.located-info img,
.located-info-call img,
.footer-social-net img{
  max-width: 1.5rem;
  width: 1.5rem;
  flex: 0 0 auto;
  transition: var(--transition);
}
.footer-social-net li:hover img{
  transform: scale(1.1);
}
.navbar-link{
  padding: 0;
  margin: 0;
}
.footer-navbar h4{
  color: var(--white);
  font-size: var(--size-24);
  font-family: var(--dm-sans);
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-decoration: underline;
}
.navbar-link li{
  list-style: none;
}
.navbar-link li a{
  color: var(--white);
  font-size: var(--size-14);
  font-family: var(--inter);
  padding-bottom: 0.5rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}
.navbar-link li a:hover{
  color: var(--red);
}
.social-media{
  justify-content: end;
}
.copyright p,
.copyright a{
  color: var(--white);
  font-size: var(--size-16);
  text-align: center;
  padding: 0;
  margin: 0;
}
.copyright a{
  text-decoration: underline;
  transition: var(--transition);
  &:hover{
    color: var(--red);
  }
}
.divider{
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255,0.5);
  margin: 3rem 0 0;
}
.footer-bottom{
  background: #200503;
  padding: 2rem 0;
}
/*******************************
      INNER PAGE CSS
*******************************/
/* About us */
.banner-cardflyx-inner{
  padding: 8rem 0;
}
.banner-content-inner{
  text-align: center;
}
.banner-content-inner h1{
  font-size: var(--size-64);
  font-weight: bold;
  color: #424242;
}
.tsh_breadcrumbs{
  margin: 1rem auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.tsh_breadcrumbs li a,
.tsh_breadcrumbs li {
  font-size: var(--size-21);
  /* padding: 1rem; */
  font-weight: 500;
}
.separator {
	display:none;
}
.tsh_breadcrumbs li:not(:last-child){
  padding-right: 1.5rem;
  margin-right: 0.5rem;
  background: url('../img/icon/double-arrow.svg') no-repeat;
  background-size: 1rem;
  background-position: center right;
}
.tsh_breadcrumbs li:first-child a{
  padding-left: 0;
}
/* banner-cardflyx-inner */
.content-about-cadflyx p{
  font-size: var(--size-18);
  line-height: 30px;
  color: var(--gray);
}
.counter-ul{
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.counter-ul li{
  width: 48%;
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  border-left: 0.4rem solid var(--red);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.05);
  list-style: none;
  text-align: center;
}
.counter-up{
  font-size: var(--size-46);
  color: var(--black);
}
.counter-box p{
  font-size: var(--size-18);
  font-weight: 500;
}
.content-about-cadflyx.our-vision{
  padding-left: 2rem;
}
/* about-cardflyx-inner */
.about-cardflyx-inner{
  padding: 8rem 0;
}
.vision-cardflyx-inner{
  padding: 4rem 0;
}
/* campus-overview-cadflyx */
.campus-overview-cadflyx{
  padding: 2rem 0;
}
.campus-overview-pic img{
  width: 100%;
  height: 30rem;
  object-fit: cover;
}
.zigzag-about-wrap{
  margin-top: 2rem;
}
/* .mainrow{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.order01{
  width: 35%;
}
.order02{
  width: 64%;
}
.zigzag-about-wrap .mainrow:nth-of-type(even) .order01{
  width: 50%;
}
.zigzag-about-wrap .mainrow:nth-of-type(even) .order02{
  width: 49%;
} */


.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12-column flexible grid */
  grid-gap: 15px;
  grid-auto-flow: dense; /* fills gaps */
}
.gallery-item{
  height: 480px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

/* Pattern control */
.gallery-item:nth-child(3n + 1) {
  grid-column: span 5;
}

.gallery-item:nth-child(3n + 2),
.gallery-item:nth-child(3n) {
  grid-column: span 7;
}

.starts{
  color: var(--black); /* gold stars */
  font-size: 28px;
}
.star.empty {
  color: #ccc; /* grey for empty */
}


/* Coures-main-wrap */
.coures-main-wrap{
  width: 100%;
  background: var(--white);
  padding: 4rem 0;
}
/* admission-process-wrapping */
.admission-process-wrapping{
  padding: 4rem 0;
}
.process-course,
.process-course ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  margin-top: 5rem;
}
.process-course li{
  position: relative;
  list-style: none;
  text-align: center;
}
.right-arrow-low-down{
  position: absolute;
  width: 41%;
  top: 4rem;
  bottom: 0;
  right: -65px;
}
.process-course li:last-child .right-arrow-low-down{
  display: none;
}
.process-course li:nth-of-type(even) .right-arrow-low-down{
  transform: rotateX(190deg);
  top: 5rem;
}
.process-course li:nth-of-type(even){
  padding-top: 3rem;
}
.process-course li p{
  font-size: var(--size-18);
  padding: 1rem 1rem 0;
}
.process-user-icon{
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  border: 1px solid var(--megenta);
  background: #F5DBDB;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
}
.number-count{
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 100%;
  border: 1px solid var(--megenta);
  background: var(--white);
  box-shadow: 0rem 0rem 0.4rem rgba(0, 0, 0, 0.2);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0.775rem;
}
.process-user-icon .svg-icon {
    max-width: 5rem;
}
/* faq-wrap */
.faq-wrap{
  padding: 4rem 0;
  background: url('../img/icon/c-bg.svg') no-repeat;
  background-size: 35rem;
  background-position: center 80%;
}
.accordion-course{
  margin-top: 3rem;
  background: transparent;
  --bs-accordion-bg: transparent;
}
.accordion-item{
  border: none;
  border-bottom: 1px solid #ACACAC;
  background: transparent;
}
.accordion-button{
  font-size: var(--size-24);
  color: var(--black);
  opacity: 0.7;
  font-weight: 500;
}
.accordion-body p{
  font-size: var(--size-18);
  line-height: 1.8rem;
  font-weight: 400;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
    box-shadow: inset 0 0 0 transparent;
}
.accordion-item:last-of-type{
  border-radius: 0;
}

/* blog section */
.blog-inner{
  background-color: #E7D8CF!important;
}
.blog-section{
  padding: 4rem 0;
}

.blog-item{
  margin-bottom: 2rem;
}
.blog-box-inner{
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 0.7rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: var(--transition);
}
.blog-box-images {
  height: 250px;
  width: 100%;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
}
.blog-box-inner:hover .blog-box-images img{
  transform: scale(1.1);
}
.blog-box-content{
  padding: 0 1.5rem 1.5rem;
}
.blog-metabox{
  gap: 20px;
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.blog-meta {
  gap: 10px;
  display: flex;
  align-items: center;
  img{
    width: 25px;
  }
}

.blog-box-content h4{
  font-size: var(--size-24);
  color: var(--black);
}
.blog-box-content p{
  color: var(--gray);
  font-size: var(--size-16);
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 6.6rem;
}


.pagination-blog {
    text-align: center;
}
.custompager .page-numbers {
    height: 40px;
    width: 40px;
    color: var(--white);
    align-items: center;
    line-height: 33px;
    display: inline-flex;
    justify-content: center;
    background-color: var(--red);
    &:hover{
        background-color: var(--megenta);
    }
}
.custompager .page-numbers.current {
    background-color: var(--megenta);
}

.single-page-main{
  padding: 4rem 0;
}
.thumbnail-image{
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.plainContent h2{
   font-weight: 600;
  font-size: var(--size-48);
}
.plainContent h3{
   font-weight: 600;
  font-size: var(--size-40);
}
.plainContent h4{
   font-weight: 600;
  font-size: var(--size-35);
}
.plainContent h5{
   font-weight: 600;
  font-size: var(--size-24);
}
.plainContent h6{
  font-weight: 600;
  font-size: var(--size-21);
}
.plainContent a{
  color: var(--red);
}
.plainContent li{
  font-size: var(--size-18);
  font-weight: 400;
  line-height: normal;
  font-family: var(--inter);
  margin-bottom: 0.5rem;
}
.course-inner{
  padding: 4rem 0;
  background-color: #E7D8CF!important;
}
.banner-area-txt h1{
  font-weight: 600;
  font-size: var(--size-64);
}
.course-inner .row{
  align-items: center;
}
.course-inner .thumbnail-image{
  height: auto;
}
.course_metabox {
  display: flex;
  column-gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.latest-blog-lists {
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
}
.latest-list-item {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}
.latest-list-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.latest-list-item .blog-box-images {
  width: 30%;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.latest-list-item .blog-box-content{
  width: 70%;
  padding: 0;
}
.latest-list-item .blog-box-content h4{
  font-size: var(--size-18);
}
.latest-list-item .blog-box-content h4 a:hover{
  color: var(--red);
}
.latest-list-item .blog-meta {
  img{
    width: 18px;
  }
  span{
    font-size: var(--size-14);
  }
}
.courseInfo_wrapper,
.enquiry_form_wrapper {
  padding: 2rem 1rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  background: var(--white);
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.2);
}
.sidebar_heading{
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.sidebar_heading h4{
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--size-24);
}

.buttoncourseprice {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.courseprice h4{
  font-weight: 600;
  margin-bottom: 0;
  font-size: var(--size-35);
}
.coursedetailpart {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.coursedetailpart .row{
  align-items: center;
}
.courseicon{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(to right, #511B16, #FF0C00, #FF0C00, #511B16);
  img{
    width: 40px;
    height: 40px;
    filter: invert(1);
  }
}
.coursedetailpart h5{
  font-weight: 600;
  font-size: var(--size-21);
}
.coursedetailpart p{
  margin-bottom: 0;
}

/* contact-us-wrap */
.contact-us-wrap{
  padding: 4rem 0;
}
.contact-us-cadflyx,
.fallow-us ul{
  padding: 0;
  margin: 0;
}
.contact-us-cadflyx li,
.contact-us-cadflyx li a{
  font-size: var(--size-18);
  color: var(--gray);
  list-style: none;
  display: inline-block;
  gap: 1rem;
}
.contact-us-cadflyx li{
   padding: 1.5rem 0.5rem 0;
}
.contact-us-cadflyx li:first-child{
  display: flex;
  align-items: center;
}
.contact-us-cadflyx li a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact-us-cadflyx li img{
  /* filter: grayscale(0); */
  filter: invert(1);
  opacity: 0.5;
}
.fallow-us,
.fallow-us ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  opacity: 0.6;
  margin-top: 4rem;
}
.fallow-us ul{
  margin: 0;
}
.fallow-us ul li{
  list-style: none;
  display: inline-block;
}
.fallow-us ul li img{
  transition: var(--transition);
  filter: grayscale(100%) invert(1);
}
.fallow-us ul li:hover img{
  transform: scale(1.1);
}
.vertical-line{
  width: 0.2rem;
  height: 100%;
  background: var(--gray);
  margin: auto;
}
.form-get-touch form{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.form-get-touch .form-group{
  width: 48%;
    margin-bottom: 0;
}
/* .form-get-touch .form-group, */
.form-get-touch .form-group:has(textarea) {
  width: 100%;
  margin-bottom: 0;
}
.form-get-touch form p{
  width: 100%;
}
.google-map iframe{
  width: 100%;
  height: 30rem;
}

.contact-us-cadflyx .call_box{
  display: block;
}
/* gallery page  */
.gallery_img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 25px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.defaultPage-inr-bnr{
  background-color: var(--gray-light);
}


.direct-cta .svg-icon{
  filter: invert(1);
  opacity: 0.6;
}
.floating{
  position: fixed;
  bottom: 10%;
  right: 20px;
}
.floating_link img{
  max-width: 50px;
  border-radius: 50%;
}