/*
Template Name: HTML Education Template
Author: yaminncco

Colors:
	Body 		: #798696
	Headers 	: #374050
	Primary 	: #cb3235
	Grey 		: #EBEBEB

Fonts: Lato & Montserrat

Table OF Contents
------------------------------------
1 > General
2 > Logo
3 > Navigation
4 > Hero Area
5 > About & Why Us (Feature)
6 > Courses
7 > Footer
8 > Contact Page
9 > Blog Page
10 > Blog Page Sidebar
11 > Single Post Page
12 > Responsive
13 > Preloader
------------------------------------*/

/*------------------------------------*\
	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: #cb3235;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #EBEBEB;
}


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

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

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

.section-header h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-header h2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #cb3235;
	border-radius: 2px;
}

.section-header.text-center h2:after {
	left: 50%;
	transform: translateX(-50%);
}

/* --- 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;
}

/* --- Buttons --- */
.main-button {
	position: relative;
	display: inline-block;
	padding: 12px 35px;
	background: #cb3235;
	border: 2px solid transparent;
	border-radius: 50px;
	color: #FFF;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(203, 50, 53, 0.3);
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}

.main-button:hover,
.main-button:focus {
	background: #fff;
	border: 2px solid #cb3235;
	color: #cb3235;
	box-shadow: 0 6px 20px rgba(203, 50, 53, 0.4);
	transform: translateY(-2px);
}

.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;
}

/* --  Input  -- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="tel"],
textarea {
	height: 45px;
	width: 100%;
	border: 2px solid #EBEBEB;
	border-radius: 8px;
	background: #fff;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	font-size: 15px;
}

textarea {
	padding: 15px 20px;
	min-height: 120px;
}

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: #cb3235;
	box-shadow: 0 0 0 3px rgba(203, 50, 53, 0.1);
	outline: none;
}

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

.navbar-brand .logo {
	margin-top: 10px;
	display: inline-block;
}

.navbar-brand .logo>img {
	max-height: 30px;
}

@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;
}

.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: #cb3235;
	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;
}

/* -- Mobile Nav -- */
@media only screen and (max-width: 767px) {
	#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 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: inline-block;
		margin-left: 40px;
	}
}

/* -- Mobile Toggle Btn -- */
.navbar-toggle {
	position: fixed;
	right: 0;
	padding: 0;
	height: 40px;
	width: 40px;
	margin-top: 5px;
	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;
}

.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: 100px;
	padding-bottom: 100px;
}

#home.hero-area {
	height: calc(100vh - 80px);
	padding-top: 0px;
	padding-bottom: 0px;
	display: flex;
	align-items: center;
}

#home.hero-area .bg-image.overlay:after {
	opacity: 0.7;
	background-image: linear-gradient(to bottom, #374050 0%, #798696 100%);
}

