body {
	background: #fff;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #484848;
	letter-spacing: 0.01rem;
	line-height: 1.2;
}
.white-placeholder::placeholder {
 color: white;
 opacity: 1; /* Ensures full visibility */
}
/* For better browser support */

.white-placeholder input::placeholder,  .white-placeholder textarea::placeholder {
 color: white;
 opacity: 1;
}
 .white-placeholder input:-ms-input-placeholder, /* IE 10-11 */  .white-placeholder textarea:-ms-input-placeholder {
 color: white;
}
 .white-placeholder input::-ms-input-placeholder, /* Edge */  .white-placeholder textarea::-ms-input-placeholder {
 color: white;
}
.white-placeholder select option {
	background-color: #fff;
	color: #000;
	border-radius: 0 !important;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", sans-serif;
	font-weight: 600;
}
b, strong {
	font-weight: 700;
}
ul, li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
p {
	line-height: 1.6rem;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
}
.inter {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.poppins {
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 10px 0;
	background-color: transparent;
	padding-top: 45px;
}
.top-nav-section {
	background-color: #022a7b;
	border-radius: 10px;
}
/* NAV BAR */

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
 @media (min-width: 1400px) {
.nav {
	max-width: 1320px;
}
}
.nav-left {
	display: flex;
	gap: 20px;
	flex: 1;
	justify-content: start;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
	padding: 30px 0;
	display: flex;
	gap: 5px;
	color: #fff;
	cursor: pointer;
}
.nav ul li a {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.01rem;
	text-decoration: none !important;
	text-transform: capitalize;
	color: #fff;
}
.nav ul li a:hover, .nav ul li a:focus {
	color: #fff;
}
/* SUBMENU STYLES */

.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 10px 0;
}
.nav ul li .submenu li {
	padding: 0;
}
.nav ul li .submenu li a {
	display: block;
	padding: 8px 20px;
	white-space: nowrap;
	color: #000;
}
.nav ul li.has-submenu:hover > .submenu {
	display: block;
}
.submenu-toggle {
	display: block; /* hidden on desktop */
}
/* LOGO & HAMBURGER */

.logo-left {
	display: none;
	align-items: center;
}
.logo-left img {
	height: 40px;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: relative;
	right: 0px;
	top: 0px;
	cursor: pointer;
	display: none;
	z-index: 1001;
}
.hamburger span {
	background: #fff;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 9px;
}
.hamburger span:nth-child(3) {
	top: 18px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}



/* MOBILE STYLES */

@media (max-width: 1199px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-left {
	display: flex;
}
.logo-center {
	display: none;
}
.hamburger {
	display: block;
}
.nav {
	display: none;
	flex-direction: column;
	background: #c8a47e;
	padding: 20px;
	gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
	z-index: 1000;
}
.nav.show {
	display: flex;
}
.nav-left {
	flex-direction: column;
	align-items: flex-start;
}
.nav ul {
	flex-direction: column;
	gap: 0;
}
.nav ul li {
	width: 100%;
}
.nav ul li a {
	display: block;
	color: #fff;
	min-height: 42px;
	padding: 10px 0px;
}
.nav ul li.has-submenu > a {
	padding-right: 42px;
}
/* Show submenu toggle arrow */

.submenu-toggle {
	display: flex;
	cursor: pointer;
	width: 40px;
	height: 42px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	position: absolute;
	right: 0;
	z-index: 10;
	top: 0;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.submenu-toggle i {
	transition: transform 0.3s ease; /* smooth rotation */
	width: 24px;
	height: 20px;
	display: block;
	line-height: 100%;
}
.submenu-toggle.rotate i {
	transform: rotate(180deg);
}
.nav ul li .submenu {
	display: none;
	position: relative;
	width: 100%;
	top: 0;
	background-color: transparent;
}
.nav ul li .submenu.open {
	display: block;
}
.nav ul li .submenu li a {
	color: #fff;
}
.nav ul li > a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav ul li .submenu {
	padding: 0;
	box-shadow: none;
	background-color: rgba(255,255,255,0.2);
}
.nav ul li .submenu li a {
	padding: 8px;
	white-space: nowrap;
}
}
.svg-icon {
	width: 40px;
	height: 40px;
	fill: currentColor;
}
.top-right-section {
	gap: 20px;
}
.top-right-section .svg-icon {
	width: 26px;
	height: 26px;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.slider-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: transparent !important;
	transform: rotate(0deg);
	transition: transform 1s linear;
	border: none !important;
	font-size: 50px;
	color: #26aae1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
}
.slider-arrow.nav-button-prev {
	left: -50px;
}
.slider-arrow.nav-button-next {
	right: -50px;
}
.slider-section .slider-arrow.nav-button-prev {
	left: 0;
}
.slider-section .slider-arrow.nav-button-next {
	right: 0px;
}
.slider-section .slider-arrow {
	color: #fff;
}
#slide-carousel .slider-arrow {
}
.carousal-slider-section .slider-arrow {
	background-color: rgba(2, 42, 123, 0.75) !important;
	height: 48px;
	width: 48px;
	border-radius: 50%;
	font-size: 20px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
	left: -23px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
	right: -23px;
}
.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: rgba(0,0,0,.70);
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: #000000;
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.banner-caption h1 {
	font-size: 45px;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 100%;
	letter-spacing: 0rem;
	font-weight: 600;
}
.banner-caption h2 {
	font-size: 49px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0rem;
	font-weight: 500;
}
.banner-caption h6 {
	font-size: 18px;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 1.8rem;
	letter-spacing: 0.01rem;
	font-family: "Poppins", sans-serif;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 35px;
	color: #022a7b;
	line-height: 100%;
	letter-spacing: 0rem;
	font-weight: 600;
}
.sub-heading {
	display: block;
	position: relative;
	color: #022a7b;
	font-size: 18px;
	letter-spacing: 0rem;
	width: 100%;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}
.padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-16 {
	font-size: 16px;
}
.font-size-18 {
	font-size: 18px;
}
.font-size-20 {
	font-size: 20px;
}
.font-size-15 {
	font-size: 15px;
}
.custom-btn {
	border-radius: 8px;
	color: #fff;
	background-color: #022a7b;
	font-size: 18px;
	letter-spacing: 0rem;
	padding: 0.75rem 1.5rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.custom-btn svg {
	width: 22px;
	height: 22px;
	margin-right: 0.5rem;
}
.custom-btn-arrow {
	position: relative;
	width: auto;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
	color: #000;
	font-size: 24px;
}
.custom-btn:hover {
	background-color: #001a4e;
	color: #fff;
}
.white-custom-btn {
	background-color: #fff;
	color: #022a7b;
}
.white-custom-btn:hover,  .white-custom-btn:focus {
	color: #fff;
	background-color: #000;
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
.white-border {
	border-color: #fff;
	color: #fff;
}
.black-border {
	border-color: #000;
	color: #000;
}
.big-btn {
	padding: 13px 45px;
}
.btn-with-arrow {
	padding: 15px 45px;
}
.white-border:hover {
	border-color: #fff;
	color: #0c3c7a;
	background-color: #fff !important;
}
.black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}
.black-border:hover .custom-btn-arrow {
	color: #fff;
}
.custom-btn-blur {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(1.5px);
}
.footer {
	display: block;
	position: relative;
	background-color: #f7f7f7;
	padding-top: 30px;
	padding-bottom: 0px;
}
.footer-box h4 {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	margin: 0 0 25px;
	text-transform: uppercase;
	letter-spacing: 0.01rem;
	font-family: "Poppins", sans-serif;
}
.footer-menu-box ul li {
	float: left;
	display: block;
	font-size: 16px;
	color: #565656;
	margin-bottom: 15px;
	width: 100%;
	letter-spacing: 0.01rem;
}
.footer-menu-box ul li a {
	display: block;
	color: #565656;
	text-decoration: none !important;
}
.footer-menu-box ul li a:hover {
	color: #022a7b;
}
.footer-menu-box ul.list-50 li {
	width: 50%;
}
.social-icon a {
	display: block;
}
.social-icon svg {
	width: 34px;
	height: 34px;
	display: block;
}
.social-icon a:hover {
	border-color: #000;
}
.footer-social {
	display: block;
	margin: 0;
}
.footer .social-icon a {
}
.footer-social .social-icon {
}
.footer-social .social-icon svg {
}
.footer-social {
}
.footer-social .social-icon a {
	color: #000;
}
.footer-social .social-icon a:hover {
	color: #022a7b;
}
.content-icon-btn .icon-btn {
	color: #000000;
	font-size: 17px;
	font-weight: 500;
}
.content-icon-btn .icon-btn span {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.0rem;
}
.content-icon-btn .icon-btn i svg {
	width: 34px;
	height: 34px;
}
.content-icon-btn .icon-btn i {
	margin-right: 8px;
}
.footer-bottom-container {
	display: block;
	padding-top: 20px;
	border-top: 1px solid #bdbdbd;
	margin-top: 40px;
	padding-bottom: 20px;
}
.filter-sidebar {
	background-color: transparent;
	overflow: hidden;
	border-radius: 8px;
}
.custom-filter-sidebar .accordion-button {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #fff;
	box-shadow: none;
	border-radius: 8px !important;
}
.custom-filter-sidebar .accordion-body {
	padding-top: 1rem;
	padding-bottom: 1rem;
	gap: 15px;
}
.custom-filter-sidebar .accordion-item {
	border-radius: 8px;
	border-color: #989898;
	margin-bottom: 20px;
	border-top: 1px solid #989898;
}
.custom-filter-sidebar .accordion {
	background-color: transparent !important;
	border-top: none !important;
}
 @media (min-width: 768px) {
.filter-sidebar {
	position: static;
	width: 100%;
}
}
 @media (max-width: 991.98px) {
.filter-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	height: 100%;
	overflow-y: auto;
	z-index: 9999;
	transition: right 0.3s ease-in-out;
}
.filter-sidebar.open {
	right: 0;
}
.filter-header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}
}
.check-colm {
	color: #6a6a6a;
	margin-bottom: 10px;
	align-items: center;
	font-size: 14px;
}
#filterToggleBtn,  #filterCloseBtn {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	color: #000;
	font-size: 36px;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#filterToggleBtn i {
	width: 36px;
	height: 34px;
}
.grey-bg {
	background-color: #f7f7f7;
}
.btn-grp-colm {
	gap: 1rem;
}
.blur-bg {
	backdrop-filter: blur(1.5px);
	background: rgba(255, 255, 255, 0.18);
	position: relative;
	overflow: hidden;
}
.blur-bg:before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/banner-img.jpg") no-repeat center/cover;
	filter: blur(20px);
	z-index: -1;
}
.bg-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.custom-gap-40 {
	gap: 40px;
}
.text-blue {
	color: #022a7b;
}
.courses-box-wrapper {
	display: block;
	background-color: #fff;
	border-radius: 10px;
	margin: 0.725rem 0.725rem 1.26rem;
}
.courses-box-image {
	display: block;
	position: relative;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
	height: 205px;
}
.courses-box-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.courses-box-content {
	padding: 20px 15px 10px;
}
.courses-title {
	margin-bottom: 10px;
	min-height: 50px;
}
.courses-title a {
	font-size: 18px;
	color: #000000;
	font-weight: 600;
	letter-spacing: 0.01rem;
	text-decoration: none !important;
}
.courses-review {
	display: flex;
	justify-content: space-between;
	align-items: start;
	font-size: 14px;
	color: #919191;
}
.courses-review-rating {
	font-size: 18px;
	color: #ffc107;
	flex: 1 0 0;
}
.review-type{
	flex: 1 0 0;
	text-align: right;
}
.courses-mode-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
.courses-mode h6 {
	font-size: 16px;
	color: #000000;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0;
}
.courses-mode-time {
	gap: 6px;
}
.gap-10 {
	gap: 10px;
}
.overlay-reletive {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}
.blue-bg {
	background-color: rgba(2, 42, 123, 0.75);
}
.featured-box-wrapper {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	position: relative;
	border-right: 1px solid #ffffff85;
}
.featured-box:last-child .featured-box-wrapper {
	border-right: none;
}
.featured-box-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.featured-box-icon svg {
	width: 50px;
	height: 50px;
	display: block;
	color: #fff;
}
.featured-box-wrapper h4 {
	font-size: 18px;
	color: #fff;
	font-family: "Poppins", sans-serif;
	margin: 20px 0 0;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0;
}
.icon-list-wrapper li {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	color: #000000;
	font-weight: 500;
	margin-bottom: 25px;
}
.icon-list-box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background-color: #c6d5f4;
	min-height: 42px;
	min-width: 42px;
}
.icon-list-box svg {
	color: #022a7b;
	width: 30px;
	height: 30px;
}
.strategic-box-wrapper {
	display: block;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 416px;
	margin: 0 0.5rem;
}
.strategic-box-wrapper-image {
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.strategic-box-wrapper-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.strategic-box-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(10px);
	z-index: 5;
	margin: 1rem 1rem 1rem;
	display: block;
	color: #fff;
	padding: 1.5rem;
	border: 1px solid #acacac4d;
}
.strategic-box-content p {
	font-size: 13px;
	line-height: 1.25rem;
	font-weight: 300;
}
.strategic-box-content svg {
	color: #ffffff;
	width: 32px;
	height: 32px;
}
.bg-black-transparent {
	background-color: rgba(0, 0, 0, 0.75);
}
.bg-white-transparent {
	background-color: rgba(255, 255, 255, 0.85);
}
.join-us-wrapper {
	padding: 4rem;
}
.play-btn {
	width: 82px;
	height: 82px;
	background: #022a7b;
	border-radius: 50%;
	position: relative;
	display: inline-block;
}
.play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	transform-origin: center center;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 22px solid #fff;
	z-index: 1;
	-webkit-transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play-btn:before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate1 3s;
	animation: pulsate1 3s;
	-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 #022a7b;
	top: -25%;
	left: -25%;
	background: #022a7b;
}
 @-webkit-keyframes pulsate1 {
 0% {
 -webkit-transform: scale(0.6);
 transform: scale(0.6);
 opacity: 1;
 box-shadow: inset 0px 0px 25px 3px #022a7b, 0px 0px 25px 10px #022a7b;
}
 100% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0;
 box-shadow: none;
}
}
 @keyframes pulsate1 {
 0% {
 -webkit-transform: scale(0.6);
 transform: scale(0.6);
 opacity: 1;
 box-shadow: inset 0px 0px 25px 3px #022a7b, 0px 0px 25px 10px #022a7b;
}
 100% {
 -webkit-transform: scale(1, 1);
 transform: scale(1);
 opacity: 0;
 box-shadow: none;
}
}
.icon-list-wrapper.icon-list-wrapper-white li {
	color: #fff;
}
.icon-list-wrapper-white .icon-list-box {
	background-color: rgba(4, 79, 232, 0.35);
	color: #fff;
}
.icon-list-wrapper-white .icon-list-box svg {
	color: #fff;
}
.testimonial-box {
	display: block;
	background-color: #fff;
	padding: 20px 15px;
	position: relative;
	min-height: 215px;
	border-radius: 10px;
	margin: 21px 10px;
}
.review-star {
	font-size: 20px;
	color: #ff8e00;
}
.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}
.font-13 {
	font-size: 13px;
	line-height: 1.2rem;
}
.destination-section .country-card {
	position: relative;
	display: block;
	overflow: hidden;
}
.destination-section .country-card .image-wrapper {
	overflow: hidden;
	position: relative;
	padding-top: 120%;
}
.destination-section .country-card .image-wrapper:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(28, 29, 31, 0.65);
	z-index: 1;
	pointer-events: none;
}
.destination-section .country-card .image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: all 0.2s ease-in-out;
}
.destination-section .country-card:hover .image-wrapper img {
	transform: scale(1.1);
}
.destination-section .country-card .content-wrapper {
	position: absolute;
	bottom: 0%;
	right: 0%;
	padding: 20px;
	z-index: 2;
	color: #fff;
}
.destination-section .carousal-slider-section .slider-arrow {
	display: none !important;
}
.slide-txt {
	font-size: 1.75rem;
	line-height: 100%;
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	margin: 0;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.04rem;
}
.marquee-section .svg-icon {
	width: 44px;
	height: 44px;
	color: #022a7b;
	margin-right: 15px;
}
.marquee-text-gap span {
	padding: 10px;
}
.n-form .form-control {
	width: 100%;
	height: 46px;
	border-color: #bababa;
	padding: 0.75rem 1rem;
	box-shadow: 0px 4px 6px 0px rgba(10, 13, 18, 0.1);
	color: #000;
	font-size: 14px;
	max-width: 600px;
}
.n-form {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
}
.footer-trm-text {
	display: flex;
	justify-content: flex-end;
}
.footer-trm-text li a {
	font-size: 14px;
	color: #848484;
	text-decoration: none !important;
}
.footer-trm-text li {
	padding-left: 15px;
}
.footer-bottom-wrapper-section {
	padding: 40px 0;
	margin-top: 40px;
}
.footer-trm-text li a:hover {
	color: #000;
}
.social-icon {
	gap: 20px;
}
.scrollup {
	width: 50px;
	height: 50px;
	opacity: 1;
	position: fixed;
	bottom: 8px;
	left: 15px;
	display: none;
	text-indent: -9999px;
	background: url(../images/icons/circle-arrow.svg) no-repeat;
	z-index: 5;
	background-size: 100% auto;
}
/*New Css*/



