/*------------------------------------*\
	General
\*------------------------------------*/
/* --- typography --- */
body {
    font-family: 'Montserrat', sans-serif;
	font-size: 15px;
    font-weight: 400;
    color: #798696;
	overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6 {
	margin-top: 12px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #374050;
}

h1 {
	font-size:38px;
}

h2 {
	font-size:30px;
}

h3 {
	font-size:24px;
}

h4 {
	font-size:18px;
}

a {
	font-family: 'Lato', sans-serif;
	color: #374050;
	font-weight: 700;
}

a:hover,
a:focus{
    text-decoration: none;
    outline: none;
	color: #374050;
	opacity: 0.9;
}

ul,ol{
    margin: 0;
    padding: 0;
    list-style: none
}

.white-text {
	color: #FFF;
}

blockquote {
	position: relative;
	margin: 20px 0px;
	padding: 20px 20px 20px 60px;
	border-left: none;
	color: #374050;
}

blockquote:before{
	content:"\f10d";
	font-family:fontAwesome;
	position:absolute;
	left:0;
	top:0;
	color: #FF6700;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	border-radius:50%;
	border:1px solid #EBEBEB;
}


/* --- Section --- */
.section {
	position:relative;
	padding-top:80px;
	padding-bottom:80px;
}

.section-hr {
	margin-top:80px;
	margin-bottom:80px;
	border-color: #EBEBEB;
}

.section-header {
	margin-bottom:40px;
}

/* --- Background Image --- */
.bg-image {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-position:center;
	background-size:cover;
}

.bg-image.bg-parallax {
	background-attachment:fixed;
}

.bg-image.overlay:after {
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#374050), to(#798696));
	background-image: linear-gradient(to bottom, #374050 0%, #798696 100%);
	opacity: 0.7;
}

/* --- Background Video --- */
.bg-video {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	overflow:hidden;
}

.bg-video > video {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position: center;
}

.bg-video.overlay:after {
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#374050), to(#798696));
	background-image: linear-gradient(to bottom, #374050 0%, #798696 100%);
	opacity: 0.2;
	pointer-events:none;
}

/* --- Buttons --- */
.main-button {
	position:relative;
	display:inline-block;
	padding:10px 30px;
	background-color: #FF6700;
	border: 2px solid transparent;
	border-radius: 40px;
	color: #FFF;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}

.main-button:hover , .main-button:focus {
	background-color:#fff;
	border: 2px solid #FF6700;
	color:#FF6700;
}

.main-button.icon-button:hover , .main-button.icon-button:focus {
	padding-right: 45px;
}

.main-button.icon-button:after {
	content:"\f178";
	font-family:FontAwesome;
	position:absolute;
	width: 30px;
	right: 15px;
	text-align:center;
	opacity:0;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}

.main-button.icon-button:hover:after , .main-button.icon-button:focus:after {
	opacity:1;
}

/* Yellow button variant */
.main-button.button-yellow {
	background-color: #FFC400;
	border-color: transparent;
	color: #1f1f1f;
}

.main-button.button-yellow:hover,
.main-button.button-yellow:focus {
	background-color: #fff;
	border: 2px solid #FFC400;
	color: #1f1f1f;
}

/*------------------------------------*\
	Top bar (custom)
\*------------------------------------*/
.topbar {
	display:flex;
	align-items:center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 12px;
	color: #374050;
}

/* Make topbar match navbar "pill" background (desktop) */
@media only screen and (min-width: 768px) {
	.topbar {
		background: rgba(255, 255, 255, 0.18);
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 999px;
		padding: 6px 12px;
		-webkit-backdrop-filter: blur(6px);
		backdrop-filter: blur(6px);
	}

	/* On non-hero pages keep it subtle too */
	#header:not(.transparent-nav) .topbar {
		background: rgba(0, 0, 0, 0.04);
		border-color: rgba(0, 0, 0, 0.06);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}

.topbar-left {
	display:flex;
	align-items:center;
	gap: 10px;
	flex-wrap: wrap;
}

.topbar-link {
	color: inherit;
	font-weight: 700;
}

.topbar-link i {
	margin-right: 6px;
}

.topbar-sep {
	opacity: 0.35;
}

.topbar-right {
	display:flex;
	align-items:center;
	gap: 10px;
}

.topbar-social {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(0,0,0,0.06);
	color: inherit;
}

/* On hero (transparent nav) make it white */
#header.transparent-nav .topbar,
#header.transparent-nav .topbar a {
	color: rgba(255,255,255,0.95);
}

#header.transparent-nav .topbar-social {
	background: rgba(255,255,255,0.14);
}

@media only screen and (max-width: 767px) {
	.topbar {
		padding: 8px 0;
	}
	.topbar-right {
		margin-left: auto;
	}
}

/* --  Input  -- */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="url"], input[type="tel"], textarea {
    height: 40px;
    width: 100%;
    border: 1px solid #EBEBEB;
	border-radius:4px;
	background: transparent;
    padding-left: 15px;
	padding-right: 15px;
	-webkit-transition:0.2s border-color;
	transition:0.2s border-color;
}

textarea {
    padding: 10px 15px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="url"]:focus, input[type="tel"]:focus, textarea:focus {
	border-color:#FF6700;
}

/*------------------------------------*\
	Logo
\*------------------------------------*/
.navbar-brand {
    padding: 0;
}

@media only screen and (max-width: 767px) {
	.navbar-brand {
		margin-left:15px;
	}
} 

/*------------------------------------*\
	Navigation
\*------------------------------------*/
#header {
	position:relative;
	left:0;
	right:0;
	top:0;
	z-index:99;
	border-bottom:1px solid rgba(235, 235, 235, 0.25);
	background-color:#FFF;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}

#header.transparent-nav {
	position:absolute;
	background-color: transparent;
}

