:root{
	--primary-color			: #2161AB;
	--secondery-color		: #F8F8F8;
	--text-color			: #040404;
	--accent-color			: #AF2072;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Instrument Sans", sans-serif;
}
* {
	box-sizing: border-box;
  }
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 120px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 120px 0;
}
h1{
    font-size: 64px;
    line-height: 62px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
}
h2{
    font-weight: 500;
    font-size: 56px;
    line-height:56px;
    color:#000;
    margin-bottom: 32px;
    letter-spacing: 0;
}
h3{
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}
p{
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
  text-transform: capitalize;
  position: relative;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  height: 49px;
  width: 202px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:18px 32px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color:var(--primary-color);
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #fff;
	transition: all 0.3s linear;
	background-color: var(--accent-color);
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 56px;
  z-index: 100;
  width: 100%;
}
.main-header .common-btn {
  font-size: 16px;
  height: 50px;
}
.outer-menu {
    height: 98px;
    max-height: 114px;
    padding:32px 0;
}
.outer-menu ul li{
    margin:0 8px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:#363535;
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: var(--accent-color)
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
  height: 50px;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color:#fff!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
}
.is-sticky .outer-menu {
  height: 77px;
  padding: 12px 32px;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  background-color: #F5F5F5;
  padding: 31px 24px;
}
.hero-bg {
  background: linear-gradient(206.93deg, #FFE0F6 50.54%, #DBCCFF 90.29%);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 96px 0;
  gap: 65px;
  isolation: isolate;
  position: relative;
  min-height: 1026px;
}
.hero-section h1 {
  margin-bottom: 24px;
}
.hero-section h1 span {
  color:var(--accent-color);
  display: block;
}
.hero-section p {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0;
}
.hero-section ul li {
  font-size: 20px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin:0 0 24px;
  background: url(../images/bullet-arrow.svg) no-repeat left top;
  padding-left: 25px;
}
.hero-content {
  max-width: 656px;
  padding: 260px 0 144px;
}
.hero-image {
   position: absolute;
   left: auto;
   right: 96px;
   bottom: 0;
}
.hero-bg::before {
  position: absolute;
  content: "";
  background-image:url(../images/hero-pattern1.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  top: 140px;
  right:339px;
  animation: Rotate 10s linear infinite;
} 
.hero-bg::after {
  position: absolute;
  content: "";
  background-image:url(../images/hero-pattern2.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  top: 266px;
  right: 20px;
  animation: Rotate 10s linear infinite;
} 
@keyframes Rotate
{from { transform: rotate(0deg) }
 to { transform: rotate(800deg) }
}
.hero-content .common-btn {
  margin-right: 8px;
}
.common-btn.bordered {
  background-color: transparent;
  border: #000000 solid 1px;
  color: var(--text-color);
}
.common-btn.bordered:hover{
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.enrolled-students {
  display: flex;
  align-items: center;
  margin: 32px 0 48px;
}
.enrolled-students span strong {
  font-size: 20px;
  line-height: 16px;
  font-weight: 600;
  color: #040404;
  display: block;
}
.enrolled-students span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #484848;
  padding-left: 8px;
}

/* courses-section */

.courses-section {
  position: relative;
  background-color: #F5F5F5;
  text-align: center;
  padding-bottom: 80px;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  text-transform: capitalize;
}
.section-title h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  width: 100px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--accent-color);
}
.section-title p {
  color: #373737;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 56px;
}
.course-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 /0.55;
}
.course-card {
  padding: 0 12px;
}
.course-item {
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  background-color:rgba(255,255,255,.4);
}
.course-category {
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  background-color: #FFE0F6;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
  vertical-align: top;
}
.course-category a {
  color: var(--accent-color);
}
.cat-b-voc {
  color: #3F20AF;
  background-color: #E3E0FF;
}
.cat-b-voc a {
  color: #3F20AF;
}
.cat-professional-certification {
  color: #20AF68;
  background-color: #E0FFF1;
}
.cat-professional-certification a {
  color: #20AF68;
}
.course-item h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}
.course-item p {
  font-size: 16px;
  font-weight: 500;
  color: #7E7E7E;
  margin-bottom: 9px;
}
.course-eligibility,
.course-duration {
  background-image: url(../images/eligibility-icon.svg);
  background-position:left top;
  background-repeat: no-repeat;
  padding-left: 32px;
  font-size: 14px;
  color: #282828;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: capitalize;
}
.course-duration {
  background-image: url(../images/calendar.svg);
}
.course-eligibility strong,
.course-duration strong {
  font-weight: 600;
  font-size: 16px;
}
.course-content {
  border: #DFDFDF solid 1px;
  border-top: none;
  padding: 12px 24px 24px;
  border-radius:0 0 24px 24px;
}
.course-item .common-btn {
  width: 100%;
  font-size: 16px;
}
.courses-section .slick-dots {
  margin-top: 15px;
}
.courses-section .slick-dots li,
.testimonial-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 1px;
}
.courses-section .slick-dots li button,
.testimonial-slider .slick-dots li button {
  font-size: 0;
  background-color: #DFDFDF;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}
.courses-section .slick-dots li.slick-active button,
.testimonial-slider .slick-dots li.slick-active button {
  background-color:var(--accent-color);
}
.courses-section .slick-arrow {
  position: absolute;
  width: 66px;
  height: 66px;
  background: rgba(0, 0, 0, 0.19);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 8px rgba(172, 172, 172, 0.5);
  backdrop-filter: blur(40px);
  border-radius: 67.5px;
  padding: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 0;
}
.courses-section .slick-next {
  right: -21px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.19);
}
.courses-section .slick-prev {
  display: none !important;
}

/* why choose section  */

