/*................................reset...........................................*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*................................clearfix...........................................*/
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix {
	display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/*.........GLOBLE......*/

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #5a5a5a;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
}
h2 {
	font-weight: 300;
	font-size: 38px;
	line-height: 52px;
	margin-bottom: 15px;
	text-align: center;
	font-style: italic;
}
span.line {
	width: 200px;
	height: 2px;
	display: block;
	margin: 15px auto;
	background: #c9a052;
}
header,
.header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 9998;
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
header.sticky,
.header.sticky {
	position: fixed;
	width: 100%;
	background: #1a2332;
	box-shadow: 3px 1px 0.99px 0.01px rgba(0, 0, 0, 0.05);
}
header .logo img {
	display: block;
	width: 10%;
}
.logo {
	width: 30%;
	float: left;
	padding: 10px 0;
}
nav {
	width: 70%;
	float: left;
	text-align: right;
}
nav ul li {
	display: inline-block;
	padding: 0px 10px;
}
nav ul li a {
	font-size: 16px;
	font-weight: 400;
	padding: 25px 0;
	display: block;
	color: #fff;
}
nav ul li a:hover {
	color: #c9a052;
	transition: all 0.5s;
}
.banner {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 340px 0 120px;
	text-align: center;
	position: relative;
	z-index: 100;
}


