

/***************Table of Content**************/
/*  - FONTS, GENERAL
    - SCROLL BAR
    - PRE LOADER
    - SCROLL TO TOP
    - NAVIGATION & CAROUSAL/HERO
    - FEATURES
    - Admission - get it checked  
    - University Life get it checked
    - Faculty Members get it checked
    - Testimonial
    - Events get it checked
    - Footer
    - Contact us Page
    - About Us Page
    - Course Page
    - Course Detail Page 1
    - Course Detail Page 2
    - Media Queries   */

/*IMPORT FONTS*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap");

body {
  color: #5f5d5d;
}
.bg-green-color {
  background-color: #94cb00;
}
.bg-blue-color {
  background-color: #06a4be;
}
.green-color {
  color: #94cb00 !important;
}
.blue-color {
  color: #06a4be !important;
}
.text-white {
  color: white !important;
}
.text-black {
  color: #414141 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif !important;
}

/************SCROLLBAR************/
.scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.scrollbar-thumb {
  background-color: #00b0cd;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.5, rgba(255, 255, 255, 0.2)),
    color-stop(0.5, transparent),
    to(transparent)
  );
}
.scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

/*******************PRE LOADER****************/
.loader1 {
  overflow: hidden !important;
}

.loading-area {
  width: 100%;
  height: 100%;
  background-color: #f6fcff;
  position: fixed;
  z-index: 999999;
}