.why-choose-section {
  position: relative;
  padding: 0 0 120px 0;
  background-color: #F5F5F5;
  text-align: center;
}
.why-choose-section .section-title {
  margin-bottom: 80px;
}
.why-choose-wrap {
  justify-content: center;
  align-items: center;
}
.why-choose-item {
background: #FFFFFF;
box-shadow: 0px 46px 18px rgba(163, 159, 159, 0.01), 0px 26px 15px rgba(163, 159, 159, 0.05), 0px 11px 11px rgba(163, 159, 159, 0.09), 0px 3px 6px rgba(163, 159, 159, 0.1);
border-radius: 24px;
padding: 40px 16px;
height: 100%;
}
.why-choose-icon img {
  margin: 0 auto;
}
.why-choose-item h3 {
color: #000000;
margin: 16px 0 24px;
}
.why-choose-item p {
color: #3F3F3F;
margin: 0 auto;
max-width: 270px;
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.why-choose-wrap .col-md-3 {
  padding-bottom: 24px;
}
.why-choose-wrap .col-md-3:last-child,
.why-choose-wrap .col-md-3:nth-last-child(2),
.why-choose-wrap .col-md-3:nth-last-child(3) {
  padding-bottom: 0;
}

.ads {
  padding:30px 0px 0;
  background: linear-gradient(88.62deg, #F2FCFE 1.17%, #1C92D2 120.33%);
  gap: 56px;
  display: flex;
}
.ads .container-fluid {
  padding: 0 80px 0 120px;
  display: flex;
}
.ads-content {
  padding: 113px 0;
  max-width: 1264px;
}
.ads-content-wrap {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
}
.ads-img {
  max-width: 420px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.ads h2 {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 80px;
  line-height: 89px;
  color: #373A3C;
  max-width: 660px;
}
.ads p {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #2A2A2A;
  text-transform: capitalize;
}
.ads-content .common-btn {
  font-size: 24px;
  line-height: 20px;
  border-radius: 16px;
  padding: 16px 24px;
  width: 206px;
  height: 56px;
}
.ads-content .common-btn svg {
  margin-left: 10px;
}


/*  testimonials */
.testimonials {
  position: relative;
  padding-bottom: 180px;
}
.testimonials .section-title {
  margin-bottom: 56px;
  text-align: center;
}
/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-card {
  padding: 0 12px;
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
  background-color: #F7F7F7;
  border-radius: 48px;
  padding:24px 40px 20px 24px;
  display: flex;
  height: auto;
  overflow: hidden;
}
.testimonial-card img {
  border-radius: 24px;
  margin-bottom: 0;
}
.testimonial-text {
  background: url(../images/quote.svg) no-repeat 32px top;
  padding: 125px 0 0 32px;
  width: 72%;
}
/* Text */
.testimonial-text p {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px !important;
  color: #646464;
  font-weight: 500;
}

.testimonial-author,
.testimonial-location {
  text-align: right;
  font-size: 20px;
  line-height: 24px;
  color: #202020;
  font-weight: 600;
}
.testimonial-author {
   font-style: italic;
}
.testimonial-location {
  font-size: 16px;
  font-weight: 500;
}
.testimonial-location p {
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 500;
  margin: 0 !important;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top:auto;
  bottom: -86px;
  z-index: 10;
  background-color: #DCDCDC;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 8px;
  text-align: center;
  font-size: 0;
  border: none;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background-image: url(../images/sider-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(0%) sepia(83%) saturate(7432%) hue-rotate(8deg) brightness(113%) contrast(87%);
}
.testimonial-slider .slick-prev::before {
  transform: rotate(180deg);
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
}
.testimonial-slider .slick-next {
  right: 0;
}
.testimonial-slider  .slick-dots {
  text-align: right;
  bottom: -74px;
  position: absolute;
  right: 148px;
}
/* Footer */
  .footer {
      background-color: #D8D8D8;
      color: #ffffff;
      padding: 96px 0 20px;
  }
  .footer-content {
      display: flex;
      justify-content: space-between;
      margin-top: 56px;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-title {
      font-size: 24px;
      font-weight: 700;
      line-height: 28px;
      text-transform: capitalize;
      color: #000;
      margin-bottom: 15px;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#000;
      text-decoration: none;
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5; 
  }
    .footer-link a {
      color:#000;
    }
  .footer-link:hover,
  .footer-section li a:hover {
      opacity:1;
  }
    .footer-section p {
      font-size: 22px;
      font-weight: 500;
      line-height: auto;
      color:#000;
      text-decoration: none;
      margin-bottom: 15px;
      transition: color 0.3s ease;
      opacity: 0.5; 
    }
  .footer-logo {
    position: relative;
  }
  .footer-brand-logo {
    position: absolute;
    bottom: 14px;
    right: 0;
    max-width: 350px;
  }
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#000000;
      border-top: 1px solid #575757;
      padding: 16px 0;
      margin-top: 48px;      
  }
  .footer-copyright-text {
      opacity: 0.7;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#000000;
     margin: 0;
     text-align: right;     
  }
  .designed span {
    opacity: 0.73;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }

  /* inner banner */
  .inner-header  {
    top: 0 !important;
    position: relative;
  }
  .inner-hero-section .container-fluid {
    padding: 0 10px !important;
  }
  .inner-header .outer-menu {
    border-radius: 0;
  }
  .inner-hero-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 119px;
    border-radius: 24px;
    min-height: 546px;
    position: relative;
  }
    .inner-hero-content {
      position: absolute;
      width: 100%;
      bottom: 119px;
      left: 0;
      padding: 0 128px;
    }
  .inner-hero-content h1 {
    font-weight: 800;
    font-size: 96px;
    line-height: 80px;
    letter-spacing: -4px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
  }
  .inner-hero-section {
    padding: 0;
  }

  /* About page */

  .about-page-section {
    position: relative;
    padding: 80px 0 0 0;
    background: #FEFEFE;
  }
  .about-page-section h2,
  .service-page-section h2 {
    text-align: center;
    margin-bottom: 48px;
  } 
  .about-page-img {
    border-radius: 24px;
    overflow: hidden;
  }
  .about-page-content {
    padding-left: 32px;
  }
  .about-page-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #919191;
    margin-bottom: 0;
  } 
  .about-page-text {
    align-items: center;
  }
 .counter-section {
  max-width: 1225px;
  margin: 56px auto;  
 }
  .counter-section .stat-item {
    width: 20%;
  }
  .counter-section .stat-item .stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 28px;
  }
  .counter-section .stat-label {
    color: #646464;
    max-width: 125px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  .counter-section .stats-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    gap: 32px;
  }
  .vission-mission{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .vission-mission-item {
    width: 49.5%;
    padding:0;
  }
  .mission-item {
    background-color: #E0F3FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 56px 32px;
    gap: 16px;
    border-radius: 24px;
    height: 100%;
  }
  .mission-item h4 {
    font-size: 32px;
    line-height: 32px;
    color:var(--primary-color)
  }
  .mission-item p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #646464;
  }
  .mission-item h4,
  .mission-item p {
    margin-bottom: 0;
  }
  .about-why-choose {
    position: relative;
    padding: 80px 0 !important;
    background: #FEFEFE;
  }
  .accreditation {
    position: relative;
    padding: 0 0 160px;
    background: #FEFEFE;
    text-align: center;
  }
  .accreditation-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1156px;
    margin: 0 auto;
  }
  .accreditation-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background-color: #fff;
    padding: 40px 16px;
    gap: 24px;
    border: 1px solid #B7B7B7;
    width: calc(25% - 16px);
  }

  /* course page section */

.courses-page-section .course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}
.courses-page-section .course-card {
    width: calc(33.33% - 20px);
    padding: 0;
}
.course-category-section h3 {
font-weight: 600;
font-size: 32px;
line-height: 40px;
text-transform: capitalize;
color: var(--accent-color);
margin-bottom: 5px;
text-align: left;
}
.course-category-section p {
font-weight: 600;
font-size: 24px;
line-height: 40px;
text-transform: capitalize;
color: #373737;
margin: 0;
text-align: left;
}
.course-item p {
  font-size: 16px;
  font-weight: 500;
  color: #7E7E7E;
  margin-bottom: 12px;
  line-height: 16px;
}
.course-category-section {
  margin-bottom: 80px;
}
.courses-page-section hr {
  display: none;
}
@media(max-width: 768px) {
    .courses-page-section .course-card {
        width: 100%;
    }
}

