/**
* Template Name: School
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  outline: none;
  color: #0078aa;
  transition: 0.5s ease-in;
}

a:hover {
  color: #ffb200;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*.text-brand-primary {
	color: #ffb200;
}*/
.bg-enquiry-modal {
	background: #0078aa;
}
.btn-enquiry-modal {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 24px;
	border-radius: 2px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #0078aa;
	color: #fff;
	background: #0078aa;
	border-radius: 4px;	
}
.btn-enquiry-modal:hover {
	background: transparent;
	color: #0078aa;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid #ffb200;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb200;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ffa59b;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #ffb200;
  font-size: 15px;
  min-height: 30px;
  padding: 0;
  /*custom*/
  color: #fff;
}
/*#topbar .container {
  border-bottom: 1px solid #eee;
}*/
/*#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  color: #fff;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: #ffb200;
}*/
#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info span {
  color: #fff;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #0078aa;
}

/*--------------------------------------------------------------
# Logo Bar
--------------------------------------------------------------*/
.logo-bar {
  min-height: 110px;
  /*height: 110px;*/
}
.logo-bar .logo a {
  color: #ffb200;
}
.logo-bar .logo img {
  max-height: 100px;
}

.logo-bar .logo-info {
  /*float: right;*/
}
.logo-bar .logo-info h4 i {
  color: #ffb200;
  font-size: 34px;
}
.logo-bar .logo-info h4 span {
  font-size: 14px;
}

.logo-bar .right-side {
  float: right;
}
.logo-bar .btn-admission, .logo-bar .btn-admission:focus {
	color: #fff;
	padding: 8px 25px;
	margin-left: 30px;
	border-radius: 4px;
	border: 2px solid #ffb200;
	transition: 0.3s;
	font-size: 14px;
	font-weight: 500;
	background: #ffb200;
}
.logo-bar .btn-admission:hover {
	color: #ffb200;
	background: transparent;
}
@media (max-width: 991px) {
  .logo-bar .right-side {
    margin-bottom: 5px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 65px;
  /*border-top: 1px solid #cecece;*/
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a {
  color: #ffb200;
}
#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (max-width: 991px) {
  #header {
    height: 60px;
	background: #0078aa;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  border: 10px solid #0078aa;
  background: #0078aa;
}
.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 30px 10px 0;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  /*custom own
  text-transform: uppercase;*/
  font-weight: 500;
}
.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: #ffb200;
}
.navbar .getstarted, .navbar .getstarted:focus {
  color: #fff;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #ffb200;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  background: #ffb200;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: transparent;
  color: #ffb200;
}
.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;
  background: #0078aa;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #fff;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ffb200;
}
.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;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
	color: #fff;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #0078aa;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffb200;
}
.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: #0078aa;
  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: #ffb200;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 70vh;*/
  height: 80vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  /*background-size: cover;*/
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(45, 103, 60, 0.8);*/
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}
#hero .container {
  /*text-align: center;*/
  text-align: left;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  /*font-size: 48px;*/
  font-size: 60px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  /*width: 12px;
  height: 12px;
  border-radius: 50px;*/
  width: 20px;
  height: 5px;
  border-radius: 3px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  /*background: #ffb200;*/
  background: #fff;
  width: 40px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ffb200;
  border: 2px solid #ffb200;
}
#hero .btn-get-started:hover {
  background: transparent;
  color: #ffb200;
}
@media (max-width: 992px) {
  #hero {
    height: 40vh;
  }
  #hero .carousel-container {
    top: 66px;
  }
  #hero .btn-get-started {
	padding: 4px 8px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 20px;
    margin-top: 0px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 50vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  /*custom*/
  color: #0078aa;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ffb200;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title .why-sec-title {
  font-size: 24px;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

@media (max-width: 769px) {
  .section-title h2 {
	font-size: 24px;
 }
}

/*--------------------------------------------------------------
# Sticky Button Section
--------------------------------------------------------------*/
.sticky-container {
	padding: 0px;
	margin: 0px;
	position: fixed;
	right: -96px;
	top: 60%;
	width: 136px;
	z-index: 1100;
}
.book-now {
	border-radius: 0;
	display: inline-block;
	font-size: 1rem;
	height: 38px;
	line-height: 50px;
	position: fixed;
	right: 0;
	text-align: center;
	text-decoration: none;
	/*text-transform: uppercase;*/
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform-origin: bottom right;
	width: 202px;
	top: 35%;
	background-color: #f37f1d;
	color: #fff;
	font-weight: 600;
	border-radius: 5px 5px 0px 0px;
}

