/**
* Template Name: Opallios
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,500;6..12,600;6..12,800&display=swap');

body {
	font-family: 'Nunito Sans', sans-serif;
	color: #444444;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito Sans', sans-serif;
}


/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ef4036;
	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: #ff6a40;
	color: #fff;
}

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

/*--------------------------------------------------------------
  # 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: 6px solid #ef4036;
	border-top-color: #ffe9e3;
	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);
	}

}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}

}

/* 6.1 Header
--------------------------------------------------------------*/

/* Preloader */
.preloader-wrapper {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999900;
	background: #fff;
}

.preloader-wrapper .preloader {
	margin: 20% auto 0;
	transform: translateZ(0);
}

.preloader:before, .preloader:after {
	content: '';
	position: absolute;
	top: 0;
}

.preloader:before, .preloader:after, .preloader {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation: animation 1.2s infinite ease-in-out;
}

.preloader {
	animation-delay: -0.16s;
}

.preloader:before {
	left: -3.5em;
	animation-delay: -0.32s;
}

.preloader:after {
	left: 3.5em;
}

@keyframes animation {
	0%, 80%, 100% {
		box-shadow: 0 2em 0 -1em #333;
	}

	40% {
		box-shadow: 0 2em 0 0 #333;
	}

}

.main-logo img {
	width: auto;
}

.headertop {
	background-color: #e1ecf2;
	color: #314f8f;
	font-weight: 500;
	text-align: center;
	font-size: 0.9rem;
}

/* Nav Nav */
.navmenu {
	position: relative;
	width: 100%;
	z-index: 9900;
	line-height: normal;
}

.navmenu a {
	color: #777;
}

.navmenu ul {
	margin: 0;
	padding: 0;
	text-align: right;
}

.navmenu li {
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	line-height: normal;
	vertical-align: middle;
}

.navmenu li a {
	padding: 5px 10px;
	display: block;
	text-decoration: none;
	color: #777;
	font-size: inherit;
	font-family: inherit;
	box-sizing: border-box;     /* -webkit-transition: all .3s ease-out;
		-moz-transition: all .3s ease-out;
		transition: all .3s ease-out; */
	font-size: 1rem;
}

.navmenu.light li a:hover {
	color: #fff;
}

/* main level */
.navmenu > ul > li {
	display: inline-block;
}

.navmenu > ul > li > a {
	padding: 20px 10px;
	font-size: 1.1rem;
	font-weight: 400;
}

.sub-menu {
	position: relative;     /** box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .15) !important **/
}

/* first level dd */
.navmenu ul ul {
	top: auto;
	width: 220px;
	position: absolute;
	z-index: 9900;
	text-align: left;
	display: none;
	background: #ddd;
}

.navmenu li li {
	display: block;
}

/* second level dd */
.navmenu ul ul ul {
	top: 0;     /* dd animtion - change to auto to remove */
	left: 220px;
}

.navmenu > ul > li:hover > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.navmenu ul ul li {
	border-bottom: none;
}

.navmenu.light ul ul li:hover {
	color: #000;
}

.navmenu.light ul ul li:hover a {
	color: #000;
}

/* .drop-left */
.navmenu > ul > li.drop-left > ul {
	right: 0;
}

.navmenu li.drop-left ul ul {
	left: auto;
	right: 220px;
}

/* light theme */
.navmenu.light {
	background: none;
}

.navmenu.light a {
	color: #000;
}

.navmenu.light ul ul {
	background: rgba(255, 255, 255, 1);
}

.navmenu.light li a {
	color: #fff;
}

.navmenu.light li a:hover {
	color: #ffe75b;
}

/* dark theme */
.navmenu.dark {
	background: rgba(0, 0, 0, 1);
}

.navmenu.dark a {
	color: #FFF;
}

.navmenu.dark ul ul {
	background: rgba(0, 0, 0, 1);
}

.navmenu.dark li a {
	color: #FFF;
}

/* sticky nav */
.navmenu.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

/* only used when 'scrollbarFix' is set to true in the js. This fixes horizontal scrollbar caused by the dd menus that are very long.*/
body.navmenu-noscroll-x {
	overflow-x: hidden;
}

/* general styling */
.navmenu li.has-sub > a:after {
	content: '';
	margin-left: 10px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #FFF;
	display: inline-block;
}

.navmenu li li.has-sub > a:after {
	margin-left: 10px;
	float: right;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #FFF;
	position: relative;
	top: 4px;
}

.navmenu li.drop-left li.has-sub > a:after {
	float: left;
	margin-right: 10px;
	border-left: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid #FFF;
}

.navmenu.hide-arrows li.has-sub > a:after, .navmenu.hide-arrows li li.has-sub > a:after, .navmenu.hide-arrows li.drop-left li.has-sub > a:after {
	display: none;
}