.home-wrapper {
	position: relative;
	width: 100%;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.home-wrapper h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.home-wrapper p.lead {
	font-size: 20px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* -- 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;
	padding: 25px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature:hover {
	box-shadow: 0 8px 30px rgba(203, 50, 53, 0.15);
	transform: translateY(-5px);
}

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

.feature .feature-icon {
	position: absolute;
	left: 25px;
	top: 25px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 50%;
	font-size: 32px;
	background: #cb3235;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(203, 50, 53, 0.3);
	border: none;
}

.feature .feature-icon.fa-laptop,
.feature .feature-icon.fa-graduation-cap,
.feature .feature-icon.fa-book,
.feature .feature-icon.fa-check-circle,
.feature .feature-icon.fa-heart {
	line-height: normal;
}

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

/* -- 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: #cb3235;
}

@-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: #cb3235;
	opacity: 0.7;
}

/*------------------------------------*\
	Courses
\*------------------------------------*/
.course {
	margin-top: 20px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.course:hover {
	box-shadow: 0 8px 35px rgba(203, 50, 53, 0.2);
	transform: translateY(-8px);
}

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

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

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

.course .course-img:hover:after {
	opacity: 0.7;
}

.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;
}

.course .course-img:hover .course-link-icon {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
}

.course .course-title {
	display: block;
	height: auto;
	text-align: center;
	padding: 20px 15px 10px;
	font-size: 18px;
	font-weight: 600;
	color: #374050;
}

.course .course-details {
	margin-top: 0;
	padding: 15px 20px 20px;
	border-top: 1px solid #EBEBEB;
	background: #f9f9f9;
}

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

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

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

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

/*------------------------------------*\
	Footer
\*------------------------------------*/

#bottom-footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #EBEBEB;
}

/* -- Footer Logo -- */
.footer-logo .logo {
	margin-top: 20px;
	display: inline-block;
}

.footer-logo .logo>img {
	max-height: 30px;
}

/* -- Footer Nav -- */
.footer-nav {
	text-align: right;
	padding: 20px 0px;
}

.footer-nav li {
	display: inline-block;
	margin-left: 15px
}

.footer-nav li a {
	display: block;
	color: white;
	text-transform: uppercase;
	-webkit-transition: 0.2s color;
	transition: 0.2s color;
}

.footer-nav li a:hover,
.footer-nav li a:focus {
	color: #cb3235;
}

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

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

/* -- Footer copyright -- */
.footer-copyright {
	line-height: 40px;
}

/* -- Footer Social -- */
.footer-social {
	text-align: right;
}

.footer-social li {
	display: inline-block;
	margin-left: 10px;
}

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

.footer-social li a.facebook {
	background-color: #3b5998;
}

.footer-social li a.twitter {
	background-color: #55acee;
}

.footer-social li a.google-plus {
	background-color: #dd4b39;
}

.footer-social li a.instagram {
	background-color: #e95950;
}

.footer-social li a.youtube {
	background-color: #ff0000;
}

.footer-social li a.linkedin {
	background-color: #007bb5;
}

/*------------------------------------*\
	Contact Page
\*------------------------------------*/
/* -- Contact Form -- */
.contact-form:after {
	content: "";
	display: block;
	clear: both;
}

.contact-form .input {
	margin-bottom: 20px;
}

.contact-form textarea.input {
	height: 200px;
}

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

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

/* -- Contact Map -- */
#contact-map {
	height: 260px;
	border-radius: 4px;
}

/* Responsive iframe para Google Maps */
.col-md-6 iframe {
	width: 100%;
	max-width: 100%;
	height: 450px;
	border-radius: 4px;
}

@media only screen and (max-width: 991px) {
	.col-md-6 iframe {
		height: 400px;
	}
}

@media only screen and (max-width: 767px) {
	.col-md-6 iframe {
		height: 350px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.col-md-6 iframe {
		height: 300px;
	}
}

/*------------------------------------*\
	Blog Page
\*------------------------------------*/
/* -- Single Blog -- */
.single-blog {
	margin-bottom: 40px;
}

.single-blog .blog-img>a {
	position: relative;
	display: block;
	border-radius: 4px;
	overflow: hidden;
}

.single-blog .blog-img img {
	width: 100%;
}

.single-blog .blog-img>a:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #cb3235;
	opacity: 0;
	-webkit-transition: 0.2s opacity;
	transition: 0.2s opacity;
}

.single-blog .blog-img>a:hover:after {
	opacity: 0.7;
}

.single-blog .blog-meta {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid #EBEBEB;
}

.single-blog .blog-meta .blog-meta-author>a {
	color: #cb3235;
}

.single-blog .blog-meta .blog-meta-comments {
	margin-left: 10px;
}

.single-blog .blog-meta .blog-meta-comments>a {
	color: #798696;
}

/* -- Pagination -- */
.post-pagination {
	margin-top: 40px;
	text-align: center;
}

.post-pagination .pages {
	display: inline-block;
}

.post-pagination .pages li {
	display: inline-block;
}

.post-pagination .pages li+li {
	margin-left: 10px;
}

.post-pagination .pages li {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background-color: #EBEBEB;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.post-pagination .pages li a {
	display: block;
	-webkit-transition: 0.2s color;
	transition: 0.2s color;
}

.post-pagination .pages li:hover,
.post-pagination .pages li.active {
	background-color: #cb3235;
	color: #FFF;
}

.post-pagination .pages li:hover a {
	color: #FFF;
}

.pagination-back,
.pagination-next {
	display: block;
	text-align: center;
	border-radius: 40px;
	background-color: #EBEBEB;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	height: 40px;
	padding: 0px 30px;
	line-height: 40px;
}

