/*
 * Stack Team Carousel CSS
 * */

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

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

.stack-team-carousel .slick-slide{
	margin: 0 15px;
}

.stack-team-carousel .slick-list{
	margin: 0 -15px;
}

.stack-team-box{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid var(--e-global-color-primary);
}

.stack-team-box .team-image-container{
	position: relative;
}

.stack-team-box .team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.35;
/* 	aspect-ratio: 1 / 1.1; */
    object-fit: cover;
    object-position: 50% 0%;
/*     object-view-box: inset(4% -11% 0% -11%) */
}

.stack-team-box .team-image-container .title{
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px;
	transform: translateY(0);
	background-color: rgb(from var(--e-global-color-primary) r g b / 80%);
	transition: all 0.6s ease-in-out;
}

.stack-team-box:hover .team-image-container .title{
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
}

.stack-team-box .team-infobox{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px;
	transform: translateY(100%);
	background-color: rgb(from var(--e-global-color-primary) r g b / 80%);
	transition: all 0.6s ease-in-out;
	overflow-y: auto;
}

.stack-team-box:hover .team-infobox{
	transform: translateY(0);
}

.our-team-widget .stack-team-box .team-image-container .title,
.our-team-widget .stack-team-box .team-infobox{
	padding: 20px;
}

.stack-team-box .team-infobox::-webkit-scrollbar-track{
	background-color: #0000001a; 
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	border-radius: 10px;
}

.stack-team-box .team-infobox::-webkit-scrollbar{
	width: 3.5px;  
	background-color: #FFF; 
	border-radius: 10px;
}

.stack-team-box .team-infobox::-webkit-scrollbar-thumb{ 
	background: var(--e-global-color-accent); 
	border-width: 1;
	border-style: solid;
	border-color: transparent;
	border-radius: 10px;
}


.stack-team-box .team-image-container .title h3,
.stack-team-box .team-infobox .title h3{
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: 18px;
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: 1.3em;
    color: var(--white-color);
	margin: 0;
}

.our-team-widget .stack-team-box .team-image-container .title h3,
.our-team-widget .stack-team-box .team-infobox .title h3{
	font-size: 24px;
}

.stack-team-box .team-infobox .subtitle h5{
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 14px;
    font-weight: var(--e-global-typography-text-font-weight);
    font-style: var(--e-global-typography-text-font-style);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--white-color);
  	margin: 0;
	padding-top: 8px;
	transition: all 0.4s ease-in-out;
}

.our-team-widget .stack-team-box .team-infobox .subtitle h5{
	font-size: 16px;
}

.stack-team-box:hover .team-infobox .subtitle h5{
	padding-top: 2px;
}