.navmenu .menu-toggle, .navmenu .close-menu, .navmenu .call-btn-mobile, .navmenu .location-btn-mobile {
	display: none;
	text-transform: uppercase;
	text-decoration: none;
}

.navmenu .dd-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	width: 48px;
	height: 48px;
	text-align: center;
	z-index: 9999;
	border: 0;
}

.navmenu.desktop li.has-sub a {

	/** padding-right: 5px; **/
}

.navmenu.desktop.hide-arrows li.has-sub a {
	padding-right: 15px;
}

.navmenu.mobile > ul > li > a.dd-toggle {
	padding: 0;
}

.navmenu li.call-btn-mobile, .navmenu li.location-btn-mobile {
	display: none;
}

/* svg icons */
.navmenu svg {
	fill: currentColor;
	width: 1em;
	height: 1em;
	position: relative;
	top: 2px;
	color: #081a7d;
}

/* svg icons */
.navmenu a.dd-toggle .icon-plus {
	box-sizing: border-box;
	transition: transform 0.3s;
	width: 12px;
	height: 100%;
	position: relative;
	vertical-align: middle;
	display: inline-block;
}

.navmenu a.dd-toggle .icon-plus:before {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	border-bottom: solid 3px #777;
	position: absolute;
	top: 50%;
	transform: rotate(90deg);
	transition: width 0.3s;
}

.navmenu a.dd-toggle .icon-plus:after {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	top: 50%;
	border-bottom: solid 3px #777;
	position: absolute;
}

