/**
* Template Name: BizPage
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import"https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700";

body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  /* color: #fff; */
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #a80d34;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2ce782;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #a80d34;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background:#fff;
  box-shadow: 0 12px 13px -10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.top-header {
  background: #a80d34;
  padding:10px 0;
  width:100%;
  color:#fff;
  text-align:center;
}
.bottom-header {
  background: #fff;
  padding:10px 0;
  width:100%;
  height: 100px;
}
.navbar { top:-60px; }
.naac { top:-100px; position: relative; }
#header.header-transparent {
  background: #fff;
}

#header.header-scrolled {
  background:#fff;
  height:100px;
}

#header .logo {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  position: relative;
  top: -50px;
  height: 200px;
  z-index: 99;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #a80d34;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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: 10px 20px;
  text-transform: none;
  color: #666666;
}

.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: #a80d34;
}

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(26, 26, 26, 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;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #a80d34;
}

.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: #a80d34;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #a80d34;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #a80d34;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
#main { background:#fff url("../images/banner-bg.jpg") repeat-x scroll top; }

section {
  overflow: hidden;
}
.col-lg-25 {
    flex: 0 0 auto;
    width:20%;
}
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #a80d34;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}


/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.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 Section
--------------------------------*/
#featured-services {
  background:#ececec;
  position: relative;
  margin-top: -15px;
  z-index: 99;
  padding-bottom: 20px;
}
.featured-row {
  background: #fff;
  padding:10px 25px;
  width:80%;
  margin:0 10%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#featured-services .box {
  padding: 30px 20px;
  background:#a21035 url("../images/bg-1.jpg") repeat-x scroll top;
  position: relative;
}
#featured-services .box::before { border-top:2px solid #fff; }
#featured-services .box-bg {
  background:#feb3c8 url("../images/bg-2.jpg") repeat-x scroll top;;
}

#featured-services i {
  color: #a80d34;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight:700;
  margin:0 0 15px 0;
  font-size: 19px;
  color: #fff;
}
#featured-services .box-bg h4 { color:#000; }
#featured-services .box-bg p { color:#000; }
#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background:#fff;
  padding:10px 0 40px 0;
  position: relative;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius:10px;
  border:2px solid #a21035;
  margin-bottom: 20px;
  padding:20px;
}
#about > div > div > div > div > div > div.col-md-10 > div > div > ul > li > img {
    padding: 10px;
}

#about .about-col h2 {
  color: #000;
  text-align: left;
  font-weight:500;
  font-size: 28px;
  padding: 0;
  margin: 0 0 20px 0;
}
#about .about-col h2 b { color:#a21035; font-size:45px; }
#about .about-col h2 span {
  font-size:37px;
  color:#a21035;
}

#about .about-col h2 a:hover {
  color: #a80d34;
}

#about .about-col h3 {
  font-size: 17px;
  line-height: 24px;
  color:#a21035;
  font-weight:700;
  margin-bottom: 0;
  padding:0;
}
#about .about-col ul { list-style:none; padding:0; }
#about .about-col ul li {margin: 5px 0;font-size: 14px;color:#000;}
#about .about-col p { color:#000; margin:0 0 10px 0; }
/* Services Section
--------------------------------*/
#services {
  background: #fff url("../images/industrial-bg.jpg") repeat-x scroll bottom;
  padding:60px 0;
}

#services .title {
  font-weight:600;
  margin-bottom: 15px;
  font-size:35px;
  color:#a21035;
}

#services .title span {
  font-size:45px;
  font-weight:700;
}
.marketkey-slider .swiper-slide { text-align:center; }
.marketkey-slider .swiper-slide p { margin:10px 0 0 0; color:#fff; font-weight:700; font-size:19px; }
.marketkey-slider .swiper-slide img { 
   border:5px solid #fff;
   border-radius:10px;
   box-shadow:1px 2px 3px #000;
   transition: filter .5s ease-in-out;
  -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
  width:100%;
}
.marketkey-slider .swiper-slide img:hover {
  border: 5px solid #a21035;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  box-shadow: 0px 0px 0px #000;
}
.marketkey-slider .swiper-button-next, .marketkey-slider .swiper-button-prev { color:#a21035; }
/* Call To Action Section
--------------------------------*/
#call-to-action {
  background:#a21035;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
#call-to-action #heading {
  color: #a21035;
  line-height: 21px;
}
#call-to-action #heading a {
  font-size: 21px;
  color: #a21035;
}
#call-to-action #heading-list .card-body {
  font-size:17px;
  color: #a21035;
  text-transform:uppercase;
}
#call-to-action #heading-list .card-body img {
	position:relative;
	margin-top:-35px;
}
/* Call To Action Section
--------------------------------*/
.placements {
  border-bottom: 15px solid #a21035;
}
#skills {
  padding:100px 0 60px 0;
  background:#ececec;
  position: relative; 
  margin-top: -80px;
}