/* course detail page */
.details-page-image-banner {
  padding: 0;
}
.details-page-image-banner img {
  width: 100%;
  height: 800px;
  object-fit: cover;
} 
.course-details-section{
  padding: 80px 0;
}
.course-details-section h3 {
  font-weight: 600;
  font-size: 48px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.course-details-section p {
  color: #7E7E7E;
  margin-bottom: 50px;
}
.course-details-img {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}
.course-details-img img {
  object-fit: cover;
  height: 100%;
}
.course-details-text {
  margin-left: 8px;
  background: #D8EAFF;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
}
.course-details-text ul li {
  list-style: none;
  margin-bottom: 12px;
  color: #282828;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}
.course-details-text ul li strong {
  font-weight: 600;
}
.overview {
  padding: 72px 0 20px;
}
.course-details-section h4 {
font-weight: 600;
font-size: 24px;
line-height: 24px;
color: #2161AB;
margin-bottom: 20px;
}
.course-details-section p {
font-weight: 500;
font-size: 18px;
line-height: 24px;
color: #7E7E7E;
}
.course-details-points ul li {
  font-size: 18px;
  line-height: 16px;
  font-weight: 500;
  color:#7E7E7E;
  margin: 0 0 16px 8px;
  background: url(../images/bullet-arrow-pink.svg) no-repeat left top;
  padding-left: 25px;
}

/* Contact page */

.contact-page-section,
.map {
  position: relative;
  background-color: #F8F8F8;
}
.contact-page-section {
  padding-bottom: 48px;
}
.contact-page-section h2 {
  margin-bottom: 44px;
}
.contact-page-section .contact-content {
  background: #C5D2E9;
  border-radius: 60px;
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
  position: relative;
  padding: 30px 0 0;
}
.contact-page-section .wpcf7-spinner {
  display: none;
}
.contact-text {
  max-width: 477px;
  padding-left: 67px;
}
.contact-logo {
  position: absolute;
  bottom: 9%;
}
.contact-page-section .contact-content h3 {
  font-weight: 600;
  font-size: 64px;
  line-height: 58px;
  color: #003C81;
  margin-bottom: 100px;
}
.contact-page-section .contact-content ul {
  margin-bottom: 113px;
}
.contact-page-section .contact-content ul li {
  font-size: 20px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin:0 0 24px;
  background: url(../images/bullet-arrow.svg) no-repeat left top;
  padding-left: 25px;
}
.contact-info h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.contact-info p {
  color: #383838;
  line-height: auto;
  opacity: 0.5;
  margin-bottom: 13px;
}
.contact-info p a {
  color: #383838;
}
.social-icon ul li {
  margin: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: top;
}
.social-icon ul li a {
  width: 44px;
  height: 44px;
  background:rgba(115, 115, 115, 0.12);
  border-radius: 40px;
  font-size: 20px;
  color: #000000;
  display: block;
  text-align: center;
  line-height: 44px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background:var(--accent-color);
   color: #fff;
}
.contact-info p {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.contact-info p span:first-child {
  width: 17%;
}
.contact-info p span:last-child {
  width: 83%;
  padding-left: 10px;
}
.map {
  padding-bottom: 120px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 64px 0px 48px;
}
.contact-form .form-group {
  margin-bottom: 10px;
} 
.contact-form p {
  margin: 0;
}
.contact-form h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #AF2072;
  margin-bottom: 26px;
  text-transform: capitalize;
}
.contact-form label 
{
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #9794AA;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #CBCAD7;
  border-radius: 6px;
  padding: 19.5px 20px 17.5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #686677;
  text-transform: capitalize;
  width: 100%;
  background-color: transparent;
}
.contact-form select {
  background-color: transparent;
}
.contact-form textarea {
  height: 103px;
}
.country-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding:17px 8px 17px 16px;
  cursor: pointer;
  position: relative;  
}
.country-picker p{
 font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #686677;
  width: 28px;
}
  .country-picker::after {
    position: absolute;
    top: 50%;
    right:0;
    content: "";
    width: 1px;
    height: 32px;
    background-color:#CBCAD7;
    transform: translate(0, -50%);
  }
  .country-flag {
      width: 24px;
      height: 24px;
  }
   .phone-input {
      display: flex;
      align-items: center;
      border-radius: 8px;
      overflow: hidden;
       border: 1px solid #CBCAD7;
       font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #686677;
  }
   .phone-input input{
      flex: 1;
      border: none;
      background: transparent;
      padding-left: 8px;
  }
  .contact-form  input[type="submit"] 
  {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    height: 64px;
    margin-top: 23px;
  }
  .contact-form  input[type="submit"]:hover {
    background-color: var(--accent-color);
    color:#fff;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    margin-right: 10px;
  }
  .contact-info li {
    padding: 0 15px 0 56px;   
    font-weight: 500;
    font-size: 14px;
    color: #7B7B7B;
    margin-bottom: 48px;
    max-width: 320px;
  }
  .contact-info li a {
    color: #7B7B7B;
  }
   .contact-info li.email-address {
    background: url(../images/sms.svg) no-repeat left 4px;
   }
   .contact-info li.whatsapp {
    background: url(../images/whatsapp-icon.svg) no-repeat left 4px;
   }
   .contact-info li.address {
    background: url(../images/location.svg) no-repeat left 4px;
    max-width: 280px;
   }
   .contact-info li.call {
    background: url(../images/call.svg) no-repeat left 4px;
   }
  .contact-info li h6 {
     font-weight: 700;
     font-size: 16px;
     color: #000000;
     text-transform: uppercase;
     margin-bottom: 3px;
  }
  .contact-map iframe{
    border-radius: 24px;
  } 


/* gallery */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  margin: 0;
}
.gallery-item img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-page-section {
  text-align: center;
  padding-bottom: 64px;
  background: #F8F8F8;
}
.gallery-page-section h2,
.admission-page-section h2 {
  margin-bottom: 75px;
}
.video-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-gallery-item {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  height: 450px;
  width: calc(33.3% - 16px);
}
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto 20px;
}