#header.transparent-nav .main-menu li a {
	color:#FFF;
}

.main-menu li a {
	text-transform:uppercase;
	-webkit-transition:0.2s all;
	transition:0.2s all;
	font-size: 13px;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.main-menu li a:hover , .main-menu li a:focus {
	background-color:transparent;
}

.main-menu li a:after {
	content:"";
	display:block;
	height:2px;
	background-color:#FFC400;
	width:100%;
	-webkit-transform: translateY(5px);
	    -ms-transform: translateY(5px);
	        transform: translateY(5px);
	opacity:0;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}

.main-menu li a:hover:after , .main-menu li a:focus:after {
	-webkit-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	        transform: translateY(0px);
	opacity:1;
}

/* Center navbar menu items (desktop) */
@media only screen and (min-width: 768px) {
	#nav {
		text-align:center;
		padding-top:6px;
		padding-bottom:6px;
	}

	#nav .main-menu.navbar-nav {
		float:none;
		display:inline-block;
	}

	/* Light translucent background only for navbar */
	#nav .main-menu.navbar-nav {
		background: rgba(255, 255, 255, 0.18);
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 999px;
		padding: 4px 10px;
		-webkit-backdrop-filter: blur(6px);
		backdrop-filter: blur(6px);
	}

	/* On non-hero pages keep it subtle too */
	#header:not(.transparent-nav) #nav .main-menu.navbar-nav {
		background: rgba(0, 0, 0, 0.04);
		border-color: rgba(0, 0, 0, 0.06);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}

/* -- Mobile Nav -- */
@media only screen and (max-width: 767px) {
	.topbar {
		display:flex;
		font-size: 11px;
		padding: 8px 0;
	}

	.topbar-left {
		gap: 8px;
	}

	.topbar-sep {
		display:none;
	}

	#nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 0%;
		max-width:250px;
		height: 100vh;
		background: #FFF;
		-webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
		        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
		padding-top: 120px;
		padding-bottom: 40px;
		-webkit-transform: translateX(100%);
		    -ms-transform: translateX(100%);
		        transform: translateX(100%);
		-webkit-transition: 0.4s all cubic-bezier(.77,0,.18,1);
		transition: 0.4s all cubic-bezier(.77,0,.18,1);
		z-index:9;
	}

	#header.nav-collapse #nav{
		width:100%;
		-webkit-transform: translateX(0%);
		    -ms-transform: translateX(0%);
		        transform: translateX(0%);
	}
	
	.main-menu {
		margin:0;
	}
	
	.main-menu li a {
		color: #374050 !important;
		display: block;
		margin: 0;
		padding: 10px 20px !important;
	}
}

