@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*--------------------------------------------------------------
# General #3b8af2
--------------------------------------------------------------*/
:root{
  --sk-orange : #b71f22;
  --sk-orange-rgb : 251,76,9;
  --deep-orange : #b71f22;
  --light-orange : #ffb597d4;
  --light-orange-rgb :  255,181,151;
  --dark-blue : #1c09b9 ;
  --dark-grey-black: #212529;
  --light-grey: #f0f0f0;
}

html {
  /*scroll-behavior: smooth;*/
}

body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
  font-size: 17px;
}

a {
  color: var(--sk-orange);
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}
#main{
  /*scroll-snap-type: both mandatory;*/
}
.section__item {
  /*scroll-snap-align: center;*/
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--sk-orange);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--sk-orange);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background:rgba(24,27,42,1);
  height: 40px;
  font-size: 13px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  font-size: 13px;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .social-links a {
  color:#fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 15px;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 112px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
}
/*#header.fixed-top {
  height: 110px;
}*/
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: var(--sk-orange);
}
#header .logo img {
  max-height: 90px;
}

.scrolled-offset {
  margin-top: 70px;  
}

.minilogo {
  width: 80px;
}
.carousel-inner{
	/*background: #f3ede4;*/
}
.carousel-item video {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.nav-enquiry-btn{
  background-color: #fff;
  color: var(--deep-orange);
  border: 1px solid var(--deep-orange);
  border-radius: 6px;
  font-weight: 300;
}

.nav-enquiry-btn:hover{
  background-color: var(--deep-orange);
  color: #fff;
  border: 1px solid var(--deep-orange);
}

.navbar .nav-enquiry-link:hover:before{
  visibility: hidden;
}

.nav-enquiry-link .fa-envelope{
  font-size: 18px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--sk-orange);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--sk-orange);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 6px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--sk-orange);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: fit-content;
  border-radius: 10px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--sk-orange);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--sk-orange);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: var(--sk-orange);
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--sk-orange);
}
#hero .btn-get-started:hover {
  background: var(--dark-blue);
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: var(--sk-orange);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: var(--sk-orange);
}
#hero .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
} */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.capa {
  height: 0;
  padding: 0;
  /*padding-bottom: 75%; */
  padding-bottom: 48%;
  background-repeat: no-repeat;

  background-size: 100% auto;
  /* background-attachment: fixed; */
  background-position: center top;
  display: table;
}

.carousel-caption {
  text-align: left;
  top: 25%;
  right: 10%;
  width: 40%;
}
.carousel-caption h3{ font-size:42px;line-height:50px;margin-bottom: 20px;
  text-shadow: 1px 1px #5b5b5b;}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-bg {
  background-color: #eeeff0;
}
.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.text-left{text-align:left;}
.about-right .section-title{
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: var(--sk-orange);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 500;
}
.section-title h3 span {
  color: var(--sk-orange);
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.home-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow:0 0 8px 0px rgba(68, 88, 144, 0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;width:100%;
  /*background: linear-gradient(-185deg, rgba(249, 246, 41, 0.4) 0%, rgba(215, 212, 33, 0.7) 48%, rgba(162, 160, 5, 0.7) 100%) !important;*/
  background: #b71f22;
}
.home-services .icon-box input, textarea, select{
	width: 100%;
  padding: 10px 10px;
  border-radius: 4px;
  border: solid 1px #d0d0d0;
  background: #fff;
}
.home-services .icon-box p{
	margin-bottom:12px;
}
.home-services .icon {
  margin-bottom: 15px;
}
.home-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--sk-orange);
  transition: all 0.3s ease-in-out;
}
.home-services .icon-box1 .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 30px;
  text-align: left;
  letter-spacing: 0.5px;
  color: #666;
}
.home-services .icon-box1 .title span{
  color: var(--sk-orange);
}
.home-services .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
}
.home-services .title a {
  color: #111;
}
.home-services .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding:20px 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow:0 0 8px 0px rgba(184, 191, 208, 0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;width:100%;margin-bottom: 25px;
}
.featured-services .icon-box input, textarea{
	width: 100%;
  padding: 5px 10px;
  border-radius: 4px;
  border: solid 1px #d0d0d0;
}
.featured-services .icon-box p{
	margin-bottom:10px;
}
.featured-services .icon {
  margin-bottom: 10px;
  text-align: center;
}
.featured-services .icon img{
  width: 100%;
  height: auto;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--sk-orange);
  transition: all 0.3s ease-in-out;
}
.featured-services .icon-box1 .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 30px;
  text-align: left;
  letter-spacing: 0.5px;
  color: #666;
}
.featured-services .icon-box1 .title span{
  color: var(--sk-orange);
}
.featured-services .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0.5px;
}
.featured-services .title a {
  color: #666;
}
.featured-services .description {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
  padding: 0 15px;
}
.ent-desc {
  min-height: 125px !important;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 32px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: center;
  margin-bottom:10px;
  width: 50%;
  float: left;
}
.about .content ul li:first-child {
  margin-top: 0px;
}
.about .content ul img {
  background: #fff;
  box-shadow:3px 4px 5px rgba(77, 78, 79, 0.5);
  padding: 0px;
  margin-right: 15px;
  color: var(--sk-orange);
  border-radius: 5px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about-img{
  border-radius: 5px;
  width: 100%;
  height: auto;
  box-shadow: 8px 9px 9px -4px rgba(0, 0, 0, 0.5)
}

.about-img-wrapper{
  display:inline-block;
  width: auto;
  height: auto;
/* overflow: hidden; */
box-shadow: 9px 6px 13px -3px rgba(0,0,0,0.21);
border-radius: 50%;
padding: 1px 1px;

}
.about-title{
  text-align: left;
}
.about-title p{
  width: auto;
}

@media (max-width: 768px) {
  .about-title{
    text-align: center;
  }
  .about-right{
    padding-left: 5% !important;
  }
}


/* .about-img-wrapper span{
  position: absolute;
  text-align:center;
  width:100%;
  background:red;
  bottom:0;
  padding:20px 0;
  opacity:.5
} */

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--sk-orange);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.8) 0%, rgba(192, 217, 230, 0.8) 48%, rgba(103, 121, 130, 0.8) 100%) !important;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--sk-orange);
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color:#fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.clients img:hover {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: var(--dark-blue);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(var(--sk-orange-rgb), 0.1);
}
.icon-box:hover .services-icon {
  background: rgba(var(--light-orange-rgb), 0.2);
}
.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: var(--sk-orange);
}
.services .icon-box:hover .icon {
  border-color: var(--sk-orange);
}