/* admissions */
.admission-page-section {
   background-color: #F5F5F5;
   padding: 80px 0 160px;
}
.how-apply h4,
.eligibility-criteria h4 {
font-weight: 600;
font-size: 32px;
line-height: 40px;
text-transform: capitalize;
color: var(--accent-color);
text-align: center;
}
.how-apply-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 100px;
  max-width: 1332px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.apply-item {
  padding: 40px 60px;
  border: 1px solid #CDCDCD;
  border-radius: 32px;
  position: relative;
  text-align: center;
  width: calc(26.8% - 100px);
}
.apply-item::after {
  position: absolute;
  content: "";
  width: 82px;
  height: 12px;
  background: url(../images/step-arrow.svg) no-repeat center;
  top: 50%;
  transform: translate(0, -50%);
  left: 104%;
}
.apply-item:last-child::after {
  display: none;
}
.step-icon {
  display: table;
  margin: 0 auto;
  margin-bottom: 24px;
}
.step-label {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color:var(--primary-color);
}
.eligibility-criteria {
  margin-top: 50px;
}
.eligibility-criteria h4 {
  text-align: left;
}
.eligibility-criteria ul li {
  font-size: 20px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin: 0 0 24px;
  background: url(../images/bullet-arrow.svg) no-repeat left top;
  padding-left: 25px;
}
.download {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 32px;
  margin-top: 64px;
}
.download-details {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: #1B1B1B;
  max-width: 740px;
}
.download-arrow {
  background: url(../images/download-icon.svg) no-repeat center top;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.download-btn-wrap .common-btn {
  width: 291px;
  height: 60px;
}
.download-btn-wrap .common-btn.bordered {
  margin-left: 16px;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.download-btn-wrap .common-btn svg,
.download-btn-wrap .common-btn i {
  margin-left: 10px;
}
.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
  	.jobPopup .modal-dialog .modal-content .modal-body p {
      font-size: 16px;
      line-height: 22px;
    }
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 50px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color:var(--primary-color)!important;
    color: var(--white-color);
    border-radius: 8px !important;
    padding: 12px;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color:var(--accent-color);
		color: var(--white-color);
	}

  /* media query */
  @media only screen and (max-width: 1850px){	
    .container-fluid {
      padding: 0 100px;
    }
    .ads .container-fluid {
      padding: 0 80px 0 100px;
    }
  }
  @media only screen and (max-width: 1800px){	
     .container-fluid {
      padding: 0 90px;
    } 
    .ads .container-fluid {
      padding: 0 50px 0 90px;
    }
    .course-item h4 {
      font-size: 21px;
    }   
    .course-item p {
      font-size: 15px;
    }
    .gallery-item img {
      width: 100%;
    }
    .gallery .gallery-item:first-child,
    .gallery .gallery-item:nth-child(2) {
      width: calc(36% - 16px);
    }
    .gallery .gallery-item:nth-child(3) {
      width: calc(28% - 16px);
    }
    .gallery .gallery-item:nth-child(4) {
      width: calc(60% - 16px);
    }
    .gallery .gallery-item:nth-child(5) {
      width: calc(40% - 16px);
    }
    .gallery .gallery-item:nth-child(6),
     .gallery .gallery-item:nth-child(9)  {
      width: calc(30% - 16px);
    }
    .gallery .gallery-item:nth-child(7),
     .gallery .gallery-item:nth-child(8)  {
      width: calc(20% - 16px);
    }
    .vission-mission-item {
      width: 49.4%;
    }
    .details-page-image-banner img {
      height: 700px;
    } 
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }
     .ads .container-fluid {
      padding: 0 40px 0 80px;
    }
    section {
      padding: 100px 0;
    }
   .hero-bg {
    padding: 0 53px 0;
    min-height: 980px;
   }
   .hero-image {
    right: 53px;
    z-index: 10;
   }
   h3 {
    font-size: 23px;
    line-height: 27px;
   }
    .ads p {
      font-size: 28px;
    }
    .ads-content {
      padding: 100px 0;
      max-width: 1002px;
    }
    .testimonial-text {
      padding: 105px 0 0 30px;
    }
    .testimonial-text p {
      font-size: 22px;
      line-height: 30px;
    }
    .footer-section p,
    .footer-link, .footer-section li a {
      font-size: 20px;
    }
    .hero-bg::before { 
      top: 80px;
    }
    .hero-content {
      max-width: 656px;
      padding: 210px 0 144px;
    }
    .details-page-image-banner img {
      height: 650px;
    } 
}
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    h1 {
      font-size: 55px;
      line-height: 52px;
    }
    h2 {
      font-size: 50px;
      line-height: 50px;
    }
    p {
      font-size: 22px;
      line-height: 30px;
    }
     .hero-image {
      right: 15px;
    }
    .hero-content {
      max-width: 600px;
      padding: 210px 0 144px;
    }
    section {
      padding: 80px 0;
    }
    .courses-section {
      padding-bottom: 60px;
    }
    .section-title p {
      font-size: 30px;
      line-height: 30px;
      margin-bottom: 45px;
    }
    .course-content {
      padding: 12px 15px 24px;
      min-height: 285px;
    }
    .course-item h4 {
      font-size: 20px;
      line-height: 24px;
    }
     h3 {
      font-size: 22px;
      line-height: 26px;
    }
    .why-choose-item h3 {
      margin: 16px 0 20px;
    }
    .why-choose-item {
      padding: 30px 16px;
    }
    .why-choose-section {
      padding: 0 0 100px 0;
    }
    .ads {
      padding: 0;
    }
    .testimonial-text {
      padding: 95px 0 0 25px;
    }
    .testimonials {
      padding-bottom: 160px;
    }
    .footer {
      padding: 80px 0 20px;
    }
    .footer-content {
      margin-top: 45px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 19px;
    }
    .contact-page-section .contact-content {
      min-height: 742px;
      position: relative;
    }
    .contact-image {
      position: absolute;
      right: 0;
      bottom: 121px;
      height: 600px;
    }
    .accreditation {
      padding-bottom: 140px;
    }
    .inner-hero-img {
      min-height: 500px;
    }
    .admission-page-section {
      padding: 80px 0 140px;
    }
   .gallery-page-section h2, 
   .admission-page-section h2 {
      margin-bottom: 65px;
    }
    .details-page-image-banner img {
      height: 600px;
    } 
    .contact-text {
      padding-left: 50px;
    }
    .contact-page-section .contact-content ul li {
      position: relative;
      z-index: 10;
      font-size: 18px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 18px;
    }
    .hero-section {
      padding: 20px 15px;
    }
     .hero-bg {
      padding: 0 33px 0;
      min-height: 885px;
    }
    .hero-image {
      max-width: 750px;
    }
    .hero-bg::before {
      top: 102px;
      right: 224px;
    }
    .hero-bg::after {
      top: 177px;
    }
     .why-choose-item {
      min-height: 265px;
    }
    .ads .container-fluid {
      padding: 0 15px 0 50px;
    }
    .ads p {
      font-size: 27px;
    }
    .ads h2 {
      font-size: 76px;
      line-height: 84px;
      margin-bottom: 35px;
    }
    .ads-content {
      max-width: 905px;
    }    
    .testimonial-text {
      padding: 80px 0 0 25px;
      background-size: 80px;
      width: 75%;
    }
    .inner-hero-content h1 {
      font-size: 70px;
      line-height: 70px;
    }
    .vission-mission {
      gap: 12px;
    }
    .download-btn-wrap .common-btn {
        width: 282px;
        height: 60px;
    }
    .download-details {
       max-width: 568px;
    }
    .gallery {
      gap: 15px;
    }
    .contact-form {
      padding: 24px 40px 0px 28px;
    }
    .contact-text {
      max-width: 477px;
      padding-left: 50px;
    }
    .apply-item {
      padding: 35px 50px;
    }
    .details-page-image-banner img {
      height: 600px;
    } 
  }
 @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }   
    .outer-menu {
      padding: 20px 15px;
    }
    .is-sticky .outer-menu {
      padding: 12px 0;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }
    h1 {
      font-size: 54px;
      line-height: 50px;
      margin-bottom: 25px;
    }
    h2 {
      font-size: 46px;
      line-height: 46px;
      margin-bottom: 25px;
    }
    p,
    .hero-section p {
      font-size: 20px;
      line-height: 28px;
    }
    .hero-content {
      max-width: 540px;
    }
    .main-header {
      top: 25px;
    }
    .hero-content .common-btn {
      font-size: 18px;
    }
    section {
      padding: 90px 0;
    }
    .section-title p {
      font-size: 26px;
      line-height: 26px;
      margin-bottom: 40px;
    }
    .ads h2 {
      font-size: 74px;
      line-height: 82px;
      margin-bottom: 35px;
      max-width: 635px;
    }
    .ads p {
      font-size: 26px;
    }
    .social-icon ul li a {
      width: 42px;
      height: 42px;
      line-height: 42px;
    }
    .footer-section p, .footer-link, .footer-section li a {
      font-size: 17px;
    }
    .testimonial-text p {
      font-size: 20px;
      line-height: 27px;
    }
    .accreditation {
      padding-bottom: 120px;
    }
    .inner-hero-img {
      min-height: 450px;
    }
    .about-page-section {
      padding-top: 70px;
    }
    .course-category-section {
      margin-bottom: 70px;
    }
    .courses-page-section .course-grid {
      margin-top: 40px;
    }
    .course-details-section p {
      margin-bottom: 40px;
    }
    .course-details-section h4 {
      font-size: 22px;
    }
    .course-details-text ul li {
      margin: 0 0 10px 0;
      font-size: 18px;
    }
    .course-details-text ul li:last-child {
      margin-bottom: 0;
    }
    .course-details-section {
      padding: 70px 0;
    }
    .course-details-section h3 {
      font-size: 40px;
    }
    .overview {
      padding: 60px 0 10px;
    }
    .contact-image {
      bottom: 0;
      height: 620px;
    }
    .contact-image img {
    height: 100%;
    }
    .contact-page-section .contact-content {
      align-items: self-start;
      min-height: 650px;
    }
    .contact-text {
      padding-top: 30px;
    }    
     .contact-form {
    padding: 24px 15px 0px 25px;
  }
  .contact-form input, 
  .contact-form select, 
  .contact-form textarea {
    padding: 15.5px 20px 13.5px;
  }
  .contact-form h4 {
    margin-bottom: 15px;
  }
  .contact-form textarea {
    height: 70px;
  }
  .contact-form input[type="submit"] {
    height: 54px;
    line-height: 20px;
    margin-top: 18px;
  }
  .contact-info li {
    margin: 0 0 40px 0;
  }
  .contact-info {
    padding: 25px 32px 0;
  }
  .contact-map iframe {
    height: 447px !important;
  }
  .map {
  padding-bottom: 100px;
}
.admission-page-section {
      padding: 70px 0 120px;
    }
    .gallery-page-section h2, 
   .admission-page-section h2 {
      margin-bottom: 55px !important;
    }
    .details-page-image-banner img {
      height: 550px;
    } 
    .video-gallery-item {
      height: 400px;
    }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }
    .hero-content {
      max-width: 540px;
      padding: 100px 0 40px;
    }
    .hero-bg {
      padding: 0 33px 0;
      min-height: 740px;
    }
    .ads p {
      font-size: 25px;
    }
    .ads-content {
      max-width: 730px;
    }
    .social-icon ul li a {
      width: 38px;
      height: 38px;
      line-height: 38px;
      font-size: 18px;
    }
    .hero-image {
      max-width: 635px;
    }
    .course-item h4 {
      font-size: 18px;
      line-height: 22px;
    }
    .course-content {
      padding: 12px 15px 24px;
      min-height: 270px;
    }
    .why-choose-section .section-title {
      margin-bottom: 60px;
    }
    .how-apply h4, .eligibility-criteria h4 {
      font-size: 30px;
    }
    .step-label {
      font-size: 20px;
      line-height: 24px;
    }
    .apply-item:last-child .step-label {
      width: 80%;
      margin: 0 auto;
    }
    .details-page-image-banner img {
      height: 500px;
    } 
  }
  @media only screen and (max-width: 1200px){	   
    .outer-menu {
      padding: 12px 5px;
      height: 80px;
    }
    .outer-menu ul li a {
      font-size: 16px;
      line-height: 18px;
    }
    h1 {
      font-size: 50px;
      line-height: 48px;
      margin-bottom: 25px;
    }
    h2 {
      font-size: 42px;
      line-height: 46px;
      margin-bottom: 25px;
    }
    .section-title h2 {
      margin-bottom: 25px;
      padding-bottom: 25px;
    }
    .section-title p {
      font-size: 24px;
      line-height: 24px;
      margin-bottom: 35px;
    }
    p,
    .hero-section p {
      font-size: 18px;
      line-height: 26px;
    }
    .hero-content {
      max-width: 500px;
    }
    .hero-content .common-btn,
    .gallery h3 {
      font-size: 18px;
    }
    section {
      padding: 70px 0;
    }
    .hero-section ul li {
      font-size: 18px;
    }
    .ads h2 {
      font-size: 72px;
      line-height: 78px;
      margin-bottom: 20px;
      max-width: 620px;
    }
    .ads-content {
      max-width: 635px;
      padding: 70px 0;
    }
    .ads-img {
      max-width: 360px;
    }
    .ads-content .common-btn {
      font-size: 22px;
    }
    .testimonial-content {
      padding: 20px 20px 24px 20px;
    }
    .testimonial-text { 
      background-position: 22px top;
      padding: 75px 0 0 25px;
    }
    .testimonial-text p {
      font-size: 18px;
      line-height: 26px;
    }
    .testimonial-author, .testimonial-location {
      font-size: 18px;
      line-height: 22px;
    }
    .testimonial-location p {
      font-size: 13px !important;
      line-height: 15px !important;
    }
    .testimonials {
      padding-bottom: 140px;
    }
    .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
      bottom: -70px;
    }
    .testimonial-slider .slick-dots {
      bottom: -62px;
    }
    .social-icon ul li {
      margin-right: 2px;
    }
    .social-icon ul li a {
      width: 36px;
      height: 36px;
      line-height: 36px;
      font-size: 18px;
    }
    .footer {
      padding: 60px 0 20px;
    }
    .footer-copyright {
      margin-top: 30px;
    }
    .accreditation {
      padding-bottom: 100px;
    }
    .inner-hero-img {
      min-height: 400px;
    }
    .inner-hero-content h1 {
      font-size: 60px;
      line-height: 60px;
    }
    .about-page-section {
      padding-top: 60px;
    }
    .about-page-content p,
    .mission-item p {
      font-size: 18px;
      line-height: 29px;
    }
    .counter-section .stat-item .stat-number{
      font-size: 50px;
      margin-bottom: 20px;
    }
    .counter-section .stat-label {
      font-size: 18px;
      line-height: 22px;
    }
    .counter-section {
      margin: 45px auto;
    }
    .about-why-choose {
      padding: 70px 0 !important;
    }
    .accreditation-wrap {
      gap: 10px;
    }
    .accreditation-item {
      width: calc(25% - 10px);
    }
    .inner-hero-content {
      bottom: 80px;
    }
    .course-category-section {
      margin-bottom: 60px;
    }
    .courses-page-section .course-grid {
      margin-top: 35px;
    }
    .course-category-section h3 {
      font-size: 30px;
      line-height: 36px;
    }
    .course-category-section p{
      font-size: 22px;
      line-height: 32px;
    }
    .course-details-section {
      padding: 60px 0;
    }
    .course-details-section h3 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    .overview {
      padding: 50px 0 10px;
    }
    .course-details-points ul li {
      font-size: 16px;
      margin-left: 0;
    }
    .course-details-section h4 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .contact-form {
      padding: 24px 0 0px 15px;
    }
    .contact-image {
      height: 564px;
    }
    .contact-page-section .contact-content h3 {
      font-size: 56px;
      line-height: 54px;
    }
    .contact-text {
      padding-left: 20px;
    }
    .map {
      padding-bottom: 80px;
    }
    .contact-page-section {
      padding-bottom: 40px;
    }
    .contact-info li {
      margin: 0 0 30px 0;
    }
    .contact-map iframe {
      height: 402px !important;
    }
    .admission-page-section {
      padding: 60px 0 100px;
    }
    .gallery-page-section h2, 
   .admission-page-section h2 {
      margin-bottom: 45px !important;
    }
    .gallery-item {
      border-radius: 16px;
    }
    .apply-item {
      padding: 30px 30px;
    }
    .details-page-image-banner img {
      height: 450px;
    } 
    .video-gallery-item {
      height: 350px;
    }
  }
  @media only screen and (max-width: 1100px){	
       .hero-section {
          padding: 15px 10px;
        }
        .common-btn, .appointment-btn {
          width: 170px;
          padding: 18px 15px;
        }
        .hero-image {
          max-width: 570px;
        }
        h1 {
          font-size: 45px;
          line-height: 45px;
        }
        .hero-content {
        max-width: 475px;
      }
      .hero-bg {
        min-height: 650px;
        padding: 0 20px 0;
      }
      .hero-bg::after {
        width: 150px;
        height: 150px;
        background-size: 150px auto;
      }
      .hero-bg::before {
        top: 70px;
        right: 197px;
      }
      .course-card {
        padding: 0 8px;
      }
      .course-eligibility strong, .course-duration strong {
        font-weight: 600;
        font-size: 15px;
      }
      .course-content {
        padding: 12px 15px 20px;
        min-height: 290px;
      }
      .why-choose-section .section-title {
        margin-bottom: 50px;
      }
      .why-choose-section .section-title {
        margin-bottom: 40px;
      }
      .why-choose-item p {
        font-size: 18px;
        line-height: 24px;
      }
       .why-choose-item h3 {
          margin: 13px 0 15px;
       }
       .why-choose-item {
          padding: 25px 15px;
       }
       .why-choose-section {
          padding: 0 0 80px 0;
       }
       .ads h2 {
        font-size: 66px;
        line-height: 70px;
        margin-bottom: 15px;
        max-width: 560px;
      }
      .ads-img {
        max-width: 330px;
      }
      .testimonial-text {
        background-position: 22px top;
        padding: 60px 0 0 25px;
        background-size: 60px auto;
      }
      .social-icon ul li a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 17px;
      }
      .footer-section p, .footer-link, .footer-section li a {
        font-size: 16px;
        line-height: 22px;
      }
      .vission-mission-item {
        width: calc(50% - 12px);
      }
      .mission-item {
        padding: 40px 20px;
      }
      .mission-item h4 {
        font-size: 28px;
        line-height: 32px;
      }
      .contact-text {
        padding-left: 20px;
      }
      .contact-page-section .contact-content ul li {
        margin-bottom: 18px;
        padding-left: 22px;
        font-size: 16px;
      }
      .contact-page-section .contact-content {
        min-height: 611px;
      }
      .contact-image {
        height: 535px;
      }
      .how-apply h4 {
        font-size: 26px;
      }
      .how-apply-grid {
        gap: 70px;
      }
      .apply-item {
        width: calc(26.8% - 70px);
      }
      .apply-item::after { 
        background-size: 60px auto;
        width: 70px;
        left: 101%;
      }
      .eligibility-criteria {
        margin-top: 40px;
      }
      .eligibility-criteria ul li {
        font-size: 18px;
      }
      .download-details {
        font-size: 22px;
        line-height: 30px;
      }
      .download-btn-wrap .common-btn {
        width: 240px;
        height: 60px;
      }
      .details-page-image-banner img {
      height: 400px;
    } 
    }
  @media only screen and (max-width: 991px){
    .main-header {
      top: 15px;
    }
    .is-sticky .outer-menu {
      padding: 12px 15px;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 15px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--text-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--text-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
  
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section {
    padding: 50px 0;
  }
   h1{
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 20px;
  }
   h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }  
  .hero-bg {
    flex-wrap: wrap;
    gap: 0;
  }
  .hero-content {
    max-width: 100%;
    padding: 100px 0 0;
  }
  .hero-image {
    max-width: 570px;
    position: relative;
    margin: 0 auto;
  }
   .hero-bg::before {
    top: 50%;
    right: 234px;
  }
   .hero-bg::after {
    top: 55%;
  }
  .enrolled-students {
    margin: 25px 0 30px;
  }
  .section-title p {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .course-item h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .course-item p {
    font-size: 14px;
  }
   .course-eligibility strong, .course-duration strong {
    font-size: 14px;
  }
  .course-eligibility, .course-duration {
    font-size: 13px;
  }
  .common-btn, .appointment-btn {
    height: 45px;
  }
  .why-choose-wrap .col-md-3 {
    width: 50%;
  }
  .why-choose-item {
    min-height: 225px;
  }
  .why-choose-wrap .col-md-3:nth-last-child(2), .why-choose-wrap .col-md-3:nth-last-child(3) {
    padding-bottom: 24px;
  }
  .ads .container-fluid {
    padding: 0 15px 0 15px;
  }
  .ads h2 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    max-width: 480px;
  }
   .ads p {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
  }
   .ads-content {
    max-width: 490px;
    padding: 50px 0;
  }
  .ads-content .common-btn {
    font-size: 20px;
    width: 180px;
    height: 50px;    
  }
   .ads-img {
    max-width: 270px;
  }
  .testimonials .section-title {
    margin-bottom: 40px;
  }
  footer .col-md-2 {
    width: 33.33%;
  }
  footer .col-md-3 {
    width: 66%;
    padding-top: 20px;
  }
  .footer {
    padding: 50px 0 0;
  }
  .course-category {
    font-size: 12px;
  }
  .course-content {
    padding: 12px 15px 20px;
    min-height: 280px;
  }
  .menu-logo {
    display: block;
  }
  .inner-hero-img {
    min-height: 350px;
    padding: 50px 15px;
  }
   .inner-hero-content h1 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -2px;
  }
  .inner-hero-content {
    padding: 0 50px;
    bottom: 60px;
  }
  .about-page-text .col-md-4,
  .about-page-text .col-md-8 {
    width: 100%;
  }
  .about-page-img img {
    width: 100%;
  }
  .about-page-content {
    padding-left: 0;
    padding-top: 30px;
  }
  .counter-section {
    margin: 35px auto;
  }
  .counter-section .stats-grid {
    gap: 20px;
  }
  .counter-section .stat-item .stat-number {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .counter-section .stat-label {
    font-size: 16px;
    line-height: 20px;
  }
   .mission-item {
    padding: 30px 15px;
    gap:12px;
  }
  .about-page-content p, .mission-item p {
    font-size: 16px;
    line-height: 27px;
  }
  .about-why-choose {
    padding: 60px 0 !important;
  }
   .accreditation {
    padding-bottom: 80px;
  }
   .about-page-section {
    padding-top: 50px;
  }
   .course-category-section {
      margin-bottom: 40px;
    }
    .courses-page-section .course-grid {
      margin-top: 25px;
    }
    .course-category-section h3 {
      font-size: 26px;
      line-height: 30px;
    }
    .course-category-section p{
      font-size: 20px;
      line-height: 30px;
    }
    .courses-page-section {
      padding-bottom: 20px;
    }
    .course-details-section {
    padding: 50px 0;
  }
   .course-details-section h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }
   .course-details-section p {
    margin-bottom: 30px;
  }
  .course-details-text {
    padding: 30px 25px;
  }
   .course-details-section h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .course-details-section p {
      font-size: 16px;
      line-height: 23px;
    }
    .course-details-points ul li {
      font-size: 15px;
      margin-left: 0;
      background-size: 12px;
      padding-left: 21px;
      background-position: left 2px;
    }
    .contact-text {
      padding-top: 30px;
    }
    .contact-page-section .contact-content {
      min-height: 529px;
    }
    .contact-page-section .contact-content h3 {
      margin-bottom: 60px;
    }
   .contact-form {
    padding: 30px 0 0px 0;
  }
   .contact-form .wpcf7,
   .map .col-md-7,
   .map .col-md-5  {
    width: 100%;
  }
  .contact-info {
    margin-bottom: 30px;
  }
  .map {
    padding-bottom: 70px;
  }
   .contact-map iframe {
    height: 350px !important;
  }
   .admission-page-section {
      padding: 50px 0 80px;
    }
   .gallery-page-section h2, .admission-page-section h2 {
    margin-bottom: 35px !important;
  }
   .gallery {
    gap: 10px;
  }
  .gallery .gallery-item:first-child,
  .gallery .gallery-item:nth-child(2) {
    width: calc(36% - 10px);
  }
  .gallery .gallery-item:nth-child(3) {
    width: calc(28% - 10px);
  }
  .gallery .gallery-item:nth-child(4) {
    width: calc(60% - 10px);
  }
  .gallery .gallery-item:nth-child(5) {
    width: calc(40% - 10px);
  }
  .gallery .gallery-item:nth-child(6),
    .gallery .gallery-item:nth-child(9)  {
    width: calc(30% - 10px);
  }
  .gallery .gallery-item:nth-child(7),
    .gallery .gallery-item:nth-child(8)  {
    width: calc(20% - 10px);
  }
   .apply-item {
    width: calc(50% - 70px);
  }
  .apply-item:nth-child(2):after {
    display: none;
  }
  .download-btn-wrap .common-btn {
    width: 190px;
    height: 60px;
  }
   .download-details {
    font-size: 20px;
    line-height: 28px;
  }
  .download {
    padding: 25px;
    margin-top: 50px;
  }
  .details-page-image-banner img {
      height: 350px;
   } 
   .video-gallery-item {
      height: 300px;
    }
}
@media only screen and (max-width: 767px){
  p, .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  h1 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
  }
   .course-content {
    min-height: auto;
  }
  .why-choose-section {
    padding: 0 0 60px 0;
  }
  .ads-content {
    max-width: 377px;
    padding: 40px 0;
  }
  .ads h2 {
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 15px;
    max-width: 420px;
  }
   .ads p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
   .ads-img {
    max-width: 240px;
  }
   .section-title p {
    font-size: 20px;
    line-height: 24px;
   }
   .footer-copyright {
    margin-top: 20px;
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 10px;
  }
  .footer-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
   .hero-section ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .enrolled-students {
    margin: 20px 0 25px;
  }
  .accreditation {
    padding-bottom: 60px;
  }
  .accreditation-item {
    padding: 30px 10px;
  }
  .mission-item h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .inner-hero-img {
    min-height: 300px;
    padding: 50px 0;
  }
   .inner-hero-content h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  .inner-hero-content {
    padding: 0 20px;
    bottom: 40px;
  }
   .about-page-section {
    padding-top: 40px;
  }
   .counter-section .stat-item .stat-number {
    font-size: 32px;
    line-height: 32px;
   }
   .course-category-section h3 {
      font-size: 22px;
      line-height: 26px;
    }
    .course-category-section p{
      font-size: 18px;
      line-height: 26px;
    }
    .courses-page-section {
      padding-bottom: 10px;
    }
    .course-details-text ul li {
      margin: 0 0 6px 0;
      font-size: 16px;
    }
    .overview {
      padding: 40px 0 0;
    }   
    .course-details-text {
      padding: 30px 25px;
      margin-top: 20px;
      margin-left: 0;
    }
    .overview {
      padding: 30px 0 0;
    }
    .contact-image {
      height: 450px;
    }
     .contact-text {
      padding-top: 10px;
    }
    .contact-page-section .contact-content h3 {
    font-size: 50px;
    line-height: 50px;
  }
    .contact-page-section .contact-content {
    min-height: 480px;
  }
  .contact-map iframe {
    height: 300px !important;
  }
  .admission-page-section {
      padding: 40px 0 60px;
    }
  .gallery-page-section {
   padding-bottom:50px;
 }
   .download-details {
    max-width: 100%;
  }
  .download {
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  }
  .download-details {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }
  .details-page-image-banner img {
      height: 300px;
   } 
   .video-gallery-item {
    width: 100%;
    height: 400px;
   }
}
@media only screen and (max-width: 600px){
 
   h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .hero-section h1 {
    margin-bottom: 15px;
  }
  .section-title h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .section-title h2::after {
    height:6px;
  }
   .section-title p {
    font-size: 18px;
    line-height: 24px;
  }
  h3 {
    font-size: 21px;
    line-height: 26px;
  }
   .why-choose-item p {
    font-size: 16px;
    line-height: 22px;
  }
   .ads-img {
    display: none;
  }
   .ads-content {
    max-width: 100%;
    padding: 30px 0;
  }
  .accreditation {
    padding-bottom: 50px;
  }
   .accreditation-item {
    width: calc(33.33% - 10px);
  }
  .counter-section {
    margin: 25px auto;
  }
  .counter-section .stats-grid {
    flex-wrap: wrap;
  }
  .counter-section .stat-item {
    width: 33.33%;
  }
  .inner-hero-content h1 {
    font-size: 34px;
    line-height: 36px;
  }
  .course-details-section {
    padding: 40px 0;
  }
  .contact-image {
    height: 360px;
  }
  .contact-page-section .contact-content h3 {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 40px;    
  }
   .contact-page-section .contact-content ul li {
    margin-bottom: 16px;
    padding-left: 22px;
    font-size: 14px;
  }
  .contact-logo {
    width: 165px;
  }
  .map {
    padding-bottom: 60px;
  }
  .gallery .gallery-item:first-child,
  .gallery .gallery-item:nth-child(2) {
    width: calc(50% - 10px);
  }
  .gallery .gallery-item:nth-child(3) {
    width: calc(35% - 10px);
  }
  .gallery .gallery-item:nth-child(4) {
    width: calc(65% - 10px);
  }
  .gallery .gallery-item:nth-child(5) {
    width: calc(50% - 10px);
  }
  .gallery .gallery-item:nth-child(6),
    .gallery .gallery-item:nth-child(9)  {
    width: calc(50% - 10px);
  }
  .gallery .gallery-item:nth-child(7),
    .gallery .gallery-item:nth-child(8)  {
    width: calc(25% - 10px);
  }
    .apply-item {
    padding: 30px 20px;
    width: calc(50% - 40px);
  }
   .step-label {
    font-size: 18px;
    line-height: 22px;
  }
  .how-apply-grid {
    gap: 40px;
  }
    .apply-item::after{
      display: none;
    }
    .eligibility-criteria ul li {
    font-size: 16px;
  }
  .details-page-image-banner img {
      height: 250px;
   }
   .video-gallery-item {
    width: 100%;
    height: 350px;
   } 
}
@media only screen and (max-width: 500px){   
   h1{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
   }
   h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
   }
   p, .hero-section p {
    font-size: 14px;
    line-height: 22px;
  }
  .hero-section ul li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 17px;
    background-size: 10px auto;
    line-height: 12px;
  }
  .hero-section p {
    margin-bottom: 15px;
  }
  .hero-content .common-btn {
    font-size: 16px;
  }
   .common-btn, .appointment-btn {
    width: 155px;
    padding: 16px 15px;
  }
  .hero-bg::before {
    top: 60%;
    right: 234px;
  }
   .hero-bg::after {
    top: 64%;
    width: 100px;
    height: 100px;
    background-size: 100px auto;
    right: 10px;
  }
   .hero-bg {
    min-height: 650px;
    padding: 0 15px 0;
  }
   .why-choose-wrap .col-md-3 {
    width: 100%;
  }
  .why-choose-item {
    min-height: auto;
  }
  .ads h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .testimonial-content {
    flex-wrap: wrap;
  }
  .testimonial-text {
    width: 100%;
  }
    .testimonial-text {
    background-position: 0 top;
    padding: 60px 0 0 0;
    padding-left: 0px;
    background-size: 60px auto;
  }
  .testimonial-image {
    width: 100%;
  }
  .testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
   footer .col-md-2 {
    width: 100%;
    padding-bottom: 20px;
  }
  footer .col-md-3 {
    width: 100%;
    padding-top: 0;
  }
   .footer-content {
    margin-top: 30px;
  }
  .courses-section .slick-next {
    right: -10px;
  }
  .courses-section .slick-arrow {
    width: 50px;
    height: 50px;
    background-size: 25px auto;
  }
   .testimonials {
    padding-bottom: 100px;
  }
  .testimonial-slider .slick-dots {
    bottom: -45px;
  }
  .testimonial-slider .slick-dots {
    right: 110px;
  }
  .testimonial-slider .slick-prev, 
  .testimonial-slider .slick-next {
    bottom: -55px;
  }
  .hero-section {
    padding: 10px 10px;
  }