.process-section {
	background: #f9f9fb;
	padding: 50px 0;
}
.process-card {
	text-align: center;
	padding: 0 20px;
}
.process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 85px;
	height: 85px;
	border-radius: 12px;
	background: #dee6f5;
	margin-bottom: 30px;
	font-size: 30px;
	color: #022a7b;
}
.process-card h5 {
	font-weight: 600;
	margin-bottom: 15px;
	color: #000000;
	font-size: 18px;
}
.process-card p {
	color: #555;
	font-size: 14px;
}
.process-divider-wrapper {
	display: block;
	position: absolute;
 translate: calc(calc(1/2*100%)*-1);
	width: 100px;
	left: 100%;
	top: 40px;
}
.hr-line {
	width: 100%;
	display: block;
	height: 1px;
	background-color: #d9d9d9;
	margin-left: 0px;
}
.student-finance-scroll {
	justify-content: start;
	align-items: start;
	gap: 20px;
}
.student-finance-section .nav-pills .nav-link {
	border-radius: 8px;
	color: #022a7b;
	background-color: transparent;
	font-size: 16px;
	letter-spacing: 0rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid #022a7b;
	line-height: 100%;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.425rem;
}
.student-finance-section .nav-pills .nav-link:hover,  .student-finance-section .nav-pills .nav-link:focus,  .student-finance-section .nav-pills .nav-link.active {
	background-color: #022a7b;
	color: #fff;
}
.video-banner-section {
	padding: 0px 0;
  overflow: hidden;
  height: 528px;
}
.video-banner-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000100 100%);
}
.video-banner-section .bg-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.box-wrapper {
	padding: 50px 25px;
}
.fast-track-section .container {
	position: relative;
	z-index: 11;
	margin-top: -75px;
}
.fast-track-section {
	z-index: 10;
}
.bg-opacity-5 {
	background-color: rgba(0, 0, 0, 0.5);
}
.hero-slider-caption-wrapper {
	padding-top: 125px;
}
.custom-breadcrumb .breadcrumb-item.active,  .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	color: #fff;
}
.medium-heading {
	font-size: 25px;
	color: #000000;
	font-weight: 600;
}
.courses-search-box {
	position: relative;
	display: block;
	width: 100%;
	max-width: 350px;
}
.courses-search-box form {
	width: 100%;
}
.custom-form-control {
	width: 100%;
	height: 46px;
	border-color: #bababa;
	padding: 0.75rem 1rem;
	box-shadow: 0px 4px 6px 0px rgba(10, 13, 18, 0.1);
	color: #000;
	font-size: 14px;
}
.courses-search-box .custom-form-control {
	padding-left: 2.725rem;
}
.input-icon {
	background-color: transparent !important;
	text-indent: -9999999px;
	color: #7f7f7f;
	font-size: 0;
	cursor: pointer;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.input-icon svg {
	width: 20px;
	height: 20px;
}
.courses-search-box .input-icon {
	position: absolute;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	z-index: 2;
}
.courses-right-top-heading .svg-icon {
	width: 22px;
	height: 22px;
}
.courses-section .courses-box-wrapper {
	margin: 0;
}
.list-with-tick {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
flex-direction: column
}
.list-with-tick li {
	position: relative;
	font-size: 16px;
	letter-spacing: 0rem;
	color: #7d7d7d;
	padding-left: 45px;
	margin-top: 25px;
	display: block;
	line-height: 1.525rem;
}
.list-with-tick li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "\F270";
	width: 30px;
	min-height: 35px;
	color: #022a7b;
	font-size: 35px;
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.list-with-tick.list-with-tick-alt li {
	font-size: 18px;
	color: #fff;
}
.list-with-tick.list-3 li {
	flex: 1 0 33.333%;
}
.accordion-button .svg-icon {
	width: 22px;
	height: 22px;
}
.custom-toggle-accordion .accordion-button {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}
.sidebar-wrapper-icon-text svg {
	width: 26px;
	height: 26px;
}
.sidebar-wrapper-content {
	font-size: 15px;
}
.sidebar-wrapper {
	position: sticky;
	top: 0;
}
.custom-modal-section .modal-header {
	background-color: #022a7b;
}
.custom-modal-section .modal-header .modal-title {
	color: #fff !important;
}
.custom-modal-section .btn-close {
	background-color: #fff;
	opacity: 1 !important;
	border-radius: 50%;
	position: absolute;
	right: -15px;
	top: -15px;
	z-index: 50;
	border: 2px solid #000;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.custom-modal-section label.form-label {
	font-size: 14px;
	color: #090909;
	font-weight: 600;
}
.custom-modal-section .form-control,
.custom-modal-section .form-select {
	font-size: 14px;
}
.custom-faq-accordion .accordion-item {
	border: none !important;
	background-color: #fff;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}
.bullet-list li {
	list-style: disc;
	margin-bottom: 15px;
}
.bullet-list {
	margin-left: 15px;
}
.custom-faq-accordion .accordion-button {
	padding: 2rem 2.5rem;
}
.custom-faq-accordion .accordion-body {
	padding: 2rem 2.5rem;
}
.images-box-warrper-cover {
	border-radius: 10px;
	overflow: hidden;
}
.bottom-gradient-bg {
	display: flex;
	justify-content: end;
	align-items: start;
	padding: 16.125rem 1.725rem 1.725rem;
	background: #000000;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
	flex-direction: column;
}
.list-with-tick.list-with-tick-alt li:before {
	color: #fff;
}
.list-with-tick.list-with-tick-alt li {
	color: #ffffff;
	font-weight: 500;
}
.student-finance-finance-type {
	background: white;
	padding: 1.125rem 1.75rem;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
	transition: all 0.3s ease;
	border-right: 4px solid #022a7b;
}
.student-finance-title {
	font-size: 1.125rem;
	color: #000000;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.student-finance-finance-type:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.student-finance-finance-type .svg-icon {
	width: 30px;
	height: 30px;
}
.location-box h4 {
	font-size: 20px;
	color: #000000;
	font-weight: 600;
}
.location-box h5 {
	font-size: 16px;
	color: #626262;
	font-weight: 600;
}
.location-box .courses-title:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 124px;
	height: 1px;
	background-color: #022a7b;
	content: "";
	margin: 0 auto;
}
.featured-box-title {
	font-size: 35px;
	color: #ffffff;
	font-weight: 600;
}
.btn-svg-icon svg {
	width: 30px;
	height: 30px;
}
.ajax-pagination{
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: start;
	padding: 10px 0;
}
.ajax-pagination span,
.ajax-pagination a{
	min-width: 35px;
	height: 35px;
	border: 1px solid #bdbdbd;
	background-color: #ffffff;
	border-radius: 0.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.02rem;
	padding: 0.75rem;
}
.ajax-pagination span.page-numbers.current,
.ajax-pagination a:hover,
.ajax-pagination a:focus{
	background-color: #001a4e;
	border-color: #001a4e;
	color: #fff;
}

/* Booking form css start */
.wpbc_wizard__border_container {
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;  
}
.wpbc_times_selector div, .wpbc_wizard__border_container .wpbc_times_selector div {  
  font-size: 13px;
  font-weight: 500;
  max-width: Min(150px, 100%) !important;
  padding: 0.4rem 0.6rem;
  letter-spacing: 0 !important;
}
.wpbc_container_booking_form .wpbc_booking_form_simple .wpbc__field label {
  font-size: 14px;
  line-height: 1rem !important;
  font-size: 14px;
  padding-bottom: 0.75rem;
}
.wpbc__row .wpbc__field .wpbc_button_light{
	width: 100%;
}
.wpbc_text_captcha_container.wpdev-form-control-wrap{
	margin-top: 28px;
} 
.wpbc_wizard__border_container {
  font-size: 14px;
}

/* Booking form css end */

.form-left-section{	
	position: relative;
}
.blur-abst-bg{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #78787873;
	backdrop-filter: blur(16px);
	z-index: 2;
}
.pop-inner-left{
	position: relative;
	z-index: 10;
}
.pop-inner-left .list-with-tick li:before{
	font-size: 26px;
}
.pop-inner-left .list-with-tick li{
	font-size: 1rem;
	padding-left: 2rem;
}
.custom-modal-section-apply .modal-content{
	border-radius: 1rem;
}
.custom-modal-section-apply .modal-content .modal-body{
	border-radius: 1rem;
	overflow: hidden;
}
.wpcf7-list-item{
	margin: 0 !important;
	font-size: 14px;
}
form.cf7mls input.wpcf7-form-control.wpcf7-submit{
	margin: 0 !important;
}
.cf7mls-btns.cf7mls-btns-last-step{
	position: absolute;
	left: 0;
	bottom: 6px;
}
.sidebar-colm-right{
	text-align: right;
}
.courses-tab-list{
	flex-wrap: wrap;
}
.courses-sub-area-wrapper{
	display: flex;
	padding: 2rem;
	border-radius: 1rem;
	flex-direction: row;
	align-items: flex-start;
	row-gap: 2rem;
	column-gap: 2rem;
}
.courses-sub-area-wrapper-left{
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}
.courses-sub-area-wrapper-heading{
	max-width: 205px;
	width: 100%;
}
.courses-sub-area-wrapper-right{
	flex: 1;
	width: 100%;
}
.number-grid-section .featured-box-title{
	color: #022a7b;
}
.number-grid-section .featured-box-wrapper h4{
	font-size: 16px;
}
.number-grid-section .featured-box-wrapper{
	border-right: none;
}
.criteria-box{
	padding: 2rem;
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
  border: none !important;
  color: #2d3436;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.nav.custom-nav-tab-section{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  top: 0;
  background-color: transparent !important;
}
.partner-logo-box{
	display: block;
}
#partner-carousel.slider-section .slider-arrow{
	display: none !important;
}