#skills .section-header h3 {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding:0 0 20px 0;
  margin:0 0 20px 0;
  color:#5a6944;  
  text-transform: none;
}

#skills .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 41px;
  display: block;
  color:#5a6944;
}

#skills .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color:#5a6944;
}
#skills .counters span.plus::after { content:"+"; }
#skills .counters span.lpa::after { content:"LPA"; }
.course {
  padding:60px 0;
  background:#a21035;
}
.course h3 a { color:#fff; font-weight:600; }
.glance {
  padding:60px 0 400px 0;
  background:#f3f7fa url('../images/cutm2.jpg') no-repeat scroll center bottom;
  background-size: 100%;
}
.glance h3 { color:#000; font-weight:500; font-size:61px; }
.glance h3 span { font-weight:600; }
.glance p { color:#000; font-weight:500; font-size:19px; line-height:31px; }
.overview {
  padding:60px 0;
  background:#ffffff;
}
.overview h3 { color:#000; font-weight:500; font-size:51px; }
.overview h3 span { font-weight:600; font-size:71px; }
.overview p { color:#000; font-weight:500; font-size:19px; line-height:31px; margin:0 0 10px 0; }
.overview p span { color:#7d2438; }
.overview .card-header { color:#000; font-weight:500; font-size:21px; }
.overview .card-body { color:#000; font-weight:500; font-size:17px; }
img.img-ribbon { width:60%; position:relative; top:-60px; height:700px; }
.admission-process {
  padding:60px 0 0 0;
  background:#ffffff;
  border-top:4px solid #ccc;
  position:relative;
}
.admission-process h3 { color:#000; font-weight:500; font-size:51px; }
.admission-process h3 span { font-weight:600; font-size:71px; }
.admission-process p { color:#000; font-weight:500; font-size:19px; line-height:31px; }
.admission-process-bottom {
  padding:30px 0;
  background:#a21035;
}
.pedagogy {
  padding:50px 0;
  background:#fff url('../images/pedagogy-bg.jpg') no-repeat scroll center bottom;
  background-size: 100% 100%;  
}
.pedagogy h3 { color:#000; font-weight:500; font-size:41px; }
.pedagogy h3 span { font-weight:600; font-size:71px; }
.pedagogy p { color:#000; font-weight:500; font-size:19px; line-height:31px; }
.integration {
  padding:0;
  background:#fff url('../images/integration-bg.jpg') no-repeat scroll center bottom;
  background-size: 100%;  
  min-height:650px;
}
.integration h3 { color:#000; font-weight:500; font-size:41px; }
.integration h3 span { font-weight:600; font-size:51px; }
.integration p { color:#000; font-weight:500; font-size:19px; line-height:31px; }
.integration h4 { color:#000; font-weight:600; font-size:41px; }
.integration h4 span { color:#1c4e44; }

.achivements {
  padding:60px 0;
  background: #fff url('../images/cutm6.jpg') no-repeat scroll center bottom;
  background-size: 100%;
}
.achivements h3 { color:#000; font-weight:500; font-size:45px; }
.achivements h3 span { font-weight:600; font-size:55px; }
.achivements p { color:#000; font-weight:500; font-size:19px; line-height:31px; }
p.bullet-list {
  width: 100%;
  float: left;
}
p.bullet-list span { font-size:25px; line-height:31px; font-weight:600; color:#000; }
p.bullet-list img {
  float: left;
  width: 20%;
  margin:0 20px 0 0;
}
img.img-achivements {
  position: absolute;
  left: 0;
  width: 40%;
}
.collaboration {
  padding:0;
  background:#fff;
}
.collaboration h3 { color:#000; font-weight:500; font-size:49px; }
.collaboration h3 span { font-weight:600; font-size:59px; }
.collaboration p { color:#000; font-weight:500; font-size:19px; line-height:31px; margin:0 0 15px 0; }
.join-us {
  padding:60px 0;
  background:#fff;
}
.join-us h3 { color:#a21130; font-weight:600; font-size:49px; }
.join-us h3 span { color:#000; font-weight:500; font-size:35px; }
a.btn-join-us { color:#a21130; font-weight:600; font-size:21px; text-decoration:none; border:2px solid #a21130; padding: 10px 20px; margin-right:10px; }
a.btn-join-us:hover { background:#a21130; color:#fff; }
a.btn-join { color:#fff; font-weight:600; font-size:21px; background:#a21130; text-decoration:none; border:2px solid #a21130; padding: 10px 20px; }
a.btn-join:hover { background:#fff; color:#a21130; }
.gallery { padding:60px 0 0 0; }
.gallery h3 { color:#000; font-weight:500; font-size:49px; }
.gallery h3 span { font-weight:600; font-size:59px; }
#faculty {
  background: #fff url("../images/faculty-bg.jpg") repeat-x scroll bottom;
  padding:60px 0;
}
#faculty { color:#000; font-weight:500; font-size:41px; }
#faculty h3 span { color:#000; font-weight:600; font-size:55px; }
h4.professor { font-size: 25px;  color: #fff;  margin-top: 15px; }
h4.professor span { font-weight: 700;   font-size: 31px; }
h4.professor1 { font-size: 21px;  color: #fff;  margin-top: 10px; }
h4.professor1 span { font-weight: 700;   font-size: 27px; }


#faq { padding:0; border-bottom:15px solid #a21035; }
.faq-holder { background:#fff; border-radius:20px; padding:30px 50px; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; }
.faq-holder h2 { color: #a21035; font-weight:bold; }
ul.why-list { margin:0; padding:0; list-style:none; }
ul.why-list li { margin:15px 0; padding:0 0 15px 0; color:#0b0b0b; border-bottom:1px solid #c9c9c9; }
ul.why-list li img { float:left; margin: 2px 15px 20px 0; }
ul.why-list li:last-child { border-bottom:none; }
.placement-holder { padding:50px 0 30px 0; }
.placement-holder h2 { color: #a21035; font-weight:bold; }
.recuiters { background:#fff; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; border-radius:10px; }
.recuiters-icon {background:#a21035;padding: 13px 0;text-align:center;width:25%;border-top-left-radius:10px;border-bottom-left-radius:10px;}
.recuiters-counter { width:25%; text-align:center; }
.recuiters-counter span { color:#a21035; font-size:21px; }
.recuiters-counter span::after { content:"+"; }
.recuiters-counter span.lpa::after { content:"LPA"; }

.recuiters-text { width:47%; text-align:center; }
.recuiters-text p { border-left:1px solid #000; margin:0; }
.clients-slider1 {padding: 20px 0;}
.clients-slider1 .swiper-slide { background:#fff; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; padding:20px 0px; border-radius:10px; overflow: hidden; }
.clients-slider1 .swiper-slide img { transform: scale(1.5); }

/* Facts Section
--------------------------------*/
#facts {
  padding: 60px 0;
  position: relative;
  box-shadow: 0 12px 13px -10px rgba(0, 0, 0, 0.1);
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .section-header h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 45px;
  display: block;
  color: #a21035;
  text-transform:none;
}
.success-slider { padding:20px 0 50px 0; }
.success-slider .swiper-slide { padding:10px; }
.success-slider .swiper-slide p { font-size:21px; margin:10px 0; color:#262626; font-weight:600; }
.success-slider .swiper-slide p span { color:#931f41; }
.success-slider .swiper-slide { 
   border:5px solid #fff;
   border-radius:5px;
   box-shadow:1px 2px 3px #000;
   width:100%;
   background: #fff;
}
.success-slider .swiper-slide img { 
   border:5px solid #c1c1c1;
   border-radius:10px;
   width:100%;
}
.success-slider .swiper-slide img:hover { 
   border:5px solid #838383;
}
.success-slider .swiper-slide img.company { width:auto; border:none; border-radius:none; margin-top:10px; }
.success-slider .swiper-pagination { bottom:0; }
/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
  background:#fff;
  box-shadow: 0 12px 13px -10px rgba(0, 0, 0, 0.1);
}
#portfolio h3 { font-size:21px; margin:10px 0; color:#262626; font-weight:500; }
#portfolio h3 span { font-size:27px; color:#931f41; font-weight:600; }
.engineering-slider { padding:15px 0; }
.engineering-slider .swiper-slide { text-align:center; }
.engineering-slider .swiper-slide p { margin:10px 0 0 0; color:#1e1e1e; font-weight:700; }
.engineering-slider .swiper-slide img {
   border-radius:10px;
   box-shadow:1px 2px 3px #000;
  width:100%;
}
.engineering-slider .swiper-button-next, .engineering-slider .swiper-button-prev { color:#a21035; }

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
}

#clients h3 { font-size:37px; color:#a21035; font-weight:700; }
ul.program-list { margin:0; padding:0; list-style:none; }
ul.program-list li { margin:0 1%; padding:0; width:12%; text-align:center; float:left; }
ul.program-list li img { width:100%; border:1px solid #838383; border-radius:5px; margin-bottom:10px; }
ul.program-list li p { color:#121212; font-weight:700; }
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
#faq1 {
  padding:50px 0;
  background: #282828 url("../images/faq-bg1.jpg") repeat-x scroll top;
}
#faq1 h4 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
.faq .faq-container .faq-item {
  background-color:#a21035;
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}
.faq .faq-container .faq-item.faq-active {
  background-color:#fff;
}
.faq .faq-container .faq-item.faq-active h3 {
	color:#a21035;
}
.faq .faq-container .faq-item.faq-active h3 span {
	color:#000;
	margin: 0 5px;
}
.faq .faq-container .faq-item:first-child {
  border-radius:10px 10px 0 0;
}
.faq .faq-container .faq-item:last-child {
  border-radius:0 0 10px 10px;
}
.faq .faq-container .faq-item i { color:#fff; }
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color:#fff;
}
.faq .faq-container .faq-item h3 span {
	color:#fbb732;
	margin: 0 5px;
}
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color:#000;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

#sectoral {
  padding:50px 0;
  background: #f3f7fa;
}
#sectoral h3 {
  color: #a21035;
  font-size: 29px;
  font-weight: 700;
}
ul.steps { list-style:none; }
ul.steps li { width:19%; float:left; margin:0 .5%; }
@media screen and (max-width: 480px) {
  ul.steps li {
    width:100%;
	margin:2% 0;
  }
}

#faq2 {
  padding:50px 0;
  background: #fff url("../images/faq-bg3.jpg") repeat-x scroll top;
}
#faq2 h4 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
#faq2 h4 span {
  font-size: 25px;
  font-weight:500;
}
#faq3 {
  padding:50px 0;
  background: #fff url("../images/faq-bg2.jpg") repeat-x scroll top;
}
#faq3 h4 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
#download {
  padding:50px 0;
  background: #f5f9fc;
  border-top:4px solid #000;
}
#register {
  padding:50px 0;
  background:#fff url("../images/registre-bg.jpg") repeat-x scroll top;
}
#register h3 {
  color: #a21035;
  font-size: 29px;
  font-weight: 700;
}
a.register-btn  {
  background: #fff;
  border-radius:5px;
  width:auto;
  padding:8px 45px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  font-size: 21px;
  border:2px solid #a80d34;
  color:#a80d34;
  margin:0 10px;
}
a.register-btn:hover {
  background: #a80d34;
  color:#fff;
}
#connect {
  padding:50px 0;
  background:#a21035;
}
#connect h3 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
.info-box {
  margin:0;
  padding:0;
  border: 1px solid #fff;
}
.info-title {
  background: #fff;
  color: #000;
  width: 100%;
  font-weight:700;
  font-size: 21px;
  padding: 15px;
}
.info-desc {
	padding:15px;
}
.info-desc p {
	margin:0;
  font-size:21px;
  color: #fff;
  font-weight:500;
  line-height:40px;
}
/* Testimonials Section
--------------------------------*/
#placement {
  padding:50px 0;
  background: #fff url("../images/placement-bg.jpg") repeat-x scroll top;
}
#placement h3 {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
}
#testimonials {
  padding:50px 0;
  background: #fff url("../images/research-bg.jpg") repeat-x scroll top;
}
#testimonials h3 { font-size:37px; color:#fff; font-weight:700; }
.research { position:relative; }
.research-box { 
   border:5px solid #fff;
   border-radius:5px;
   box-shadow:1px 2px 3px #000;
   width:100%;
   background: #fff;
   padding:5px;
   text-align:center;
}
.inside-research-box { border:1px solid #a21035; border-radius:5px; }
.inside-research-box p { color:#090909; margin:10px 0; font-size:15px; line-height:19px; }

/* Team Section
--------------------------------*/
#team {
  background: #990f31;
  padding: 60px 0;
}
#team h3 { font-size:37px; color:#fff; font-weight:400; }
#team h3 span { font-weight:700; }
#team h4 { margin:60px 0 0 0; font-size:21px; color:#fff; font-weight:400; padding:30px 20px; border:1px solid #fff; border-radius:5px; position:relative; }
#team h4 span { background: #fff; color:#990f31; width:200px; padding:15px; position:absolute; top:-40px; left:-1px; }
.white-height {background: #fff;height: 30px;box-shadow:1px 2px 3px #000;}
.white-bg {background: #fff;padding: 10px 10px;margin: 10px 0;box-shadow:1px 2px 3px #000;}
.white-bg h1 { font-size:35px; color:#000; font-weight:700; }
.apply-now {background:url("../images/apply-bg.jpg") no-repeat scroll 0 0;height: 75px;}
.apply-now  h5 {
  margin:0;
  font-size: 18px;
  color:#fff;
  font-weight:400;
  text-align: left;
  padding: 15px 0 0 40px;
  float: left;
  width: 100%;
  }
.apply-now a {margin: 37px 0 0 90px;/* background-color: #990F31; */font-size: 20px;color: #000;font-weight:400;border-radius: 20px;float:left;width: 59%;font-style:italic;}

#information {
  background: #ffd4de;
  padding: 60px 0;
}
#information h2 {
  color: #000;
  font-size: 29px;
  font-weight: 700;
}
#information p {
  color: #000;
  font-size:19px;
}
.cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #a21035;
  color: #a21035;
  background: #fff;
}
.cta-btn:hover {
  background: #a21035;
  color: #ffd4de;
}

#faq-section {
  background:url(../images/faq-bg.jpg) fixed center center;
  background-size: auto, auto;
  background-size: cover;
  padding: 60px 0;
}
#faq-section h2 {
  color: #fff;
  font-weight:700;
  margin:0;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #a80d34;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #a80d34;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

#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: #a80d34;
  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 #a80d34;
  border-top-color: #eee;
  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 {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #a80d34;
}

#contact .php-email-form button[type=submit] {
  background: #a80d34;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #13a456;
}

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

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

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #333333;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #a80d34;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #a80d34;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #fff;
  color: #333333;
  padding: 6px 30px 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid #a80d34;
}

.blog .entry .entry-content .read-more a:hover {
  background: #a80d34;
  color: #fff;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #a80d34;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a80d34;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #a80d34;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #333333;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}

.blog .blog-author .social-links a:hover {
  color: #a80d34;
}

.blog .blog-author p {
  font-style: italic;
  color: #666666;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #666666;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #333333;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #a80d34;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 10px 30px;
  border: 0;
  background-color: #a80d34;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1ee57a;
}

.blog .blog-pagination {
  color: #a80d34;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #a80d34;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #a80d34;
  border-radius: 50px;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #333333;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 70px);
  box-shadow: none;
}

.blog .sidebar .search-form form input:focus {
  box-shadow: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: -1px;
  background: #a80d34;
  color: #fff;
  transition: 0.3s;
  line-height: 0;
  border-radius: 50px;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #13a456;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #a80d34;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b3b3b3;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #a80d34;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b3b3b3;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #333333;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #a80d34;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  background: #a80d34;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #a21035;
  padding: 0;
  color: #fff;
  font-size: 15px;
}

#footer .footer-top {
  background: #1e1d25;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #a80d34;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #a80d34;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #a80d34;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a80d34;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer-newsletter {
  background-color: transparent;
  background-image: linear-gradient(120deg, #A41034 59%, #1D1D24 45%);
  padding:20px 0;
  border-top:1px solid #fff;
  border-bottom:1px solid #fff;
}
.footer-newsletter h4 { font-weight:700; margin:0; }
.footer-newsletter p { margin:0; }
.footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

.footer-newsletter input[type=submit] {
  background: #a80d34;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

.footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: left;
  padding: 30px 0;
}
#footer .copyright p { margin:0; }
#footer .copyright a {
  color: #fff;
}
#footer .copyright a:hover {
  color: #000;
}
a.splite_sideEnquiry {
  cursor: pointer;
  border-radius: 3px;
  height: auto;
  padding: 5px;
  width:250px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  z-index: 1001;
  background: #a80d34;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
  top: 35%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  right: -105px;
  cursor: pointer;
}
a.splite_sideEnquiry1 {
  cursor: pointer;
  border-radius: 3px;
  height: auto;
  padding: 5px;
  width:50px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  z-index: 1001;
  background: #a80d34;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
  top:60%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  right: -5px;
  cursor: pointer;
}
a.splite_sideEnquiry2 {
  cursor: pointer;
  border-radius: 3px;
  height: auto;
  padding: 5px;
  width:50px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  z-index: 1001;
  background: #a80d34;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
  top:70%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  right: -5px;
  cursor: pointer;
}

.otpresendlink a {
    font-size: 12px;
    position: relative !important;
    bottom: 30px !important;
    left: -4px !important;
    text-decoration: none;
}
span#otpresendlinkMobile a {
    color: grey !important;
}
.form-group.label-floating.reg_university_id_div.UniversityId.field-select {
    display: none;
}

.form-group.label-floating.reg_course_id_div.CourseId.field-select {
    display: none;
}