/*
 * Services Carousel CSS
 * */
.services-carousel-widget{
	overflow-x: clip;
}

.services-carousel{
	opacity: 0;
	visibility: hidden;
	cursor: grab;
}

.services-carousel.slick-initialized{
	opacity: 1;
	visibility: visible;
}

.service-box{
	position: relative;
	overflow: hidden;
	border-right: 1px solid var(--white-color);
}

.service-box .service-image img{
	width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.service-box .service-infobox{
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 65px 40px 40px;
	text-align: center;
	background: background-color: rgb(from var(--white-color) r g b / 10%);
	backdrop-filter: blur(15px);
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-box:hover .service-infobox{
	transform: translateY(0);
	opacity: 1;
}

.service-box .service-infobox .title{
	margin-bottom: 20px;
}

.service-box .service-infobox .title h3{
	color: var(--white-color);
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var( --e-global-typography-secondary-font-size );
    font-weight: 600;
    text-transform: var(--e-global-typography-secondary-text-transform);
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: var(--e-global-typography-secondary-line-height);
	margin: 0;
}

.service-box .service-infobox .description{
	color: var( --white-color );
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
    font-style: var(--e-global-typography-text-font-style);
    line-height: var(--e-global-typography-text-line-height);
}

.service-box .service-infobox .description ul li:not(:last-child){
	margin-bottom: 10px;
}

.service-box .service-infobox .description > *:last-child{
	margin-bottom: 0;
}

.service-box .service-infobox .service-action{
	line-height: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.service-box .service-infobox .service-action a{
	display: inline-block;
	position: relative;
	width: 60px;
	height: 60px;
	color: var(--white-color);
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: 0;
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    font-style: var(--e-global-typography-accent-font-style);
    line-height: var(--e-global-typography-accent-line-height);
    background-color: var( --e-global-color-accent );
	border: 2px solid var(--white-color);
	border-radius: 50%;
    padding: 0;
	transition: all 0.3s ease-in-out;
}

.service-box .service-infobox .service-action a:hover{
	background-color: var( --e-global-color-primary );
}

.service-box .service-infobox .service-action a:before{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 18px;
	transform: translate(-50%, -50%) rotate(-45deg);
	background-color: var(--white-color);
    mask-image: url("../images/button-right-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
    mask-size: 24px auto;
	transition: all 0.3s ease-in-out;
}

.service-box .service-infobox .service-action a:hover:before{
	transform: translate(-50%, -50%) rotate(0deg);
}

.services-carousel .slick-arrow{
	outline: none;
	border: none;
	padding: 0;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	bottom: auto;
	transform: translate(0, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--white-color);
	background-color: var(--e-global-color-accent);
	background-image: url("../images/icon-arrow-next.svg");
	background-repeat: no-repeat;
	background-position: center left 12px;
	background-size: 36px auto;
	border-radius: 50%;
	z-index: 10;
	transition: all 0.3s ease-in-out;
}

.services-carousel .slick-arrow:hover,
.services-carousel .slick-arrow:focus{
	background-color: var(--e-global-color-primary);
}

.services-carousel .slick-arrow.prev-arrow{
	background-image: url("../images/icon-arrow-prev.svg");
	background-position: center right 12px;
	left: -50px;
	right: auto;
}

.services-carousel .slick-arrow.next-arrow{
	right: -50px;
	left: auto;
}

@media only screen and (max-width: 1500px){
	
	.service-box .service-infobox{
		padding: 65px 30px 30px;
		transform: translateY(0);
		opacity: 1;
	}

	.services-carousel .slick-arrow{
		width: 80px;
		height: 80px;
		background-position: center left 8px;
		background-size: 28px auto;
	}
	
	.services-carousel .slick-arrow.prev-arrow{
		background-position: center right 8px;
		left: -40px;
	}

	.services-carousel .slick-arrow.next-arrow{
		right: -40px;
	}
}

@media only screen and (max-width: 1024px){
	
	.service-box .service-infobox{
		padding: 55px 25px 25px;
	}

	.service-box .service-infobox .service-action a{
		width: 50px;
		height: 50px;
	}

	.service-box .service-infobox .service-action a:before{
		width: 20px;
		height: 15px;
		mask-size: 20px auto;
	}	
}

@media only screen and (max-width: 991px){
	
	.service-box .service-image img{
		aspect-ratio: 1 / 1.2;
	}

	.services-carousel .slick-arrow{
		width: 54px;
		height: 54px;
		background-position: center left 4px;
		background-size: 24px auto;
	}

	.services-carousel .slick-arrow.prev-arrow{
		background-position: center right 4px;
		left: -25px;
	}

	.services-carousel .slick-arrow.next-arrow{
		right: -25px;
	}
}


/*
 * Horizontal Accordion CSS
 * */
.horizontal-accordion-panel-item{
	height: 100%;
}

.horizontal-accordion-panel-item .panel-image{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	line-height: 0;
	height: 100%;
}

.horizontal-accordion-panel-item .panel-image:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(30, 26, 27, 0.00) 0%, rgba(30, 26, 27, 0.80) 100%);
	backdrop-filter: blur(3px);
}

.horizontal-accordion-panel.as-opened .horizontal-accordion-panel-item .panel-image:after{
	backdrop-filter: blur(0);
}

.horizontal-accordion-panel-item .panel-image img{
	aspect-ratio: 1/1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.horizontal-accordion-panel-item .panel-close-content{
    bottom: 0 !important;
    padding: 0 80px 0 0;
    z-index: 1;
}

.horizontal-accordion-panel-item .vertical-content-box h3{
	color: var(--white-color);
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: 26px;
    font-weight: 600;
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: var(--e-global-typography-secondary-line-height);
	margin: 0;
}

.horizontal-accordion-panel-item .panel-close-content .box-action{
	position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 0;
}

.horizontal-accordion-panel-item .panel-close-content .box-action a{
	position: relative;
    background-color: var(--white-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.horizontal-accordion-panel-item .panel-close-content .box-action a:before{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 18px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--e-global-color-secondary);
    mask-image: url("../images/button-right-arrow.svg");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 24px auto;
    transition: all 0.3s ease-in-out;
}

.horizontal-accordion-panel-item .panel-close-content .box-action a:hover:before{
	transform: translate(-50%, -50%) rotate(90deg);
}

.horizontal-accordion-panel-item .panel-open-content{
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
}

.panel-open-content .content-box .box-action{
	position: absolute;
    top: 30px;
    left: auto;
    bottom: auto;
    right: 30px;
}

.panel-open-content .content-box .box-action a{
	position: relative;
    background-color: var(--white-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.panel-open-content .content-box .box-action a:before{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 18px;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: var(--e-global-color-secondary);
    mask-image: url("../images/button-right-arrow.svg");
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 24px auto;
    transition: all 0.3s ease-in-out;
}

.panel-open-content .content-box .box-action a:hover:before{
	transform: translate(-50%, -50%) rotate(0deg);
}

.panel-open-content .content-box .box-body .title{
	margin-bottom: 30px;
}

.panel-open-content .content-box .box-body h2{
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.panel-open-content .content-box .box-body .description p{
	color: var(--white-color);
}

.panel-open-content .content-box .box-body .description p:last-child{
	margin: 0;
}

/*.horizontal-accordion-panel-item .content-box{
	display: flex;
    flex-wrap: wrap;
    height: 100%;
}*/

@media only screen and (max-width: 1440px){
	
	.horizontal-accordion-panel-item .panel-close-content{
		width: 520px !important;
	}
	
}

@media only screen and (max-width: 1024px){
	
	.horizontal-accordion-panel-item .panel-close-content{
		display: flex;
        align-items: center;
        justify-content: space-between;
		gap: 20px;
        padding: 0px;
		width: auto !important;
		-moz-transform: rotate(0deg) translate(0, 0) !important;
		-webkit-transform: rotate(0deg) translate(0, 0) !important;
        transform: rotate(0deg) translate(0, 0) !important;
        top: 0 !important;
        bottom: auto !important;
        left: 20px !important;
        right: 20px !important;
	}
	
	.horizontal-accordion-panel-item .panel-close-content .box-action{
		position: relative;
	}
	
	.horizontal-accordion-panel-item .panel-close-content .box-action a{
		height: 40px;
   		width: 40px;	
	}
	
	.horizontal-accordion-panel-item .panel-close-content .box-action a:before{
		width: 18px;
		height: 18px;
		mask-size: 18px auto;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	
	.horizontal-accordion-panel-item .panel-close-content .box-action a:hover:before {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	
	.horizontal-accordion-panel-item .vertical-content-box h3{
		font-size: 24px;
	}
	
	.horizontal-accordion-panel-item .panel-open-content{
		padding: 20px;
	}
	
	.panel-open-content .content-box .box-body .title{
		margin-bottom: 20px;	
	}
	
	.panel-open-content .content-box .box-action{
		top: 20px;
		right: 20px;
	}
	
	.panel-open-content .content-box .box-action a{
		height: 40px;
   		width: 40px;
	}
	
	.panel-open-content .content-box .box-action a:before{
		width: 18px;
		height: 18px;
		mask-size: 18px auto;
	}
	
}

@media only screen and (max-width: 767px){
	
	.horizontal-accordion-panel-item .vertical-content-box h3{
		font-size: 22px;
	}
	
}

/*
 * Company History Carousel CSS
 *  */

.company-history-carousel{
	opacity: 0;
	visibility: hidden;
	cursor: grab;
}

.company-history-carousel.slick-initialized{
	opacity: 1;
	visibility: visible;
	padding-left: 15px;
}

.company-history-carousel:before{
	content: "";
	position: absolute;
	top: 15px;
	left: 20px;
	border: 1px dashed rgb(from var(--e-global-color-primary) r g b / 20%);
	width: calc(100% - 20px);
	height: 1px;
}

.company-history-carousel .slick-arrow{
	--left-right-arrow: -80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 40%;
	bottom: auto;
	width: 50px;
	height: 50px;
	padding: 0;
	background-color: var(--e-global-color-accent);
	background-image: url("../images/icon-arrow-next.svg");
	background-repeat: no-repeat;
	background-position: center left 12px;
	background-size: 26px auto;
	outline: none;
	border: none;
	border-radius: 10px;
	z-index: 10;
	transform: translate(0, -50%);	
	transition: all 0.3s ease-in-out;
}

.company-history-carousel .slick-arrow:hover,
.company-history-carousel .slick-arrow:focus{
	background-color: var(--e-global-color-primary);
}

.company-history-carousel .slick-arrow.prev-arrow{
	left: var(--left-right-arrow);
	right: auto;
	background-image: url("../images/icon-arrow-prev.svg");
	background-position: center right 12px;	
}

.company-history-carousel .slick-arrow.next-arrow{
	right: var(--left-right-arrow);
	left: auto;
}

.company-history-carousel .slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 60px 0 0;
    list-style: none;
}

.company-history-carousel .slick-dots li{
    margin: 0 4px;
}

.company-history-carousel .slick-dots li:first-child{
    margin-left: 0;
}

.company-history-carousel .slick-dots li:last-child{
    margin-right: 0;
}

.company-history-carousel .slick-dots li button{
    display: block;
	position: relative;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50px;
    background-color: rgb(from var(--e-global-color-primary) r g b / 10%);
    text-indent: -9999px;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.company-history-carousel .slick-dots li.slick-active button{
    width: 30px;
    background-color: var(--e-global-color-accent);
}

.company-history-carousel .slick-dots li button:focus{
    outline: none;
}

.company-history-carousel .slick-list{
	padding-top: 35px;
}

.company-history-carousel .history-box{
	display: flex;
    justify-content: center;
    align-items: flex-start;
	position: relative;
	padding-left: 20px;
}

.company-history-carousel .slick-active .history-box:before{
	content: "";
	position: absolute;
	top: -25px;
	left: 13px;
	bottom: auto;
	right: auto;
	border: 1px dashed rgb(from var(--e-global-color-primary) r g b / 20%);
	height: 140px;
	width: 1px;
}

.company-history-carousel .slick-active .history-box:after{
	content: "\f111";
	display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 0px;
    bottom: auto;
    right: auto;
    height: 30px;
    width: 30px;
    color: var(--e-global-color-accent);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 18px;
    background: transparent;
	transition: all 0.3s ease-in-out;
}

.company-history-carousel .slick-active.slick-current .history-box:before{
	border-color: var(--e-global-color-accent);
}

.company-history-carousel .slick-active.slick-current .history-box:after{
	 background: #B028211A;
}

.company-history-carousel .history-box .history-year-title h3{
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 40px;
	font-weight: 500;
	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);
	-webkit-text-stroke-width: 1px;
	stroke-width: 1px;
	-webkit-text-stroke-color: rgb(from var(--e-global-color-primary) r g b / 20%);
	stroke: rgb(from var(--e-global-color-primary) r g b / 20%);
	color: transparent;
	margin: 0;
	writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: fit-content;
	transition: all 0.4s ease-in-out;
}

.company-history-carousel .slick-active.slick-current .history-box .history-year-title h3{
	color: var(--e-global-color-accent);
	stroke-width: 0px;
    -webkit-text-stroke-width: 0px;
}

.company-history-carousel .history-box .history-infobox{
	padding: 0px 30px;
}

.company-history-carousel .history-box .service-box-icon{
	margin-bottom: 30px;
}

.company-history-carousel .history-box .history-infobox .icon-wrapper{
	display: flex;
    align-items: center;
    height: 50px;
    width: 50px;
    background: var(--e-global-color-secondary);
    border-radius: 10px;
    justify-content: center;
}

.company-history-carousel .history-box .history-infobox .icon-wrapper svg{
	height: 32px;
    width: 32px;
    color: var(--white-color);
}

.company-history-carousel .history-box .history-infobox .title{
	margin-bottom: 15px;
}

.company-history-carousel .history-box .history-infobox .title h3{
	font-family: var(--e-global-typography-secondary-font-family);
	font-size: var(--e-global-typography-secondary-font-size);
	font-weight: 600;
	text-transform: var(--e-global-typography-secondary-text-transform);
	font-style: var(--e-global-typography-secondary-font-style);
	line-height: var(--e-global-typography-secondary-line-height);
	margin: 0;
	
}

@media only screen and (max-width: 1500px){
	
	.company-history-carousel .slick-arrow{
		--left-right-arrow: -60px;
	}
	
}

@media only screen and (max-width: 1440px){
	
	.company-history-carousel{
		padding-bottom: 100px;
	}
	
	.company-history-carousel .slick-arrow{
		top: auto;
		bottom: 0;
	}
	
	.company-history-carousel .slick-arrow{
		--left-right-arrow: calc(50% - 60px);
		transform: translate(0, 0);
	}
		
}

@media only screen and (max-width: 1024px){
	
	.company-history-carousel {
		padding-bottom: 80px;
	}
	
	.company-history-carousel.slick-initialized{
		padding-left: 0;
	}
	
	.company-history-carousel .slick-arrow{
		width: 45px;
   		height: 45px;
		background-size: 24px auto;
		--left-right-arrow: calc(50% - 50px);
	}
	
	.company-history-carousel .slick-active .history-box:before{
		height: 120px;
	}
	
	.company-history-carousel .history-box .history-year-title h3{
		font-size: 34px;	
	}
	
	.company-history-carousel .history-box .history-infobox {
		padding: 0px 20px;
	}
	
	.company-history-carousel .history-box .service-box-icon {
		margin-bottom: 20px;
	}
	
	.company-history-carousel .history-box .history-infobox .title {
		margin-bottom: 10px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.company-history-carousel {
		padding-bottom: 75px;
	}
	
	.company-history-carousel .slick-arrow {
		width: 40px;
		height: 40px;
		background-size: 22px auto;
		--left-right-arrow: calc(50% - 45px);
		background-position: center left 10px;
	}
	
	.company-history-carousel .slick-arrow.prev-arrow{
		background-position: center right 10px;
	}
	
	.company-history-carousel .slick-active .history-box:after{
		top: -32px;
		left: 2px;
		height: 24px;
		width: 24px;
		font-size: 14px;
	}
	
	.company-history-carousel .history-box .history-year-title h3 {
		font-size: 30px;
	}
	
	.company-history-carousel .history-box .history-infobox {
		padding: 0px 0px 0px 15px;
	}
	
}
