/* CSS Style */

* {
	box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
	position: relative;
	margin: auto;
	height: 600px;
}

.slideshow-container .home-slide-section {
	position: relative;
	height: 100%;
}

.slideshow-container .home-slide-section.hero-section {
	height: 100%;
	margin: auto;
}

.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../../images/stakecheia-hero-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;

	position: absolute;
	max-width: 1200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container::before {
	content: "";
	position: absolute;
	z-index: 10;
	background: linear-gradient(90deg,
			rgba(18, 18, 18, 1) 0%,
			rgba(18, 18, 18, 1) 15%,
			rgba(18, 18, 18, 0) 40%),
		linear-gradient(270deg,
			rgba(18, 18, 18, 1) 0%,
			rgba(18, 18, 18, 1) 5%,
			rgba(18, 18, 18, 0) 95%);
	height: 100%;
	width: 100%;
}

.slideshow-container .hero-section-container {
	height: 100%;
	padding-top: 40px;
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 20;
}

.slideshow-container .hero-section-container * {
	max-width: 600px;
}

.slideshow-container .home-slide-section.hero-section .hero-section-container h1 {
	line-height: 1em;
	font-size: 62px;
}

.slideshow-container .home-slide-section.hero-section .hero-section-container p {
	font-size: 28px;
	color: var(--sc-color-dark-mode);
	margin-top: 40px;
	font-weight: var(--sc-font-weight-extralight);
	font-family: var(--sc-font-family-body);
	line-height: 1.2em;
}

.slideshow-container .home-slide-section.hero-section .hero-section-container .hero-section-cta {
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 4px 24px;
	border-radius: 100px;

	font-size: 30px;
	color: var(--sc-primary-button-color-text);
	background-color: var(--sc-color-primary);
	border: 2px solid var(--sc-color-primary);
	margin-top: 16px;
	font-weight: var(--sc-font-weight-regular);
	font-family: var(--sc-font-family-header);
	text-transform: uppercase;
}

.slideshow-container .home-slide-section.hero-section .hero-section-container .hero-section-cta:hover {
	text-decoration: none;
	background: none;
	color: var(--sc-color-primary);
}