.banner.banner-alt {
	padding: 40px 0 30px;
}
.banner .container {
	position: relative;
	z-index: 1;
	transform: translateY(100px)
}
.banner h1 {
	font-size: 46px;
	line-height: 100%;
	color: #fff;
	text-transform: none;
	font-weight: 300;
	animation: letterSpacingIn 6s ease forwards;
}
@keyframes letterSpacingIn {
	0%   { letter-spacing: 20px; opacity: 0.3; }
	100% { letter-spacing: 4px; opacity: 1; }
}
.banner h1 span {
	font-weight: 700;
}
.banner p {
	color: #fff;
	font-size: 22px;
	line-height: 38px;
	
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}
.banner-alt .container {
	transform: none;
}
.banner.banner-alt::before {
	background: rgba(0,0,0,0.5);
}
.banner-alt h1 {
	animation: fadeIn 1s ease forwards;
	letter-spacing: 4px;
}
@keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
.banner a {
    color: #c9a052;
}
.banner .button-container a {
	display:inline-block;
	
	padding:11px 32px;
	background:transparent;
	border:1px solid rgba(201,160,82,0.5);
	color:#c9a052;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:2.5px;
	transition:all 0.3s ease;
	font-family:inherit;
	text-decoration:none;
	cursor:pointer;
}
.banner .button-container a:hover {
	background:#c9a052;
	color:#1a2332;
	border-color:#c9a052;
}
.video {
	background-color: #f4f4f4;
	position: relative;
	margin-top: -60px;
	padding: 20px 0;
	min-height: 650px;
}
.video h2 {
	text-align: left;
	padding-top: 100px;
}
.video span.line {
	text-align: left;
	margin: 30px 0;
}
.video p {
	padding-bottom: 12px;
}
.laptop {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	width: 38%;
}
.laptop img {
	width: 100%;
	display: block;
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
	cursor: zoom-in;
	transition: transform 0.2s;
}
.laptop img:active {
	transform: scale(1.02);
}
.video a {
	color: #c9a052;
	text-transform: uppercase;
	font-weight: 700;
}
.video a img {
	position: relative;
	top: 8px;
	margin-left: 10px;
}
.collage {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	width: 42%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.collage-item {
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.collage-item img {
	width: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.4s;
	cursor: zoom-in;
}
.collage-item:hover img {
	transform: scale(1.06);
}
.collage-item--featured {
	grid-column: 1 / -1;
}
.collage-item--featured img {
	height: 320px;
}
@media (max-width: 767px) {
	.collage {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		padding: 0 15px 30px;
		margin-top: 20px;
	}
	.collage-item img {
		height: 140px;
	}
	.collage-item--featured img {
		height: 200px;
	}
}
.services {
	padding: 20px 0;
	text-align: center;
}
.services p, div.top {
	padding-bottom: 15px;
}
.banner-alt div.top {
	padding: 0;
}
.services h3 {
	font-weight: 700;
	color: #c9a052;
	padding: 15px 0;
}
.musica {
	text-align: left;
}
.musica h2 {
	text-align: left;
}
.musica span.line {
	margin: 30px 0;
}
.musica .musica-text p {
	padding-bottom: 12px;
}
.musica-video-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.musica-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.musica-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.musica-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #1a2332;
	color: #fff;
	transition: all 0.3s;
}
.musica-social-link:hover {
	background: #c9a052;
	color: #fff;
	transform: translateY(-3px);
}
.musica-social-link .musica-social-icon {
	width: 26px;
	height: 26px;
}
@media (max-width: 767px) {
	.musica-video {
		margin-bottom: 20px;
	}
	.musica-social {
		padding-bottom: 30px;
	}
}
.testimonials {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	padding: 60px 0;
	text-align: center;
}
.testimonials p {
	padding: 35px 0;
	font-size: 25px;
	line-height: 40px;
	color: #fff;
	font-style: italic;
}
.testimonials .row {
	margin: 0;
}
.price {
	padding: 60px 0;
	text-align: center;
	background: #f4f4f4;
}
.black {
	padding: 30px 0 55px;
	background: #5a5a5a;
	color: #fff;
}
.price .price-container .black h2 {
	font-size: 50px;
	font-weight: 700;
	font-style: normal;
	line-height: 38px;
	margin-bottom: 0;
}
.price .price-container .black h2 span {
	font-size: 20px;
	font-weight: 700;
}
.price .price-container .black p {
	line-height: 20px;
	font-weight: 700;
	padding-bottom: 0;
}
.price .price-container {
	background: #fff;
	padding-bottom: 35px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.price .price-container h4 {
	width: 200px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	background: #f4f4f4;
	display: block;
	color: #5a5a5a;
	margin: -30px auto 35px;
	font-weight: 700;
}
.price .price-container p {
	padding-bottom: 10px;
}
.price .price-container a {
	width: 200px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	background: #c9a052;
	display: block;
	color: #fff;
	margin: 20px auto 0px;
	font-weight: 700;
}
.price .price-container a:hover {
	background: #5a5a5a;
	color: #fff;
	transition: all 0.4s;
}
.price .price-container:hover .black {
	background: #c9a052;
}
.features {
	padding: 60px 0;
}
.features h3 {
	font-weight: 400;
    color: #c9a052;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0,0,0,0.85);
	cursor: zoom-out;
	justify-content: center;
	align-items: center;
}
.lightbox.open {
	display: flex;
}
.lightbox img {
	max-width: 85vw;
	max-height: 85vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.features p {
	padding: 5px 0 70px;
}
.joinnow {
	padding: 140px 0;
	background: #1a2332;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
.joinnow-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26,35,50,0.65);
	pointer-events: none;
}
.joinnow .container {
	position: relative;
	z-index: 1;
}
.joinnow .col-lg-12 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.joinnow h2 {
	color: #fff;
	text-transform: uppercase;
	font-style: normal;
	margin: 0 20px 0 0;
}
.joinnow h2 span {
	font-weight: 700;
}
.joinnow a {
	display:inline-block;
	padding:11px 32px;
	background:transparent;
	border:1px solid rgba(201,160,82,0.5);
	color:#c9a052;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:2.5px;
	transition:all 0.3s ease;
	font-family:inherit;
	text-decoration:none;
	cursor:pointer;
}
.joinnow a:hover {
	background:#c9a052;
	color:#1a2332;
	border-color:#c9a052;
}
.updates, .contact {
	padding: 20px 0;
}
#b-about,
#d-cursos,
#f-contacto {
	background: #f4f4f4;
}
#c-musica,
#e-herramientas {
	background: #fff;
}
.updates-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.blog article {
	text-align: left;
	
	
}
.blog article .content {
	padding: 15px;
	text-align: center;
}
.blog article .content h3 {
	font-weight: 400;
	margin: 0 0 6px;
	font-size: inherit;
	color: #888;
	font-size: 18px;
}
.blog article .content h3 a {
	color: inherit;
}
.updates article {
	margin-bottom: 24px;
}
.updates article .content {
	font-weight: 400;
	margin: 0 0 6px;
	text-align: center;
}
.updates article .content h3 {
	margin: 0 0 6px;
	font-size: inherit;
	color: #888;
	font-weight: 400;
	font-size: 18px;
}
.updates article .content h3 a {
	color: inherit;
}
.updates article .content p {
	margin: 0;
	font-size: 1.05rem;
	color: #888;
	line-height: 1.5;
	text-align: center;
}
.blog .blog-container {
    margin: 3rem 0;
}
.blog .blog-container .pagination {
    margin: 1rem 0;
}
.img {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	border: 2px solid #d1d5db;
	box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.img img {
	width: 100%;
	display: block;
	max-width: 100%;
	transition: transform 0.5s;
	border-radius: 5px;
}
.img:hover img {
	transform: scale(1.08);
}
.cta2 {
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	padding: 60px 0;
	text-align: center;
	color: #fff;
	background-size: cover;
}
.cta2 a , .cta3 a, .button {
	display:inline-block;
	padding:11px 32px;
	background:transparent;
	border:1px solid rgba(201,160,82,0.5);
	color:#c9a052;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:2.5px;
	transition:all 0.3s ease;
	font-family:inherit;
	text-decoration:none;
	cursor:pointer;
	margin: 40px auto 0px;
}
button.button {
	display: inline-block;
	border: 1px solid rgba(201,160,82,0.5);
	margin: 0;
}
.cta2 a:hover, .cta3 a:hover, .button:hover {
	background:#c9a052;
	color:#1a2332;
	border-color:#c9a052;
}
.cta3{
	background:#f4f4f4;
	padding:60px 0;
	position:relative;
}
.cta3 h2{text-align:left;}
.cta3 span.line{margin:30px 0;}
.cta3 a{margin:40px 0 0; text-align:center; display:inline-block;}
.cta3 a:hover{background:#c9a052; color:#1a2332; border-color:#c9a052;}
.safariimg{position:absolute;     top: 7%;
    left: 3%;
    width: 43%;}
.safariimg img{max-width:100%; display:block;}
@media only screen and (min-width: 1200px) {
	.safariimg img {float: right; height: 428px;}
}
footer{
	padding:20px 0;
	color:#555;
	font-weight:300;
	background:#f4f4f4;
	font-size:13px;
	position:relative;
}
footer::before{
	content:'';
	position:absolute;
	top:0;left:0;right:0;
	height:1px;
	background:linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}
footer p{margin:0;line-height:1.4;}
footer p a{color:#555;}
footer p a:hover{color:#c9a052;}
.footer-content{text-align:center;}
.footer-copy{margin:0;line-height:1.4;font-size:13px;color:#555;}
.footer-social{display:inline-flex;gap:10px;align-items:center;margin:8px 0;}
.footer-social-icon{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	color:#888;
	transition:color 0.3s;
}
.footer-social-icon svg{width:36px;height:36px;}
.footer-social-icon:hover{color:#c9a052;}




.banner::before {
	content:'';
	position:absolute;
	inset:0;
	background:linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
	z-index:1;
	pointer-events:none;
}
.banner::after {
	content:'';
	position:absolute;
	top:4px;
	left:4px;
	right:4px;
	bottom:4px;
	border:1px solid #f4f4f4;
	border-radius:12px;
	z-index:2;
	pointer-events:none;
}

.course-btn {
	display:inline-block;
	padding:11px 32px;
	background:transparent;
	border:1px solid rgba(201,160,82,0.5);
	color:#c9a052;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:2.5px;
	transition:all 0.3s ease;
	font-family:inherit;
	text-decoration:none;
	cursor:pointer;
}
.course-btn:hover {
	background:#c9a052;
	color:#1a2332;
	border-color:#c9a052;
}

.course-highlight {
	border-right:1px solid #c9a052;
	padding-right:20px;
	margin:24px 0;
	line-height:1.7;
	font-size:15px;
	color:#555;
}
.course-highlight p {
	margin:0;
}

/* New */

.os-animation,
.staggered-animation {
	opacity: 0;
}
.os-animation.animated,
.staggered-animation.animated {
	opacity: 1;
}
/*LOADER EFFECT*/
/*Paste this css to your style sheet file or under head tag*/
/* This only works with JavaScript,
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #1a2332;
}

.box {
	position: absolute;
	width: 78px;
	height: 78px;
	left: 50%;
	top:50%;
	margin-left: -39px;
	margin-top: -39px;
}

.loading:before {
	content: '';
	position: absolute;
	width: 35px;
	height: 35px;
	top: 50%;
	margin-top: -18px;
	left: 50%;
	margin-left: -18px;
	border-width: 2px 1px;
	border-style: solid;
	border-color: rgb(255,255,255) rgba(247,247,247,0.3);
	border-radius: 50%;
	box-sizing: border-box;
	animation: spin 3.45s infinite;
}
.loading:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	top: 50%;
	margin-top: -3px;
	left: 50%;
	margin-left: -3px;
	background-color: rgb(255,255,255);
	border-radius: 50%;
	box-sizing: border-box;
	animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	50% { transform: rotate(360deg); }
	100% { transform: rotate(1080deg); }
}

@keyframes pulse {
	0% { background-color: rgba(232,232,232,0.2); }
	13% { background-color: rgba(240,240,240,0.2); }
	15% { background-color: rgba(255,255,255,0.9); }
	28% { background-color: rgba(222,222,222,0.9); }
	30% { background-color: rgba(255,255,255,0.2); }
	43% { background-color: rgba(240,240,240,0.2); }
	45% { background-color: rgba(245,245,245,0.9); }
	70% { background-color: rgba(250,250,250,0.9); }
	74% { background-color: rgba(255,255,255,0.2); }
	100% { background-color: rgba(242,242,242,0.9); }
}

@keyframes borderPulse {
	0% { box-shadow: 0 0 0 0 rgb(255,245,255), 0 0 0 1px rgba(240,240,240,0.8); }
	40% { box-shadow: 0 0 0 1px rgb(250,237,250), 0 0 0 2px rgba(221, 187, 0, 0.8); }
	80% { box-shadow: 0 0 0 3px #FFF, 0 0 1px 3px rgba(221, 187, 0, 0.8); }
}
.content {
	padding: 20px 20px;
	text-align: left;
}
.related-posts .blog {
	padding: 0px;
}
.contact .form-group {
	margin-bottom: 1.5em;
}
.map-container {
	height: 400px;
	width: 100%;
}
.map-container > div {
	width: 100%;
	height: 100%;
}
.search-wrapper {
	margin-top: 3rem;
}
.search-wrapper .button {
	width: auto;
	height: auto;
	line-height: 42px;
    padding: 0 20px;
}
.search-wrapper .search-input.full-width {
    width: 100%;
}
/* Contenedor del submenú */
.nav-herramientas-contenedor {
    background-color: #1a2332;
    padding: 1rem 0;
    border-bottom: 2px solid #c9a052;
}

/* Tarjeta individual como botón/enlace */
.card-link-tool {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.card-link-tool:hover {
    background: rgba(255,255,255,0.14);
    border-color: #c9a052;
}

/* Título de la herramienta */
.card-tool-title {
    font-weight: 600;
    color: #888;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

/* Resaltar texto si la herramienta es la activa */
.active-card-tool {
    background: rgba(255,255,255,0.14);
    border-color: #c9a052;
}
.active-card-tool .card-tool-title {
    color: #c9a052;
    font-weight: 700;
}

.card-tool-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
/* Estilo base del icono SVG dentro de la tarjeta */
.card-tool-svg {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    transition: color 0.2s ease-in-out;
}

.card-link-tool:hover .card-tool-svg {
    color: #c9a052;
}

.active-card-tool .card-tool-svg {
    color: #c9a052;
}

/* Privacy page heading sizes */
.content h2 {
  font-size: 1.8rem;
  text-align: left;
}
.content h3 {
  font-size: 1.35rem;
  text-align: left;
}

/* Banner logo */
.banner-logo {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 2px;
}
.banner-logo img {
  height: 120px;
  width: auto;
  display: inline-block;
}

/* snip0015 hover cards */
figure.snip0015 {
  font-family: 'Lato', Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
  width: 100%;
  background: #1a2332;
  text-align: center;
  border-radius: 12px;
}
figure.snip0015 * {
  box-sizing: border-box;
}
figure.snip0015 img {
  opacity: 1;
  width: 100%;
  display: block;
  transition: opacity 0.35s;
  border-radius: 12px;
}
figure.snip0015 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
figure.snip0015 figcaption::before {
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: 50%;
  left: 30px;
  border-top: 2px solid rgba(255,255,255,0.8);
  border-bottom: 2px solid rgba(255,255,255,0.8);
  content: '';
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.6s;
}
figure.snip0015 h2 {
  margin: 0 0 5px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  transform: translate3d(0%, 50%, 0);
  transition-delay: 0.3s;
}
figure.snip0015 h2 span {
  font-weight: 800;
  display: block;
  font-size: 1.1rem;
  color: #c9a052;
  margin-top: 10px;
}
figure.snip0015 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: #fff;
}
figure.snip0015:hover img {
  opacity: 0.2;
}
figure.snip0015:hover figcaption h2 {
  opacity: 1;
  transform: translate3d(0%, 0%, 0);
  transition-delay: 0.3s;
}
figure.snip0015:hover figcaption::before {
  background: rgba(201,160,82,0);
  top: 20px;
  bottom: 20px;
  opacity: 1;
  transition-delay: 0s;
}

/* Cookie Consent transparency */
.cc-window {
  background: rgba(26,35,50,0.9) !important;
}

/* ── Glossy Light Leak Intro ─────────────────── */
.banner-glossy {
  animation: cinemaZoom 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  overflow: hidden;
}

.light-flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.02) 15%,
    rgba(255,255,255,0.6) 30%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.9) 45%,
    rgba(255,255,255,0.6) 55%,
    rgba(255,255,255,0.02) 70%,
    transparent 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  animation: glossySweep 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.banner-glossy .container {
  z-index: 4;
}

@keyframes cinemaZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glossySweep {
  0% {
    background-position: 100% 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    background-position: -30% 0;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .light-flash {
    background: linear-gradient(
      105deg,
      transparent 0%,
      rgba(255,255,255,0.02) 10%,
      rgba(255,255,255,0.5) 25%,
      rgba(255,255,255,0.75) 40%,
      rgba(255,255,255,0.5) 55%,
      rgba(255,255,255,0.02) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
  }
}
