/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&family=Poppins:wght@500;700&family=Raleway:wght@400;600&display=swap');

body {
	font-family: "Open Sans", sans-serif;
	color: #000
}

a {
	color: #ffc107;
	text-decoration: none
}

a:hover {
	color: #ff724a;
	text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'PT Sans', sans-serif;
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ffc107;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all .4s
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0
}

.back-to-top:hover {
	background: #900;
	color: #fff
}

.back-to-top.active {
	visibility: visible;
	opacity: 1
}

#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 #ffc107;
	border-top-color: #ffe9e3;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite
}

#hero {
  width: 100%;
  min-height: 100vh; /* Allows full content display */
  background: var(--bg-image-webp) top center;
  background-size: cover;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content */
}

#hero .hero-container {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;

	flex-direction: column;
	
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 58px;
	font-weight: 700;
	line-height: 56px;
}

#hero h2 {
	color: #eee;
	margin-bottom: 50px;
	font-size: 24px
}

#hero .btn-get-started {
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	padding: 10px 35px 10px 35px;
	border-radius: 4px;
	transition: .5s;
	color: #fff;
	background: #ffc107;
	border: 2px solid #ffc107
}

#hero .btn-get-started:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .1)
}

#hero .btn-watch-video {
	font-size: 16px;
	display: inline-block;
	transition: .5s;
	margin-left: 25px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

#hero .btn-watch-video i {
	line-height: 0;
	color: #fff;
	font-size: 32px;
	transition: .3s;
	margin-right: 8px
}

#hero .btn-watch-video:hover i {
	color: #ffc107
}

.subjects {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 18px;
  justify-content: center;
  text-align: center;
  color: #ffc107;
  background-color: rgb(0, 0, 0, .6);
  margin: 12px 0px;
  padding: 12px 12px;
}

.subjects span {
  position: relative;
  padding: 0 0px;

  margin-right: 10px; /* Space between items */
}

/* Remove the border (line) from the last span */
.subjects span:last-child {
  border-right: none;
}

/* Optional: Adjust the color of the horizontal line */
.subjects span:not(:last-child)::after {
  content: "|";
  color: #aaa;
}

.sub_t {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 30px;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: rgb(0, 0, 0, .6);
  margin: 12px 0px;
  padding: 12px 12px;
}

.sub_t h5 {
  display: grid;
    width: 100%;
}

.area-research {
  list-style-type: none; /* Remove default list bullets */
  padding-left: 0;
}

.area-research li {
  position: relative;
  padding-left: 40px; /* Space for the checkmark */
  margin-bottom: 16px; /* Set bottom margin to 6px */
  font-size: 16px;
  line-height: 1.5; /* Adjust line height for better text spacing */
}

.area-research li::before {
  content: "\2713"; /* Unicode character for checkmark */
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%; /* Round box */
  background-color: #28a745; /* Green color for the checkmark box */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* Adjust size of the checkmark */
}

#hero .row{margin: 6px;}

#hero .col-md-6.offset-md-1,
#hero .col-md-4 {
  display: flex;
  flex-direction: column; /* Stack the elements vertically */
  justify-content: center; /* Vertically center the content */
  align-items: center; /* Horizontally center the content */
  height: 100vh; /* Make the column take up the full height of the viewport */
}

.top-faculty .item {
    margin: 20px;
    display: flex;
    justify-content: center;
}

.top-faculty .card {
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

.top-faculty .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.top-faculty .card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.top-faculty .card-body {
    padding: 15px;
	min-height: 90px;
}

.top-faculty .card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3d58; /* Blue shade */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.top-faculty .card-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.4;
}

.top-faculty .text-blue {
    color: #1e3d58; /* Blue shade */
}

.top-faculty .card-text {
    font-size: 0.9rem;
}


@media (max-width: 767.98px) {
  #hero .col-md-6.offset-md-1, 
  #hero .col-md-4 {
    /* Stack the columns vertically on smaller screens */
    width: 100%; /* Full width */
    height: auto; /* Adjust height for mobile */
  }
  .margintopbanner {
  margin-top: 190px;
	}

	.subjects {
    font-size: 10px;
        margin: 0;
    }
	#hero h1 {
    font-size: 18px;
    }
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0!important
	}
}