/* -- Mobile Toggle Btn -- */
@media only screen and (min-width: 768px) {
	.navbar-toggle {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.navbar-toggle {
		/* Keep hamburger anchored to the header (top only) */
		position: absolute;
		right: 15px;
		padding: 0;
		height: 40px;
		width: 40px;
		top: 54px;
		margin-top: 0;
		z-index: 99;
	}
}

.navbar-toggle > span {
	position: absolute;
	top: 50%;
	left: 50%;
    -webkit-transform: translate(-50% , -50%);
        -ms-transform: translate(-50% , -50%);
            transform: translate(-50% , -50%);
	-webkit-transition: 0.2s background;
	transition: 0.2s background;
}

.navbar-toggle > span:before, .navbar-toggle > span:after {
	content: '';
	position:absolute;
	left:0;
	-webkit-transition: 0.2s -webkit-transform;
	transition: 0.2s -webkit-transform;
	transition: 0.2s transform;
	transition: 0.2s transform, 0.2s -webkit-transform;
}

.navbar-toggle > span , .navbar-toggle > span:before , .navbar-toggle > span:after {
	height: 2px;
	width: 25px;
	background-color:#374050;
}

/* Make hamburger visible on hero (white) */
#header.transparent-nav .navbar-toggle > span,
#header.transparent-nav .navbar-toggle > span:before,
#header.transparent-nav .navbar-toggle > span:after {
	background-color:#FFF;
}

.navbar-toggle > span:before {
	top: -10px;
}

.navbar-toggle > span:after {
	top: 10px;
}

#header.nav-collapse .navbar-toggle > span {
	background: transparent;
}

#header.nav-collapse .navbar-toggle > span:before {
    -webkit-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
}

#header.nav-collapse .navbar-toggle > span:after {
    -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
}

/*------------------------------------*\
	Hero Area
\*------------------------------------*/
.hero-area {
	position:relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

.hero-area.hero-area--large {
	padding-top: 190px;
	padding-bottom: 150px;
}

#home.hero-area {
	height: 72vh;
	min-height: 520px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* Desktop: make the hero video/area taller without affecting phones */
@media only screen and (min-width: 992px) {
	#home.hero-area {
		height: 86vh;
		min-height: 680px;
	}
}

.home-wrapper {
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
	        transform:translateY(-50%);
	left:0;
	right:0;
}

.hero-title {
	margin: 0;
	line-height: 1.05;
}

.hero-title-top {
	display:inline-block;
	font-size: 54px;
	font-weight: 600;
}

.hero-title-bottom {
	display:inline-block;
	font-size: 96px;
	font-weight: 700;
}

/*------------------------------------*\
	Who We Are (custom)
\*------------------------------------*/
.who-section {
	padding-top: 120px;
	padding-bottom: 120px;
}

.who-image {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #EBEBEB;
}

.who-image > img {
	display:block;
	width:100%;
	height: 520px;
	object-fit: cover;
}

.who-badge {
	position:absolute;
	left: 24px;
	bottom: 24px;
	background: #FFC400;
	color: #1f1f1f;
	border-radius: 12px;
	padding: 22px 24px;
	min-width: 280px;
}

.who-badge-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.1;
	text-transform: none;
}

.who-content {
	padding-top: 10px;
}

.who-kicker {
	display:flex;
	align-items:center;
	gap: 12px;
	margin-bottom: 10px;
}

.who-kicker-line {
	display:inline-block;
	width: 36px;
	height: 2px;
	background: #FFC400;
}

.who-kicker-text {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	letter-spacing: 0.12em;
	font-size: 12px;
	color: #B88400;
}