.pagination-next:hover,
.pagination-back:hover {
	color: #FFF;
	background-color: #cb3235;
}

.pagination-next:after {
	content: "\f178";
	font-family: FontAwesome;
	margin-left: 15px;
}

.pagination-back:before {
	content: "\f177";
	font-family: FontAwesome;
	margin-right: 15px;
}

/*------------------------------------*\
	Blog Page Sidebar
\*------------------------------------*/
.widget+.widget {
	margin-top: 40px;
}

/*-- Search --*/
.widget.search-widget {
	position: relative
}

.widget.search-widget .input {
	padding-right: 60px;
}

.widget.search-widget button {
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	width: 40px;
	background-color: transparent;
	border: none;
}

.widget.search-widget .input:focus+button {
	color: #cb3235;
}

/*-- Category --*/
.category-widget .category {
	display: block;
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
}

.category-widget .category+.category {
	border-top: 1px solid #EBEBEB;
}

.category-widget .category:before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #cb3235;
	margin-right: 10px;
}

.category-widget .category span {
	font-size: 14px;
	margin-left: 10px;
	color: #798696;
}

/*-- Sidebar Posts --*/
.single-post:after {
	content: "";
	display: block;
	clear: both;
}

.single-post+.single-post {
	margin-top: 20px;
}

.single-post .single-post-img {
	position: relative;
	width: 80px;
	display: block;
	float: left;
	margin-right: 10px;
	margin-top: 3px;
	border-radius: 4px;
	overflow: hidden;
}

.single-post .single-post-img img {
	width: 100%;
}

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

.single-post-img:hover:after {
	opacity: 0.7;
}

/*-- Tags --*/
.tags-widget .tag {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	margin-right: 0px;
	margin-top: 5px;
	padding: 5px 15px;
	border-radius: 40px;
	border: 1px solid #EBEBEB;
	color: #798696;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.tags-widget .tag:hover {
	background-color: #FF6700;
	border-color: #FF6700;
	color: #FFF;
}

/*------------------------------------*\
	Single Post Page
\*------------------------------------*/
/* --- Blog Post Meta --- */
.blog-post-meta {
	margin-top: 40px;
}

.blog-post-meta li {
	display: inline-block;
}

.blog-post-meta li+li {
	margin-left: 15px;
}

.blog-post-meta li,
.blog-post-meta li>a {
	color: rgba(255, 255, 255, 0.8);
}

.blog-post-meta .blog-meta-author>a {
	color: #FF6700;
}

/* --- Blog Share --- */
.blog-share {
	border-top: 1px solid #EBEBEB;
	padding-top: 10px;
	margin-top: 40px;
}

.blog-share>h4 {
	display: inline-block;
	margin: 0;
}

.blog-share a {
	display: inline-block;
	margin-left: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	background-color: #EBEBEB;
	border-radius: 50%;
	-webkit-transition: 0.2s opacity;
	transition: 0.2s opacity;
}

.blog-share a.facebook {
	background-color: #3b5998;
}

.blog-share a.twitter {
	background-color: #55acee;
}

.blog-share a.google-plus {
	background-color: #dd4b39;
}

/* --- Blog Comments --- */
.blog-comments {
	margin-top: 40px;
}

.blog-comments .media {
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-comments .media .media {
	margin-left: 20px;
}

.blog-comments .media .media:nth-last-child(1) {
	margin-bottom: 0px;
}

.blog-comments .media .media-body {
	padding: 20px;
	background-color: #EBEBEB;
	border-radius: 0px 4px 4px;
}

.blog-comments .media .media-left:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	border-style: solid;
	border-width: 0px 15px 15px;
	border-color: transparent #EBEBEB transparent transparent;
}

.blog-comments .media-left {
	position: relative;
	padding-right: 20px;
}

.blog-comments .media-left img {
	width: 80px;
	height: 80px;
	background-color: #EBEBEB;
	border-radius: 50%;
}

.blog-comments .media .date-reply {
	font-size: 12px;
	text-transform: uppercase;
	color: #374050;
}

.blog-comments .media .date-reply .reply {
	margin-left: 15px;
}

/* --- Blog Reply Form --- */
.blog-reply-form {
	margin-top: 40px;
}

.blog-reply-form .input {
	margin-bottom: 20px;
}