.tab-accordion-content {
	display: none;
}
/* Style for navigation tabs */
.tabs {
	display: flex;
	justify-content: start;
	position: relative;
	z-index: 5;
}
.tab {
	cursor: pointer;
	padding: 0.5rem 1rem;	
	font-size: 0.825rem;
	font-weight: 600;
	color: #6b7280;
	position: relative;
	margin: 0 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 0;
	background-color: #f4f4f4;
	border: 1px solid #f4f4f4;
	border-bottom: none !important;
	gap: .625rem;
}
.tab:first-child{
	-webkit-border-top-left-radius: .625rem;
-moz-border-radius-topleft: .625rem;
border-top-left-radius: .625rem;
}

.tab.active{
	box-shadow: 0 -2px 4px 0 #0000000d;
	-webkit-border-top-left-radius: .625rem;
	-webkit-border-top-right-radius: .625rem;
	-moz-border-radius-topleft: .625rem;
	-moz-border-radius-topright: .625rem;
	border-top-left-radius: .625rem;
	border-top-right-radius: .625rem;
	background-color: #ffffff;
	border-color: #e5e7eb;
	color: #000;
}
.tab:hover{
	color: #000;
}
.tab svg{
	display: none !important;
}

/* Style for accordion headers in mobile view */
.tab-accordion-header {
	display: none;
	cursor: pointer;
	padding: 1rem;
	background-color: #ececec;
	border: none;;
	margin: 0;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	display:flex;
	justify-content: space-between;
	border-bottom: 1px solid #D7D7D7;
	font-size: 1rem;
}
.tab-accordion-header.active{
	color: #fff;
	background-color: #022a7b;
}
/* Style for accordion content */
.tab-accordion-content {	
	margin: 0px 0 0;
}
.tabs-content-wrap{
  display: flex;
  flex-wrap: wrap;
  box-shadow: none;
  margin: 0;
  background-color: #fff;
  padding: 1rem 2rem;
  border: 1px solid #e5e7eb;
  border-top: none !important;
  box-shadow: 0 -2px 4px 0 #0000000d;

  -webkit-border-radius: .625rem;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: .625rem;
	-moz-border-radius-topleft: 0;
	border-radius: .625rem;
	border-top-left-radius: 0;
}

.process-card .bullet-list li{
	list-style-position: inside;
}
#hero-carousel .glide__slide{
	position: relative;
}