.circle {
  width: 180px;
  height: 180px;
  border: 10px inset rgb(133, 224, 242);
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  border-radius: 200px;
  -webkit-animation: rotate 5s infinite linear;
  animation: rotate 5s infinite linear;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.circle-small {
  width: 150px;
  height: 150px;
  border: 6px outset rgb(133, 224, 242);
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -85px;
  margin-top: -85px;
  border-radius: 156px;
  -webkit-animation: rotate-rev 3s infinite linear;
  animation: rotate-rev 3s infinite linear;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.circle-big {
  width: 210px;
  height: 210px;
  border: 4px dotted #94cb00;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -114px;
  margin-top: -114px;
  border-radius: 214px;
  -webkit-animation: rotate-rev 10s infinite linear;
  animation: rotate-rev 10s infinite linear;
}

.circle-inner {
  width: 80px;
  height: 80px;
  background-color: rgb(133, 224, 242);
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -48px;
  margin-top: -50px;
  border-radius: 80px;
  -webkit-animation: pulse 1.5s infinite ease-in;
  animation: pulse 1.5s infinite ease-in;
  opacity: 1;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.circle-inner-inner {
  width: 100px;
  height: 100px;
  background-color: rgb(74, 124, 134);
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -58px;
  margin-top: -60px;
  border-radius: 100px;
  -webkit-animation: pulse 1.5s infinite ease-in;
  animation: pulse 1.5s infinite ease-in;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/*============== PRE LOADER ROTATE=====================*/

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*============== PRE LOADER ROTATE-REV=================*/

@-webkit-keyframes rotate-rev {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes rotate-rev {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*==============PRE LOADER PULSE======================*/

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(0.1);
    opacity: 0.2;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.2;
  }
}
/***************SCROLL TOP**************/
.scroll-top-arrow {
  font-size: 30px;
  line-height: 40px;
  color: #fff !important;
  display: none;
  height: 40px;
  width: 30px;
  padding: 0;
  position: fixed;
  bottom: 50px;
  right: 50px;
  text-align: center;
  text-decoration: none;
  z-index: 99;
  background-color: #00b0cd;
}
.scroll-top-arrow:hover {
  background-color: #94cb00;
}

/***************CAROUSAL IMAGES AND FADE EFFECT*********/

.background-carousal {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-fade .carousel-item {
  height: 100vh !important;
}

.carousel-item:nth-child(1) {
  background: url("../img/");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.carousel-item:nth-child(2) {
  background: url("../img/");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.carousel-item:nth-child(3) {
  background: url("../img/");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

#background-carousal .carousal-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.carousal-overlay .main-content {
  z-index: 11;
}

/************************NAVBAR FOR LARGE SCREENS*****************/

header .navbar-light-vision {
  top: 0;
  overflow: hidden;
  height: 100px;
  width: 100%;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  z-index: 11;
  position: absolute;
  background-color: transparent !important;
}
.navbar .nav-item a.nav-link {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-right: 30px;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.logo img {
  max-height: 100%;
  max-width: 74px;
}

.my-tog-btn {
  display: none;
  width: 25px;
}
.my-tog-btn span {
  background-color: white;
  margin-bottom: 5px;
  height: 2px;
  width: 100%;
  display: block;
}
.navbar-btn {
  background-color: #00b0cd;
  border-color: #00b0cd;
  cursor: pointer;
  padding: 9px 25px 9px 25px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.navbar-btn:hover {
  background-color: #94cb00;
  border-color: #94cb00;
}
a.navbar-btn {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}

/**************************NAVBAR AFTER SCROLL*******************/
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
nav ul li a:hover {
  color: #555;
}

/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 59px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  content: ".";
  color: transparent;
  background: #ffffff;
  height: 6px;
}

nav.stroke ul li a:hover:after,
nav.stroke ul li a.active:after {
  width: 100%;
}

nav.fill ul li a {
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover,
nav.fill ul li a.active {
  color: #fff;
  z-index: 1;
}
nav.fill ul li a:hover:after,
nav.fill ul li a.active:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}
.navbar.fixed-menu .navbar-btn {
  border: 2px solid white;
}
.navbar.fixed-menu .navbar-btn:hover,
.navbar.fixed-menu .navbar-btn:focus {
  border: 2px solid #94cb00;
  background-color: #94cb00 !important;
}
.navbar.fixed-menu {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: auto;
  background-color: #00b0cd !important;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/***************MAIN CONTENT ON BACKGROUND IMAGE*****************/

.main-content .main-heading {
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
  letter-spacing: -3px;
  color: white;
}

.margin-sub-heading {
  color: white;
  margin-bottom: 20px;
  margin-top: 20px;
}

.main-content .sub_heading {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  line-height: 2;
  text-align: left;
}

.col-height {
  height: 100vh;
}
.blue-btn {
  background-color: #00b0cd;
  border: 1px solid #00b0cd;
  cursor: pointer;
  padding: 9px 35px 9px 35px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.green-btn {
  background-color: #94cb00;
  border: 1px solid #94cb00;
  cursor: pointer;
  padding: 9px 35px 9px 35px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.blue-btn:hover {
  background-color: #94cb00;
  border: 1px solid #94cb00;
}
.green-btn {
  background-color: #94cb00;
  border: 1px solid #94cb00;
  cursor: pointer;
  padding: 9px 35px 9px 35px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.green-btn:hover {
  background-color: #00b0cd;
  border: 1px solid #00b0cd;
}

a.btn {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  line-height: 1.8;
  font-weight: bold;
}

.custom-box {
  padding: 60px 37px;
  position: relative;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}

.custom-box .box-text {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.143;
  text-align: left;
  letter-spacing: 0;
  position: relative;
  color: #ffffff;
}

/*****************BOXES AND ARROW BOX HOVER***************/
.arrow-box {
  position: absolute;
  background-color: #6b9300;
  font-size: 30px;
  padding: 10px 11px;
  right: 0;
  bottom: 0;
  visibility: visible;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-animation: 0.5s fadeInUp;
  animation: 0.5s fadeInUp;
}
.arrow-box.arrow-box-hidden {
  visibility: hidden;
  -webkit-transition: ease;
  -o-transition: ease;
  transition: ease;
  -webkit-animation: 0.5s fadeInDown;
  animation: 0.5s fadeInDown;
}

.arrow-box .las {
  color: #ffffff !important;
  visibility: visible;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.arrow-box .las.las-hidden {
  visibility: hidden;
  -webkit-transition: ease;
  -o-transition: ease;
  transition: ease;
}

.arrow-box1 {
  position: absolute;
  background-color: #067284;
  font-size: 30px;
  padding: 10px 11px;
  right: 0;
  bottom: 0;
  visibility: hidden;
  -webkit-transition: ease;
  -o-transition: ease;
  transition: ease;
  -webkit-animation: 1s fadeInUp;
  animation: 1s fadeInUp;
}
.arrow-box1.arrow-box1-display {
  visibility: visible;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-animation: 0.5s fadeInDown;
  animation: 0.5s fadeInDown;
}

.arrow-box1 .las {
  color: #ffffff !important;
  visibility: hidden;
  -webkit-transition: ease;
  -o-transition: ease;
  transition: ease;
}
.arrow-box1 .las.las-visible {
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  visibility: visible;
}

.custom-box:hover .arrow-box1 i {
  -webkit-animation: 1.5s rubberBand;
  animation: 1.5s rubberBand;
}

.bg-campus-icon {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}

.bg-campus-icon i {
  position: absolute;
  color: #068ba1;
  top: 15px;
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-animation: scale 0.6s alternate infinite linear both;
  animation: scale 0.6s alternate infinite linear both;
}
@-webkit-keyframes scale {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes scale {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.custom-box.bg-blue-color:hover {
  background: #00b0cd;
}

.custom-box.bg-blue-color:hover .bg-campus-icon i {
  opacity: 0.8;
}
.custom-box:hover .arrow-box i {
  -webkit-animation: 1s rubberBand;
  animation: 1s rubberBand;
}

.bg-study-icon {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}

.bg-study-icon i {
  position: absolute;
  color: #6b9300;
  top: 15px;
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-animation: scale 0.6s alternate infinite linear both;
  animation: scale 0.6s alternate infinite linear both;
}
@keyframes scale {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.custom-box.bg-green-color:hover {
  background: #94cb00;
}

.custom-box.bg-green-color:hover .bg-study-icon i {
  opacity: 0.8;
}


/*******************MINI CAROUSAL****************/
.image-div {
  width: 100%;
  height: 216px;
  overflow: hidden;
}
.mini-slider .carousel .animation1 {
  -webkit-animation: 0.6s fadeInUp;
  animation: 0.6s fadeInUp;
}
.mini-slider .carousel .animation2 {
  -webkit-animation: 0.6s fadeInDown;
  animation: 0.6s fadeInDown;
}

/********************NAVBAR FOR SMALL SCREEN****************/
.outer-window {
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1111111;
}

.inner-window {
  display: block;
  left: 0;
  -webkit-animation: 0.5s fadeInRightFirst;
  animation: 0.5s fadeInRightFirst;
}

.navbar1 {
  display: none;
}
.navbar1.nav-visible {
  display: block;
}
@-webkit-keyframes fadeInRightFirst {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
@keyframes fadeInRightFirst {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}

.navbar-content {
  background-color: #00b0cd;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 111111111;
}

.middle-window {
  display: block;
  left: 25%;
  -webkit-animation: 0.5s fadeInRightcustom;
  animation: 0.5s fadeInRightcustom;
}
@-webkit-keyframes fadeInRightcustom {
  from {
    left: 100%;
  }
  to {
    left: 25%;
  }
}
@keyframes fadeInRightcustom {
  from {
    left: 100%;
  }
  to {
    left: 25%;
  }
}

.outer-window .navbar {
  position: relative;
  background-color: transparent !important;
}

.outer-window .nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}

.outer-window .nav-item a {
  padding: 20px 15px;
}

.outer-window .navbar-nav {
  margin-top: 12%;
}

.outer-window .close-outerwindow {
  position: fixed;
  right: 6%;
  top: 6%;
  z-index: 1111;
}
.logo-small-nav {
  margin-top: 0%;
  margin-left: 0px;
}
.outer-window .close-outerwindow i {
  font-size: 30px;
  color: #ffffff;
}

/*****************FEATURES SECTION START*************/
#features {
  padding-top: 125px;
  padding-bottom: 125px;
}

.main-heading {
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -3px;
  font-weight: normal;
}
.sub-heading {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
}
.feature-icon {
  font-size: 55px;
  margin-bottom: 13px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.feature-card .card {
  border: none;
}
.feature-card .card-title {
  font-size: 20px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.feature-card .card-body {
  padding: 2rem;
}

.box {
  display: inline-block;
  float: left;
  width: 100%;
  position: relative;
  height: 100%;
  border: 1px solid #000;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  margin-right: -1px;
}
.box:hover {
  z-index: 10;
}
.box:before,
.box:after {
  content: "";
  display: block;
  position: absolute;
  background: white;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 1;
}
.box:before {
  width: calc(100% + 1px);
  height: 100%;
  z-index: 1;
  -webkit-transition: height 1s ease, opacity 0.8s ease;
  -o-transition: height 1s ease, opacity 0.8s ease;
  transition: height 1s ease, opacity 0.8s ease;
}
.box:after {
  height: calc(100% + 1px);
  width: 100%;
  z-index: 1;
  -webkit-transition: width 1s ease, opacity 0.8s ease;
  -o-transition: width 1s ease, opacity 0.8s ease;
  transition: width 1s ease, opacity 0.8s ease;
}
.box:hover:before,
.box:focus:before {
  -webkit-transition: height 0.2s ease, opacity 0.3s ease;
  -o-transition: height 0.2s ease, opacity 0.3s ease;
  transition: height 0.2s ease, opacity 0.3s ease;
  height: 85%;
  opacity: 0.7;
  border: 1px solid #94cb00;
}
.box:hover:after,
.box:focus:after {
  -webkit-transition: width 0.2s ease, opacity 0.3s ease;
  -o-transition: width 0.2s ease, opacity 0.3s ease;
  transition: width 0.2s ease, opacity 0.3s ease;
  width: 85%;
  opacity: 0.8;
  border: 1px solid #00b0cd;
}
.box:hover .box__image .card-title {
  color: #0c9a9a;
}
.box:hover .feature-icon {
  color: #94cb00;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.box__image {
  fill: #000;
  width: 100%;
  will-change: width;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2;
}
.col-height-features {
  height: 270px;
}

/******************GET ADMISSION SECTION STARTS***************/
#get-admission {
  margin-bottom: 125px;
}

.bg-admission-img {
  background-image: url("../img/admission-img.png");
  position: relative;
  min-height: 300px;
}

#get-admission .overlay-admission {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

#get-admission .admission-text {
  margin-top: 150px;
  margin-bottom: 150px;
}

/******************PORTFOLIO SECTION START****************/
.overlay-portfolio {
  position: absolute;
  min-height: 350px;
  z-index: 999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00b0cdd1;
}

.col-height-portfolio {
  height: 100%;
}

/*****************FOOTER SECTION START*************/
#footer {
  background-color: white;
}
ul.footer_ul {
  list-style: none;
  display: inline-block;
}
li.footer_list {
  display: inline-block;
  margin-right: 15px;
  font-size: 19px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.footer-content {
  padding-top: 8%;
  margin-bottom: 8%;
  border-top: 1px solid #e1e1e1;
}
.footer-icon {
  margin-bottom: 10px;
}
.footer_text {
  text-align: center;
}
ul.footer-icon li a:hover i {
  color: #fff;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

ul.footer-icon li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

ul.footer-icon li a:hover:before {
  top: 0;
}

ul.footer-icon li a:hover {
  border: 2px solid white;
  border-radius: 50px;
}

.fa-facebook-f {
  color: #3b5999;
}
.fa-twitter {
  color: #00acee;
}
.fa-linkedin-in {
  color: #0e76a8;
}
.fa-instagram {
  color: #dd4b39;
}

ul.footer-icon li:nth-child(1) a:before {
  background: #3b5999;
}

ul.footer-icon li:nth-child(2) a:before {
  background: #55acee;
}

ul.footer-icon li:nth-child(3) a:before {
  background: #0077b5;
}

ul.footer-icon li:nth-child(4) a:before {
  background: #dd4b39;
}

ul.footer-icon li a {
  width: 50px;
  height: 50px;
  background-color: transparent;
  text-align: center;
  padding: 10px 0 0 0;
  margin: 5px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

ul.footer-icon li a i {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}

ul.footer-icon li {
  list-style: none;
}

#footer {
  background-color: white;
  padding: 20px 0; 
}

.footer-content {
  padding-top: 10px; 
  padding-bottom: 5px; 
  margin-bottom: 0; 
  border-top: 1px solid #e1e1e1; 
}

ul.footer-icon {
  margin-bottom: 5px; 
  padding: 0; 
}

ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 5px 0; 
}

ul.footer-links li {
  display: inline-block;
  margin-right: 19px;
  font-size: 10px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

ul.footer-links li a {
  color: #666;
  text-decoration: none;
  font-weight: inherit;
}

ul.footer-links li a:hover {
  color: #94cb00; 
}

.footer_text {
  margin-top: 5px; 
  text-align: center;
  font-size: 14px; 
}

/*********************CONTACT US PAGE START************/
.bg-contact-img {
  background-image: url("../img/contact-us/contact1.png");
  position: relative;
}
.overlay-contact {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.row-height {
  height: 50vh;
}

#contactus-header .main-heading {
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

#contact-content {
  padding-top: 125px;
  padding-bottom: 125px;
}
.contact-card.card {
  border: none;
  cursor: pointer;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
}

.contact-card.card:hover.contact-card .location-icon {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.contact-card .location-icon {
  font-size: 60px;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.contact-card .card-text {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.contact-card .card-title {
  margin-top: 20px;
  margin-bottom: 6px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.form-outer {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  background: white;
  padding: 3% 4%;
  position: absolute;
  bottom: 6.5%;
  right: 9%;
  z-index: 10;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  text-align: center;
  margin-bottom: 10px;
}

.contact-btn {
  background-color: #00b0cd;
  border: 1px solid #00b0cd;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.contact-btn:hover {
  background-color: #94cb00;
  border: 1px solid #94cb00;
}

.form-control {
  font-family: "Montserrat", sans-serif;
}
#contact-description {
  padding-top: 125px;
}
/*!*****MAP SECTION/*/
#map {
  overflow: hidden !important;
}
.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 100%;
  width: 100%;
}

#contact-content .container.text-center {
  margin-bottom: 30px;
}

.our-centres-header {
  font-size: 30px;
  font-weight: inherit;
  color: #00b0cd; 
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-card {
  border: none;
  margin-top: 20px;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
}

.contact-card .location-icon {
  font-size: 60px;
  margin-bottom: 20px;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}

.contact-card .card-text {
  font-size: 14px;
  color: #333;
}

.contact-card.card-blue .card-body {
  background-color: #f8f9fa;
  color: white;
}

.contact-card:hover .location-icon {
  transform: translateY(-15px);
}

.contact-card .card-body {
  padding: 20px;
  background-color: #f8f9fa;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
}

.card-text {
  font-size: 16px;
}

.mapouter {
  margin-bottom: 20px;
}

.gmap_canvas iframe {
  border-radius: 10px;
}

/******************ABOUT US PAGE START***********/
header .navbar-dark-vision {
  top: 0;
  overflow: hidden;
  height: 90px;
  width: 100%;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  /*z-index: 11;*/
  position: relative;
  background-color: #00b0cd !important;
}
header .navbar-dark-vision .navbar-btn {
  border: 2px solid white;
}
header .navbar-dark-vision .navbar-btn:hover {
  border: 2px solid #94cb00;
}
.bg-about-img {
  background-image: url("");
  position: relative;
}
#about-header .main-heading {
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.width-heading {
  width: 393px;
  margin-right: auto;
}
.about-heading {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
}
.about-content span {
  font-size: 40px;
}
.text-width {
  width: 499px;
  margin-left: auto;
  margin-right: auto;
}
.bg-counter-img {
  background-image: url("../img/testimonial2.png");
  position: relative;
}
.counter-heading {
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}

.wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
  cursor: pointer;
}

.counter {
  padding: 0;
  border-radius: 5px;
  text-align: center;
}
.counter_plus {
  font-size: 25px;
  font-weight: bold;
}
.count-title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  color: #94cb00;
  font-weight: bold;
  line-height: 1.333;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}
.wrapper:hover .counter_icon {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}

.count-text {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  text-align: center;
}
.counter_icon {
  margin: 0 auto;
  float: none;
  display: table;
  font-size: 60px;
  padding-bottom: 5px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

#mission-vision-values {
  background-color: #f9f9f9;
  padding: 50px 0;
}

#mission-vision-values .main-heading {
  font-size: 36px;
  margin-bottom: 20px;
  color: #94cb00; 
}

#mission-vision-values .sub-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

#mission-vision-values ul {
  list-style-type: disc;
  padding-left: 20px;
}

#mission-vision-values li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

#mission-vision-values p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/*************COURSES PAGE START***************/
.bg-courses-img {
  background-image: url("");
  position: relative;
}
#content-courses {
  padding-top: 125px;
  padding-bottom: 125px;
}
.courses .main-heading {
  font-size: 23px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: 400;
  margin-top: 15px;
}
.courses .course-text {
  border-top: 1px solid #e1e1e1;
}
.courses .sub-heading {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 15px;
}
.courses .navbar-btn {
  background-color: #94cb00;
  border-color: #94cb00;
  cursor: pointer;
  padding: 6px 20px 6px 20px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.courses .navbar-btn:hover {
  background-color: #00b0cd;
  border-color: #00b0cd;
}
.course-link {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.course-link:hover {
  color: #94cb00;
  margin-left: 12px;
}

/***IMAGE HOVER EFFECT***/
.snip1295 {
  position: relative;
  overflow: hidden;
  padding: 8px;
  width: 100%;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.snip1295 img {
  max-width: 100%;
  vertical-align: top;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.border {
  border: 0 solid #dee2e6 !important;
}
.snip1295 .border {
  position: absolute;
  opacity: 0.6;
}
.snip1295 .border:before,
.snip1295 .border:after {
  background-color: #00b0cd;
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.snip1295 .border div:before,
.snip1295 .border div:after {
  background-color: #94cb00;
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.snip1295 .border:before,
.snip1295 .border:after {
  width: 0;
  height: 1px;
}
.snip1295 .border div:before,
.snip1295 .border div:after {
  width: 1px;
  height: 0;
}
.snip1295 .border.one {
  left: 0;
  top: 0;
  right: 12px;
  bottom: 12px;
}
.snip1295 .border.one:before,
.snip1295 .border.one div:before {
  left: 0;
  top: 0;
}
.snip1295 .border.one:after,
.snip1295 .border.one div:after {
  bottom: 0;
  right: 0;
}
.snip1295 .border.two {
  left: 12px;
  top: 12px;
  right: 0;
  bottom: 0;
}
.snip1295 .border.two:before,
.snip1295 .border.two div:before {
  right: 0;
  top: 0;
}
.snip1295 .border.two:after,
.snip1295 .border.two div:after {
  bottom: 0;
  left: 0;
}
.snip1295 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.snip1295:hover .border:before,
.snip1295.hover .border:before,
.snip1295:hover .border:after,
.snip1295.hover .border:after {
  width: 100%;
}
.snip1295:hover .border div:before,
.snip1295.hover .border div:before,
.snip1295:hover .border div:after,
.snip1295.hover .border div:after {
  height: 100%;
}
.snip1295:hover img {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

/*************COURSE DETAIL PAGE START*************/

#detail-content {
  padding-top: 125px;
}
.bg-course-detail-img {
  background-image: url("");
  position: relative;
}
.left-menu .main-heading h1 h4 {
  font-size: 25px;
  margin-top: 30px;
  letter-spacing: -1px;
}
.main-heading-detail {
  font-size: 38px;
  letter-spacing: -2px;
  font-weight: normal;
}
ul.stars {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  color: yellow;
}
span.text-star {
  font-size: 15px;
  margin-left: 30px;
}
.border-bottom {
  border-bottom: 1px solid #e1e1e1;
}
.left-menu .sub-heading {
  font-size: 18px;
  margin-top: 25px;
}
.instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
span.sub-heading.text-white {
  margin-left: 20px;
  margin-top: 10px;
}
.img-instruction h4 {
  border-radius: 50%;
  width: 55px;
  height: auto;
}
.enroll-btn {
  background-color: #94cb00;
  border: 2px solid #94cb00;
  cursor: pointer;
  padding: 9px 35px 9px 35px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.enroll-btn:hover {
  background-color: #00b0cd;
  border: 2px solid #ffffff;
}

/*...............PORTFOLIO..............*/
.box4 {
  position: relative;
  height: 100%;
  width: 100%;
}
.box4:before {
  width: 0;
  height: 200%;
  background-image: -webkit-linear-gradient(45deg, rgba(0, 176, 205, 0.86) 30%, rgba(148, 203, 0, 0.86) 100%);
  background: -o-linear-gradient(45deg, rgba(0, 176, 205, 0.86) 30%, rgba(148, 203, 0, 0.86) 100%);
  background: linear-gradient(45deg, rgba(0, 176, 205, 0.86) 30%, rgba(148, 203, 0, 0.86) 100%);
  position: absolute;
  top: 0;
  left: -250px;
  bottom: 0;
  -webkit-transform: skewX(-36deg);
  -ms-transform: skewX(-36deg);
  transform: skewX(-36deg);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0.7;
  z-index: 1;
}
.box4:hover:before {
  width: 220%;
}
.box4 .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 1;
  margin-top: 100px;
  text-align: center;
}
.box4 .icon,
.box5 .icon {
  list-style: none;
  padding: 0;
}
.box4:hover .box-content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.box4 .title {
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  z-index: 1;
}
.box4 .post {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
}
.box4 .icon {
  margin: 0;
}
.box4 .icon li {
  display: inline-block;
}
.box4 .icon li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 28px;
  color: #ffffff;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.box5 .icon,
.box5 .icon li {
  display: inline-block;
}
.box1 img,
.box1:after,
.box1:before {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.box1 .icon,
.box2,
.box3,
.box4,
.box5 .icon li a {
  text-align: center;
}
.box10:after,
.box10:before,
.box1:after,
.box1:before,
.box2 .inner-content:after,
.box3:after,
.box3:before,
.box4:before,
.box5:after,
.box5:before,
.box6:after,
.box7:after,
.box7:before {
  content: "";
}
.box1,
.box11,
.box12,
.box13,
.box14,
.box16,
.box17,
.box18,
.box2,
.box20,
.box21,
.box3,
.box4,
.box5,
.box5 .icon li a,
.box6,
.box7,
.box8 {
  overflow: hidden;
}
.box1 .title,
.box10 .title,
.box4 .title,
.box7 .title {
  letter-spacing: 1px;
}
.box3 .post,
.box4 .post,
.box5 .post,
.box7 .post {
  font-style: italic;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.box1 .icon,
.box1 .title {
  margin: 0;
  position: absolute;
}
.box1 {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  position: relative;
}
.box1:after,
.box1:before {
  height: 50%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.box1:after {
  top: auto;
  bottom: 0;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.box1:hover:after,
.box1:hover:before {
  -webkit-transform: rotateZ(0);
  -ms-transform: rotate(0);
  transform: rotateZ(0);
}
.box1 img {
  height: auto;
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
.box1:hover img {
  -webkit-filter: sepia(80%);
  filter: sepia(80%);
  -webkit-transform: scale(1.3) rotate(10deg);
  -ms-transform: scale(1.3) rotate(10deg);
  transform: scale(1.3) rotate(10deg);
}
.box1 .title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 1px #004cbf;
  bottom: 10px;
  left: 10px;
  opacity: 0;
  z-index: 2;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s ease 0.2s;
  -o-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
.box1:hover .title {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.box1 .icon {
  padding: 7px 5px;
  list-style: none;
  background: #004cbf;
  border-radius: 0 0 0 10px;
  top: -100%;
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
}
.box1:hover .icon {
  top: 0;
}
.box1 .icon li {
  display: block;
  margin: 10px 0;
}
.box1 .icon li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.box2 .icon li a,
.box3 .icon a:hover,
.box4 .icon li a:hover,
.box5 .icon li a,
.box6 .icon li a {
  border-radius: 50%;
}

/*.............PAGINATION............*/
.page-link {
  position: relative;
  display: block;
  margin-left: -1px;
  line-height: 1.25;
  color: #333333;
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 16px;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
}
.page-item .page-link {
  z-index: 1;
  color: #fff;
  background-color: #94cb00;
  border-color: #94cb00;
  opacity: 0.9;
  text-decoration: none;
  border-radius: 100%;
}
.page-item .page-link:focus {
  color: white !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.page-item .page-link:hover {
  color: #94cb00;
  background-color: #ffffff;
  border-color: #94cb00;
  opacity: 0.8;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.margin_footer-top {
  padding-top: 120px !important;
}
.pagination li {
  margin: 5px;
}
.page-item.active .page-link {
  z-index: 1;
  color: #94cb00;
  background-color: #ffffff;
  border-color: #94cb00;
  opacity: 0.8;
}
a.page-link {
  border-radius: 100%;
}
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  border-radius: 100%;
}

/********PORTFOLIO HOVER EFFECT*******/
.portfolio-xe .flat-pictures .cbp-item .overlay {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  top: 15px;
  background: -o-linear-gradient(45deg, rgba(0, 176, 205, 0.5) 20%, rgba(148, 203, 0, 0.5) 100%);
  background: linear-gradient(45deg, rgba(0, 176, 205, 0.5) 20%, rgba(148, 203, 0, 0.5) 100%);
  z-index: 111;
  opacity: 0;
  -webkit-transition: 0.8s ease;
  -o-transition: 0.8s ease;
  transition: 0.8s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.portfolio-xe .flat-pictures .cbp-item:hover .overlay {
  opacity: 1;
}
.portfolio-xe .flat-pictures .cbp-item .overlay .plus-gallery {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 2px #fff;
  background-color: transparent;
  display: none;
}
.portfolio-xe .flat-pictures .cbp-item .overlay .plus-gallery i {
  color: #fff;
  font-size: 30px;
}
.portfolio-xe .flat-pictures .cbp-item:hover .overlay .plus-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: 1s fadeInUp;
  animation: 1s fadeInUp;
}

/* Testimonial Section Styles */
#testimonials {
  padding: 50px 20px;
  background-color: #f8f9fa; 
}

.testimonials-header {
  font-size: 26px;
  font-weight: inherit;
  color: #00b0cd; 
  margin-bottom: 40px;
}

.testimonial-card {
  border: 1px solid #e1e1e1; 
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  padding: 20px;
  margin: 10px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 12px;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 14px;
  font-weight: inherit;
  color: #555;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .testimonial-card {
    margin-bottom: 20px;
  }
}


/**************MEDIA QUERIES***************/

@media (min-width: 992px) and (max-width: 1200px) {
  .inner-box {
    margin-left: 2%;
    margin-right: 2%;
    text-align: center;
  }
  .inner-box1 {
    margin-left: 2%;
    margin-right: 2%;
    text-align: center;
  }
  .text_post {
    margin-top: 0;
  }
  .main {
    margin-bottom: 0;
  }
  .date {
    margin-bottom: 0;
  }

  .main-heading {
    font-size: 42px;
  }
  .contact-card .card-title {
    font-size: 26px;
  }
  .custom-box {
    padding: 57px 35px;
  }
  .bg-study-icon i {
    font-size: 160px;
  }
  .custom-box .box-text {
    font-size: 23px;
  }
  .social_icon {
    position: absolute;
    right: 23%;
    text-align: center;
    bottom: 27%;
    top: auto;
  }
  ul.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 765px) and (max-width: 993px) {
  .logo img {
    max-height: 100%;
    max-width: 100px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .margin_small {
    margin-top: 30px;
  }
  ul.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .social_icon {
    position: absolute;
    right: auto;
    top: 93%;
    left: 18%;
  }
  .margin-top-sm {
    margin-top: 100px;
  }
  .col-height {
    height: 45vh;
  }
  .my-tog-btn {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .cbp-l-filters .cbp-filter-item {
    cursor: pointer;
    margin: 9px;
  }
  .popular_image {
    height: 100%;
    width: 18%;
  }
  .margin_small {
    margin-top: 30px;
  }
  #detail-content {
    padding-top: 60px;
  }
  .main-heading {
    font-size: 42px;
  }
  .form-outer {
    bottom: 12%;
  }
  .testimonial-owl .item .description .width-text {
    margin-left: 15%;
    margin-right: 15%;
  }
  .col-height {
    height: 45vh;
  }
  .margin-top-sm {
    margin-top: 125px;
  }
  .custom-box {
    padding: 60px 67px;
  }
  .my-tog-btn {
    display: block;
  }
  .social_icon {
    position: absolute;
    right: auto;
    top: 94%;
    left: 12%;
  }
  ul.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .logo img {
    max-height: 100%;
    max-width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .portfolio-xe {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cbp-l-filters .cbp-filter-item {
    margin: 5px;
  }
  .cbp-l-filters .cbp-filter-item span {
    font-size: 13px;
  }
  .box4:hover:before {
    width: 470%;
  }
  .box4 .box-content {
    margin-top: 35px;
  }
  .box4 .post {
    font-size: 12px;
  }
  .written .display {
    display: inline-block;
    text-align: center;
  }
  .written_text {
    padding-bottom: 22px;
    text-align: center;
    margin-left: 0;
  }
  .mt-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .height {
    text-align: center;
  }
  .quote_text .quote {
    font-size: 21px;
    width: 325px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 60px;
  }
  .verticle_lineQ {
    margin-top: -86px;
    margin-left: 21.2rem;
  }
  .icon_comment {
    margin-left: 55px;
  }
  .icon_text {
    margin-top: auto;
    margin-bottom: auto;
  }
  .main-heading-detail {
    font-size: 32px;
  }
  #detail-content {
    padding-top: 60px;
  }
  #content-courses {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #contactus-header .main-heading {
    font-size: 35px;
  }
  .courses .sub-heading {
    font-size: 12px;
    line-height: 1.8;
  }
  .courses .main-heading {
    font-size: 17px;
  }
  #contact-description {
    padding-top: 60px;
  }

  .wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #teachers {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #get-admission {
    margin-bottom: 60px;
  }
  #testimonial {
    margin-bottom: 60px;
  }
  #features {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  #about-header .main-heading {
    font-size: 35px;
  }
  .text-width {
    width: 332px;
    margin-left: auto;
    margin-right: auto;
  }
  .form-outer {
    position: inherit;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    padding: 3% 7%;
  }
  #contact-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #map {
    padding-top: 60px;
  }
  .col-height-features {
    height: 225px;
  }
  .main-heading {
    font-size: 37px;
  }
  .sub-heading {
    font-size: 12px;
  }
  .testimonial-owl .item .description .width-text {
    margin-left: 5%;
    margin-right: 5%;
  }
  .social_icon {
    position: absolute;
    right: auto;
    top: auto;
    bottom: 4%;
    left: 2%;
  }
  .column-display {
    display: none;
  }
  .my-tog-btn {
    display: block;
  }
  .custom-box {
    padding: 12.5px 33px;
  }
  .custom-box .box-text {
    font-size: 16px;
  }
  .arrow-box {
    font-size: 20px;
    padding: 6px 9px;
  }
  .arrow-box1 {
    font-size: 20px;
    padding: 6px 9px;
  }
  .bg-campus-icon {
    visibility: hidden;
  }
  .bg-study-icon {
    visibility: hidden;
  }
  .col-height {
    height: 52vh;
  }
  #background-carousal .carousal-overlay {
    left: 15px;
    right: 15px;
  }
  .margin-top-sm {
    margin-top: 145px;
  }
  .main-content .main-heading {
    font-size: 37px;
  }
  .main-content .sub_heading {
    font-size: 13px;
  }
  .image-div {
    width: 100%;
    height: 175px;
  }
  .bg-campus-icon i {
    font-size: 145px;
  }
  .bg-study-icon i {
    font-size: 145px;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 586px;
    margin: 1.75rem auto;
  }
}

@media (min-width: 350px) and (max-width: 767px) {
  .custom-box {
    padding: 16.5px 33px;
  }
  .social_icon {
    bottom: 1%;
  }

  .logo img {
    max-height: 100%;
    max-width: 100px;
  }
}

a:focus,
a:active {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
}

input,
select,
textarea {
  outline: none;
  appearance: unset !important;
  -moz-appearance: unset !important;
  -webkit-appearance: unset !important;
  -o-appearance: unset !important;
  -ms-appearance: unset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

input[type="checkbox"] {
  /*appearance: checkbox !important;*/
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
}

input[type="radio"] {
  -moz-appearance: radio !important;
  -webkit-appearance: radio !important;
  -o-appearance: radio !important;
  -ms-appearance: radio !important;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 30px white inset;
  -moz-box-shadow: 0 0 0 30px white inset;
  -webkit-box-shadow: 0 0 0 30px white inset;
  -o-box-shadow: 0 0 0 30px white inset;
  -ms-box-shadow: 0 0 0 30px white inset;
}

.form-tittle {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  margin-bottom: 20px;
}

h3 {
  font-weight: bold;
  color: #222;
  font-size: 15px;
  margin: 0px;
  margin-bottom: 35px;
}

.clear {
  clear: both;
}

.main {
  
  position: relative;
}

.appointment-form {
  padding: 30px 30px 50px 30px;
}
input,
select {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 2px solid #ebebeb;
  padding: 5px 0;
  color: #222;
  margin-bottom: 23px;
  font-family: "Montserrat", sans-serif;
}

input:focus,
select:focus {
  color: #222;
  border-bottom: 2px solid #94cb00;
}

input[type="checkbox"]:not(old) {
  width: 2em;
  margin: 0;
  padding: 0;
  font-size: 1em;
  display: none;
}

input[type="checkbox"]:not(old) + label {
  display: inline-block;
  margin-top: 7px;
  margin-bottom: 25px;
}

input[type="checkbox"]:not(old) + label > span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 15px;
  margin-bottom: 3px;
  border: 1px solid #ebebeb;
  background: white;
  background-image: -o-linear-gradient(white, white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(white, white);
  vertical-align: bottom;
}

input[type="checkbox"]:not(old):checked + label > span {
  background-image: -o-linear-gradient(white, white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(white, white);
}

#confirm_type {
  margin-bottom: 20px;
}

.form-group-2 {
  margin-top: 15px;
  margin-bottom: 30px;
}

.form-check {
  margin-bottom: 20px;
}

.select-list {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}

.list-item {
  position: absolute;
  width: 100%;
}