.blog-reply-form .input.name-input,
.blog-reply-form .input.email-input {
	width: calc(50% - 10px);
	float: left;
}

.blog-reply-form .input.email-input {
	margin-left: 20px;
}

.blog-reply-form textarea {
	height: 90px;
}

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

	/*-- Why us --*/
	#why-us .feature {
		margin-top: 40px;
	}

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

	/*-- Call to action --*/
	#cta {
		text-align: center;
	}

	/*-- Footer --*/
	.footer-logo {
		text-align: center;
	}

	.footer-nav {
		text-align: center;
	}

	.footer-nav li {
		margin-top: 10px;
	}

	.footer-social {
		text-align: center;
	}

	.footer-social li {
		margin-top: 10px;
	}

	.footer-copyright {
		text-align: center;
		line-height: inherit;
		margin-top: 20px;
	}

	/*-- Contact page --*/
	.contact-form {
		margin-bottom: 40px;
	}

	.contact-form button {
		float: none !important;
	}

	/*-- Blog page --*/
	#main {
		margin-bottom: 80px;
	}
}

@media only screen and (max-width: 767px) {

	/*-- Hero area --*/
	.hero-area h1 {
		font-size: 30px;
	}

	/* -- 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%;
	}

	/*-- Blog Comments --*/
	.blog-comments .media .media {
		margin-left: 0px;
	}

	/*-- Blog Reply Form --*/
	.blog-reply-form .input.name-input,
	.blog-reply-form .input.email-input {
		width: 100%;
		float: none;
	}

	.blog-reply-form .input.email-input {
		margin-left: 0px;
	}
}

/*------------------------------------*\
	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);
	}
}

.mensaje {
	color: white
}

.logosa {
	padding: 10px 10px 20px 10px;
	text-align: center;
}

.footer_content {
	padding: 40px 0 20px;
}

.container2 {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	background: linear-gradient(135deg, #374050 0%, #2d3340 100%);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
	.container {
		width: 750px
	}
}

@media (min-width:992px) {
	.container {
		width: 970px
	}
}

@media (min-width:1200px) {
	.container {
		width: 1170px
	}
}

.footer_column_content {
	text-align: justify;
	color: #e0e0e0;
	line-height: 1.6;
}

.footer_column_title {
	text-align: left;
	color: #ffffff;
	padding-top: 15px;
	padding-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 2px solid rgba(203, 50, 53, 0.5);
	margin-bottom: 20px;
}

.footer_contact_item {
	text-align: left;
	color: #e0e0e0;
	padding: 12px 0;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
}

.footer_col {
	padding: 20px 30px;
}

.footer_about_text {
	color: #e0e0e0 !important;
	line-height: 1.8 !important;
	margin-top: 20px !important;
	font-size: 14px;
}

.footer_contact_icon {
	display: inline-flex;
	width: 35px;
	height: 35px;
	min-width: 35px;
	vertical-align: middle;
	margin-right: 15px;
	align-items: center;
	justify-content: center;
	background: rgba(203, 50, 53, 0.15);
	border-radius: 50%;
	color: #cb3235;
	font-size: 16px;
}

.footer_contact_icon img {
	width: 100%;
}

.register {
	color: #ffffff;
	margin-right: 15px;
	border: 1px solid #EBEBEB;
	line-height: 40px;
	text-align: justify;
}

.dropdown-menu {
	background-color: #cb3235;
}

.whatsapp-flotante {
	display: block;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 998;
	transition: all 0.3s ease;
}

.whatsapp-flotante:hover {
	transform: scale(1.1);
}

.whatsapp-flotante img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive WhatsApp Button */
@media only screen and (max-width: 767px) {
	.whatsapp-flotante {
		bottom: 15px;
		right: 10px;
		z-index: 998;
	}

	.whatsapp-flotante:hover {
		transform: none;
	}

	.whatsapp-flotante img {
		width: 48px;
		height: 48px;
	}
}

@media only screen and (max-width: 480px) {
	.whatsapp-flotante {
		bottom: 12px;
		right: 10px;
		z-index: 998;
	}

	.whatsapp-flotante img {
		width: 45px;
		height: 45px;
	}
}

/* Payment Methods Section Styles */
.payment-methods {
	margin-top: 40px;
	margin-bottom: 40px;
}