/********
hero pix & go 
********/
.slideshow-container .home-slide-section.pix-and-go-section-hero {
	height: 100%;
	margin: auto;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero .pix-and-go-section-bg-image-container {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	background: url(../../images/pix-and-go/pix-and-go-hero-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;

	position: absolute;
	max-width: 1200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.slideshow-container .home-slide-section.pix-and-go-section-hero .pix-and-go-section-bg-image-container::before {
	content: "";
	position: absolute;
	z-index: 10;
	background: linear-gradient(90deg,
			rgba(18, 18, 18, 1) 0%,
			rgba(18, 18, 18, 1) 15%,
			rgba(18, 18, 18, 0) 40%),
		linear-gradient(270deg,
			rgba(18, 18, 18, 1) 0%,
			rgba(18, 18, 18, 1) 5%,
			rgba(18, 18, 18, 0) 95%);
	height: 100%;
	width: 100%;
}

.slideshow-container .pix-and-go-section-hero-container {
	height: 100%;
	padding-top: 40px;
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 20;
	display: grid;
	grid-template-columns: 640px 1fr;
	grid-template-rows: auto;
	justify-items: center;
	justify-content: space-between;
	column-gap: 48px;
}


.slideshow-container .pix-and-go-section-hero-container * {
	max-width: 640px;
}

.slideshow-container .pix-and-go-section-hero-container .col-1 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0;
	height: 100%;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero h2 {
	line-height: 1em;
	font-weight: var(--sc-font-weight-regular);
	font-size: 65px;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero h2 a,
.slideshow-container .home-slide-section.pix-and-go-section-hero h2 a:hover {
	color: var(--sc-color-dark-mode);
	text-decoration: none;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero h2 .slide-pix-logo-casa {
	background-color: #ff5425;
	padding: 5px;
	border-radius: 4px;
	display: inline-flex;
	place-items: center;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero h2 .slide-pix-logo-casa img {
	width: 170px;
	height: auto;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero h2 .accent-text {
	color: var(--sc-color-accent);
	font-weight: var(--sc-font-weight-bold);
}

.slideshow-container .home-slide-section.pix-and-go-section-hero p {
	font-size: 28px;
	color: var(--sc-color-dark-mode);
	margin-top: 40px;
	font-weight: var(--sc-font-weight-extralight);
	font-family: var(--sc-font-family-body);
	line-height: 1.2em;
}


.slideshow-container .home-slide-section.pix-and-go-section-hero .btn-pix {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 70px;
	border-radius: 500px;
	padding: 8px;
	background: var(--primary-color-pix-and-go);
}

.slideshow-container .home-slide-section.pix-and-go-section-hero .btn-pix img {
	position: relative;
	height: 90%;
	max-width: 130px;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero .pix-and-go-section-cel-image {
	height: 480px;
	width: auto;
	border-radius: 20px;
	overflow: hidden;
	justify-self: center;
}

.slideshow-container .home-slide-section.pix-and-go-section-hero .pix-and-go-section-cel-image img {
	height: 100%;
	width: auto;
}


/* fin pix&go */


/* Hide the images by default */
.slideshow-container .sc-slide {
	display: none;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prev:hover,
.slideshow-container .next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.slideshow-nav {
	position: relative;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -80px;
	margin-bottom: 60px;
	gap: 8px;
	z-index: 50;
}

.slideshow-nav .slideshow-nav-dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.slideshow-nav .active,
.slideshow-nav .slideshow-nav-dot:hover {
	background-color: #ffffff;
}

/* Fading animation */
.slideshow-container .fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: 0.4;
	}

	to {
		opacity: 1;
	}
}

/* Media Query for Tablets Ipads portrait mode */
@media (max-width: 1024px) {}

/* Media Query for low resolution  Tablets, Ipads */
@media (max-width: 768px) {

	.slideshow-container .hero-section-container,
	.slideshow-container .pix-and-go-section-hero-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container {
		background: url(../../images/stakecheia-hero-background-tablet.jpg);
		background-position: right center;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container::before {
		background: linear-gradient(90deg,
				rgba(18, 18, 18, 1) 0%,
				rgba(18, 18, 18, 1) 20%,
				rgba(18, 18, 18, 0) 80%);
	}

	.slideshow-container .hero-section-container * {
		max-width: 60%;
	}

	/* pix and go section */
	.slideshow-container .pix-and-go-section-hero-container {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		column-gap: 0;
	}

	.slideshow-container .home-slide-section.pix-and-go-section-hero h2 {
		font-size: 45px;
	}

	.slideshow-container .home-slide-section.pix-and-go-section-hero h2 .slide-pix-logo-casa img {
		width: 140px;
	}

	.slideshow-container .home-slide-section.pix-and-go-section-hero p {
		font-size: 23px;
	}

	.slideshow-container .home-slide-section.pix-and-go-section-hero .pix-and-go-section-cel-image {
		display: none;
	}
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
	.slideshow-container .hero-section-container {
		padding-top: 20px;
	}

	.slideshow-container .hero-section-container * {
		max-width: 100%;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-container h1 {
		font-size: 50px;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-container p {
		font-size: 24px;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container {
		background: url(../../images/stakecheia-hero-background-mobile.jpg);
		background-position: center center;
		opacity: 0.2;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-bg-image-container::before {
		display: none;
	}

	.slideshow-container .home-slide-section.hero-section .hero-section-container .hero-section-cta {
		font-size: 22px;
	}

	.slideshow-nav {
		margin-top: -54px;
	}
}

/* ANIMACIONES */
.slideshow-container .card-ligas-home-background,
.slideshow-container .card-palpite-hero-container-background,
.slideshow-container .card-stake-billete-container-background,
.slideshow-container .card-billete-bet365-container-background {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-blend-mode: luminosity;
	background-size: 200%;
}

.slideshow-container .card-ligas-home-content,
.slideshow-container .card-palpite-hero-content,
.slideshow-container .card-stake-billete-hero-content,
.slideshow-container .card-billete-bet365-hero-content {
	position: relative;
	z-index: 10;
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 1024px) {

	.slideshow-container .palpite-destacado-partido-background,
	.slideshow-container .card-ligas-home-background,
	.slideshow-container .card-palpite-hero-container-background,
	.slideshow-container .card-stake-billete-container-background,
	.slideshow-container .card-billete-bet365-container-background {
		width: 100%;
		height: 100%;
		-webkit-animation: sc_animate_home_slide_bg 2s ease-in-out alternate infinite;
		-moz-animation: sc_animate_home_slide_bg 2s ease-in-out alternate infinite;
		-o-animation: sc_animate_home_slide_bg 2s ease-in-out alternate infinite;
		animation: sc_animate_home_slide_bg 2s ease-in-out alternate infinite;
	}
}

/* Media Query for low resolution  Tablets, Ipads */
@media (max-width: 768px) {
	.slideshow-container .card-ligas-home-background {
		background-size: auto 100%;
	}

	.slideshow-container .palpite-destacado-partido-background,
	.slideshow-container .card-ligas-home-background,
	.slideshow-container .card-palpite-hero-container-background,
	.slideshow-container .card-stake-billete-container-background,
	.slideshow-container .card-billete-bet365-container-background {
		width: 100%;
		height: 100%;
		-webkit-animation: sc_animate_home_slide_bg_mobile 2s ease-in-out alternate infinite;
		-moz-animation: sc_animate_home_slide_bg_mobile 2s ease-in-out alternate infinite;
		-o-animation: sc_animate_home_slide_bg_mobile 2s ease-in-out alternate infinite;
		animation: sc_animate_home_slide_bg_mobile 2s ease-in-out alternate infinite;
	}
}

@keyframes sc_animate_home_slide_bg {
	from {
		background-size: 100% auto;
		background-size: cover;
		background-position-x: right;
		opacity: 1;
	}

	to {
		background-size: 100% auto;
		background-size: cover;
		background-position-x: left;
		opacity: 0.5;
	}
}

@keyframes sc_animate_home_slide_bg_mobile {
	from {
		background-size: auto 110%;
		opacity: 1;
	}

	to {
		background-size: auto 100%;
		opacity: 0.5;
	}
}