/**
* Template Name: Amoeba
* Template URL: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
	/* Color principal del seminario */
	--primary-color: #70b9b0;
	--primary-hover-color: #8bc6bf;
	--primary-dark-color: #2d6760;
	--primary-darker-color: #1d443f;

	/* Color secundario del seminario */
	--secondary-color: #073839;
	--secondary-hover-color: #25564f;
	--secondary-light-color: #3c8b81;

	/* Fondos */
	--background-color: #f2f9f8;

	/* Texto */
	--text-color: #777777;
	--title-color: #555555;

	/* Blancos */
	--white-color: #ffffff;

	--video-overlay-color: rgba(13, 20, 41, 0.8);
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text-color);
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

a:hover {
	color: var(--primary-hover-color);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
	font-family: 'Lato', sans-serif;
}

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

.section-bg {
	background-color: var(--background-color);
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 0;
	color: var(--title-color);
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--primary-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: var(--white-color);
	line-height: 0;
}

.back-to-top:hover {
	background: var(--primary-hover-color);
	color: var(--white-color);
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	z-index: 997;
	transition: all 0.5s;
	background: var(--primary-dark-color);
}

#header.header-scrolled {
	background: var(--primary-darker-color);
	height: 60px;
}

#header .logo h1 {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 0;
	font-weight: 700;
	letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: var(--white-color);
	text-decoration: none;
	line-height: 0;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: var(--white-color);
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: var(--white-color);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: var(--white-color);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	text-transform: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--secondary-color);
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: var(--secondary-hover-color);
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: var(--white-color);
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: var(--primary-color);
	transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: var(--white-color);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: var(--primary-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: var(--primary-hover-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: var(--white-color);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
	color: var(--primary-hover-color);
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

#hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--background-color);
}

#hero .hero-banner {
	display: block;
	width: 100%;
	height: auto;
}

#hero .hero-overlay {
	position: absolute;
	inset: 0;
	/* background: var(--hero-overlay-color); */
	pointer-events: none;
}

#hero .hero-container {
	position: absolute;
	inset: 0;

	display: flex;
	justify-content: center;
	align-items: center;

	padding-top: 80px;

	text-align: center;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about h3 {
	font-weight: 400;
	font-size: 26px;
}

.about ul {
	list-style: none;
	padding: 0;
}

.about ul li {
	padding-bottom: 10px;
}

.about ul i {
	font-size: 22px;
	padding-right: 4px;
	color: var(--primary-color);
	line-height: 0;
}

.about p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .contact-about h3 {
	font-size: 36px;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--primary-color);
}

.contact .contact-about p {
	font-size: 14px;
	line-height: 24px;
	font-family: 'Lato', sans-serif;
	color: var(--text-color);
}

.contact .social-links {
	padding-bottom: 20px;
}

.contact .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	background: var(--white-color);
	color: var(--secondary-color);
	line-height: 0;
	margin-right: 4px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	border: 1px solid var(--secondary-color);
}

.contact .social-links a:hover {
	background: var(--secondary-hover-color);
	color: var(--white-color);
}

.contact .info {
	color: var(--text-color);
}

.contact .info i {
	font-size: 28px;
	color: var(--secondary-color);
	float: left;
	line-height: 1;
}

.contact .info p {
	padding: 0 0 10px 42px;
	line-height: 28px;
	font-size: 14px;
}

#video {
	/* background: url("../img/home/collage.jpg"); */
	background-size: cover;
	overflow: hidden;
	position: relative;
	color: var(--white-color);
	padding: 60px 0 60px 0;
}

@media (min-width: 1024px) {
	#video {
		background-attachment: fixed;
	}
}

#video:before {
	content: '';
	background: var(--video-overlay-color);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#video h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--white-color);
}

#video h3 {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--white-color);
}

#video p {
	font-size: 14px;
	margin-bottom: 20px;
	color: var(--white-color);
}

.outer_circle {
	stroke-width: 3;
	stroke-dasharray: 410;
	stroke-dashoffset: 0;
	stroke-linecap: square;
	transition: all 0.4s ease-out;
}

.navbar .cta-btn,
.navbar .cta-btn:focus {
	color: var(--secondary-color);
	background: var(--background-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 50px;
}

.navbar .cta-btn:hover,
.navbar .cta-btn:focus:hover {
	color: var(--secondary-color);
}

.cta-btn,
.cta-btn:focus {
	color: var(--secondary-color);
	background: var(--background-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 50px;
}

.cta-btn:hover,
.cta-btn:focus:hover {
	color: var(--secondary-color);
}

.seminarios-anteriores {
	background: var(--background-color);
}

.seminario-card {
	background: var(--white-color);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.seminario-image {
	height: 220px;
	overflow: hidden;
}

.seminario-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.seminario-card:hover .seminario-image img {
	transform: scale(1.08);
}

.seminario-content {
	padding: 25px;
	text-align: center;
}

.seminario-content h4 {
	color: var(--secondary-color);
	font-weight: 700;
	margin-bottom: 20px;
}

.btn-seminario {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white-color) !important;
	padding: 10px 24px;
	border-radius: 30px;
	transition: all 0.3s ease;
	font-weight: 600;
}

.btn-seminario:hover {
	background: var(--primary-color);
	color: var(--white-color) !important;
}