.accreditation {
    padding-bottom: 40px;
  }
   .vission-mission-item {
    width: 100%;
  }
   .inner-hero-img {
    min-height: 250px;
    padding: 30px 0;
  }
   .inner-hero-content h1 {
    font-size: 27px;
    line-height: 31px;
   }
   .about-page-content p, .mission-item p {
    font-size: 14px;
    line-height: 24px;
  }
   .course-category-section h3 {
      font-size: 20px;
      line-height: 24px;
    }
    .course-category-section p{
      font-size: 16px;
      line-height: 24px;
    }
    .course-details-section h3 {
      font-size: 26px;
      margin-bottom: 10px;
    }
    .map {
      padding-bottom: 50px;
    }
    .contact-info li {
      margin: 0 0 25px 0;
      padding: 0 15px 0 45px;
  }
   .contact-info {
    padding: 25px 20px 0;
   }
   .contact-image {
    display: none;
   }
   .contact-page-section .contact-content h3 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .contact-page-section .contact-content ul {
    margin-bottom: 60px;
  }
  .contact-page-section .contact-content {
    min-height: auto;
  }
  .contact-logo {
  position: relative;
  bottom: 30px;
  width: 165px;
}
 .admission-page-section {
      padding: 40px 0 50px;
 }
 .gallery-page-section {
   padding-bottom: 40px;
 }
  .how-apply h4,
  .eligibility-criteria h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
   .download-details {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
    .download-btn-wrap .common-btn {
    width: 190px;
    height: 50px;
  }
    .how-apply-grid {
    gap: 20px;
  }
    .apply-item {
    padding: 30px 20px;
    width: calc(50% - 20px);
  }
  .hero-content .common-btn {
    font-size: 14px;
    padding: 16px 10px;
  }
  .details-page-image-banner img {
      height: 200px;
   } 
   .video-gallery-item {
    width: 100%;
    height: 300px;
   }
}
@media only screen and (max-width: 400px){
.ads h2 {
    font-size: 36px;
    line-height: 41px;
    margin-bottom: 15px;
    max-width: 100%;
  }
   .course-card {
    padding: 0;
  }
  h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
  }
   .hero-section h1 {
    margin-bottom: 10px;
  }
   .common-btn, .appointment-btn {
    width: 130px;
    padding: 16px 15px;
  }
  .hero-content .common-btn {
    margin-right: 5px;
  }
  .hero-content .common-btn:last-child {
    margin-right: 0;
  }
   .accreditation-item {
    padding: 20px 10px;
    width: calc(50% - 10px);
  }
   .counter-section .stat-item {
    width: 45%;
  }
  .counter-section {
    margin: 0 auto;
  }
  .inner-hero-img {
    min-height: 250px;
    padding: 20px 0;
  }
    .inner-hero-content h1 {
    font-size: 22px;
    line-height: 26px;
  }
   .inner-hero-content {
    padding: 0 10px;
    bottom: 30px;
  }
   .course-details-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
   .course-details-text {
    padding: 20px 15px;
   }
     .course-details-text ul li {
    margin: 0 0 6px 0;
    font-size: 15px;
  }
   h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 15px;
  }
   .apply-item {
    padding: 30px 20px;
    width: 100%;
  }
   .details-page-image-banner img {
      height: 180px;
   } 
} 