/* History Carousel CSS */

.wsf-history-carousel-wrap{
	overflow-x: clip;
}

.wsf-history-carousel{
	cursor: grab;
}

.wsf-history-carousel .slick-list{
	margin: 0 -15px;
}

.wsf-history-carousel .slick-slide{
	margin: 0 15px;
}

.home-history-box-img{
	display: flex;
/* 	align-items: center; */
	flex-direction: row;
	flex-wrap: wrap;
	gap: 70px;
}

.home-history-box-img .history-box-left,
.home-history-box-img .history-box-right{
	position: relative;
	width: calc(50% - 35px);
}

.home-history-box-img .history-box-left .history-title h3,
.home-history-box-img .history-box-left .history-content{
	color: var(--white-color);
}

.home-history-box-img .history-box-left .history-content,
.home-history-box-img .history-box-left .history-btn{
	margin-top: 30px;
}

.home-history-box-img .history-box-right .history-box-img,
.home-history-box-img .history-box-right .history-box-img figure{
	height: 100%;
}

.home-history-box-img .history-box-right img{
	width: 100%;
	aspect-ratio: 1 / 0.732;
    object-fit: cover;
	height: 100%;
}

.home-history-box-img .history-box-right .year-title{
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 0;
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 140px;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    font-style: var(--e-global-typography-primary-font-style);
    line-height: 0.62em;
    color: var(--e-global-color-accent);
	transform: translateX(-50%);
	margin: 0;
}

.wsf-history-carousel .slick-dots{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: end;
	width: 100%;
	background-color: var(--e-global-color-accent);
	padding: 0;
/* 	padding-left: 230px; */
	margin: 0;
	margin-top: 60px;
}

.wsf-history-carousel .slick-dots li button{
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 24px;	
	border: 0;
	background-color: transparent;
	height: 120px;
    padding: 0 25px;
	transition: all 0.3s ease-in-out;
}

.wsf-history-carousel .slick-dots li button:hover,
.wsf-history-carousel .slick-dots li.slick-active button{
	font-size: 40px;	
}

.wsf-history-carousel .slick-dots li button:before,
.wsf-history-carousel .slick-dots li button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	background-color: var(--white-color);
	transform: translateX(-50%);
	width: 2px;
	height: 15px;
	transition: all 0.3s ease-in-out;
}

.wsf-history-carousel .slick-dots li button:after{
	top: auto;
	bottom: 0;
}

.wsf-history-carousel .slick-dots li button:hover:before,
.wsf-history-carousel .slick-dots li button:hover:after,
.wsf-history-carousel .slick-dots li.slick-active button:before,
.wsf-history-carousel .slick-dots li.slick-active button:after{
	height: 30px;
}

.wsf-history-carousel-wrap .inception-of-year{
	position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 30px;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    font-style: var(--e-global-typography-primary-font-style);
    line-height: var(--e-global-typography-primary-line-height);
    color: var(--white-color);
	background-color: var(--e-global-color-accent);
	width: 17%;
	padding: 30px 0 30px 30px;
	z-index: 1;
}


@media only screen and (max-width: 1024px){
	
	.wsf-history-carousel{
		padding-bottom: 80px;
	}

	.home-history-box-img{
		flex-direction: column-reverse;
		gap: 20px;
	}
	
	.home-history-box-img .history-box-left, .home-history-box-img .history-box-right{
		width: 100%;
	}
	
	.home-history-box-img .history-box-right .history-box-img, 
	.home-history-box-img .history-box-right .history-box-img figure{
		height: auto;
	}
	
	.home-history-box-img .history-box-right img{
		aspect-ratio: 1 / 0.66;
		height: auto;
	}
	
	.home-history-box-img .history-box-right .year-title{
		font-size: 100px;
	}
	
	.home-history-box-img .history-box-left .history-content, 
	.home-history-box-img .history-box-left .history-btn{
		margin-top: 20px;
	}
	
	.wsf-history-carousel-wrap .inception-of-year{
		display: none;
		text-align: center;
		top: 0;
		bottom: auto;
		font-size: 26px;
		width: 100%;
		padding: 10px;		
	}
	
	.wsf-history-carousel .slick-arrow{
		position: absolute;
		top: auto;
		bottom: 0;
		padding: 0;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 0;
	}
	
	.wsf-history-carousel .slick-arrow:hover{
		background-color: var(--e-global-color-primary);
	}
	
	.wsf-history-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 55px)	;
	}
	
	.wsf-history-carousel .slick-arrow.next-arrow{
		right: calc(50% - 55px)	;
	}
}