.stack-team-box .team-infobox .infobox-header{
	border-bottom: 1px solid var(--white-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.stack-team-box .team-infobox .description p{
	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);
/*	display: -webkit-box;
   	-webkit-line-clamp: 4;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis; */
}

.stack-team-box .team-infobox .description p:last-child{
	margin-bottom: 0;
}

.stack-team-box .team-infobox .team-action a{
	display: inline-flex;
	align-items: center;
	gap: 15px;
	position: relative;
	color: var(--white-color);
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: 14px;
    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-radius: 100px;
    padding: 4px 4px 4px 20px;
	overflow: hidden;
	margin-top: 25px;
	transition: all 0.3s ease-in-out;
    z-index: 1;
}

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

.stack-team-box .team-infobox .team-action a:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: var(--white-color);
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.stack-team-box .team-infobox .team-action a:hover:before{
	right: auto;
    left: 0;
    width: 100%;
}

.stack-team-box .team-infobox .team-action a span{
	position: relative;
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

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

.stack-team-box .team-infobox .team-action a span:before{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 12px;
	transform: translate(-50%, -50%);
	background-color: var(--e-global-color-accent);
    mask-image: url("../images/button-right-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
    mask-size: 14px auto;
	transition: all 0.3s ease-in-out;
}

.stack-team-box .team-infobox .team-action a:hover span:before{
	transform: translate(200%, -50%);
}

.stack-team-box .team-infobox .team-action a span:after{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 12px;
	transform: translate(-100%, -50%);
	background-color: var(--white-color);
    mask-image: url("../images/button-right-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
    mask-size: 14px auto;
	transition: all 0.3s ease-in-out;
}

.stack-team-box .team-infobox .team-action a:hover span:after{
	left: 50%;
    transform: translate(-50%, -50%);
}

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

.at-custom-widget-pagination .slick-arrow:hover,
.at-custom-widget-pagination .slick-arrow:focus{
	background-color: var(--e-global-color-primary);
}

.at-custom-widget-pagination .slick-arrow.prev-arrow{
	background-image: url("../images/icon-arrow-prev.svg");
	left: -110px;
	right: auto;
}

.at-custom-widget-pagination .slick-arrow.next-arrow{
	right: -110px;
	left: auto;
}

/* Slider Was Disable CSS */
.stack-team-disable-slider{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.stack-team-disable-slider .slick-slide{
	display: block;
	width: calc(33.33% - 20px);
}

.stack-team-carousel .stack-team-box {
    max-width: 240px;
}


/* Make slick slides shrink-wrap the actual card width */
/* .stack-team-carousel .slick-slide {
    width: auto !important;
}
 */

/* Constrain the entire carousel width */
.stack-team-carousel {
    max-width: 900px;      
    margin: 0 auto;
}

/* Let slick do 3 slides, but center the card in each slide */
.stack-team-carousel .slick-slide {
    display: flex;
    justify-content: center;
}

/* Control card size + gap inside each slide */
.stack-team-carousel .stack-team-box {
    max-width: 240px;      /* size of each card */
    margin: 0 8px;         /* spacing between cards */
}

@media only screen and (max-width: 1550px){
	
	.stack-team-carousel{
		padding-bottom: 100px;
	}
	
	.at-custom-widget-pagination .slick-arrow{
		width: 45px;
		height: 45px;
		top: auto;
		bottom: 0;
		transform: translate(0);
		background-size: 26px auto;	
	}
	
	.at-custom-widget-pagination .slick-arrow.prev-arrow{
		left: calc(50% - 50px);
		right: auto;
	}

	.at-custom-widget-pagination .slick-arrow.next-arrow{
		right: calc(50% - 50px);
		left: auto;
	}
}

@media only screen and (min-width: 1025px){

	.stack-team-box .team-infobox .description p{
		font-size: 12px;
		line-height: 1.4;
	}
	
	.our-team-widget .stack-team-box .team-infobox .description p{
		font-size: var(--e-global-typography-text-font-size);
	}

	.stack-team-box .team-infobox{
		padding: 10px;
	}
}

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

	.stack-team-box .team-image img{
		
	}
	
	.stack-team-box .team-image-container .title{
		padding: 20px;
		background-color: rgb(from var(--e-global-color-primary) r g b / 70%);
	}

	.stack-team-box .team-infobox{
		padding: 20px;
		background-color: rgb(from var(--e-global-color-primary) r g b / 70%);
	}
	
/* 	.stack-team-carousel .slick-slide.slick-current.slick-active .stack-team-box .team-image-container .title{
		transform: translateY(100%);
	}
	
	.stack-team-carousel .slick-slide.slick-current.slick-active .stack-team-box .team-infobox{
		transform: translateY(0);
	} */
	
	.stack-team-box .team-infobox .subtitle h5,
	.stack-team-box:hover .team-infobox .subtitle h5{
		padding-top: 6px;
	}
	
	.stack-team-box .team-infobox .team-action a{
		margin-top: 15px;
	}
	
	/* Slider Was Disable CSS */
	.stack-team-disable-slider .slick-slide{
		width: calc(50% - 15px);
	}
	
	.stack-team-carousel .stack-team-box{
		max-width: 100%;
		margin: 0;
	}
	
	.our-team-widget .stack-team-box .team-image-container .title h3, .our-team-widget .stack-team-box .team-infobox .title h3{
		font-size: 20px;
	}
	
}

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

}

@media only screen and (max-width: 767px){
	
	.stack-team-box .team-image-container .title,
	.stack-team-box .team-infobox{
		padding: 20px 15px;
	}
	
	.stack-team-box .team-image img{
    	aspect-ratio: 1 / 1.2;
	}

	.stack-team-box .team-image-container .title h3,
	.stack-team-box .team-infobox .title h3{
		font-size: 18px;
	}
	
	.stack-team-box .team-infobox .infobox-header {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	
	.stack-team-box .team-infobox .subtitle h5{
		padding-top: 5px;
	}
	
	.stack-team-box:hover .team-infobox .subtitle h5{
		padding-top: 2px;
	}
	
	.our-team-widget .stack-team-box .team-image-container .title, .our-team-widget .stack-team-box .team-infobox{
		padding: 15px;
	}
	
	.our-team-widget .stack-team-box .team-image-container .title h3, .our-team-widget .stack-team-box .team-infobox .title h3 {
		font-size: 18px;
	}
	
	.our-team-widget .stack-team-box .team-infobox .subtitle h5{
		font-size: 14px;
	}
	
	.our-team-widget .stack-team-box .team-infobox .description p{
		font-size: 14px;
	}
	
	/* Slider Was Disable CSS */
	.stack-team-disable-slider .slick-slide{
		width: 100%;
	}
	
	.stack-team-carousel .slick-slide{
		margin: 0 4px !important;     /* try 0 4px; or 0 if you want no gap at all */
	}

	.stack-team-carousel .slick-list{
		margin: 0 -4px !important;    /* mirror the slide margin above */
	}
	
	.stack-team-carousel .stack-team-box {
    max-width: 240px;
}
	
	.stack-team-carousel .stack-team-box{
		max-width: 100%;          /* let the card use the whole slide */
		margin: 0;                /* no extra inner gap */
	}
}


/*
 * Services Carousel CSS
 * */
.services-carousel{
	opacity: 0;
	visibility: hidden;
	cursor: grab;
}

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

.services-carousel .slick-track{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.services-carousel .slick-slide{
	margin: 0 15px;
	height: auto;
}

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

.service-box{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-box .service-image img{
	width: 100%;
	aspect-ratio: 1 / 1.13;
    object-fit: cover;
	border-radius: 10px;
}

.service-box .service-infobox{
	flex: 1;
	position: relative;
	width: calc(100% - 30px);
	margin: -120px 0 0 auto;
	padding: 30px;
	background-color: var(--white-color);
	border-radius: 0 0 10px 10px;
	border-bottom: 3px solid var(--e-global-color-accent);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-box:hover .service-infobox{
	background-color: var(--e-global-color-accent);
	border-color: var(--white-color);
}

.service-box .service-infobox .title h3{
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var( --e-global-typography-secondary-font-size );
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: 1.3em;
	transition: all 0.3s ease-in-out;
	margin: 0;
}

.service-box:hover .service-infobox .title h3{
	color: var(--white-color);
}

.service-box .service-infobox .description{
	color: var( --e-global-color-text );
	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);
	margin-top: 20px;
	transition: all 0.3s ease-in-out;
}

.service-box:hover .service-infobox .description{
	color: var(--title-color);
}

.service-box .service-infobox .description ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-box .service-infobox .description ul li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
}

.service-box .service-infobox .description ul li:last-child{
	margin-bottom: 0;
}

.service-box .service-infobox .description ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	background-color: var(--e-global-color-accent);
	mask-image: url("../images/icon-list-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: 16px auto;
	transition: all 0.3s ease-in-out;
}

.service-box:hover .service-infobox .description ul li:before{
	background-color: var(--title-color);
}

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

.service-box .service-infobox .service-action{
	margin-top: 25px;
}

.service-box .service-infobox .service-action a{
	display: inline-flex;
	align-items: center;
	gap: 15px;
	position: relative;
	color: var(--title-color);
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: 14px;
    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-radius: 100px;
    padding: 4px 4px 4px 20px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
    z-index: 1;
}

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

.service-box:hover .service-infobox .service-action a:hover{
	color: var(--white-color);
}

.service-box .service-infobox .service-action a:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
	z-index: -1;
}

.service-box .service-infobox .service-action a:hover:before{
	right: auto;
    left: 0;
    width: 100%;
}

.service-box .service-infobox .service-action a span{
	position: relative;
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

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

.service-box:hover .service-infobox .service-action a:hover span{
	background-color: var(--white-color);
}

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

.service-box:hover .service-infobox .service-action a span:before{
	background-color: var(--white-color);
}

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

.service-box .service-infobox .service-action a span:after{
	content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 12px;
	transform: translate(-100%, -50%);
	background-color: var(--e-global-color-primary);
    mask-image: url("../images/button-right-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
    mask-size: 14px auto;
	transition: all 0.3s ease-in-out;
}

.service-box .service-infobox .service-action a:hover span:after{
	left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1550px){
	
	.services-carousel{
		padding-bottom: 100px;
	}
}

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

	.service-box .service-image img{
		aspect-ratio: 1 / 1.05;
	}
}

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

	.service-box .service-infobox{
		width: calc(100% - 20px);
		margin: -60px 0 0 auto;
		padding: 20px;
	}	
}

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


/*
 * Chargebacks Carousel CSS
 * */
.chargebacks-carousel-widget{
	overflow-x: clip;
}

.chargebacks-carousel{
	opacity: 0;
	visibility: hidden;
	cursor: grab;
	padding-bottom: 100px;
}

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

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

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

.chargebacks-box{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.chargebacks-box .chargebacks-image img{
	width: 100%;
	aspect-ratio: 1 / 0.98;
    object-fit: cover;
	border-radius: 10px;
}

.chargebacks-box .chargebacks-infobox{
	position: absolute;
	width: calc(100% - 130px);
	left: 0;
	bottom: 0;
	padding: 40px 30px;
	background-color: var(--e-global-color-accent);
	border-radius: 0 10px 0 10px;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out;
	z-index: 1;
}

.chargebacks-box:hover .chargebacks-infobox,
.chargebacks-carousel .slick-slide.active .chargebacks-infobox{
	opacity: 1;
	visibility: visible;
}

.chargebacks-box .chargebacks-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: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: 1.3em;
	margin: 0;
}

.chargebacks-box .chargebacks-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);
	margin-top: 20px;
}

.chargebacks-box .chargebacks-infobox .description ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.chargebacks-box .chargebacks-infobox .description ul li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
}

.chargebacks-box .chargebacks-infobox .description ul li:last-child{
	margin-bottom: 0;
}

.chargebacks-box .chargebacks-infobox .description ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	background-color: var(--white-color);
	mask-image: url("../images/icon-list-arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: 16px auto;
}

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

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

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

.chargebacks-carousel .slick-arrow.prev-arrow{
	background-image: url("../images/icon-arrow-prev.svg");
	left: calc(50% - 60px);
	right: auto;
}

.chargebacks-carousel .slick-arrow.next-arrow{
	right: calc(50% - 60px);
	left: auto;
}

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

	.chargebacks-box .chargebacks-infobox{
		width: calc(100% - 60px);
	}
	
	.chargebacks-carousel .slick-arrow{
		width: 45px;
		height: 45px;
		background-size: 26px auto;
	}
	
	.chargebacks-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 55px);
	}

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

@media only screen and (max-width: 1024px){
	
	.chargebacks-carousel{
		padding-bottom: 80px;
	}
	
	.chargebacks-carousel .slick-track{
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
	}
	
	.chargebacks-carousel .slick-slide{
		height: auto;
	}
	
	.chargebacks-box{
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	
	.chargebacks-box .chargebacks-image img{
		aspect-ratio: 1 / 1.05;
	}

	.chargebacks-box .chargebacks-infobox{
		flex: 1;
		position: relative;
		width: calc(100% - 30px);
		margin: -120px 0 0 auto;
		left: initial;
		bottom: initial;
		padding: 30px;
		border-radius: 0 0 10px 10px;
		opacity: 1;
		visibility: visible;
	}
}

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

	.chargebacks-box .chargebacks-infobox{
		width: calc(100% - 20px);
		margin: -60px 0 0 auto;
		padding: 20px;
	}
}