.who-title {
	font-size: 44px;
	line-height: 1.15;
	margin-top: 0;
	margin-bottom: 14px;
}

.who-description {
	color: #798696;
	line-height: 1.7;
	margin-bottom: 22px;
}

/* Desktop: make left image match full section height */
@media only screen and (min-width: 992px) {
	.who-section > .container > .row {
		display: flex;
		align-items: stretch;
	}

	.who-section > .container > .row > [class*='col-'] {
		float: none;
		display: flex;
	}

	.who-image {
		width: 100%;
	}

	.who-image > img {
		height: 100%;
	}
}

.who-cards {
	margin-top: 10px;
}

.who-card {
	background: #fff;
	border-radius: 14px;
	padding: 22px 22px 20px;
	box-shadow: 0px 6px 18px rgba(0,0,0,0.06);
	border-top: 3px solid rgba(255, 196, 0, 0.7);
	height: 100%;
}

.who-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display:flex;
	align-items:center;
	justify-content:center;
	background: rgba(255, 196, 0, 0.18);
	color: #B88400;
	margin-bottom: 12px;
	font-size: 18px;
}

.who-card-title {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 16px;
}

.who-card-text {
	margin: 0;
	color: #798696;
	font-size: 13px;
	line-height: 1.6;
}

@media only screen and (max-width: 991px) {
	.who-image > img {
		height: 420px;
	}
	.who-content {
		margin-top: 30px;
	}
}

/* -- Breadcrumb -- */
.hero-area-tree li {
	display:inline-block;
	font-family: 'Lato', sans-serif;
	font-weight:600;
	font-size:14px;
	color:rgba(255, 255, 255, 0.8);
}

.hero-area-tree li > a {
	color:rgba(255, 255, 255, 0.8);
}

.hero-area-tree li + li:before {
	content: "/";
	display: inline-block;
	margin: 0px 5px;
	color: rgba(235, 235, 235, 0.25);
}

/*------------------------------------*\
	About & Why Us (Feature)
\*------------------------------------*/
/* -- Feature -- */
.feature {
	position:relative;
}

.feature + .feature  {
	margin-top:40px;
}

.feature .feature-icon {
	position:absolute;
	left:0;
	top:0;
	width:80px;
	height:80px;
	line-height:80px;
	text-align:center;
	border-radius: 50%;
	font-size:30px;
	border:1px solid #EBEBEB;
	color:#FF6700;
}

.feature-content {
	padding-left:100px;
}

/* -- About Img -- */
.about-img {
	margin-top:40px;
}

.about-img > img {
	width:100%;
}

/* -- About Video -- */
.about-video {
	position: relative;
	display: block;
	border-radius: 4px;
	overflow: hidden;
}

.about-video > img {
	width:100%;
}

.about-video .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50% , -50%);
	    -ms-transform: translate(-50% , -50%);
	        transform: translate(-50% , -50%);
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	font-size: 24.027px;
	z-index:10;
	-webkit-animation : 2s play-animation infinite;
	        animation : 2s play-animation infinite;
	-webkit-transition:0.2s color;
	transition:0.2s color;
}

.about-video:hover .play-icon {
	color:#FF6700;
}

@-webkit-keyframes play-animation {
	from {
		-webkit-box-shadow : 0px 0px 0px 0px #FFF;
		        box-shadow : 0px 0px 0px 0px #FFF;
	}
	to {
		-webkit-box-shadow : 0px 0px 0px 10px transparent;
		        box-shadow : 0px 0px 0px 10px transparent;
	}
}

@keyframes play-animation {
	from {
		-webkit-box-shadow : 0px 0px 0px 0px #FFF;
		        box-shadow : 0px 0px 0px 0px #FFF;
	}
	to {
		-webkit-box-shadow : 0px 0px 0px 10px transparent;
		        box-shadow : 0px 0px 0px 10px transparent;
	}
}

.about-video:after {
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	background-color:#FF6700;
	opacity:0.7;
}