@media only screen and (max-width: 767px){
	
	.wsf-history-carousel{
		padding-bottom: 60px;
	}
	
	.home-history-box-img .history-box-right img{
		aspect-ratio: 1 / 0.8;
	}
	
	.home-history-box-img .history-box-right .year-title{
		font-size: 80px;
	}
	
	.wsf-history-carousel-wrap .inception-of-year{
		font-size: 24px;
		padding: 5px;		
	}
	
	.wsf-history-carousel .slick-arrow{		
		width: 40px;
		height: 40px;		
	}
	
	.wsf-history-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 45px);
	}
	
	.wsf-history-carousel .slick-arrow.next-arrow{
		right: calc(50% - 45px)	;
	}
}


/* 
 * WSF Accordion CSS
 * */

.elementor-widget-at-wsf-accordion{
	overflow: hidden;
}

.wsf-accordion{
	line-height: 0;
}

.wsf-accordion .accordion--horizontal {
	--accordion-heading-height: 500px;
	width: auto;
	display: inline-block;
	height: var(--accordion-heading-height);
	background-color: var(--white-color);
	border: 1px solid rgb(from var(--e-global-color-accent) r g b / 30%);
	border-radius: 0;
}

ul.at-accordion .accordion__panel {
	border: none;
}

ul.at-accordion .accordion__panel .accordion__heading {
	width: var(--accordion-heading-height);
    display: flex;
	align-items: center;
	gap: 10px;
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-size: 26px;
	font-weight: var(--e-global-typography-primary-font-weight);
	text-transform: var(--e-global-typography-primary-text-transform);
	font-style: var(--e-global-typography-primary-font-style);
	line-height: var(--e-global-typography-primary-line-height);
    background-color: transparent;
    padding: 40px 28px;
	border-top: 1px solid rgb(from var(--e-global-color-accent) r g b / 30%);
	z-index: 1;
}

ul.at-accordion .accordion__panel.accordion--active .accordion__heading {
	padding: 28px;
}

ul.at-accordion .accordion__panel.accordion--active .accordion__heading {
	background-color: var(--e-global-color-primary);
	color: var(--white-color);
	border-top: none;
	border-radius: 0;
}

ul.at-accordion .accordion__panel:first-child .accordion__heading {
	border-top: none;
}

ul.at-accordion .accordion__panel .accordion__heading em{
	font-style: normal;
}

ul.at-accordion .accordion__panel .accordion__expander {
	width: 870px;
	padding: 0;
	margin-left: 83px;
}

ul.at-accordion .accordion__panel .accordion__expander .accordion-content {
	display: flex;
    gap: 40px;
    flex-wrap: wrap;
	padding: 50px;
	height: 100%;
}

ul.at-accordion .accordion__panel .accordion-header {
	position: relative;
	width: calc(45% - 20px);
	height: 100%;
}

ul.at-accordion .accordion__panel .accordion-header figure {
	margin: 0;
	display: block;
	line-height: 0;
	overflow: hidden;
	height: 100%;
}

ul.at-accordion .accordion__panel .accordion-header figure img {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	height: 100%;
}