#header {
	transition: all .5s;
	z-index: 997;
	padding: 6px 0
}

#header.header-inner-pages,
#header.header-scrolled {
	background: rgba(21, 34, 43, .85);
	padding: 10px 0
}

#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px
}

#header .logo a {
	color: #fff
}

#header .logo img {
	max-height: 63px
}

#header.header-scrolled .logo img {
	max-height: 55px;
	transition: .3s
}

.navbar {
	padding: 0
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center
}

.navbar li {
	position: relative
}

.navbar>ul>li {
	white-space: nowrap;
	padding: 8px 8px
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
	font-family: 'PT Sans', sans-serif;
	padding: 0;
	font-size: 17px;
	font-weight: 700;
	color: #ffc107;
	white-space: nowrap;
	transition: .3s
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px
}

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #ffc107;
	visibility: hidden;
	width: 0;
	transition: all .3s ease-in-out 0s
}

.navbar .active:before,
.navbar a:hover:before,
.navbar li:hover>a:before {
	visibility: visible;
	width: 100%
}

.navbar .active,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover>a {
	color: #fff
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 25px;
	margin-left: 30px;
	border-radius: 4px;
	color: #fff;
	border: 2px solid #fff
}

.navbar .getstarted:focus:hover,
.navbar .getstarted:hover {
	color: #fff;
	background: #fd3800;
	border-color: #ffc107
}

.navbar>ul>li>.getstarted:before {
	visibility: hidden
}

.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: 0 0 30px rgba(127, 137, 161, .25);
	transition: .3s;
	border-radius: 4px
}

.navbar .dropdown ul li {
	min-width: 130px
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	color: #15222b;
	font-weight: 400;
	border-bottom: 1px solid #15222b
}

.navbar .dropdown ul a i {
	font-size: 12px
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover>a {
	color: #ffc107;
	border-bottom: 1px solid #ffc107
}

.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-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: .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(4, 7, 9, .9);
	transition: .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;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: .3s
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #15222b
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover>a {
	color: #ffc107
}

.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: 0 0 30px rgba(127, 137, 161, .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 .active:hover,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #ffc107
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block
}

@media only screen and (min-width:1367px) {
	:root {
		--bg-image-webp: url('../img/banner/desk.webp');
		--bg-size: cover;
		--bg-pos: center center
	}
}

@media only screen and (max-width:1366px) {
	:root {
		--bg-image-webp: url('../img/banner/desk.webp');
		--bg-pos: top center;
		--bg-size: 100vw auto
	}
}

@media only screen and (max-width:970px) {
	:root {
		--bg-image-webp: url('../img/banner/mobile.webp')
	}
	
	.hero-container{ text-align:center;}
	.smfont{font-size:16px;}
}

@media only screen and (max-width:500px) {
	:root {
		--bg-image-webp: url('../img/banner/mobile.webp')
	}
}

.table_of_contents .card a{ text-decoration:none; color:#05147c;}
.table_of_contents .card a:hover{ text-decoration:underline; color:#660000;}

.margintopbanner{margin-top:30px;}

@media (max-width:768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px
	}
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px
	}
}

section {
	padding: 60px 0;
	overflow: hidden
}

.section-bg {
	background-color: #f0f4f8
}

.heading_border {
	position: relative;
	display: inline-block
}

.heading_border:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin: 10px auto;
	width: 50%;
	height: 6px;
	background: #ffc107
}

.section-title {
	padding-bottom: 21px;
	text-align: center
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #5c8eb0;
	font-family: Poppins, sans-serif
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #ff8664;
	margin: 4px 10px
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	font-family: Poppins, sans-serif;
	color: #263d4d
}

.about .container {
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
	padding-bottom: 15px
}

.about .count-box {
	padding: 60px 0;
	width: 100%
}

.about .count-box i {
	display: block;
	font-size: 48px;
	color: #a1bdd1;
	float: left;
	line-height: 0
}

.about .count-box span {
	font-size: 28px;
	line-height: 25px;
	display: block;
	font-weight: 700;
	color: #365870;
	margin-left: 60px
}