/*------------------------------------*\
	Courses
\*------------------------------------*/
.course {
	margin-top:20px;
	margin-bottom:20px;
}

/*------------------------------------*\
	Gallery (custom)
\*------------------------------------*/
.gallery-carousel-shell {
	position: relative;
	margin-top: 18px;
	padding: 0 52px;
}

.gallery-carousel {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.08);
	border: 1px solid rgba(0,0,0,0.06);
	padding: 24px 24px 12px;
}

.gallery-slide-row {
	display: flex;
	gap: 22px;
	justify-content: center;
	align-items: stretch;
}

.gallery-card {
	display: block;
	flex: 1 1 0;
	max-width: 480px;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f5f5;
	box-shadow: 0px 6px 18px rgba(0,0,0,0.06);
	cursor: pointer;
}

.gallery-card img {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.gallery-carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	border: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0px 8px 22px rgba(0,0,0,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	text-decoration: none;
	z-index: 5;
}

.gallery-carousel-control.left { left: 0; }
.gallery-carousel-control.right { right: 0; }

.gallery-carousel-control:hover,
.gallery-carousel-control:focus {
	color: #111;
	opacity: 0.92;
}

.gallery-carousel-dots {
	position: static;
	margin: 14px 0 0;
	width: 100%;
}

.gallery-carousel-dots li {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(0,0,0,0.18);
	border: none;
	margin: 0 6px;
}

.gallery-carousel-dots li.active {
	background: rgba(0,0,0,0.5);
}

.gallery-carousel-dots li.gallery-dot-ellipsis {
	width: 18px;
	height: 7px;
	border-radius: 6px;
	background: rgba(0,0,0,0.14);
	position: relative;
	pointer-events: none;
}

.gallery-carousel-dots li.gallery-dot-ellipsis:after {
	content: "…";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -56%);
	font-size: 14px;
	line-height: 1;
	color: rgba(0,0,0,0.55);
}

@media only screen and (max-width: 991px) {
	.gallery-carousel-shell { padding: 0 46px; }
	.gallery-card { max-width: 440px; }
	.gallery-card img { height: 340px; }
}

@media only screen and (max-width: 767px) {
	.gallery-carousel-shell { padding: 0 38px; }
	.gallery-slide-row { gap: 14px; }
	.gallery-card { max-width: 520px; }
	.gallery-card img { height: 300px; }
}

/*------------------------------------*\
	Contact Us (home)
\*------------------------------------*/
.contact-us-section {
	background: transparent;
}

.contact-cards-grid {
	margin-top: 10px;
	margin-bottom: 16px;
}

.contact-mini-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255,255,255,0.95);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 16px;
	padding: 16px 16px;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.08);
	min-height: 62px;
	margin-top: 18px;
}

.contact-mini-card:hover,
.contact-mini-card:focus {
	opacity: 0.95;
}

.contact-mini-card-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 196, 0, 0.25);
	color: #1f1f1f;
	border: 1px solid rgba(0,0,0,0.06);
	flex: 0 0 auto;
}

.contact-mini-card-label {
	font-family: 'Lato', sans-serif;
	font-weight: 800;
	color: #374050;
	word-break: break-word;
}

.contact-social-wrap {
	margin-top: 16px;
	margin-bottom: 22px;
	display:flex;
	align-items:center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.contact-social-title {
	font-family: 'Lato', sans-serif;
	font-weight: 800;
	color: rgba(31,31,31,0.9);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
}

.contact-social {
	display:flex;
	align-items:center;
	gap: 10px;
}

.contact-social li a {
	display:block;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	border-radius:50%;
	color:#FFF;
	background-color:#EBEBEB;
	transition:0.2s opacity;
}

.contact-social li a.facebook { background-color:#3b5998; }
.contact-social li a.twitter { background-color:#55acee; }
.contact-social li a.instagram { background-color:#e95950; }

.contact-map-embed {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.12);
	border: 1px solid rgba(0,0,0,0.06);
	background: rgba(255,255,255,0.6);
}

.contact-map-embed iframe {
	display:block;
}

@media only screen and (max-width: 767px) {
	.contact-mini-card {
		padding: 14px 14px;
	}
	.contact-mini-card-label {
		font-size: 13px;
	}
}

/* Gallery Lightbox */
.gallery-lightbox {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
}

.gallery-lightbox.is-open {
	display: block;
}

.gallery-lightbox-backdrop {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.75);
}

.gallery-lightbox-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(960px, calc(100vw - 48px));
	height: min(640px, calc(100vh - 48px));
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox-image {
	max-width: 100%;
	max-height: 100%;
	border-radius: 14px;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.35);
	user-select: none;
}

.gallery-lightbox-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 44px;
	text-align: center;
	box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
	cursor: pointer;
}