ul.at-accordion .accordion__panel .accordion-footer{
	width: calc(55% - 20px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: 30px
}

ul.at-accordion .accordion__panel .accordion-icon .iconbox {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 60px;
	height: 60px;
    background-color: var(--e-global-color-accent);
	color: var(--white-color);
    box-sizing: border-box;
}

ul.at-accordion .accordion__panel .accordion-icon .iconbox .icon-wrapper,
ul.at-accordion .accordion__panel .accordion-icon .iconbox .icon-wrapper svg{
	width: 40px;
	height: 40px;
}

ul.at-accordion .accordion__panel .accordion-footer .footer-content{
    color: var(--e-global-color-text);
	margin-top: 0;
}

ul.at-accordion .accordion__panel .accordion-footer .footer-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.at-accordion .accordion__panel .accordion-footer .footer-content ul li{
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
}

ul.at-accordion .accordion__panel .accordion-footer .footer-content ul li:before{
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	background-color: var(--e-global-color-accent);
	mask-image: url("../images/check.svg");
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 16px;
	height: 16px;
}

ul.at-accordion .accordion__panel .accordion-footer .footer-content ul li:last-child{
	margin-bottom: 0;
}

@media only screen and (max-width: 1024px){
	
	.wsf-accordion .accordion--vertical {
		background-color: var(--white-color);
		border-radius: 0;
		border: 1px solid rgb(from var(--e-global-color-accent) r g b / 30%);
	}
	
	.wsf-accordion .accordion--vertical .accordion__panel {
		width: 100% !important;
	}

	ul.at-accordion .accordion__panel .accordion__heading {
		width: 100%;
		padding: 20px;
	}
	
	ul.at-accordion .accordion__panel.accordion--active .accordion__heading{
		padding: 20px;
	}

	ul.at-accordion .accordion__panel .accordion__expander {
		width: 100%;
		margin-left: 0;
	}
	
	ul.at-accordion .accordion__panel .accordion__expander .accordion-content{
		gap: 20px;
		padding: 30px;
	}
	
	ul.at-accordion .accordion__panel .accordion-header{
		width: calc(45% - 10px);
	}
	
	ul.at-accordion .accordion__panel .accordion-footer{
		width: calc(55% - 10px);
		gap: 20px;
	}

	ul.at-accordion .accordion__panel .accordion-footer .footer-content{
		max-width: 100%;
	}
	
}


@media only screen and (max-width: 991px){

}


@media only screen and (max-width: 767px){

	ul.at-accordion .accordion__panel .accordion__heading{
		font-size: 22px;
		padding: 18px 18px 16px;
	}
	
	ul.at-accordion .accordion__panel .accordion__expander .accordion-content{
		padding: 20px;
        flex-direction: column;
	}
	
	ul.at-accordion .accordion__panel .accordion-header,
	ul.at-accordion .accordion__panel .accordion-footer{
		width: 100%;
	}
	
	ul.at-accordion .accordion__panel .accordion-header figure,
	ul.at-accordion .accordion__panel .accordion-header figure img{
		height: auto;
	}
	
	ul.at-accordion .accordion__panel .accordion-header figure img{
		aspect-ratio: 1 / 0.66;
	}
	
	ul.at-accordion .accordion__panel .accordion-icon .iconbox{
		width: 50px;
		height: 50px;
	}
	
	ul.at-accordion .accordion__panel .accordion-icon .iconbox .icon-wrapper, 
	ul.at-accordion .accordion__panel .accordion-icon .iconbox .icon-wrapper svg{
		width: 35px;
		height: 35px;
	}
	
}

/*
 * HB Journey Carousel CSS
 * */

.at-journey-carousel-wrap{
/* 	overflow-x: clip; */
}

.at-journey-carousel{
	cursor: grab;
}

.at-journey-carousel .slick-slide{
	height: auto;
}

.at-journey-box{
	--padding-left-right: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box{
	flex-direction: column-reverse;
}

.at-journey-carousel .slick-slide .at-journey-box .at-journey-image,
.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box .at-journey-image{
	position: relative;
	border-width:  0 0 1px;
	border-style: solid;
	border-color:  rgb(from var(--white-color) r g b / 10%);
	padding: 0 var(--padding-left-right) 47px;
	margin: 0 0 50px;
}

.at-journey-carousel .slick-slide .at-journey-box .at-journey-image:before{
	content: '';
	position: absolute;
	top: auto;
	left: 50%;
	bottom: -15px;
	background-color: var(--white-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transform: translateX(-50%);
	transition: all 0.3s ease-in-out;
}

.slick-current.slick-active .at-journey-box .at-journey-image:before,
.slick-current.slick-active:nth-of-type(even) .at-journey-box .at-journey-image:before{
	background-color: var(--e-global-color-accent);
}

.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box .at-journey-image{
	border-width:  1px 0 0;
	padding: 45px var(--padding-left-right) 0;
	margin: 47px 0 0;
} 

.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box .at-journey-image:before{
	top: -15px;
	bottom: auto;
}

.slick-current.slick-active:nth-of-type(even) .at-journey-box .at-journey-image:before{
	top: -15px;
	bottom: auto;
}

.at-journey-image img{
	width: 100%;
	max-width: 240px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto;
}

.at-journey-content{	
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	text-align: center;
	padding: 0 var(--padding-left-right);
	min-height: 240px;
}

.at-journey-year h4{
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	letter-spacing: 0;
	color: var(--white-color);
	margin: 0 0 10px;
}

.at-journey-content .at-journey-title h3{
	font-size: 40px;
	color: var(--white-color);
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-bottom: 10px;
}

.at-journey-desc p{
	color: var(--white-color);
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.at-journey-carousel .slick-arrow{
	position: absolute;
	top: 50%;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-color);
	color: var(--e-global-color-accent);
	border: 1px solid var(--e-global-color-accent);
	border-radius: 50%;
	padding: 0;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.at-journey-carousel .slick-arrow:hover,
.at-journey-carousel .slick-arrow:focus{
	color: var(--white-color);
	background-color: var(--e-global-color-accent);
}

.at-journey-carousel .slick-arrow.prev-arrow{
	left: -80px;
}

.at-journey-carousel .slick-arrow.next-arrow{
	right: -80px;
}

.at-journey-carousel .slick-arrow svg{
	width: 24px;
	height: 24px;
}

@media only screen and (max-width: 1450px){
	
	.at-journey-carousel{
		padding-bottom: 100px;
	}
	
	.at-journey-carousel .slick-arrow{
		top: auto;
		bottom: 0;
		transform: translateY(0%);
	}

	.at-journey-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 55px);
	}

	.at-journey-carousel .slick-arrow.next-arrow{
		right: calc(50% - 55px);
	}
	
}

@media only screen and (max-width: 1024px){
	
	.at-journey-carousel{
		padding-bottom: 80px;
	}
	
	.at-journey-box{
		--padding-left-right: 15px;
	}

	.at-journey-carousel .slick-slide .at-journey-box .at-journey-image,
	.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box .at-journey-image{
		padding: 0 var(--padding-left-right) 40px;
		margin: 0 0 40px;
	}

	.at-journey-carousel .slick-slide:nth-of-type(even) .at-journey-box .at-journey-image{
		padding: 40px var(--padding-left-right) 0;
		margin: 40px 0 0;
	} 
	
	.at-journey-year h4{
		font-size: 18px;
	}

	.at-journey-content .at-journey-title h3{
		font-size: 34px;	
	}
	
}

@media only screen and (max-width: 767px){
	
	.at-journey-carousel{
		padding-bottom: 60px;
	}
	
	.at-journey-box{
		--padding-left-right: 10px;
	}

	.at-journey-image img{
		max-width: 180px;
	}

	.at-journey-content{
		min-height: 180px;
	}

	.at-journey-year h4{	
		font-size: 16px;
		margin: 0 0 5px;
	}

	.at-journey-content .at-journey-title h3{
		font-size: 28px;
	}
	
	.at-journey-carousel .slick-arrow{
		width: 40px;
		height: 40px;
	}

	.at-journey-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 45px);
	}

	.at-journey-carousel .slick-arrow.next-arrow{
		right: calc(50% - 45px);
	}
	
	.at-journey-carousel .slick-arrow svg{
		width: 24px;
		height: 24px;
	}
	
	
}