/*--------------------------------------------------------------
# Short Notice Bar
--------------------------------------------------------------*/
.short-notice {
  padding: 20px 0;
}
.short-notice .parentmar {
  width: 100%;
  border: 2px solid #c8102e;
  font: 18px bold Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: #e4fdff;
}
.short-notice .childmar {
  background: #c8102e;
  padding: 10px 20px;
  line-height: 18px;
  font: 20px bold;
  color: floralwhite;
  margin: 0;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}
.featured-services .news-box {
  background: #fff;
  border-left: 5px solid #ffb200;
}
.featured-services .icon-box {
  padding: 20px;
}
.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  /*color: #ffb200;*/
  color: #ffb200;
  font-size: 42px;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  /*color: #222222;*/
  color: #0078aa;
  transition: 0.3s;
}
.featured-services .icon-box:hover .title a {
  /*color: #ffb200;*/
  color: #ffb200;
}
.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  /*font-size: 28px;*/
  font-size: 32px;
  /*custom*/
  color: #0078aa;
  line-height: 1;
  margin-bottom: 27px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  /*color: #ffb200;*/
  color: #ffb200;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .icon i {
  text-align: center;
}
.about .icon i {
	font-size: 48px;
	line-height: 72px;
	margin-bottom: 10px;
	color: #ffb200;
	height: 72px;
	width: 72px;
	background-color: #ffebe9;
	border-radius: 5%;
}
.about .about-mv h4 {
  font-weight: 500;
  font-size: 36px;
  color: #0078aa;
  line-height: 1;
  margin-bottom: 15px;
}
/*.about .btn-about, .about .btn-about:focus {
  	color: #0078aa;
	padding: 8px 25px;
	border: 2px solid #0078aa;
}
.about .btn-about:hover {
	color: #fff;
	background-color: #0078aa;
	border-color: #0078aa;
}
.about .btn-about:hover i{
  padding-left: 5px;
  transition: all 0.4s linear;
}*/
.about .btn-about, .about .btn-about:focus {
  color: #0078aa;
}
.about .btn-about:hover {
  color: #ffb200;
}
@media (max-width: 769px) {
  .about .content h3 {
	font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Charecteristics
--------------------------------------------------------------*/
.charec-sec {
  padding-top: 20px;
}
.charec-sec .content h3 {
	font-weight: 700;
	/* font-size: 28px; */
	font-size: 32px;
	color: #0078aa;
	line-height: 1;
	margin-bottom: 27px;
}
.charec-sec .content ul {
	list-style: none;
	padding: 0;
}
.charec-sec .content ul li {
	padding-bottom: 10px;
}
.charec-sec .content ul i {
	font-size: 20px;
	padding-right: 4px;
	/* color: #ffb200; */
	color: #ffb200;
}

/*--------------------------------------------------------------
# Managing Committee
--------------------------------------------------------------*/
.mc ul {
	list-style: none;
	padding: 0;
}
.mc ul li {
	padding-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
}
.mc ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #ffb200;
}
.mc ul li span {
	font-size: 16px;
	font-weight: 500;
}
.mc ul li img {
	border-radius: 50%;
}

/*--------------------------------------------------------------
# Examination Page
--------------------------------------------------------------*/
.exam .content h3 {
  font-weight: 700;
  /*font-size: 28px;*/
  font-size: 36px;
  /*custom*/
  color: #0078aa;
  line-height: 1;
  margin-bottom: 27px;
}
.exam .content ul {
  list-style: none;
  padding: 0;
}
.exam .content ul li {
  padding-bottom: 10px;
}
.exam .content ul i {
  font-size: 20px;
  padding-right: 4px;
  /*color: #ffb200;*/
  color: #ffb200;
}
.exam .content p:last-child {
  margin-bottom: 0;
}
.exam .icon i {
  text-align: center;
}
.exam .icon i {
	font-size: 48px;
	line-height: 72px;
	margin-bottom: 10px;
	color: #ffb200;
	height: 72px;
	width: 72px;
	background-color: #ffebe9;
	border-radius: 5%;
}
.exam .about-mv h4 {
  font-weight: 500;
  font-size: 36px;
  color: #0078aa;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 769px) {
  .exam .content h3 {
	font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}
.why-us .row {
  overflow: hidden;
}
.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}
.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #ff8376;
}
.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}
.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Static Status Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
  /*custom*/
  background: #0078aa;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: transparent;
}
.counts .count-box i {
  position: absolute;
  /*top: -25px;*/
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  background: #ffb200;
  color: #fff;
  border-radius: 50px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
  /*custom*/
  margin-top: 80px;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b8b8b8;
  text-transform: uppercase;
}
@media (max-width: 769px) {
  .counts .count-box {
	padding: 30px 30px 0px 30px;
  }
  .counts .count-box span {
	font-size: 36px;
	margin-top: 70px;
   }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: normal;
  margin: 10px 0 5px 0;
  color: #0078aa;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #ffc9c4;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffb200;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb200;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
/*.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.clients .swiper-slide img:hover {
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffb200;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb200;
}*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}*/

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
/*.cta {
  background: #ffb200;
  padding: 80px 0;
}*/
.cta {
	background-image: linear-gradient(rgba(0,71,33,0.9),rgba(0,33,71,0.8)),url(../../assets/img/banner/b1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	background-attachment: fixed;
	padding: 4rem 0 4rem;
}
.cta h3 {
  color: #ffb200;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ffb200;
  color: #fff;
  background: #ffb200;
  border-radius: 4px;
}
.cta .cta-btn:hover {
  background: transparent;
  color: #ffb200;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio / Gallery
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #ffb200;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffb200;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.blog-details .blog-list {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.blog-details .blog-info {
  border-bottom: 2px dotted #ddd;
}
.blog-details .blog-info .blog-photo img {
  max-height: 500px;
}
.blog-details .blog-list h3 {
  font-size: 20px;
  /*font-weight: 700;*/
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  color: #0078aa;
}
.blog-details .blog-list ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.blog-details .blog-list ul li + li {
  margin-top: 10px;
}
.blog-details .blog-list ul li a {
  color: #444;
}
.blog-details .blog-list ul li a:hover {
  color: #0078aa;
}
.blog-details .blog-ad img {
  max-height: 400px;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/*.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffb200;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb200;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
*/

/*--------------------------------------------------------------
# Notice
--------------------------------------------------------------*/
.notice-details {
  padding-top: 40px;
}
.notice-details .notice-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.3);
}
.notice-details .notice-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0078aa;
  color: #0078aa;
}
.notice-details .notice-info ol {
  list-style-type: decimal;
  padding: 0;
  font-size: 16px;
}
.notice-details .notice-info ol li + li {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Admission Fee Page
--------------------------------------------------------------*/
.admission-fee {
	padding-top: 40px;
}
.admission-fee .section-title p {
	color: #0c4864;
}
.admission-fee h4 {
	color: #0c4864;
}
.admission-fee .admission-list {
	padding: 30px;
	box-shadow: 0 0 25px 0 rgba(41,61,88, 0.07);
}
.admission-fee .table {
	border: 2px solid #0c4864;
}
.admission-fee .border-color {
	border-color: #0c4864;
}
.admission-fee .table thead tr {
	color: #0c4864;
}

/*--------------------------------------------------------------
# Monthly Fee Page
--------------------------------------------------------------*/
.monthly-fee {
	padding-top: 40px;
}
.monthly-fee .section-title p {
	color: #0c4864;
}
.monthly-fee h4 {
	color: #0c4864;
}
.monthly-fee .monthly-list {
	padding: 30px;
	box-shadow: 0 0 25px 0 rgba(41,61,88, 0.07);
}
.monthly-fee .table {
	border: 2px solid #0c4864;
}
.monthly-fee .border-color {
	border-color: #0c4864;
}
.monthly-fee .table thead tr {
	color: #0c4864;
}

/*--------------------------------------------------------------
# Result Page
--------------------------------------------------------------*/
.result {
	padding-top: 40px;
}
.result .search_box {
	width: 100%;
	/*float: left;*/
	background-color: #ffffff;
	/*height: auto;
	padding: 60px 20px;
	position: relative;*/
}
.result .input-design {
	border: 1px solid #0c4864;
}
.result .input-design::placeholder {
	color: #212529;
	opacity: 1;
}
.result .btn-outline-search {	
	width: 100%;
	color: #fff;
	background-color: #0078aa;
	border-color: #0078aa;
}
.result .btn-outline-search:hover {
	color: #0078aa;
	background-color: #fff;
	border-color: #0078aa;
}
.result .btn-outline-search:focus {
	box-shadow: 0 0 0 .25rem rgba(13,110,253,.5);
}
@media (max-width: 768px) {
  .result .search_box {
	/*padding: 15px 20px;*/
  }
}

/*--------------------------------------------------------------
# Faculty
--------------------------------------------------------------*/
.faculty {
  /*padding-top: 40px;*/
}
/*.faculty .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.faculty .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.faculty .member .pic img {
  transition: ease-in-out 0.3s;
}
.faculty .member:hover {
  transform: translateY(-10px);
}
.faculty .member .member-info {
  padding-left: 30px;
}
.faculty .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #0078aa;
}
.faculty .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.faculty .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
.faculty .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.faculty .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faculty .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}
.faculty .member .social a i {
  color: #0078aa;
  font-size: 16px;
  margin: 0 2px;
}
.faculty .member .social a:hover {
  background: #ffb200;
}
.faculty .member .social a:hover i {
  color: #fff;
}
.faculty .member .social a + a {
  margin-left: 8px;
}*/
.faculty .member {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
  transition: 0.5s;
  border-top: 4px solid #ffb200;
}
.faculty .member:hover {
	transform: translateY(-10px);
}
.faculty .member img {
  max-width: 40%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}
.faculty .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.faculty .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.faculty .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.faculty .member .social {
  margin-top: 15px;
}
/*.faculty .member .social a {
  color: #0078aa;
  background: #eff2f8;
  transition: ease-in-out 0.3s;
}*/
.faculty .member .social a {
	transition: ease-in-out 0.3s;
	/*display: flex;*/
	padding: 8px;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	width: 32px;
	height: 32px;
	background: #eff2f8;
}
.faculty .member .social a:hover {
  color: #ffb200;
}
.faculty .member .social i {
  font-size: 16px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}
.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  color: #919191;
  transition: 0.3s;
}
.team .member .social a:hover {
  color: #ffb200;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #0078aa;
  border-bottom: 3px solid #0078aa;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #0078aa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #ffb200;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #ffb200;
  color: #fff;
}
.contact .contact-form {
  width: 100%;
  border-top: 3px solid #0078aa;
  border-bottom: 3px solid #0078aa;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .contact-form .form-group {
  padding-bottom: 8px;
}
.contact .contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .contact-form .error-message br + br {
  margin-top: 25px;
}
.contact .contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .contact-form input, .contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .contact-form input:focus, .contact .contact-form textarea:focus {
  border-color: #ffb200;
}
.contact .contact-form input {
  height: 44px;
}
.contact .contact-form textarea {
  padding: 10px 12px;
}
.contact .contact-form button[type=submit] {
  background: #ffb200;
  border: 0;
  padding: 10px 18px;
  color: #0078aa;
  transition: 0.4s;
  border-radius: 4px;
  border: 2px solid #ffb200;
}
.contact .contact-form button[type=submit]:hover {
  background: transparent;
  color: #0078aa;
  border: 2px solid #ffb200;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  /*background: #fbfbfb;*/
  background: #eff6ff;
  min-height: 40px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 66px;*/
    margin-top: 0px;
  }
}
.breadcrumbs h2 {
  font-size: 20px;
  font-weight: 300;
}
.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: #3c3c3c;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #2e3548;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #0078aa;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  color: #ffb200;
  font-size: 1.3rem;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
  letter-spacing: 1px;
}

/*Icon use*/
#footer .footer-top .footer-contact .footer-address {
  display: flex;
}
#footer .footer-top .footer-contact .footer-address .icon {
  margin-right: 10px;
  font-size: 16px;
  color: #ffb200;
}
#footer .footer-top .footer-contact .footer-address .addem {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  margin: auto 0px;
  letter-spacing: 2px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffb200;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}
#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: 2px;
  color: #ffb200;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  letter-spacing: 1px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffb200;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffb200;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter p {
  letter-spacing: 1px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ffb200;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #ffb200;
}
/*#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}
#footer .credits {
  color: #3ac162;
  transition: 0.3s;
}
#footer .credits:hover {
  color: #fff;
}*/
#footer .copyright a {
  color: #ffb200;
  transition: 0.3s;
}
#footer .copyright a:hover {
  color: #fff;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #ffb200;
  color: #fff;
  text-decoration: none;
}