.about .count-box p {
	padding: 5px 0 0 0;
	margin: 0 0 0 60px;
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #2e4b5e
}

.about .count-box a {
	font-weight: 600;
	display: block;
	margin-top: 20px;
	color: #2e4b5e;
	font-size: 15px;
	font-family: Poppins, sans-serif;
	transition: ease-in-out .3s
}

.about .count-box a:hover {
	color: #477392
}

.about .content {
	font-size: 15px
}

.about .content h3 {
	font-weight: 700;
	font-size: 24px;
	color: #263d4d
}

.about .content ul {
	list-style: none;
	padding: 0
}

.about .content ul li {
	padding-bottom: 10px;
	padding-left: 28px;
	position: relative
}

.about .content ul i {
	font-size: 24px;
	color: #ffc107;
	position: absolute;
	left: 0;
	top: -2px
}

.about .content p:last-child {
	margin-bottom: 0
}

.about .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#ffc107 50%, rgba(255, 74, 23, .4) 52%);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
	overflow: hidden
}

.about .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all .4s cubic-bezier(.55, .055, .675, .19)
}

.about .play-btn::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(255, 74, 23, .7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0)
}

.about .play-btn:hover::after {
	border-left: 15px solid #ffc107;
	transform: scale(20)
}

.about .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(.6, .6);
		opacity: 1
	}
	100% {
		transform: scale(1, 1);
		opacity: 0
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(.6, .6);
		opacity: 1
	}
	100% {
		transform: scale(1, 1);
		opacity: 0
	}
}

.about-boxes {
	background: url(../img/about-boxes-bg.jpg) center top no-repeat fixed;
	background-size: cover;
	padding: 60px 0 30px 0;
	position: relative
}

.about-boxes::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(255, 255, 255, .92);
	z-index: 9
}

.about-boxes .container,
.about-boxes .container-fluid {
	position: relative;
	z-index: 10
}

.about-boxes .card {
	border-radius: 3px;
	border: 0;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
	margin-bottom: 30px
}

.about-boxes .card-icon {
	text-align: center;
	margin-top: -32px
}

.about-boxes .card-icon i {
	font-size: 32px;
	color: #fff;
	width: 64px;
	height: 64px;
	padding-top: 5px;
	text-align: center;
	background-color: #ffc107;
	border-radius: 4px;
	text-align: center;
	border: 4px solid #fff;
	transition: .3s;
	display: inline-block
}

.about-boxes .card-body {
	padding-top: 12px
}

.about-boxes .card-title {
	font-weight: 700;
	text-align: center
}

.about-boxes .card-title a {
	color: #15222b
}

.about-boxes .card-title a:hover {
	color: #ffc107
}

.about-boxes .card-text {
	color: #5e5e5e
}

.about-boxes .card:hover .card-icon i {
	background: #fff;
	color: #ffc107
}

@media (max-width:1024px) {
	.about-boxes {
		background-attachment: scroll
	}
}

.services .icon-box {
	margin-bottom: 20px;
	padding: 30px;
	border-radius: 6px;
	background: #fff
}

.services .icon-box i {
	float: left;
	color: #5c8eb0;
	font-size: 40px;
	line-height: 0
}

.services .icon-box h4 {
	margin-left: 70px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px
}

.services .icon-box h4 a {
	color: #365870;
	transition: .3s
}

.services .icon-box .icon-box:hover h4 a {
	color: #ffc107
}

.services .icon-box p {
	margin-left: 70px;
	line-height: 24px;
	font-size: 14px
}

.services .icon-box:hover h4 a {
	color: #ffc107
}

.contact .info-box {
	color: #444;
	text-align: center;
	box-shadow: 0 0 10px #e6e6e6;
	padding: 20px 0 30px 0
}

.contact .info-box i {
	font-size: 32px;
	color: #ffc107;
	border-radius: 50%;
	padding: 8px
}

.contact .info-box h3 {
	font-size: 20px;
	color: #777;
	font-weight: 700;
	margin: 10px 0
}

.contact .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

.breadcrumbs {
	padding: 15px 0;
	background: #f0f4f8;
	min-height: 40px;
	margin-top: 72px
}