.gallery-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.95);
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
	cursor: pointer;
}

.gallery-lightbox-nav.prev {
	left: -18px;
}

.gallery-lightbox-nav.next {
	right: -18px;
}

@media only screen and (max-width: 767px) {
	.gallery-lightbox-dialog {
		width: calc(100vw - 24px);
		height: calc(100vh - 24px);
	}

	.gallery-lightbox-nav.prev {
		left: 6px;
	}

	.gallery-lightbox-nav.next {
		right: 6px;
	}

	.gallery-lightbox-close {
		top: 6px;
		right: 6px;
	}
}

/*------------------------------------*\
	Curriculum (custom)
\*------------------------------------*/
.curriculum-grid {
	margin-top: 10px;
}

/* Curriculum slider (home) */
.curriculum-tabs {
	display:flex;
	flex-wrap: wrap;
	gap: 18px;
	border-bottom: 1px solid #EBEBEB;
	padding: 0 0 10px;
	margin: 0 0 22px;
}

.curriculum-tabs li {
	display:inline-block;
}

.curriculum-tabs li a {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 12px;
	color: #798696;
	padding: 6px 0;
	display:inline-block;
	border-bottom: 2px solid transparent;
}

.curriculum-tabs li.active a {
	color: #374050;
	border-bottom-color: #FFC400;
}

.curriculum-carousel {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.06);
	overflow: hidden;
}

.curriculum-slide {
	display:flex;
	gap: 0;
}

.curriculum-slide-media {
	position: relative;
	width: 56%;
	min-height: 340px;
}

.curriculum-slide-media img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	display:block;
}

.curriculum-slide-badge {
	position:absolute;
	left: 16px;
	top: 16px;
	background: #FFC400;
	color: #1f1f1f;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.08em;
	padding: 7px 12px;
	border-radius: 8px;
	text-transform: uppercase;
}

.curriculum-slide-body {
	width: 44%;
	padding: 28px 28px 22px;
	display:flex;
	flex-direction: column;
	justify-content: center;
}

.curriculum-slide-kicker {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #111;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.curriculum-slide-title {
	margin: 0 0 12px;
	font-size: 26px;
	line-height: 1.25;
}

.curriculum-slide-text {
	color: #798696;
	line-height: 1.7;
	margin: 0 0 16px;
}

.curriculum-slide-meta {
	display:flex;
	gap: 10px;
	flex-wrap: wrap;
}

.curriculum-slide-link {
	color: #FFC400;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
}

.curriculum-slide-link:hover,
.curriculum-slide-link:focus {
	color: #FFC400;
	opacity: 0.85;
	text-decoration: none;
}

.curriculum-slide-chip {
	display:inline-block;
	border-radius: 999px;
	padding: 6px 10px;
	background: rgba(255, 196, 0, 0.18);
	color: #B88400;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 12px;
}

.curriculum-control.carousel-control {
	background: transparent;
	opacity: 1;
	color: #374050;
	text-shadow: none;
	width: 56px;
}

.curriculum-control .fa {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.92);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	box-shadow: 0px 6px 18px rgba(0,0,0,0.18);
}

.curriculum-control.left .fa {
	left: 10px;
}

.curriculum-control.right .fa {
	right: 10px;
}