.payment-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	padding: 30px 20px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.3s ease;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.payment-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 30px rgba(255, 103, 0, 0.2);
}

.payment-icon-wrapper {
	background: linear-gradient(135deg, #FF6700 0%, #ff8533 100%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-icon {
	font-size: 32px;
	color: #fff;
}

.payment-title {
	color: #374050;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	margin-top: 10px;
}

.payment-image {
	margin: 20px 0;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-image img {
	max-width: 100%;
	max-height: 150px;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
}

.payment-info {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #EBEBEB;
}

.payment-info p {
	margin: 8px 0;
	color: #798696;
	font-size: 14px;
}

.payment-info strong {
	color: #374050;
	font-weight: 600;
	font-size: 15px;
}

.payment-number {
	color: #FF6700 !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	margin-top: 5px !important;
}

/* Responsive styles for payment methods */
@media only screen and (max-width: 991px) {
	.payment-card {
		min-height: 420px;
	}
}

@media only screen and (max-width: 767px) {
	.payment-card {
		min-height: auto;
		padding: 25px 15px;
		margin-bottom: 20px;
	}

	.payment-image {
		min-height: 120px;
	}

	.payment-image img {
		max-height: 120px;
	}

	.payment-title {
		font-size: 20px;
	}

	.payment-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.payment-icon {
		font-size: 28px;
	}
}

@media only screen and (max-width: 480px) {
	.payment-card {
		padding: 20px 15px;
	}

	.payment-image {
		min-height: 100px;
	}

	.payment-image img {
		max-height: 100px;
	}

	.payment-number {
		font-size: 16px !important;
	}
}

/* Modern Design Enhancements */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Modern Card Shadows */
.course,
.payment-card,
.feature {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Call to Action Enhancements */
#cta {
	background-attachment: fixed;
}

#cta h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

#cta p.lead {
	font-size: 18px;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Contact Form Enhancement */
.contact-form {
	background: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.contact-form h4 {
	color: #374050;
	margin-bottom: 25px;
	font-size: 24px;
}

/* Footer Modern Style */
.container2 {
	background: linear-gradient(135deg, #374050 0%, #2d3340 100%);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer_col {
	padding: 20px 0;
}

/* About Image Enhancement */
.about-img img {
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.about-img img:hover {
	transform: scale(1.02);
}

/* Navigation Enhancement */
#header {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

#header:not(.transparent-nav) {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
}

/* Responsive Typography */
@media only screen and (max-width: 991px) {
	.home-wrapper h1 {
		font-size: 36px;
	}

	.home-wrapper p.lead {
		font-size: 18px;
	}

	#cta h2 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 767px) {
	.home-wrapper h1 {
		font-size: 28px;
	}

	.home-wrapper p.lead {
		font-size: 16px;
	}

	#cta h2 {
		font-size: 24px;
	}

	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

/* Loading Animation for Images */
img {
	transition: opacity 0.3s ease;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #FF6700 0%, #ff8533 100%);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #FF6700;
}

/* Additional Modern Styles */
.section#courses {
	background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.section#payment {
	background: #fff;
}

.section#about {
	background: #fafafa;
}

/* Improve lead paragraphs */
p.lead {
	font-size: 18px;
	line-height: 1.7;
	color: #798696;
	margin-bottom: 20px;
}

/* Feature content improvements */
.feature-content ul {
	list-style: none;
	padding-left: 0;
}

.feature-content ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 0;
}

/* Better spacing for sections */
.section-header p {
	max-width: 800px;
	margin: 0 auto;
	color: #798696;
}

/* Course hover effect enhancement */
.course-link-icon {
	transition: all 0.3s ease;
}

.course:hover .course-link-icon {
	transform: scale(1.2);
}

/* Payment section background */
#payment .container {
	position: relative;
	z-index: 1;
}

/* Modern button hover effect */
.main-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(255, 103, 0, 0.3);
}

/* Header scroll effect */
#header.fixed-header {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Improve footer aesthetics */
#footer {
	background: linear-gradient(135deg, #374050 0%, #2d3340 100%);
	padding: 40px 0 20px;
}

#bottom-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo enhancement */
.navbar-brand .logo img {
	transition: transform 0.3s ease;
}

.navbar-brand .logo:hover img {
	transform: scale(1.05);
}