.breadcrumbs h2 {
	font-size: 21px;
	font-weight: 400;
	font-family: 'PT Sans', sans-serif;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0
}

.breadcrumbs ol li+li {
	padding-left: 10px
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #263d4d;
	content: "/"
}

@media (max-width:992px) {
	.breadcrumbs {
		margin-top: 52px
	}
	.breadcrumbs .d-flex {
		display: block!important
	}
	.breadcrumbs ol {
		display: block
	}
	.breadcrumbs ol li {
		display: inline-block
	}
}

#footer {
	background: #121d24;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px
}

#footer .footer-top {
	background: #15222b;
	border-bottom: 1px solid #1d303c;
	padding:30px;
}

#footer .footer-top .footer-info {
	margin-bottom: 9px
}

#footer .footer-top .footer-info h3 {
	font-size: 28px;
	margin: 0 0 15px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: Raleway, sans-serif;
	color: #fff
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, .08);
	color: #ffc107;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: .3s
}

#footer .footer-top .social-links a:hover {
	background: #ffc107;
	color: #fff;
	text-decoration: none
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px
}

#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: #ff5e31;
	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: .3s;
	display: inline-block;
	line-height: 1
}

#footer .footer-top .footer-links ul a:hover {
	color: #ffc107
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px
}

#footer .footer-top .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px)
}

#footer .footer-top .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: 0 0;
	font-size: 16px;
	padding: 0 20px;
	background: #ffc107;
	color: #fff;
	transition: .3s;
	border-radius: 0 4px 4px 0
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
	background: #ff5e31
}

#footer .copyright {
	text-align: center;
	padding-top: 30px
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff
}

#footer .credits a {
	transition: .3s
}

.bg-section {
	background-color: #003366
}

.text-section {
	color: #003366
}

.text-theme {
	color: #ffc107
}

.bg-theme {
	background-color: #ffc107
}

.bg-sky {
	background-color: #003366
}

.text-sky {
	color: #0a71a8
}

.text-justify {
	text-align: justify
}

.smoothed {
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .004);
	text-rendering: optimizeLegibility!important;
	-webkit-font-smoothing: antialiased!important
}



/*testimonial*/
.demo{ background: #6c6a6a; }
.testimonial .pic{
    width: 22%;
    padding: 20px 0;
    margin: 0 6% 0 2%;
    float: left;
    position: relative;
    z-index: 1;
}
.testimonial .pic:before,
.testimonial .pic:after{
    content: "";
    width: 130px;
    height: 150px;
    background: #e1c37d;
    position: absolute;
    z-index: -1;
}
.testimonial .pic:before{
    top: 0;
    right: -20px;
}
.testimonial .pic:after{
    bottom: 0;
    left: -20px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
    border: 3px solid #e1c37d;
}
.testimonial .testimonial-content{
    width: 70%;
    float: right;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    padding-top: 65px;
    padding-left: 15px;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #fff;
    margin-bottom: 25px;
    padding-left: 15px;
}
.testimonial .description{
    font-size: 16px;
    color: #fff;
    padding: 0 15px;
    margin: 0;
    position: relative;
}
.testimonial .description:before,
.testimonial .description:after{
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 17px;
    color: #e1c37d;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    margin-right: 5px;
    top: 0;
    left: 0;
}
.testimonial .description:after{
    content: "\f10e";
    margin-left: 5px;
    position: relative;
    bottom: 0;
    right: 0;
}
.owl-theme .owl-controls{
    width: 70%;
    margin: 0;
    text-align: left;
    position: absolute;
    bottom: 0;
    right: 0;
}
.owl-theme .owl-controls .owl-buttons div{
    width: 70px;
    height: 60px;
    line-height: 90px;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    position: relative;
}
.owl-prev:before,
.owl-next:before{
    content: "\f177";
    font-family: "fontawesome";
    font-size: 45px;
    font-weight: 900;
    color: #ddd;
    position: absolute;
    top: 0;
    left: 25%;
}
.owl-next:before{
    content: "\f178";
}
.owl-next:after{
    content: " / ";
    font-size: 40px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: -6px;
}
@media only screen and (max-width: 990px){
    .testimonial{ text-align: center; }
    .testimonial .pic{
        width: 200px;
        margin: 0 auto;
        float: none;
    }
    .testimonial .pic:before,
    .testimonial .pic:after{
        width: 80px;
        height: 100px;
    }
    .testimonial .testimonial-content{
        width: 100%;
        float: none;
    }
    .testimonial .title{
        padding: 15px 0 0 0;
    }
    .testimonial .post{
        padding: 0;
        margin-bottom: 10px;
    }
    .owl-theme .owl-controls{
        width: 100%;
        position: static;
        text-align: center;
    }
    .owl-theme .owl-controls .owl-buttons div{
        height: 50px;
        line-height: 50px;
    }
}

#testimonial .owl-theme .owl-controls .owl-buttons div {
background: transparent;
}
	/* Custom style */
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
      transform: scale(1.5) !important; 
    }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }
	.accordion-button:focus,.accordion-button:active {
   outline: none !important;
   box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color:#fff;
    background-color: #1c528b;
	padding: 12px 21px;
    box-shadow: none;
}

