@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	--primary: #2196F3;
	--light: #F0FBFC;
	--dark: #181d38;
}

body {
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}

#scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #2196F3;
}

#scrollbar::-webkit-scrollbar {
	width: 6px;
	background-color: #2196F3;
}

#scrollbar::-webkit-scrollbar-thumb {
	background-color: #2196F3;
	border-left: 1px solid #2196F3;
}
.color-white
{
	color:#fff;
}

.bg-black {
	background: #043358;
}

.fw-medium {
	font-weight: 600 !important;
}

.fw-semi-bold {
	font-weight: 700 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

 
/*** Button ***/

.btn {
	font-weight: 600;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 0px;
}


/*** Navbar ***/

.navbar-brand-logo {
	width: 110px;
	background: #fff;
	margin-top: 30px;
	border-radius: 100px;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #2196F3;
	font-size: 15px;
	/*text-transform: uppercase; */
	outline: none;
	/*font-weight: 600; */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: #2196f3;
}

@media (max-width: 991.98px) {
	.navbar-light .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
	.navbar-light .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
	height: 80px;
}

.navbar-light .navbar-nav .nav-link {
	color: #313131;
}

.navbar-light.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		margin-top: 0;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}
	.navbar .dropdown-menu.fade-down {
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}
	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header carousel ***/

@media (max-width: 768px) {
	.header-carousel .owl-carousel-item {
		position: relative;
		min-height: 500px;
	}
	.header-carousel .owl-carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.header-carousel {
	/*filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);*/
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
}

.header-carousel:hover {
	/*filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);	*/
}

.header-carousel .owl-nav {
	position: absolute;
	top: 85%;
	right: 8%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
	margin: 7px 0;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: transparent;
	border: 1px solid #FFFFFF;
	font-size: 16px;
	transition: .5s;
	border-radius: 100%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.header-carousel .title-h5 {
	color: #eee !important;
	font-weight: 300;
	font-size: 1.5rem;
}
.grayscale-hover
{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);	
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;	
}
.grayscale-hover:hover
{
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
}

.page-header {
	background: linear-gradient(rgb(0 0 0 / 48%), rgb(0 0 0)), url(../img/carousel-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-header-inner {
	background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}

.section-title {
	position: relative;
	display: inline-block;
}

.cap-services {
	background: #8f8f8f;
	width: 100%;
	font-weight: 400 !important;
}


/*** category ***/

.about-section {
	padding: 70px 0;
}

.category {
	padding: 50px 0 80px 0;
}

.category img,
.course-item img {
	transition: .5s;
}

.category a:hover img,
.course-item:hover img {
	transform: scale(1.1);
}

.footer-section {
	padding: 0 0 40px 0;
}

.contact-footer-box {
	background: #043358;
	padding: 35px;
	color: #a7a7a7;
}

.padding-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.footer-section .btn-social {
	margin-right: 15px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: normal;
	border: 1px solid #FFFFFF;
	border-radius: 35px;
	transition: .3s;
}

.footer-section .btn-social:hover {
	color: #fff;
}

.copyright {
	padding: 25px 0;
	font-size: 15px;
	color: #a7a7a7;
}

.m-top-20 {
	margin-top: 20px;
}
.img-responsive
{
	width:100%;
}

.box-trustee
{
	border:1px solid #ccc;
}

.trustee-heading
{
	margin:10px 0 0 0;
}
.m-2
{
	margin:2px 0;
}