/*--------------------------------------------------------------
# Colleges
--------------------------------------------------------------*/
.colleges {
  padding: 80px 0;
  background: url("../../images/college-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.colleges::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0 0 30px 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #3d3d3d;
  padding: 20px;
  background-color: #f0f0f0;
  box-shadow: 0 1px 9px 0px rgba(0, 0, 0, 0.5);
  min-height: 240px;
  border-radius: 6px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #3d3d3d;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #3d3d3d;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
  color:var(--sk-orange);
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  color:var(--sk-orange);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #3d3d3d;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: #bfbfbf80;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--sk-orange);
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 100%;
  }
}

.testimonial-item .checked {
  color: orange;
}

@keyframes bgshape1 {
  0% {
      right: -30px
  }

  25% {
      right: -10px
  }

  50% {
      right: 0
  }

  75% {
      right: -20px
  }

  100% {
      right: -5px
  }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--sk-orange);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--sk-orange);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--sk-orange);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--sk-orange);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# colleges
--------------------------------------------------------------*/
.colleges {
  padding: 60px 0;
}
.colleges .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.colleges .member .member-img {
  position: relative;
  overflow: hidden;
}
.colleges .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.colleges .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.colleges .member .social a:hover {
  background: #3b8af2;
}
.colleges .member .social i {
  font-size: 18px;
}
.colleges .member .member-info {
  padding: 25px 15px;
}
.colleges .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.colleges .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.colleges .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.colleges .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.college-btn{
  background-color: #fff;
  border: #fff;
  color: var(--deep-orange);
}

.college-btn:hover{
  background-color: var(--dark-blue);
  border: var(--dark-blue);
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.pricing .box h4 {
  font-size: 36px;
  color: var(--sk-orange);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: var(--sk-orange);
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: var(--sk-orange);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #3b8af2;
}
.pricing .featured h3 {
  color: #fff;
  background: var(--sk-orange);
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--sk-orange);
  color: #fff;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: var(--sk-orange);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--sk-orange);
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: var(--sk-orange);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  background: var(--dark-grey-black);
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--sk-orange);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--dark-grey-black);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
#footer .footer-top .footer-contact h3 span {
  color: var(--sk-orange);
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--light-grey);
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 0px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-contact ul i {
  padding-right: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: var(--light-grey);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links{
  color: var(--light-grey);
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--sk-orange);
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--sk-orange);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--dark-blue);
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a{
  color: var(--deep-orange);
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}