@media only screen and (max-width: 991px) {
	.curriculum-slide {
		flex-direction: column;
	}
	.curriculum-slide-media,
	.curriculum-slide-body {
		width: 100%;
	}
	.curriculum-slide-media img {
		min-height: 240px;
	}
	.curriculum-slide-body {
		padding: 20px 20px 18px;
	}
}

.curriculum-feature {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.06);
}

.curriculum-feature-media {
	position: relative;
}

.curriculum-feature-media img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display:block;
}

.curriculum-feature-tag {
	position: absolute;
	left: 18px;
	top: 18px;
	background: #FFC400;
	color: #1f1f1f;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.08em;
	padding: 7px 12px;
	border-radius: 8px;
	text-transform: uppercase;
}

.curriculum-feature-body {
	padding: 22px 22px 18px;
}

.curriculum-feature-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 22px;
	line-height: 1.25;
}

.curriculum-feature-text {
	margin: 0;
	color: #798696;
	line-height: 1.7;
}

.curriculum-feature-meta {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #EBEBEB;
	display:flex;
	align-items:center;
	justify-content: flex-end;
	gap: 10px;
}

.curriculum-feature-author {
	display:flex;
	align-items:center;
	gap: 10px;
	color: #374050;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 13px;
}

.curriculum-feature-author img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #EBEBEB;
}

.curriculum-feature-date {
	color: #798696;
	font-size: 13px;
	white-space: nowrap;
}

.curriculum-feature-links {
	display:flex;
	align-items:center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-align: right;
}

.curriculum-feature-links-label {
	color: #798696;
	font-size: 13px;
	margin-right: 2px;
}

.curriculum-feature-link {
	color: #FFC400;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
}

.curriculum-feature-link:hover,
.curriculum-feature-link:focus {
	color: #FFC400;
	opacity: 0.85;
}

.curriculum-list {
	display:flex;
	flex-direction: column;
	gap: 8px;
}

.curriculum-item {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 10px 26px rgba(0,0,0,0.06);
	display:flex;
	gap: 8px;
	padding: 8px;
	align-items: center;
}

.curriculum-item-icon {
	width: 72px;
	height: 56px;
	border-radius: 12px;
	background: rgba(255, 196, 0, 0.18);
	color: #B88400;
	display:flex;
	align-items:center;
	justify-content:center;
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1;
}

.curriculum-item-kicker {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 9.5px;
	letter-spacing: 0.08em;
	color: #111;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.curriculum-item-title {
	font-size: 13px;
	font-weight: 700;
	color: #374050;
	line-height: 1.2;
	margin-bottom: 4px;
}

.curriculum-item-title-link {
	color: #FFC400;
	text-decoration: none;
}

.curriculum-item-title-link:hover,
.curriculum-item-title-link:focus {
	color: #FFC400;
	opacity: 0.85;
	text-decoration: none;
}

.curriculum-item-meta {
	color: #798696;
	font-size: 10.5px;
}

@media only screen and (max-width: 991px) {
	.curriculum-feature-media img {
		height: 260px;
	}
}


.course .course-img {
	position: relative;
	display:block;
	margin-bottom:20px;
	border-radius:4px;
	overflow:hidden;
}

.course .course-img > img {
	width:100%;
}

.course-img:after {
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	background-color:#FF6700;
	opacity:0;
	-webkit-transition:0.2s opacity;
	transition:0.2s opacity;
}

/* Remove hover overlay effect on course images */
.course-img:after {
	display:none;
}

.course .course-img .course-link-icon {
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform: translate(-50% , calc(-50% - 15px));
	    -ms-transform: translate(-50% , calc(-50% - 15px));
	        transform: translate(-50% , calc(-50% - 15px));
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	border:2px solid #fff;
	color:#fff;
	border-radius:50%;
	opacity:0;
	z-index:10;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}

/* Remove hover link icon on course images */
.course .course-img .course-link-icon {
	display:none;
}

.course .course-title {
	display:block;
	height:42px;
}

.course .course-details {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid #EBEBEB;
}

.course .course-details .course-price {
	float: right;
}