.navmenu li.open > a.dd-toggle .icon-plus {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.navmenu.light a.dd-toggle .icon-plus:before {
	border-color: #000;
}

.navmenu.light a.dd-toggle .icon-plus:after {
	border-color: #000;
}

.navmenu.dark a.dd-toggle .icon-plus:before {
	border-color: #FFF;
}

.navmenu.dark a.dd-toggle .icon-plus:after {
	border-color: #FFF;
}

.navmenu .icon-close {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	position: relative;
	display: inline-block;
}

.navmenu .icon-close:before {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	border-bottom: solid 3px #777;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
}

.navmenu .icon-close:after {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	top: 50%;
	border-bottom: solid 3px #777;
	position: absolute;
	transform: rotate(-45deg);
}

.navmenu.light .icon-close:before {
	border-color: #000;
}

.navmenu.light .icon-close:after {
	border-color: #000;
}

.navmenu.dark .icon-close:before {
	border-color: #FFF;
}

.navmenu.dark .icon-close:after {
	border-color: #FFF;
}

/* mobile nav */
.navmenu .menu-toggle, .navmenu .call-btn-mobile, .navmenu .location-btn-mobile, .navmenu .close-menu {
	padding: 15px;
	box-sizing: border-box;
}

.navmenu .menu-toggle span.bars {
	display: inline-block;
	margin-right: 7px;
	position: relative;
	top: 3px;
}

.navmenu .menu-toggle span.bars span {
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 6px;
	background: #777;
	margin: 0 0 3px;
}

.navmenu .full {
	width: 100%;
}

.navmenu .half {
	width: 50%;
}

.navmenu .third {
	width: 33%;
	text-align: center;
}

.navmenu .location-btn-mobile.third {
	text-align: center;
}

.navmenu .location-btn-mobile.half {
	text-align: right;
}

.navmenu.light .third, .navmenu.light .half {
	border-left: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light.left .third, .navmenu.light.left .half {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light.right .third, .navmenu.light.right .half {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light .third:first-child, .navmenu.light .half:first-child {
	border-left: 0;
}

.navmenu.dark .third, .navmenu.dark .half {
	border-left: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.dark.left .third, .navmenu.dark.left .half {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.dark.right .third, .navmenu.dark.right .half {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.light.left .menu-toggle, .navmenu.light.right .menu-toggle {
	border-bottom: 0;
}

.navmenu.dark.left .menu-toggle, .navmenu.dark.right .menu-toggle {
	border-bottom: 0;
}

.navmenu.dark .third:first-child, .navmenu.dark .half:first-child {
	border-left: 0;
}

.navmenu.light .menu-toggle span.bars span {
	background: #fff;
}

.navmenu.dark .menu-toggle span.bars span {
	background: #FFF;
}

.navmenu.mobile {

	/* position: static; */
	position: relative;
	z-index: 999;
}

.navmenu.mobile.fixed {
	position: static;
}

.navmenu.mobile ul {
	position: relative;
	display: none;
}

.navmenu.mobile.active {
	padding-bottom: 0;
}

.navmenu.mobile.active > ul {
	display: block;
}

.navmenu.mobile ul {
	text-align: left;
}

.navmenu.mobile > ul > li {
	display: block;
}

.navmenu.mobile > ul > li > a {
	padding: 15px;
}

.navmenu.mobile ul {
	background: rgba(221, 221, 221, 1);
}

.navmenu.mobile ul ul {
	position: relative;
	opacity: 1;
	visibility: visible;
	width: auto;
	display: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: color 0 ease-in;
	transition: none;
}

.navmenu.mobile ul ul ul {
	left: auto;
	top: auto;
}

.navmenu.mobile li.drop-left ul ul {
	right: auto;
}

.navmenu.mobile li a {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.mobile > ul {
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.mobile.light li a {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.mobile.light > ul {
	border-top: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.mobile li a.dd-toggle {
	border: 0;
}

.navmenu.mobile.light li a.dd-toggle {
	border: 0;
}

.navmenu.mobile .menu-toggle, .navmenu.mobile .dd-toggle, .navmenu.mobile .close-menu, .navmenu.mobile .call-btn-mobile, .navmenu.mobile .location-btn-mobile {
	display: inline-block;
}

.navmenu.mobile li.call-btn-mobile {
	border-right: 1px solid rgba(255, 255, 255, .1);
	box-sizing: border-box;
}

.navmenu.mobile li.call-btn-mobile, .navmenu.mobile li.location-btn-mobile {
	display: inline-block;
	width: 50%;
	text-transform: uppercase;
	text-align: center;
}

.navmenu.mobile li.call-btn-mobile.full, .navmenu.mobile li.location-btn-mobile.full {
	display: block;
	width: 100%;
	text-transform: uppercase;
	border-right: 0;
	text-align: left;
}

.navmenu.mobile.light ul {
	background: rgba(255, 255, 255, 1);
}

.navmenu.mobile.dark ul {
	background: rgba(0, 0, 0, 1);
}

.navmenu.mobile.dark ul ul {
	background: rgba(255, 255, 255, .08);
}

.navmenu.mobile.light li.call-btn-mobile {
	border-right: 1px solid rgba(0, 0, 0, .1);
}

.navmenu.mobile.top {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

.navmenu.mobile li.has-sub > a:after, .navmenu.mobile li li.has-sub > a:after, .navmenu.mobile li.drop-left li.has-sub > a:after {
	display: none;
}

/* left and right positions */
.navmenu.mobile.right > ul, .navmenu.mobile.left > ul {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 280px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.navmenu.mobile.right > ul {
	right: 0;
}

.navmenu.mobile.right .close-menu, .navmenu.mobile.left .close-menu {
	display: inline-block;
	text-align: right;
}

.navmenu.mobile.left > ul {
	left: 0;
}

.navmenu.mobile.right .location-btn-mobile.half, .navmenu.mobile.right .call-btn-mobile.half, .navmenu.mobile.right .close-menu.half {
	text-align: center;
}

.navmenu.mobile.right .location-btn-mobile.third, .navmenu.mobile.right .call-btn-mobile.third, .navmenu.mobile.right .close-menu.third {
	text-align: center;
}

.navmenu.mobile.left .location-btn-mobile.half, .navmenu.mobile.left .call-btn-mobile.half, .navmenu.mobile.left .close-menu.half {
	text-align: center;
}

.navmenu.mobile.left .location-btn-mobile.third, .navmenu.mobile.left .call-btn-mobile.third, .navmenu.mobile.left .close-menu.third {
	text-align: center;
}

.navmenu.mobile.left .menu-toggle.half, .navmenu.mobile.left .menu-toggle.third, .navmenu.mobile.right .menu-toggle.half, .navmenu.mobile.right .menu-toggle.third {
	text-align: left;
}

.navmenu.mobile.left .close-menu.third span, .navmenu.mobile.right .close-menu.third span {
	display: none;
}

.navmenu.mobile.left .close-menu.third {
	font-size: 1rem;
	font-weight: 600;
}

/* left and right positions */

/* mega dd */
.navmenu.desktop li.mega ul ul {
	background: none;
}

.navmenu.desktop li.mega li {
	display: inline-block;
	vertical-align: top;
	margin-left: -4px;
}

.navmenu.desktop li.mega li li {
	display: block;
	position: relative;
	left: 4px;
}

.navmenu.desktop li.mega ul ul {
	width: auto;
}

.navmenu.desktop > ul > li.mega {
	position: inherit;
}

.navmenu.desktop > ul > li > ul {
	box-shadow: 0 .9rem 1rem rgba(0, 0, 0, .15) !important;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 10px;
}

.navmenu > ul > li.single-dropdown ul li {
	margin-bottom: 5px;
}

.navmenu > ul > li.single-dropdown ul li a:hover {
	background-color: #02319b;
	Color: #fff;
	border-radius: 50px;
}

.navmenu.desktop > ul > li.mega > ul {
	width: 100%;
	white-space: nowrap;
	margin: 0 auto;
	padding: 0px 0px 0px 50px;
	box-shadow: 0 .9rem 1rem rgba(0, 0, 0, .15) !important;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: hidden;
}

.navmenu.desktop > ul > li.mega > ul li.has-sub ul {
	display: block;
	position: relative;
	left: auto;
}

.navmenu.desktop > ul > li.mega > ul > li {
	padding-bottom: 55px;
	padding-top: 20px;
	width: 18% !important;
	margin: 0 auto;
	white-space: nowrap;
	display: inline-block;
}

.navmenu.desktop > ul > li.mega > ul > li:nth-child(3) {
	width: 13% !important;
}

.navmenu.desktop > ul > li.mega > ul > li:nth-child(5) {
	padding-left: 40px;
}

.navmenu.desktop li.mega li li a {
	padding: 5px 15px;
}

.navmenu.desktop li.mega li.has-sub a:after {
	display: none;
}

.navmenu.desktop > ul > li.mega > ul li.has-sub:nth-child(5) ul {
	width: 150px;
}

.navmenu.desktop > ul > li.mega > ul > li > a {
	color: #17479e;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.navmenu.desktop > ul > li.mega > ul > li > ul li:hover {
	background-color: #02319b;
	Color: #fff;
	border-radius: 50px;
	padding: 0px 5px 0px 5px;
	display: inline-block;
	width: 100%;
}

.navmenu.desktop > ul > li.mega > ul > li > ul li:hover a {
	color: #fff;
}

.share-icon {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f3f3f3;
	color: #1b2682;
	font-size: 0.9rem;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	border-radius: 50px;
}

/* mega dd */

/* Fallback for slow javascript load */
@media only screen and (max-width:768px) {
	.navmenu {
		overflow: hidden;
		display: block;
	}

	.navmenu ul {
		position: relative;
		display: none;
	}

}

/* mobile nav */
@media only screen and (max-width:420px) {
	.navmenu.mobile .call-btn-mobile.third span, .navmenu.mobile .location-btn-mobile.third span {
		display: none;
	}

}

@media (min-width:991px) {
	.navmenu li.has-sub > a:after {
		display: none;
	}

}

.sub-menu-toggle {
	display: none;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 0;
	position: fixed;
	width: 100%;
}

#header.header-scrolled, #header.header-inner-pages {
	background-color: rgba(0, 0, 0, 0.9);
	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: 60px;
}

.header-top ul { margin: 7px 0 0 0; padding: 0; text-align: right;}
.header-top ul li { list-style: none; display: inline-block;}
.header-top ul li a { color: #fff; padding:2px 5px;}

.header-scrolled .header-top { display: none;}

.navmenu.light li a.enquirynow-btn {
	background-color: #23974e;
	padding: 5px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9rem;
}

.navmenu.light li a.enquirynow-btn:hover {
	color: #fff;
	background-color: #000;
}

/*--------------------------------------------------------------
  # Banner Section
  --------------------------------------------------------------*/
.mainBanner .swiper-button-next, .swiper-button-prev {
	color: #2a269f;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.2rem;
  color: #fff;
}

.slide-content {
	position: absolute;
	left: 125px;
	z-index: 999999;
	color: #fff;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
}

.slide-content h2 {
	font-weight: 900;
	font-size: 2.5rem;
}

.slide-content .enquirynow-btn {
	background-color: #fff;
	color: #000;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 800;
	border-radius: 50px;
	width: 152px;
}

.slide-content h2 span {
	font-weight: 100;
}

.mySwiper .swiper-slide {
	position: relative;
}

.section-bg {
	background-color: #f0f4f8;
}

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-title {
	padding-bottom: 40px;
}

.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: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #263d4d;
}

.section-heading {
	text-align: center;
}

.section-heading span {
	background-color: #e60449;
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	padding: 5px 10px;
	font-size: 0.9rem;
	margin-bottom: 5px;
	display: inline-block;
	text-transform: uppercase;
}

.sectiontitle {
	color: #000;
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 0;
}

.Innovations-section .sectiontitle {
	color: #fff;
}

.main-banner .swiper img {
	text-align: center;
	margin: 0 auto;
}

.client-section .sectiontitle {
	color: #000;
	font-size: 2.2rem;
	margin-bottom: 0;
	text-align: left;
	font-weight: 700;
}

.welcome-section {
	position: relative;
	background-color: #FFF;
	position: relative;
	z-index: 1;
	overflow: inherit;
}

.img-icon {
	background-color: #fff;
	width: 100px;
	height: 100px;
}

.img-icon img {
	width: 70px;
}

.destination-cate p {
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 600;
}

.welcome-section h1 {
	font-size: 2.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #0c2957;
}

.welcome-content p {
	font-size: 1.1rem;
	line-height: 28px;
	color: #0c2957;
}

.tourplaces-slider {
	background-color: #f1f5f8;
}

.trend-slider {
	margin-top: 50px;
	position: relative;
}

.tourplaces-thumbnail {
	background-color: #fff;
	border-radius: 10px;
	margin-bottom: 40px;
}

.tourplaces-thumbnail .ideas-content {
	text-align: center;
}

.testimonial-name {
	font-size: 1.2rem;
}

.designation {
	color: #23974e;
}

.client-section .tourplaces-thumbnail .ideas-content:after {
	content: '';
	background-color: #df4f29;
	width: 90%;
	position: absolute;
	height: 50px;
	bottom: -10px;
	z-index: -1;
	border-radius: 25px;
	right: 0;
	margin: 0 auto;
	left: 0;
}

.tourplaces-thumbnail .ideas-content h3 {
	font-size: 1rem;
	font-weight: 800;
	color: #23974e;
	margin-bottom: 0px;
	text-transform: uppercase;
}

.trending-courses .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
}

.trending-courses .swiper-pagination-bullet-active {
	background: #e60449;
}

.trending-courses .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.placesslider {
	padding-bottom: 30px;
}

.tourphoto {
	position: relative;
	text-align: center;
	top: -22px;
}

.tourphoto h4 {
	position: absolute;
	bottom: 0;
	right: 5px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	background-color: #ef3f29;
	padding: 5px 10px;
	border-radius: 5px;
	text-transform: uppercase;
}

.offer-content {
	font-size: 1.7em;
	color: #0c2957;
	margin: 0;
	padding: 0;
	font-weight: 800;
}

.date-time {
	font-size: 0.9rem;
}

.deal-offers {
	position: relative;
}

.offer-thumb {
	overflow: hidden;
}

.offer-thumb .offer-thumbcontent {
	position: absolute;
	bottom: 20px;
	left: 15px;
	color: #fff;
	font-weight: 100;
	line-height: 35px;
}

.offer-thumb a {
	color: #fff;
}

.offer-thumb ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 30px;
	margin: 10px 0px;
}

.zoom-effect {
	transition: 0.5s all ease-in-out;
	position: relative;
	overflow: hidden;
}

.zoom-effect:hover {
	transform: scale(1.2);
}

.view-detailsbtn {
	border: #fff solid 1px;
	padding: 2px 10px;
	margin-top: 15px;
	display: inline-block;
	font-size: 1rem;
}

.offerDetails {
	position: relative;
	margin-bottom: -105%;
	transition: all 0.5s;
}

.offer-thumb:hover .offerDetails {
	margin-bottom: 0%;
}

.accreditations {
	background-color: #fff;
}

.client-section {
	background-image: url(../images/testimonial-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/*--------------------------------------------------------------
# Popular Categories
--------------------------------------------------------------*/

.viewall-col {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 900 !important;
}

.viewall-col h3 {
	font-size: 2rem !important;
	text-transform: uppercase;
}

.categories-thumbnail {
	position: relative;
}

.category-content {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
}

.category-content h4, .category-content p {
	margin: 0;
	padding: 0;
}

.category-content h4 {
	font-size: 1.2rem;
	font-weight: 600;
}

.popularcate-slider {
	position: relative;
}

.popularcate-slider .swiper-button-next:after, .popularcate-slider .swiper-rtl .swiper-button-prev:after {
	content: 'next';
	font-size: 25px;
}

.popularcate-slider .swiper-button-prev:after, .popularcate-slider .swiper-rtl .swiper-button-next:after {
	content: 'prev';
	font-size: 25px;
}

.popularcate-slider .swiper-button-next, .popularcate-slider .swiper-rtl .swiper-button-prev {
	right: -40px;
	color: #000;
}

.popularcate-slider .swiper-button-prev, .popularcate-slider .swiper-rtl .swiper-button-next {
	left: -40px;
	color: #000;
}

/*--------------------------------------------------------------
# Graduate Programme
--------------------------------------------------------------*/
.post-graduate-cate {
	position: relative;
	padding: 100px 0px;
}

.post-graduate-cate::before {
	content: '';
	background-image: url(../img/post-graduate-programme.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	width: 100%;
	height: 455px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}

.programme-col {
	background-color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
}

.programme-content {
	padding: 25px;
}

.programme-row {
	margin-top: 50px;
}

.programme-content h4 {
	color: #000;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.programme-content p {
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
}

.programm-img {
	position: relative;
}

.programm-img p {
	position: absolute;
	bottom: 0;
	left: 15px;
	background-color: #fff;
	padding: 5px 10px;
	margin: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
	padding: 60px 0;
}

.section-bg {
	background-color: #f0f4f8;
}

.section-title {
	padding-bottom: 40px;
}

.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: 'Nunito Sans', sans-serif;
}

.section-title h2::after {
	height='20';
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #ff8664;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Nunito Sans', sans-serif;
	color: #263d4d;
}

/*--------------------------------------------------------------
  # Sticky Bar
  --------------------------------------------------------------*/
.stickybar {
	background-color: #f4faff;
	color: #5982a4;
	padding: 10px !important;
	font-size: 1rem;
}

.stickybar span {
	background-color: #52b9e9;
	padding: 5px;
	border-radius: 5px;
	color: #ffff;
	margin: 0 5px;
}

.product-cate-menu {
	margin: 0;
	padding: 0;
}

.product-cate-menu {
	list-style: none;
	margin-bottom: 2px;
}

.product-cate-menu li {
	display: inline-block;
	list-style: none;
	margin: 0px 10px;
}

.product-cate-menu li select {
	border-radius: 50px;
}

.product-cate-menu li a {
	border: #b6b6b6 solid 1px;
	border-radius: 50px;
	font-size: 1rem;
	padding: 8px 20px;
}

.form-select.active {
	background-color: #0014a9;
	color: #fff;
	border: none;
}

.product-details h1 {
	color: #243092;
	font-weight: 400;
	font-size: 2.5rem;
	border-bottom: #e0cba0 solid 1px;
	display: inline-block;
	padding-bottom: 10px;
}

.product-stage {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.product-stage li {
	list-style: none;
	display: inline-block;
	white-space: nowrap;
}

.product-stage li a {
	color: #707070;
	font-weight: 500;
	border: #ccc solid 1px;
	border-radius: 50px;
	padding: 5px 20px;
	margin: 0px 10px;
	font-size: 1rem;
}

.product-stage li a:hover, .product-stage li a.active {
	box-shadow: 0 4px 9px -4px rgba(0, 0, 0, 0.35);
	border: #13af9a solid 1px;
	color: #303c98;
}

.product-stage i a.active {
	color: #303c98;
	border: #13af9a solid 1px;
	box-shadow: 0 4px 9px -4px rgba(0, 0, 0, 0.35);
}

.product-cate-menu li a:hover {
	color: #303c98;
}

.product-icon {
	color: #707070;
	text-align: left;
	line-height: 20px;
	font-size: 1rem;
	margin-bottom: 15px;
}

.product-icon img {
	border: #bf943a solid 2px;
	border-radius: 50px;
	padding: 5px;
	margin-right: 10px;
}

.tab-accordion .accordion-item .accordion-button {
	background-color: #fff !important;
	color: #243092 !important;
	border: #ededed solid 2px;
	border-radius: 50px;
	box-shadow: none;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.accordion-flush .accordion-item {
	border: none;
}

.accordion-flush .accordion-item .accordion-body {
	text-align: left;
	font-size: 1rem;
	margin-bottom: 25px;
	padding: 0px 25px;
}

.accordion-flush .accordion-item .accordion-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tab-accordion .accordion-button:after {
	background-image: url(../images/arro-icon-top.png);
	background-size: auto;
	top: 5px;
	position: relative;
}

.tab-accordion .accordion-button:not(.collapsed):after {
	background-image: url(../images/arro-icon-top.png);
	background-size: auto;
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
  # Home Page
  --------------------------------------------------------------*/
#bannerbg {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 150px 0px;
}

#bannerbg:after, #bannerbg:before {
	content: ' ';
	position: absolute;
	width: 50%;
	height: 100%;
	z-index: -1;
	top: 0;
}

#bannerbg:after {
	left: 0px;
	background: #fff;
}

#bannerbg:before {
	right: 0px;
	background: #081a7d;
}

.custom-img {
	max-width: 900px;
}

.blog {
	background-color: #e1eeff;
}

.post-section {
	background-color: #fff;
}

.blog-content p.blog-para {
	min-height: 170px;
}

.blog-section {
	background-image: url(../images/blog-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.blog-col {
	background-color: #fff;
}

.blog-cate {
	color: #f94d1b;
	font-weight: 700;
}

.blog-conents h4 {
	font-weight: 700;
	font-size: 1.2rem;
}

.readmore-btn {
	color: #f94d1b;
	font-weight: 600;
}

.blog-date {
	position: absolute;
	bottom: -45px;
	right: 11px;
	background-color: #23974e;
	color: #fff;
	font-weight: 800;
	text-align: center;
	padding: 15px;
	line-height: 19px;
}

/*--------------------------------------------------------------
  # Protinex Poster
  --------------------------------------------------------------*/
.protiex-poster .pp-para {
	position: absolute;
	top: 0;
	left: 33px;
	font-size: 1.1rem;
	color: #fff;
	margin-top: 155px;
	max-width: 220px;
}

.protiex-poster .pp-para p {
	padding: 0;
	font-size: 1.5rem;
	line-height: 30px;
}

.protiex-poster .explore-btn.btn-outline, .products-details .explore-btn.btn-outline {
	color: #fff;
	border: #fff solid 1px;
}

.protiex-poster .explore-btn.btn-outline:hover {
	background-color: #fff;
	color: #7ca00b;
}

.products-details .explore-btn.btn-outline:hover {
	background-color: #fff;
	color: #02a1db;
}

.explore-btn.btn-solid:hover {
	border: #1a25ab solid 1px;
	background-color: #1a25ab;
}

.products-details .pp-para {
	position: absolute;
	top: 0;
	right: 33px;
	font-size: 1.1rem;
	color: #fff;
	margin-top: 155px;
	max-width: 220px;
}

.products-details .pp-para p {
	padding: 0;
	font-size: 1.5rem;
	line-height: 30px;
}

.products-details:before {
	content: '';
	background-color: #1a25ab;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 550px;
	top: 245px;
	z-index: 0;
}

.product-cate {
	color: #fff;
}

.product-cate h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #fff;
}

/*--------------------------------------------------------------
  # Internal Pages
  --------------------------------------------------------------*/
.internal-header {
	background: #f1f1f1;
	box-shadow: inset 0 0 10px #e3e3e3;
	padding: 20px 0px;
}

.internal-header h1 {
	font-size: 1.8rem !important;
	padding-left: 30px;
	color: #243092;
	font-weight: 600 !important;
}

h3.text-center {
	Color: #243092;
}

.get-content h2 {
	color: #243092;
	font-size: 2rem;
	margin-bottom: 15px;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer-bottom {
	background-image: url(../images/footerbg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 0.9rem;
	padding: 50px 0px;
}

.footer-bottom .footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #060606;
	text-transform: uppercase;
}

.footer-bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom ul li {
	list-style: none;
}

.footer-bottom ul li a {
	color: #030303;
	font-size: 1rem;
	line-height: 35px;
	font-weight: 600;
}

.footer-bottom ul li a:hover {
	color: #23974e;
}

.soclia-media ul li {
	display: inline-block;
	padding: 0px 10px;
}

address {
	color: #030303;
}

.soclia-media ul {
	float: right;
}

.soclia-media ul li a {
	font-size: 1.2rem;
	background-color: #23974e;
	padding: 7px 13px;
	border-radius: 100%;
	color: #fff;
}

.soclia-media ul li a:hover {
	color: #000;
}

.joinbtn {
	color: #5982a4;
	font-size: 1.1rem;
	text-decoration: underline;
	margin-left: 15px;
	margin-right: 5px;
}

@media(max-width:767px) {
	.reason_info.one_item ul li {
		display: flex;
		flex-direction: column;
		align-items: end;
		justify-content: end;
	}

	.reason_info {
		display: table;
		margin: 0 auto;
		width: 100%;
	}

	.reason_info ul li:nth-child(1)::before, .reason_info ul li:nth-child(2)::after, .reason_info ul li:nth-child(3)::before, .reason_info ul li:nth-child(4)::after {
		display: none;
	}

	.reason_info ul li p.high1 {
		position: relative;
		left: 0;
		top: 0;
	}

	.reason_info ul li p.high1 {
		position: relative;
		left: 0;
		top: 5px;
	}

	.reason_info ul li p.high1 br {
		display: none;
	}

	.reason_info ul li p.high2 {
		position: relative;
		right: 0;
		top: 5px;
		width: 100%;
	}

	.reason_info ul li p.high2 br {
		display: none;
	}

	.reason_info ul li p.high3 {
		position: relative;
		left: 0;
		top: 0;
		text-align: left;
	}

	.reason_info ul li p.high3 br {
		display: none;
	}

	.reason_info ul li p.high4 {
		position: relative;
		right: 0;
		top: 0;
		width: 100%;
	}

	.reason_info ul li p.high4 br {
		display: none;
	}

	.reason_info ul li img {
		width: 100%;
	}

	.reason_info ul li p {
		line-height: 20px;
	}

	.product_disclaimer {
		display: block;
	}

	.disclaimer_right p {
		text-align: left;
	}

}

.product-information .tab-content > .tab-pane {
	margin: 0 auto;
}

.btn-buy {
	background: #20d5d0;
	color: #fff;
	width: 50%;
	text-align: center;
	padding: 5px;
	font-weight: 700;
}

.btn-faq {
	background: #243092;
	color: #fff;
	width: 50%;
	text-align: center;
	padding: 5px;
	font-weight: 700;
}

.get-content {
	font-size: 1.1rem;
	line-height: 27px;
}

.benifits-section {
	clear: both;
	width: 100%;
	float: left;
	margin: 60px auto 0;
}

.profile-cols {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: -1px;
}

.profile-cols {
	background: #fff;
}

.profile-cols {
	border: 1px solid #e5e5e5;
	padding: 25px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	border-bottom: 1;
	border-right: 1;
	transition: all .3s;
}

.profile-title, .profile-cols h3, .profile-cols h2 {
	margin: 0 auto 10px;
	color: #243092;
	font-weight: 700;
	text-transform: uppercase;
	transition: all .3s;
	font-size: 18px;
	line-height: 1.2;
}

.readbutton {
	background-color: #23974e;
	color: #fff;
	padding: 8px 46px;
	border-radius: 25px;
	text-transform: uppercase;
	font-weight: 800;
}

.readbutton:hover {
	background-color: #000;
	color: #fff;
}

.icon {
	color: #3aa261;
	font-weight: 600;
	font-size: 20px;
}

.s-icon-text {
	color: #23974e !important;
	font-size: 17px !important;
	font-weight: 800;
}

.s-icon-text span {
	color: #0c2957;
	font-size: 22px;
}

.service-section {
	background-color: #f0f4f7;
}

.service-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
}

.service-content {
	min-height: 90px;
}

.Innovations-section {
	background-image: url(../images/innovation-background.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 0.9rem;
	padding: 50px 0px;
}

.client-title {
	background: #23974e;
	height: 100%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.8rem;
	font-weight: 500;
}

/*--------------------------------------------------------------
# Popular Categories
--------------------------------------------------------------*/
.categories-thumbnail {
	position: relative;
}

.category-content {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
}

.category-content h3, .category-content p {
	margin: 0;
	padding: 0;
}

.category-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.inner-banner {
    background: #001328 url(../images/internal-banner.jpg) center top no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 190px;
    padding-bottom: 100px;
}

.inner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #001328;
    opacity: .92;
}
.inner-banner .container .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    text-align: center;
    display: block;
    margin-bottom: 10px;
	position:relative;
}
.inner-banner .container .breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.inner-banner .container .breadcrumb li a {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.inner-banner .container h1 {
    font-size: 60px;
    color: #FFFFFF;
    font-weight: 700;
	position:relative;
}

.internal-content h2 {
	font-weight:700;
	font-size:2rem;
}

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background-color: #fff;
}
.contact .info-box i {
    font-size: 35px;
    color: #23974e;
    border-radius: 50%;
    padding: 8px;
}
.contactform {
    background-color: #fff;
	min-height:647px;
}

.contactform .form-control { min-height:50px; border-radius:0px; }

.contactform h2 {
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.contactform  .btn-primary {     border: none;
    background: #23974e;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    padding: 5px 25px; }

/*--------------------------------------------------------------
  Services-Page
  --------------------------------------------------------------*/	

  .servicesinner-banner {
	background: url(../images/services-banner.jpg) center top no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .servicesinner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #001328;
    opacity: .92;
}
.servicesinner-banner .container .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    text-align: center;
    display: block;
    margin-bottom: 10px;
	position:relative;
}
.servicesinner-banner .container .breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.servicesinner-banner .container .breadcrumb li a {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.servicesinner-banner .container h1 {
    font-size: 60px;
    color: #FFFFFF;
    font-weight: 700;
	position:relative;
} 
.services-content {
	font-size: 32px;
    font-weight: 300;
    color: #0f0f0f;
    margin-bottom: 20px;
}
.consulting-services {
	background-color: #029fdd;
	margin-top: 50px;
}
.consulting-services h2 {
	text-align: center;
    color: #fff;
    text-transform: uppercase;
	margin-bottom: 50px;
}
.consulting-services h2 span {
	text-transform: capitalize;
	font-weight: 400;
}
.consulting-sec {
    background-color: #fff;
    border-top: 5px solid #fdd324;
    padding: 25px;
	margin-bottom: 25px;
	min-height: 350px;
}
.consulting-sec h3 {
	color: #0f0f0f;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.selerforce-products-sec {
	background-color: #f9f9f9;
}
.selerforce-products-sec h2 {
	text-align: center;
}
.selerforce-products-sec .subtitle {
	text-align: center;
	margin-bottom: 50px;
}
.selerforce-products-sec .products-title {
	margin-bottom: 40px;
}
.selerforce-products-sec h4 {
	z-index: 9;
	margin-top: -45px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding-left: 25px;
}

.advantage-sec {
		background-image: url(../images/advantage-bg.jpg);
		text-align: center;
		color: #fff;
		margin-bottom: 0px;
}
.advantage-sec p {
	font-size: 18px;
    margin-top: 30px;
    color: #e9e8e8;
}
.advantage-sec .phone-no {
	font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 50px 0 40px;
}
	
.advantage-sec .contact {
    background: #e95229;
    color: #fff;
    padding: 10px 45px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
}