.col-carousel {
	margin: 70px 0;
}


/*--------------------------------------------------------------
# Course Styling
--------------------------------------------------------------*/



.course_section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}


.course_section .course_content .course_item {
  margin-bottom: 30px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:0 0 8px 0px rgba(68, 88, 144, 0.5);
  margin-right: 10px;
  margin-left: 5px;
}
.course_section .course_content .course_item:hover .course_image img {
  transform: scale(1.1);
}
.course_section .course_content .course_item .course_image {
  overflow: hidden;
  padding: 0;
  height: 200px;
}
.course_section .course_content .course_item .course_image img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.course_section .course_content .course_item .course_image span i {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  width: 38px;
  height: 45px;
  padding-top: 7px;
  text-align: center;
  right: 20px;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  background-color: #ff5e14;
}
.course_section .course_content .course_item .college_details {
  padding: 25px 20px 20px 20px;
}
.course_section .course_content .course_item .college_details .college_title h5 a {
  color: #020d26;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: none;
}
.course_section .course_content .course_item .college_details .college_title h5 a:hover {
  color: #ff5e14;
}
.course_section .course_content .course_item .college_details ul {
  padding: 0 3px 10px 0;
  margin: 0;
}
.course_section .course_content .course_item .college_details ul li {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  color: #7f7f7f;
}
.course_section .course_content .course_item .college_details ul li i {
  padding-right: 7px;
}
.course_section .course_content .course_item .college_details p {
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
  padding: 10px 0 4px;
  height: 115px;
  font-size:15px;
}
.read-btn {
  color: #fff;
  background-color: var(--deep-orange);
  border: 1px solid var(--deep-orange);
  border-radius: 6px;
  font-weight: 300;
  font-size: 14px;
  padding: 2px 10px;
}
.course_section .course_content .course_item .college_details a:hover {
  color: #020d26;
}

.course_section .course_content .course_item .college_details a i {
  vertical-align: middle;
  font-size: 20px;
}
.course_section .course_content .owl-nav {
  display: block;
}
.course_section .course_content .owl-nav .owl-prev {
  position: absolute;
  left: -27px;
  top: 33%;
  border: 5px solid #fff;
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  background: #ff5e14;
  transition: all 0.3s;
  color: #fff;
}
.course_section .course_content .owl-nav .owl-prev span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}
.course_section .course_content .owl-nav .owl-prev:hover {
  background: #fff;
  border-color: #ff5e14;
  color: #ff5e14;
}
.course_section .course_content .owl-nav .owl-next {
  position: absolute;
  right: -27px;
  top: 33%;
  border: 5px solid #fff;
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  background: #ff5e14;
  color: #fff;
  transition: all 0.3s;
}
.course_section .course_content .owl-nav .owl-next span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}
.course_section .course_content .owl-nav .owl-next:hover {
  background: #fff;
  border-color: #ff5e14;
  color: #ff5e14;
}

@media only screen and (max-width: 577px) {
  .course_section .owl-nav .owl-prev {
    left: -17px !important;
  }
  .course_section .owl-nav .owl-next {
    right: -17px !important;
  }
}

@media only screen and (max-width: 768px) {
  .course_section .course_content{
    margin:5%;
  }
  }





/*--------------------------------------------------------------
# Colleges Styling
--------------------------------------------------------------*/



