html {
	overflow-x: hidden;
}

/* CAROUSEL */
.full-height {
	aspect-ratio: 16/9;
}
.carousel-padding {
	padding-top: 76px;
}
.swiper-pagination-bullet {
	height: 15px;
	width: 15px;
	background-color: var(--vgec-secondary);
	opacity: 80%;
}
.swiper-pagination-bullet-active {
	background-color: var(--vgec-primary);
	opacity: 100%;
}

.heading-text {
	font-size: 1.7rem;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
}
.heading-sub-text {
	font-family: "Merriweather", serif;
	font-size: 1.3rem;
	font-weight: 600;
}
.content-text {
	font-size: 1.1rem;
}

/* NEWS SECTION */
.news-card {
	background-color: #f3f3f3;
}
.news-marquee {
	max-height: 17rem;
	min-height: 17rem;
	padding-left: 5px;
	padding-right: 5px;
}
.news-button {
	background-color: var(--vgec-primary);
	color: white;
	border-radius: 50px;
	border: none;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	margin-left: 1rem;
}
.news-title {
	width: 100%;
	text-align: center;
	color: white;
	font-weight: bolder;
	font-size: larger;
	background-color: var(--vgec-primary);
}

.hover-right {
	transition: all 0.5s;
}
.hover-right:hover {
	transform: translateX(10px);
}

.hover-red {
	transition: all 0.3s;
}
.hover-red:hover {
	color: var(--vgec-primary);
}

.hover-photo {
	transition: all 0.5s;
}
.hover-photo:hover {
	transform: scale(110%);
}

.tnp_img_size {
	object-fit: contain;
	width: 100%;
	height: 10rem;
}
.tnp-card {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.5rem;
	padding: 0.5rem;
}

.icon-circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	background-color: var(--vgec-primary);
	color: #ffffff;
	margin-bottom: 10px;
	box-shadow: 0 0 2px 5px rgba(255, 255, 255, 0.6);
	transition: box-shadow 0.3s ease;
}
.icon-circle:hover {
	box-shadow: 0 2px 2px 5px rgba(255, 255, 255, 0.6),
		0 0 2px 15px rgba(255, 255, 255, 0.4);
}
.icon-circle i {
	font-size: 2.7rem;
}

/* GREY NEWS BAR ON TOP */
.news-item {
	position: absolute;
	width: 100%;
	text-align: center;
	background-color: rgba(235, 164, 52, 0.9);
	animation: blink 10s infinite;
}
.news-item:hover {
	animation-play-state: paused;
	opacity: 1 !important;
}
.single-line {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	15% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
}

/* SM */
@media (min-width: 576px) {
}

/* MD */
@media (min-width: 768px) {
	.carousel-padding {
		padding-top: 91px;
	}
}

/* LG */
@media (min-width: 992px) {
	.heading-text {
		font-size: 2.3rem;
	}
	.heading-sub-text {
		font-size: 1.6rem;
	}
	.content-text {
		font-size: 1.2rem;
	}
	.tnp_img_size {
		width: 17rem;
		height: 10rem;
	}
	.full-height {
		aspect-ratio: 16/6.5;
	}
}

/* XL */
@media (min-width: 1200px) {
	.heading-text {
		font-size: 2.5rem;
	}
	.heading-sub-text {
		font-size: 1.8rem;
	}
	.content-text {
		font-size: 1.3rem;
	}
}
