
/********/
/* Hero */
/********/
.section-hero {
	padding: 0;
}
.section-hero .hero-container {
	position: relative;
}
.section-hero .hero-container .hero-media {
	background-color: black;
	aspect-ratio: 2 / 1;
	width: 100%;
	min-height: 500px;
	max-height: 900px;
}
.section-hero .hero-container .hero-media img,
.section-hero .hero-container .hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-hero .hero-container .hero-media .hero-message-container {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	align-items: center;
	z-index: 2;
}
.section-hero .hero-container .hero-media .hero-message-container .hero-message {
	display: inline-flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	padding: .75rem 2rem 1.5rem 2rem;
	background-color: rgba(0, 0, 0, .5);
	backdrop-filter: blur(2px);
	border-radius: .25rem;
}
.section-hero .hero-container .hero-media .hero-message-container .hero-message h1 {
	color: white;
	font-weight: 700;
	font-size: 3.25rem;
}
@media (max-width: 768px) {
	.section-hero .hero-container .hero-media .hero-message-container {
		align-items: flex-end;
		padding: 1rem;
	}
	.section-hero .hero-container .hero-media .hero-message-container .lsc-container {
		justify-content: center;
	}
	.section-hero .hero-container .hero-media .hero-message-container .hero-message {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.section-hero .hero-container .hero-media .hero-message-container .hero-message h1 {
		font-size: 2.75rem;
	}
}
@media (max-width: 576px) {
	.section-hero .hero-container .hero-media .hero-message-container .hero-message h1 {
		font-size: 2.5rem;
	}
}

/************/
/* Feature */
/************/
.homepage-feature-swiper {
	
}
.homepage-feature-swiper-button-prev,
.homepage-feature-swiper-button-next {
	top: 25%;
	color: white;
	cursor: pointer;
	text-shadow: 1px 1px 1px  #00000090;
}
.homepage-feature-swiper-button-prev:after,
.homepage-feature-swiper-button-next:after {
	font-size: 3rem;
	font-weight: 900;
}
.homepage-feature-swiper-button-prev {
	left: 30px;
}
.homepage-feature-swiper-button-next {
	right: 30px;
}
@media (min-width: 697px) {
	.homepage-feature-swiper-button-prev,
	.homepage-feature-swiper-button-next {
		top: 35%;
	}
}
@media (min-width: 1200px) {
	.homepage-feature-swiper-button-prev,
	.homepage-feature-swiper-button-next {
		top: 30%;
	}
}

/********/
/* Feature >  Card */
/********/
.homepage-feature-swiper .card {
	transition: all .3s ease-out;	
}
.homepage-feature-swiper .card-group {
	row-gap: 1.5rem;
}
.homepage-feature-swiper .card .card-img-top {
	transition: all .3s ease-out;
}
.homepage-feature-swiper .card:hover .card-img-top {
	transform: translateY(-3px) scale(105%);
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
}

/********/
/* News */
/********/
.homepage-news-swiper {
	padding-top: 10px;	
}
.homepage-news-swiper-button-prev,
.homepage-news-swiper-button-next {
	color: white;
	cursor: pointer;
	text-shadow: 1px 1px 1px  #00000090;
}
.homepage-news-swiper-button-prev:after,
.homepage-news-swiper-button-next:after {
	font-size: 3rem;
	font-weight: 900;
}
.homepage-news-swiper-button-prev {
	left: 30px;
}
.homepage-news-swiper-button-next {
	right: 30px;
}

/****************/
/* News listing */
/****************/
.homepage-news-list {
	/*
	display: flex;
	flex-direction: column;
	gap: 1rem;
	*/
	overflow: unset;
	overflow-x: hidden;
	overflow-x: clip;
}
.homepage-news-list .card {
	padding: 1rem;
	background-color: #282828;
}
.homepage-news-list .card-img-top-container {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	height: 100%;
	/* background-color: rgb(34, 34, 34); */
}
@media (max-width: 576px) {
	.homepage-news-list .card-img-top-container {
		padding-bottom: 1rem;
	}
}
.homepage-news-list .card-title a {
	color: #3e9aff;
}
.homepage-news-list .card-body {
	padding: 0;
}
.homepage-news-list .swiper-pagination {
	bottom: -2rem;
}
.homepage-news-list .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: white;
	opacity: .7;
}
.homepage-news-list .swiper-button-prev,
.homepage-news-list .swiper-button-next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0);
	transition: all .3s ease-out;
}
.homepage-news-list .swiper-button-prev:hover,
.homepage-news-list .swiper-button-next:hover {
	background-color: rgba(0, 122, 255, .9);
	color: white;
}
.homepage-news-list .swiper-button-prev {
	left: .5rem;
}
.homepage-news-list .swiper-button-next {
	right: .5rem;
}
.homepage-news-list .swiper-button-prev:after,
.homepage-news-list .swiper-button-next:after {
	font-size: 1rem;
}

/*********/
/* Toast */
/*********/
.toast-container {
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 1rem;
}
.toast-container {
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 1rem;
}
.toast {
	width: 100%;
	max-width: 500px;
	opacity: 0;
	animation-name: toast-fade-in;
	animation-delay: .5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes toast-fade-in {
	0% {
		transform: scale(1.1);
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.toast-header img {
	width: 40px;
	height: auto;
}
.toast-title {
	font-family: var(--lsc-sans-serif);
	font-size: 1.25rem;
}
.toast-body {
	font-family: var(--lsc-sans-serif);
	font-size: 1.15rem;
	background-color: rgba(255,255,255,.6);
}