.course .course-details .course-price.course-free {
	color: green;
}

.course .course-details .course-price.course-premium {
	color: #FF6700;
}

.course .course-details .course-price.course-skelet {
	color: #FFC400;
}

#courses .center-btn {
	text-align:center;
	margin-top:40px;
}

/*------------------------------------*\
	Footer (custom)
\*------------------------------------*/
.site-footer {
	background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), rgba(0,0,0,0) 45%),
		linear-gradient(to bottom, #000 0%, #121212 100%);
	color: rgba(255,255,255,0.80);
	padding: 64px 0 0;
}

.site-footer a {
	color: rgba(255,255,255,0.92);
}

.site-footer a:hover,
.site-footer a:focus {
	opacity: 0.92;
}

.site-footer-grid {
	padding-bottom: 56px;
}

.site-footer-title {
	color: #fff;
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 16px;
}

.site-footer-text {
	margin: 0;
	line-height: 1.7;
	font-size: 13px;
	color: rgba(255,255,255,0.72);
}

.site-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer-links li {
	margin-bottom: 10px;
}

.site-footer-links a {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: rgba(255,255,255,0.84);
	word-break: break-word;
}

.site-footer-links a i {
	color: #FFC400;
	margin-right: 10px;
	width: 16px;
	text-align: center;
}

.site-footer-social-row {
	display:flex;
	align-items:center;
	gap: 14px;
	margin-top: 4px;
}

.site-footer-social-row a {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.10);
	color: #fff;
}

.site-footer-bottom-bar {
	border-top: 1px solid rgba(255,255,255,0.10);
	padding: 22px 0;
}

.site-footer-bottom-inner {
	display:flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	color: rgba(255,255,255,0.72);
}

.site-footer-logo {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@media only screen and (max-width: 991px) {
	.site-footer-grid {
		padding-bottom: 44px;
	}
	.site-footer-social-row {
		margin-bottom: 22px;
	}
}

/*------------------------------------*\
	Contact Page
\*------------------------------------*/
/* -- Contact Information -- */
.contact-details li  {
	margin-bottom:20px;
}

.contact-details li i {
	color: #FFC400;
	margin-right: 15px;
	border: 1px solid #EBEBEB;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}

/*------------------------------------*\
	Responsive
\*------------------------------------*/
@media only screen and (max-width: 991px) {
	.section-header h2 {
		font-size:24px;
	}

	.about-video {
		margin-top:40px;
	}
}

@media only screen and (max-width: 767px) {
	/*-- Hero area --*/
	.hero-area h1 {
		font-size:30px;
	}

	.hero-area.hero-area--large {
		padding-top: 160px;
		padding-bottom: 130px;
	}

	/* -- Breadcrumb -- */
	.hero-area-tree li {
		font-size:12px;
	}

	/*-- Pagination --*/
	.post-pagination .pages {
		display:none;
	}
}

@media only screen and (max-width: 480px) {
	/*-- Courses --*/
	#courses-wrapper [class*='col-xs'] {
		width:100%;
	}
	
}

/*------------------------------------*\
	Preloader
\*------------------------------------*/ 
#preloader {
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:#FFF;
	z-index:9999;
}

#preloader .preloader {
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform: translate(-50% , -50%);
	    -ms-transform: translate(-50% , -50%);
	        transform: translate(-50% , -50%);
}

#preloader .preloader:after {
	content:"";
	display:block;
	width:40px;
	height:40px;
	border: 1px solid #EBEBEB;
    border-top: 1px solid #FF6700;
    border-radius: 50%;
	-webkit-animation: 1s preloader linear infinite;
	        animation: 1s preloader linear infinite;
}

@-webkit-keyframes preloader {
	from { -webkit-transform: rotate(0deg); transform: rotate(0deg);}
	to { -webkit-transform: rotate(360deg); transform: rotate(360deg);}
}

@keyframes preloader {
	from { -webkit-transform: rotate(0deg); transform: rotate(0deg);}
	to { -webkit-transform: rotate(360deg); transform: rotate(360deg);}
}