.colleges_section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.colleges_section .colleges_content .colleges_item {
  margin-bottom: 30px;
  box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--deep-orange);
}
.colleges_section .colleges_content .video_item {
  box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.colleges_section .colleges_content .colleges_item:hover .colleges_image img {
  transform: scale(1.1);
}
.colleges_section .colleges_content .colleges_item .colleges_image {
  overflow: hidden;
  padding: 0;
}
.colleges_section .colleges_content .colleges_item .colleges_image img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.colleges_section .colleges_content .colleges_item .colleges_image span i {
  position: absolute;
  z-index: 2;
  color: var(--deep-orange);
  font-size: 18px;
  width: 38px;
  height: 45px;
  padding-top: 7px;
  text-align: center;
  right: 20px;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  background-color: #ff5e14;
}
.colleges_section .colleges_content .colleges_item .college_details {
  padding:15px 15px 10px;
  text-align:center;
}
.colleges_section .colleges_content .colleges_item .college_details .college_title h5 a {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
}
.colleges_section .colleges_content .colleges_item .college_details .college_title h5 a:hover {
  font-weight: 800;
}
.colleges_section .colleges_content .colleges_item .college_details ul {
  padding: 0 3px 10px 0;
  margin: 0;
}
.colleges_section .colleges_content .colleges_item .college_details ul li {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  color: #fff;
}
.colleges_section .colleges_content .colleges_item .college_details ul li i {
  padding-right: 7px;
}
.colleges_section .colleges_content .colleges_item .college_details p {
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
  padding: 20px 0 4px;
}
.colleges_section .colleges_content .colleges_item .college_details a {
  font-size: 16px;
  display: inline-block;
  color: var;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.colleges_section .colleges_content .colleges_item .college_details a:hover {
  color: #020d26;
}
.colleges_section .colleges_content .colleges_item .college_details a i {
  vertical-align: middle;
  font-size: 20px;
}
.colleges_section .colleges_content .owl-nav {
  display: block;
}
.colleges_section .colleges_content .owl-nav .owl-prev {
  position: absolute;
  left: -27px;
  top: 33%;
  border: none;
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  outline: 0;
  background: #ff5e14;
  transition: all 0.3s;
  color: #fff;
}
.colleges_section .colleges_content .owl-nav .owl-prev span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}
.colleges_section .colleges_content .owl-nav .owl-prev:hover {
  background: #fff;
  border-color: #ff5e14;
  color: #ff5e14;
}
.colleges_section .colleges_content .owl-nav .owl-next {
  position: absolute;
  right: -27px;
  top: 33%;
  border: none;
  text-align: center;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  outline: 0;
  background: #ff5e14;
  color: #fff;
  transition: all 0.3s;
}
.colleges_section .colleges_content .owl-nav .owl-next span {
  font-size: 25px;
  margin-top: -6px;
  display: inline-block;
}
.colleges_section .colleges_content .owl-nav .owl-next:hover {
  background: #fff;
  border-color: #ff5e14;
  color: #ff5e14;
}

@media only screen and (max-width: 577px) {
  .colleges_section .owl-nav .owl-prev {
    left: -17px !important;
  }
  .colleges_section .owl-nav .owl-next {
    right: -17px !important;
  }
}

@media only screen and (max-width: 768px) {
  .colleges_section .colleges_content{
    margin:5%;
  }
  }



/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact .contact-img {
  position: relative;
  margin: 0px 0 0 30px;
}
@media (max-width: 575px) {
  .contact .contact-img {
    margin: 30px 0 0 30px;
  }
  .contact .contact-img:before {
    inset: -30px 0 0 -30px;
  }
}

@media (max-width: 768px) {
  .contact h3 {
    font-size: 28px;
  }

}
.contact .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.contact .nav-pills li + li {
  margin-left: 40px;
}
.contact .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.contact .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .contact .nav-link {
    font-size: 16px;
  }
}
.contact .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.contact .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

.contact-btn{
  background-color: var(--deep-orange);
  border: transparent;
}
.read-more-btn{
  background-color: var(--sk-orange);
  border: transparent;
}
.contact-box{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.nav-enquiry-link:before{
  display: none !important;
}
.full-width{width:100%;}

/*--------------------------------------------------------------
# Lower-CTA
--------------------------------------------------------------*/
.lower-cta {
  padding: 80px 0;
  background: url("../../images/coaching-class.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  margin-top: 10px;
  margin-bottom: 10px;
}
.lower-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(10, 13, 49, 0.7);
}
.lower-cta .section-header {
  margin-bottom: 40px;
}
.lower-cta .lower-cta-carousel, .lower-cta .lower-cta-slider {
  overflow: hidden;
}
.lower-cta .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonial-item .checked {
  color: orange;
}

.lower-cta-btn{
  background-color: transparent;
  color: #fff;
  border: 1px solid white;
  background-blend-mode: multiply;
  transition: all .5s;
  transform: scale(1.5);
  border-radius: 10px;
  
}

.lower-cta-btn:hover{
  background-color: var(--deep-orange);
  border: 1px solid transparent;
}

.lower-cta-logo{
  /* transform-origin: 0 0; */
  animation: rotatelogo 5s ease-in-out infinite alternate;
}

@keyframes rotatelogo {
  0% {
      transform: scale(0.8);
      transform: rotate(0);
  }

50% {
  transform: scale(0.8);
  transform: rotate(10);
}

  100% {
      transform: scale(0.8);
      transform: rotate(0);
  }
}



/* ======= Course package List Table  ========= */

.course{
	padding-top: 70px;
}

.table-price th h1 {
	  font-weight: bold;
	  font-size: 1.2em;
  text-align: left;
  color: #fff;
}

#tab a{
	background-color: lightgrey;
	border-color: lightgrey;
	padding: 1rem;
	margin: 0.2rem;
	border-radius: 5px;
	width:160px;
	font-size: 1rem;
    text-align: center;
}