.accordion-button.collapsed {
	background-color: #1c528b;
	padding: 12px 21px;
	color:#fff;
}
.accordion-button.collapsed:hover {
    background-color: #4a0f9d;

}

/* Background Section */
.demo {
  background-color: #6c6a6a;
}

/* Testimonial */
.testimonial .pic {
  width: 22%;
  padding: 20px 0;
  margin: 0 6% 0 2%;
  float: left;
  position: relative;
  z-index: 1;
}

.testimonial .pic::before,
.testimonial .pic::after {
  content: "";
  width: 130px;
  height: 150px;
  background: #e1c37d;
  position: absolute;
  z-index: -1;
}

.testimonial .pic::before {
  top: 0;
  right: -20px;
}

.testimonial .pic::after {
  bottom: 0;
  left: -20px;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
  border: 3px solid #e1c37d;
}

.testimonial .testimonial-content {
  width: 70%;
  float: right;
}

.testimonial .title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 16px 0 30px 15px;
}

.testimonial .post {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding-left: 15px;
}

.testimonial .description {
  font-size: 16px;
  color: #fff;
  margin: 12px 0 54px;
  padding: 0 15px;
  position: relative;
}

.testimonial .description::before,
.testimonial .description::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: #e1c37d;
}

.testimonial .description::before {
  content: "\f10d";
  margin-right: 5px;
}

.testimonial .description::after {
  content: "\f10e";
  margin-left: 5px;
}

/* Owl Carousel Controls */
.owl-theme .owl-controls {
  width: 100%;
  text-align: left;
  position: absolute;
  bottom: 0;
  right: 0;
}

.owl-theme .owl-controls .owl-buttons div {
  width: 70px;
  height: 60px;
  line-height: 90px;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.owl-prev::before,
.owl-next::before {
  content: "\f177";
  font-family: "fontawesome";
  font-size: 45px;
  font-weight: 900;
  color: #ddd;
  position: absolute;
  top: 0;
  left: 25%;
}

.owl-next::before {
  content: "\f178";
}

.owl-next::after {
  content: " / ";
  font-size: 40px;
  color: #ddd;
  position: absolute;
  top: 0;
  left: -6px;
}

/* Responsive Styles */
@media only screen and (max-width: 990px) {
  .testimonial {
    text-align: center;
  }

  .testimonial .pic {
    width: 200px;
    margin: 0 auto;
    float: none;
  }

  .testimonial .pic::before,
  .testimonial .pic::after {
    width: 80px;
    height: 100px;
  }

  .testimonial .testimonial-content {
    width: 100%;
    float: none;
  }

  .testimonial .title {
    padding: 15px 0 0;
  }

  .testimonial .post {
    padding: 0;
    margin-bottom: 10px;
  }

  .owl-theme .owl-controls {
    width: 100%;
    position: static;
    text-align: center;
  }

  .owl-theme .owl-controls .owl-buttons div {
    height: 50px;
    line-height: 50px;
  }
}

/* Dropdown Hover */
.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none; /* Prevents sticky behavior */
}

/* Accordion - No Icon */
#no-icon .accordion-button:not(.collapsed)::after {
  background-image: none;
}
.footer_logo img{
	max-height: 90px;
}

