/**
 * banner CSS start
 *
 * @format
 */

/* Letter Animation Styling */
.animate-letter {
	display: inline-block;
	opacity: 0;
}

.slick-next,
.slick-prev {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: 0;
	background: 0 0;
}

.slick-slide > div {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	height: 100%;
}

.home-hero {
	width: 100%;
	height: 617px;
	overflow: hidden;
	position: relative;
	background-image: linear-gradient(to bottom, var(--black), var(--black));
}
.banner-image {
	height: 100%;
	width: 100%;
	min-height: 617px;
}
.banner-content-wrapper {
	position: absolute;
	bottom: 110px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.banner-title {
	font-size: 46px;
	width: 330px;
	font-weight: bold;
	line-height: 1.13;
	letter-spacing: 9.2px;
	text-align: center;
	color: var(--white);
	padding-bottom: 33px;
	margin-bottom: 27px;
	position: relative;
}
.banner-title span.first {
	display: block;
	animation-delay: 5s;
}
.banner-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0; /* Start with width 0 */
	background-color: var(--maize);
	animation: expandBorder 5s forwards; /* Animation declaration */
}
@keyframes expandBorder {
	0% {
		width: 0; /* Start with width 0 */
	}
	100% {
		width: 100%; /* End with width 100% */
	}
}
.banner-description {
	font-size: 20px;
	max-width: 292px;
	font-weight: normal;
	font-style: italic;
	line-height: 1.25;
	letter-spacing: -0.3px;
	text-align: center;
	color: var(--white);
	margin-bottom: 28px;
}
.home-hero .slick-slider {
	overflow: hidden;
}
.home-hero .slick-dotted.slick-slider {
	margin: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.banner-background {
	display: none;
}

.home-hero .slick-list,
.home-hero .slick-track,
.home-hero .slick-slide {
	height: 100%;
	width: 100%;
}
/* .home-hero .slick-dots.show {
	opacity: 1 !important;
} */
.home-hero .slick-dots {
	position: absolute;
	width: 100%;
	bottom: 30px;
	/* opacity: 0; */
	animation-delay: 10s;
	animation-name: animationFadeUp;
	animation-duration: 3s; /* Duration of the animation */
	animation-delay: 10s;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.home-hero .slick-dots li {
	opacity: 0;
	width: 41px;
	height: 6px;
	margin: 0 6px;
	background-color: var(--grey);
	position: relative;
	display: inline-block;
	padding: 0;
	cursor: pointer;
}
.home-hero .slick-dots li.slick-active {
	background-color: var(--maize);
}

.home-hero .slick-dots button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: 0;
	background: 0 0;
}

@media (min-width: 1024px) {
	.home-hero {
		height: 800px;
	}
	.home-hero .slick-dots {
		bottom: 21px;
	}
	.banner-content-wrapper {
		bottom: 210px;
		width: 100%;
		max-width: 1012px;
	}
	.banner-description {
		max-width: 1012px;
		margin-bottom: 31px;
		font-size: 25px;
		font-weight: normal;
		line-height: 1.56;
		text-align: center;
		letter-spacing: -0.38px;
	}
	.banner-title {
		font-size: 75px;
		font-weight: bold;
		line-height: 1.13;
		letter-spacing: 15px;
		text-align: center;
		padding-bottom: 22px;
		width: auto;
		margin-bottom: 19px;
	}

	.banner-background {
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		z-index: 0;
		opacity: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.banner-background img {
		max-width: 800px;
		width: 100%;
	}
}

.slick-dots li:before {
	content: none;
}
@media (min-width: 1920px) {
	.home-hero .slick-dots {
		bottom: 80px;
	}
	.home-hero {
		height: 1075px;
	}
	.banner-content-wrapper {
		bottom: 324.7px;
		max-width: 1130px;
	}
	.banner-title {
		font-size: 84px;
		line-height: 1.13;
		letter-spacing: 16.8px;
		padding-bottom: 24px;
		margin-bottom: 22px;
	}
	.banner-description {
		font-size: 28px;
		font-weight: normal;
		line-height: 1.57;
		margin-bottom: 58px;

		letter-spacing: -0.42px;
	}
}

/* banner CSS end */

/* Article-detail CSS start */
.article-detail {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.article-detail-background {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: -1;
	opacity: 0.71;
}
.article-image-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 15px;
}
.article-image-wrapper picture {
	margin-bottom: -4px;
}
.article-image-background {
	position: absolute;
	height: 15px;
	width: 334px;
	background-color: var(--maize);
	z-index: -1;
	bottom: 0;
}
.article-detail--right .article-image-wrapper picture {
	margin-bottom: 0px;
}
.article-detail--right .article-image-background {
	right: 0;
	width: 278px;
	height: 23.6px;
}
.article-detail--left .article-content-wrapper p:first-child {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.07;
	letter-spacing: 0;
	text-align: left;
	color: var(--black);
	text-transform: uppercase;
	margin-bottom: 11px;
}
.article-content-wrapper h1,
.article-content-wrapper h2 {
	margin-bottom: 15px;
}
.article-link {
	font-size: 15px;
	font-weight: 800;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.07;
	letter-spacing: 1.5px;
	text-align: left;
	text-transform: uppercase;
	color: var(--black);
	margin-top: 31.1px;
	display: block;
	text-decoration: none;
	position: relative;
	padding-bottom: 13px;
	width: fit-content;
}
.article-link i {
	color: var(--maize);
}
.article-link::after {
	content: '';
	position: absolute;
	height: 6px;
	width: 100%;
	background-color: var(--maize);
	bottom: 0;
	left: 0;
}
.article-link:focus,
.article-link:active,
.article-link:hover,
.article-link:focus i,
.article-link:active i,
.article-link:hover i {
	color: var(--rusty-red);
	text-decoration: none;
}
.article-link:hover:after,
.article-link:focus:after,
.article-link:active:after {
	background-color: var(--rusty-red);
}
.article-image {
	width: 100%;
	max-height: 212.5px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.24);
}
.article-image-animation {
	will-change: clip-path, transform;
	animation: image-reveal-left 1500ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}
.article-right-image-animation {
	will-change: clip-path, transform;
	animation: image-reveal-right 1500ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}
@keyframes image-reveal-left {
	0% {
		clip-path: inset(0 100% 0 0);
		-webkit-clip-path: inset(0 100% 0 0);
	}
	100% {
		clip-path: inset(0 0 0 0);
		-webkit-clip-path: inset(0 0 0 0);
	}
}

@keyframes image-reveal-right {
	0% {
		clip-path: inset(0 0 0 100%);
		-webkit-clip-path: inset(0 0 0 100%);
	}
	100% {
		clip-path: inset(0 0 0 0);
		-webkit-clip-path: inset(0 0 0 0);
	}
}
.article-content-wrapper {
	padding: 35.5px 20px 31.1px;
}
.article-detail--right .article-content-wrapper {
	padding: 31.1px 20px 54.7px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.article-content-wrapper p a {
	color: var(--rusty-red);
	font-weight: 800;
	text-decoration: none;
	display: inline;
	font-size: 17px;
	line-height: 1.65;
	letter-spacing: normal;
	text-transform: none;
}
/* .article-content-wrapper a i {
	display: none;
}
.article-content-wrapper a::after {
	content: none;
} */
.article-content-wrapper p a:hover,
.article-content-wrapper p a:active,
.article-content-wrapper p a:focus {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.article-image {
		height: auto;
		max-height: unset;
	}
}

@media (min-width: 1024px) {
	.article-link {
		margin-top: 66px;
	}
	.article-image-wrapper {
		padding: 0;
	}
	.article-detail--right .article-image-wrapper {
		justify-content: unset;
	}
	.article-detail-wrapper.article-detail--right {
		flex-direction: row-reverse;
		padding-top: 31.6px;
	}

	.article-detail {
		padding-top: 64.4px;
		padding-bottom: 132px;
	}
	.article-detail-wrapper {
		display: flex;
	}
	.article-image {
		width: 452px;
		height: 398.5px;
		max-width: 452px;
		max-height: 398.5px;
		margin: 44px 0;
	}
	.article-image-background {
		width: 400px;
		left: -45px;
		top: 0;
		bottom: unset;
		height: 100%;
	}
	.article-content-wrapper h1,
	.article-content-wrapper h2 {
		margin-bottom: 38px;
		max-width: 501px;
	}
	.article-content-wrapper p {
		max-width: 549px;
		padding: 0;
	}

	.article-content-wrapper {
		margin-left: 83px;
		margin-top: 47px;
		padding: 0;
	}
	.article-detail--right .article-image {
		margin: 23.6px 0;
		max-width: 511px;
		width: 511px;
		max-height: 356.5px;
	}
	.article-detail--right .article-content-wrapper {
		margin-left: 0;
		padding: 0;
		margin-right: 78px;
		margin-top: 48px;
		position: relative;
		padding-left: 50px;
		height: fit-content;
		align-items: unset;
	}
	.article-detail--right .article-content-wrapper::before {
		width: 3px;
		height: 541.3px;
		background-color: var(--rusty-red);
		position: absolute;
		content: none;
		left: 0;
		top: -60%;
		height: 160%;
	}
	.animation-expand-border-top.article-content-wrapper::before {
		content: '';
		animation: expand-border-top 3s;
	}
	@keyframes expand-border-top {
		0% {
			height: 0;
			opacity: 0;
		}
		100% {
			height: 160%;
			opacity: 1;
		}
	}
	.article-detail--right .article-image-background {
		left: unset;
		right: -35px;
		width: 414px;
		height: 403.7px;
	}
}
@media (min-width: 1920px) {
	.article-detail-wrapper.article-detail--right {
		flex-direction: row-reverse;
		padding-top: 54.7px;
	}
	.article-detail {
		padding-top: 109.4px;
		padding-bottom: 174.8px;
	}
	.article-image {
		width: 479px;
		max-width: 479px;
		margin-left: 43px;
	}
	.article-image-background {
		width: 424px;
	}
	.article-detail--right .article-image {
		width: 520px;
		max-width: 520px;
		margin-right: 32.8px;
	}
	.article-detail--right .article-image-background {
		width: 455.8px;
	}
	@keyframes expand-border-top-1280 {
		0% {
			height: 0;
			opacity: 0;
		}
		100% {
			height: 541.3px;
			opacity: 1;
		}
	}
	.article-detail--right .article-content-wrapper::before {
		height: 567.1px;
	}
	.animation-expand-border-top.article-content-wrapper::before {
		animation: expand-border-top-1280 3s;
	}
}
/* Article-detail CSS end */

/* Blog-post CSS start */
.blog-post-button-wrapper {
	display: flex;
	justify-content: center;
}
.blog-post {
	position: relative;
	padding: 47px 21.5px 90px;
}
.blog-post-background {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.blog-post-title {
	font-size: 30px;
	line-height: 1.9;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
	margin-bottom: 33px;
}
.post-wrapper {
	background-color: var(--white);
	padding: 19px 38.5px 21px 19.5px;
}
.post-title {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.28;
	letter-spacing: normal;
	color: var(--text-color);
	margin-bottom: 5px;
}
.post-date {
	text-transform: uppercase;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.35px;
	color: var(--charcoal-grey);
}
.post-description {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.56;
	letter-spacing: normal;
	color: var(--black);
	margin-bottom: 11px;
}
.post-link {
	font-size: 15px;
	font-weight: bold;
	line-height: 2.53;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	text-align: left;
	text-decoration: none;
	color: var(--charcoal-grey);
}
.post-link::after {
	content: none;
}
.post-link:hover,
.post-link:focus,
.post-link:active {
	color: var(--rusty-red);
}
.post-link i {
	color: var(--rusty-red);
}
.posts-slider {
	margin-bottom: 74px;
}
.posts-slider .slick-arrow {
	bottom: 0;
	top: unset;
	transform: none;
	width: 44px;
	height: 44px;
	background-color: var(--maize);
	z-index: 1;
	bottom: -74px;
}
.posts-slider .slick-arrow.slick-prev {
	left: calc(50% - 44px - 15px);
}
.posts-slider .slick-arrow.slick-next::before {
	content: '\f054';
	font-family: 'Font Awesome 6 Pro';
	font-size: 20px;
	color: var(--charcoal-grey);
}
.posts-slider .slick-arrow.slick-prev::before {
	content: '\f053';
	font-family: 'Font Awesome 6 Pro';
	font-size: 20px;
	color: var(--charcoal-grey);
}
.posts-slider .slick-arrow.slick-next {
	right: calc(50% - 44px - 15px);
}
.blog-post-button-wrapper a {
	padding: 17px 35.5px 19px;
	margin-top: 30px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.85px;
	color: var(--charcoal-grey);
	border: 4px solid transparent;
}
.blog-post-button-wrapper a:hover,
.blog-post-button-wrapper a:active,
.blog-post-button-wrapper a:focus {
	background-color: #000;
	border: solid 4px var(--maize);
	color: var(--maize);
}
.posts-slider .slick-arrow:hover,
.posts-slider .slick-arrow:active,
.posts-slider .slick-arrow:focus {
	background-color: #464749;
	border: solid 4px #464749;
	color: var(--maize);
}
.posts-slider .slick-arrow:hover::before,
.posts-slider .slick-arrow:active::before,
.posts-slider .slick-arrow:focus::before {
	color: var(--maize);
}

@media (min-width: 768px) {
	.container.blog-post-wrapper {
		width: 100%;
		padding: 0px 30px;
	}
	.posts-slider {
		margin: 0 -16px;
	}
	.slick-initialized .slick-slide .post-wrapper {
		margin: 0 16px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.posts-slider .slick-arrow.slick-prev {
		left: -6px;
		bottom: 50%;
		transform: translateY(50%);
	}
	.posts-slider .slick-arrow.slick-next {
		right: -6px;
		bottom: 50%;
		transform: translateY(50%);
	}
}
@media (min-width: 1280px) {
	.container.blog-post-wrapper {
		max-width: 1116px;
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 1024px) {
	.blog-post-title {
		font-size: 48px;
		font-weight: 600;
		line-height: 1.19;
		letter-spacing: normal;
		margin-bottom: 60px;
	}
	.post-wrapper {
		padding: 40px 22px 30px 43px;
	}
	.blog-post {
		padding: 101.4px 0px 115px;
	}
	.post-title {
		max-width: 373px;
		margin-bottom: 16px;
	}

	.slick-slide .post-wrapper-inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		/* min-height: 289px; */
		height: 100%;
	}
	.post-date {
		margin-bottom: 19px;
	}
	.blog-post-button-wrapper a {
		margin-top: 60px;
	}
}

/* Blog-post CSS end */

@media screen and (min-width: 767px) and (max-width: 1024px) {
	.article-image-wrapper {
		max-width: 300px;
		min-width: 300px;
		overflow: hidden;
	}

	.container.article-detail-wrapper.article-detail--left {
		display: flex;
		align-items: flex-start;
		column-gap: 30px;
	}
	.container.article-detail-wrapper.article-detail--right {
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		column-gap: 15px;
	}

	.article-detail--right .article-content-wrapper {
		padding: 0px 10px 25px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}