#tab a.active{
	background-color: var(--sk-orange);
    color: #fff !important;
}


.table-price td {
	  font-weight: normal;
	  font-size: 1em;
  -webkit-box-shadow: 0 2px 2px -2px #0E1119;
	   -moz-box-shadow: 0 2px 2px -2px #0E1119;
	        box-shadow: 0 2px 2px -2px #0E1119;
            font-size: 0.9rem;
}

.table-price {
	  text-align: left;
	  overflow-x: scroll;
	  width: 100%;
	  margin: 0 auto;
  display: table;
  padding: 0 0 0.2em 0;
  border-collapse: separate;
    border-spacing: 0 8px;
    /* table-layout: auto;  */
}


/* @media (max-width: 1366px) {
  .table-price {
	  width: 80%;
}
}


@media (max-width: 800px) {
  .table-price {
	  width: 100%;
}
} */

.table-price td, .table-price th {
	  padding-bottom: 1.2%;
	  padding-top: 1.2%;
  /*padding-left:2%; */

}

.table-price th{
  text-align: left; 
}

 @media (max-width: 992px) {
  .table-price td, .table-price th{
    padding-bottom: 3.5%;
	  padding-top: 3.5%;
}
}

/* Background-color of the odd rows */
.table-price tr:nth-child(odd) {
	  background-color: #ededed;
}

/* Background-color of the even rows */
.table-price tr:nth-child(even) {
	  background-color: #e2e2e2;
}

.table-price th {
	background-color: #3d3c3d;
    color: #fff;
	width: 20%;
}

.table-price td:first-child { 
	color: black;
	font-weight: 600;
}

.table-price tr:hover {
   background-color: var(--sk-orange);
   -webkit-box-shadow: 0 6px 6px -6px #0E1119;
   -moz-box-shadow: 0 6px 6px -6px #0E1119;
   box-shadow: 0 6px 6px -6px #0E1119;

}

.table-price tr:hover td{
	font-weight: 600;
}

/* .table-price tr td{
    text-transform: lowercase;
} */
/* .table-price tr td::first-letter{
    text-transform: capitalize;
} */

.table-price td:hover {
  background-color: var(--sk-orange);
  color: white;
  font-weight: bold;
  
  box-shadow: var(--dark-blue) -1px 1px, var(--dark-blue) -2px 2px, var(--dark-blue) -3px 3px, var(--dark-blue) -4px 4px, var(--dark-blue) -5px 5px, var(--dark-blue) -6px 6px;
  transform: translate3d(6px, -6px, 0);
  
  transition-delay: 0s;
	  transition-duration: 0.4s;
	  transition-property: all;
  transition-timing-function: line;
}
.text-center{text-align:center;}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.15);
}
.footer-bottom .copyright p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 15px;
}
.admission-box{padding:0 80px;}
.college_title{color:#fff;}
.course-title{color:#606060;height: 85px;}
.course-title h1{font-size: 18px;font-weight: 600;line-height: 21px;}
.course-title h5{font-size: 18px;font-weight: 400;line-height: 25px;}
.course-title span{font-size: 12px;}
.text-lg-left{text-align:left;}
.text-lg-right{text-align:right;}
.pb-20{padding-bottom: 20px;}
.mt-40{margin-top:40px;}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 10px;
  padding: 20px;
  background:#fff;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: var(--sk-orange);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
.faq .faq-list .collapsed:hover {
  color: var(--sk-orange);
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
.ser_pattern {
  background: url('../../images/testimonial-bg.png');
}
.services-section-new {
  position: relative;
  padding: 60px 0 60px;
}
.ser_pattern::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  display: block;
  z-index: 0;
  top: 0;
}
ul.coloured-process {
  width: 100%;
  float: left;
}
ul.coloured-process li.one {
  background-color: #ffffff;
  border-radius: 7px 0 0 7px;
  display: table-column;
}
ul.coloured-process li.two {
  background-color: #cce7f4;
}
ul.coloured-process li.three {
  background-color: #b8ddf0;
}
ul.coloured-process li.four {
  background-color: #a4d4eb;
}
ul.coloured-process li.five {
  background-color: #96cde8;
}
ul.coloured-process li.six {
  background-color: #89c7e6;
}
ul.coloured-process li.saven {
  background-color: #67b7de;
  border-radius: 0 7px 7px 0;
}
ul.coloured-process li {
  width: 14.2%;
  float: left;
  color: #393939;
  text-align: center;
  padding: 40px 15px 0;
  height: 125px;
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.45);
}
li {
  list-style: none;
  padding:10px 0 0px 0;
  margin: 0px;
}

ul.enterance-process {
  width: 100%;
  float: left;
}
ul.enterance-process li.one {
  background-color: #ffffff;
  border-radius: 7px 0 0 7px;
  display: table-column;
}
ul.enterance-process li.two {
  background-color: #cce7f4;
}
ul.enterance-process li.three {
  background-color: #b8ddf0;
}
ul.enterance-process li.four {
  background-color: #a4d4eb;
}
ul.enterance-process li.five {
  background-color: #96cde8;
}
ul.enterance-process li.six {
  background-color: #89c7e6;
}
ul.enterance-process li.saven {
  background-color: #67b7de;
  border-radius: 0 7px 7px 0;
}
ul.enterance-process li {
  width: 14.2%;
  float: left;
  color: #393939;
  text-align: center;
  padding:28px 11px 0;
  height: 150px;
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.45);
}

.img-icon{box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);}
.usp{padding-left: 20px;}

.page-header {
  background:url(../../images/banner.jpg) center center no-repeat;
    background-size: auto, auto;
  background-size: cover;
  padding:120px 0;
}
.big-img{display:block;width:100%;}
.sec-color {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}
.sec-spacer {
  padding: 80px 0;
}
.contact .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--sk-orange);
  transition: all 0.3s ease-in-out;
}
.contact .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
}
.contact .icon-box p{ margin:0; }
.contact .icon-box a{color:#444444;}
.mb-15{margin-bottom:15px !important;}

.rs-banner-section {
  position: relative;
  overflow: hidden;
}
.rs-banner-section img.banner-image {
  width: 100%;
}
.rs-banner-section img {
  max-width: 100%;
  height: auto;
}
.rs-banner-section .banner-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.rs-banner-section .banner-inner .sl-sub-title {
  margin-bottom: 2px;
  font-size: 56px;
  /*font-family: 'Roboto Condensed', sans-serif;*/
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 70px;
  color: #666;
  font-weight: 600;
  font-style: italic;
}
.rs-banner-section .banner-inner .banner-title {
  font-size: 65px;
  line-height: 75px;
  margin: 0 0 25px;
  font-weight: 700;
  color: #666;
}
.rs-banner-section .banner-inner .banner-title span {
  display: block;
  color: #37458e;
}
.rs-banner-section .banner-inner .content {
  color:#979797;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}
.rs-banner-section .banner-inner .readon {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  padding: 15px 25px;
}
.rs-banner-section .banner-text {
  max-width: 700px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pricing-table {
  padding: 20px 25px 5px;
  border: 1px solid #d0d0d0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-top: 25px;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
table {
  border-collapse: collapse;
}
.pricing-table .table th {
  padding: 10px 10px;
  border-top: none;
  border-bottom: 1px solid #c1bfbf;
  width: 20%;
  font-weight: 400;
}
.pricing-table .table td, .pricing-table .table th {
  padding: 10px 10px;
  border-top: none;
  border-bottom: 1px solid #c1bfbf;
}
.blue-color{background:#cfe1de !important;}
.m-t-40{margin-top:40px;}
.no-bodder{border-bottom: 0px solid #c1bfbf !important;}
.lower-cta-logo img{width:100px;}
.about-widget img{width:100px;}
.pr-80{padding-right:80px;}

.bg3 {
  background-image: url(../../images/counter-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.rs-counter .counter-title {
  color: #fff;
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 25px;
}
.rs-counter .counter-text p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.6);
}
.rs-counter .rs-counter-list {
  margin-bottom: 15px;
  text-align: center;
  padding: 30px;
  transition: .3s all ease;
}
.rs-counter .rs-counter-list .counter-number {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 6px;
}
.rs-counter .rs-counter-list .counter-desc {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
}
.sec-spacer-why {
  padding: 57px 0 ;
  color: #fff;
}
ul{padding-left: 20px;}
.display-1{font-size: 55px;}
.sec-spacer-why li {
  list-style: none;
  padding: 5px 0 0px 0;
  margin: 0px;
}

.sidebar-area .title {
  font-size: 20px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
  padding: 15px;
  letter-spacing: 0.5px;
}
.sidebar-area .cate-box ul {
  padding: 0;
  margin: 0;
}
.sidebar-area .cate-box ul li:first-child {
  padding-top: 0;
}
.sidebar-area .cate-box ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
    padding-top: 10px;
  cursor: pointer;
}
.sidebar-area .cate-box ul li a {
  color: #505050;
  padding: 0 0 0 5px;
}
.sidebar-area .cate-box ul li a span {
  float: right;
}
.sidebar-area .latest-courses {
  margin-top: 45px;
}
.sidebar-area .latest-courses .post-item {
  display: flex;
  overflow: hidden;
}
.sidebar-area .latest-courses .post-item .post-desc {
  width: 100%;
  float: left;margin-bottom: 15px;
}
.sidebar-area .latest-courses .post-item .post-desc h4 {
  margin-bottom: 5px;  line-height: 18px;
}
.sidebar-area .latest-courses .post-item .post-desc h4 a {
  font-size: 15px;
  color: #212121;font-weight: normal;
}
.sidebar-area .latest-courses .post-item .post-desc .duration {
  font-weight: 400;
  color: #777777;font-size: 13px;
}
.blog-content{margin-bottom:45px;}
.blog-content h4 {
  margin: 10px 0 8px;
}
.blog-content .date {
  font-size: 13px;
  font-weight: 600;margin-bottom: 10px;
}
.blog-content p {
  font-size: 17px;margin-top: 15px;
}
.btn-success:hover {
  color: #fff;
  background-color: #3c3c3c;
  border-color: #3c3c3c;
}
.bg-count-1{background-color: #b21e21;}
.bg-count-2{background-color: #f68026;}
.bg-count-3{background-color: #ee9b0f;}
.bg-count-4{background-color: #ffbe00;}

.p-tb-30{padding:30px 0;}

.sitemap-widget{margin-bottom:18px !important;}
.pro{background: #b71f22;color: #fff;padding: 8px 20px;border-radius: 4px;font-weight: 600;}


#hero video{width:100%;height:660px;}
.desk-view{display:block;}
.mobile-view{display:none;}

.big-img {
  display: block;
  width: 100%;
}

#sy-social {
  left: 0px;
  bottom: 35%;
  position: fixed;
  z-index: 9999;
}
#sy-social .sywh-services {
  width: 30px;
  height: auto;
}
#sy-social .sywh-services a {
  display: inline;
}
#sy-social .sywh-services a i{
  display: inline-flex;
  background:var(--sk-orange);
  color:#fff;
  padding:8px;
}
#sy-social .sywh-services a i:hover{
  background:#666;
  color:#fff;
  padding:8px;
}

.mt-30{margin-top:30px;}
.pt-0{padding-top:0;}

.accordion-header {
  /*background-color: #FBFBFB;*/
  padding: 0 15px 0 0;
}
.accordion-item {
  /*background-color: #fff;*/
  border: 0px solid rgba(0,0,0,.125);
  margin-bottom: 15px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.2), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
}
.accordion-no {
  background-color: #b71f22;
  color: white;
  padding: 10px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-button {
  padding-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  /*background-color: #FBFBFB !important;*/
}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}
.faq-question {
  font-size: 17px;
  color: #4f4c69;
  line-height: 26px;
  font-weight: 500;
  padding-left: 15px;
}
.accordion-button:not(.collapsed)::after, .accordion-button::after {
  height: 15px;
  width: 15px;
  background-size: cover;
}

.why-bg{background:url('../../images/why_support.jpg') no-repeat 100% center;background-color: #C43A51;}
.single-image img{width:100%;}

@media only screen and (min-width: 1601px) and (max-width: 2800px) {
    .why-bg{background:url('../../images/why_support.jpg') no-repeat left center;background-color: #C43A51;}
}
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
  .why-bg{background:url('../../images/why_support.jpg') no-repeat 100% center;background-color: #C43A51;}
}

@media screen and (max-width: 768px) {
	
  body{font-size: 13px;line-height: 20px;}
  .capa {height: 450px;margin-top: 0px;}
  .carousel-caption h3 {font-size: 16px;line-height: 20px;margin-bottom: 5px;}
  .carousel-caption{top: 0%;width: 45%;}
  .btn{padding: 1px 7px; font-size: 13px;}
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{padding:0 10px;}
  #header{height: 85px;}
  #header .logo img {max-height: 80px;}
  section{padding: 30px 0;}
  .featured-services .icon-box{padding: 16px;}
  .featured-services .title{margin-bottom: 10px; font-size: 16px;}
  .featured-services .description { font-size: 13px;line-height: 20px;min-height:auto;}
  .mb-5 {margin-bottom: 1rem !important;}
  .about .content h3 {font-size: 21px;}
  .section-title h3 {margin: 10px 0 0 0;}
  .about-right .section-title {padding-bottom: 10px;}
  .section-title h3{font-size: 21px;}
  .section-title{padding-bottom: 15px;}
  .text-lg-right {text-align: left;}
  .pb-20 {padding-bottom: 5px;}
  .course {padding-top: 20px;}
  .course_section .course_content .course_item .college_details {padding: 10px;}
  .st-section-heading h2 {font-size: 20px;}
  h5 {font-size: 18px;}
  .course-title {height: 70px;}
  .course_section{padding:20px 0;}
  .course_section .course_content .course_item .college_details p{height: 110px;}
  .course_section .course_content {margin: 2%;}
  .course_section .course_content .course_item {margin-bottom: 10px;}
  .colleges_section {padding-top: 1rem;padding-bottom: 0rem;}
  .contact .contact-img { margin: 0px 0 0 0px; }
  .admission-box {padding: 0 40px;}
  .testimonials {padding: 40px 0;}
  .lower-cta {padding: 40px 0;}
  .btn-sm {padding: 5px 10px 7px;font-size: 11px;}
  .box-half{width:50%;margin: 0px !important;padding-bottom: 35px;}
  .counts {padding: 40px 0 20px;}
  .services-section-new {padding: 40px 0 40px;}
  ul.coloured-process li {width: 50%;padding: 30px 15px 0; height: 85px;}
  ul.coloured-process li.saven {margin-left: 25%;border-radius: 0 0 7px 7px;}
  ul.coloured-process li.one {border-radius: 7px 0 0 0;}
  ul.coloured-process li.two { border-radius: 0 7px 0 0;}
  
  ul.enterance-process li {width: 50%;padding: 30px 15px 0; height: 115px;}
  ul.enterance-process li.saven {margin-left: 25%;border-radius: 0 0 7px 7px;}
  ul.enterance-process li.one {border-radius: 7px 0 0 0;}
  ul.enterance-process li.two { border-radius: 0 7px 0 0;}

  .ps-5 {padding-left: 1rem !important;}
  .about .content ul li{width: 100%;}
  .faq {padding: 40px 0 0;}
  .faq-img{display:none;}
  .no-img{display:none;}
  #footer .footer-top {padding: 40px 0 30px 0;}
  .mb-25{margin-bottom: 25px;}
  .footer-bottom{margin-top: 0px;}
  .footer-bottom .copyright p {font-size: 13px;}
  .offset-1 { margin-left: 0%;}
  .mobile-mb-50{margin-bottom: 30px;}
  .sec-spacer {padding: 40px 0;}
  .contact .icon-box {padding: 10px 20px;width: 100%;}
  .rs-banner-section .banner-text {max-width: 250px;}
  .rs-banner-section .banner-inner .content {font-size: 13px;line-height: 18px;}
  .rs-banner-section .banner-inner .banner-title {font-size: 18px;line-height: 22px;margin: 0 0 15px;}

  #grad-course-package{padding:40px 20px;}
  .mt-40 {margin-top: 0px; margin-bottom: 30px;width: 60%;}
  .contact-call{padding: 40px 20px;}
  .counts .count-box span {padding: 5px 0 10px;}
  
  .ent-desc { min-height:auto !important;}
  .pad-lr{padding-left:10px;padding-right:10px;}
  .counts .count-box{padding: 30px 15px 25px 15px;}
  .pr-80 {padding-right: 0px;}
  .home-services .description {font-size: 15px;line-height: 22px; margin-bottom: 15px;padding: 5px;}
  .half-box{width:50%;}
  .rs-counter .rs-counter-list{padding:25px 15px;margin:0;}
  .rs-counter .rs-counter-list .counter-number { font-size: 35px;}
  .rs-counter .rs-counter-list .counter-desc{font-size: 13px;padding-top: 10px;}
  .sec-spacer-why {padding: 10px 0;}

  #topbar{display:none !important;}
  .mob-enq{background-color: #365677;border-color: #0a53be;; padding:8px 15px; border-radius: 10px; color: white;margin-top:10px;}
  #hero video {width: 100%;height: auto;}
  
  .desk-view{display:none;}
  .mobile-view{display:block;}
  
  .why-bg{background-color: #C43A51;}
  .carousel-control-next-icon, .carousel-control-prev-icon{height: 2rem !important;}
  .accordion-no{padding: 10px 10px;}
  .faq-question {font-size: 15px;line-height: 18px;padding: 8px 8px;}


}