/* .services__container .elementor-shortcode{
	display: flex;
	column-gap: 60px;
} */
.services__container .slider-services{
	overflow: hidden;
}
.card.column-3{
	width: calc(100% / 3);
}
.card{
	position: relative;
}
.card .card-content{
	position: absolute;
	bottom: 0;
	display: flex;
	padding: 0 40px 50px;
	column-gap: 30px;
	align-items: center;
}
.card .image-content{
	position: relative;
}
.card .image-content img, .card .image-content div{
	border-radius: 8px;
	height: 430px;
    object-fit: cover;
	width: 100%;
}
.card .image-content div{
	position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #1C1E2A, #1463FF00);
    top: 0;
    border-radius: 10px;
}
.card .card-content__information{
	display: flex;
    flex-wrap: wrap;
}
.card .card-content__information .card-category{
	font-size: 15px;
	font-weight: 400;
	line-height: 18.9px;
	color: #fff;
	padding: 11px 10px 12px;
	background-color: #009FFD;
	border-radius: 10px;

}
.card .card-content__information h3{
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

}
.card .card-content__information h3, .card .card-content__information p{
	color: #FFF;
}
.card .card-content__information p, .card .card-link{
	display: none;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.card:hover .card-content__information p, .card:hover .card-link{
	display: block;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}
.card.glider-slide{
	margin: 0 30px;
}
.card .card-link{
	background: url(/wp-content/uploads/2024/08/arrow-tannua.svg) center / 10px no-repeat;
    background-color: #fff;
    border-radius: 100px;
    min-width: 64px;
    height: 64px;
}
/* NEW CARDS */
.card-service-container {
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	gap: 50px 60px;
  	width: 100%;
	align-items: start;
}
.card-service {
	display: flex;
/* 	height: 520px; */
	width: 100%;
	align-items: flex-end;
    padding: 30px 20px 30px 30px;
	border-radius: 4px;
	box-shadow: 0px 20px 30px rgba(28, 30, 42, 0.10) !important;
	position: relative;
	overflow: hidden;
}
.card-service .image-bg-service{
	position:absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	object-fit:cover;
	z-index: -1;
	border-radius:5px;
	transition: 0.3s;
}
.card-service:hover .image-bg-service{
	transform: scale(1.15);
}
.card-service:nth-child(4), .card-service:nth-child(6), .card-service:nth-child(7), .card-service:nth-child(8), .card-service:nth-child(9){
	position: relative;
	top: -80px;
}
.card-service:nth-child(even) {
    height: 520px;
	background-image: linear-gradient(180deg, transparent 0%, #FFF 100%);
}
.card-service:nth-child(even) h3{
	color: #27314D;
}
.card-service:nth-child(odd) {
    height: 440px;
	background-image: linear-gradient(180deg, #1463FF40 0%, #1C1E2A 84.31%);
}
.card-service .card-service__title {
	font-family: Plus Jakarta Sans;
	font-size: 26px;
	font-weight: 700;
	line-height: 36px;
	color: #FFF;
	margin: 0;
}
.card-service__btn {
	border-radius: 50%;
    min-width: 64px;
    border: none;
    height: 64px;
    background: #FFF;
	box-shadow: 0px 15px 36px 0px rgba(39, 49, 77, 0.25);
}
.card-service:hover .card-service__btn {
	background: #BDFFFD;
}
@media(max-width: 768px) {
	.card .image-content img, .card .image-content div {
		height: 270px;	
	}
	.card .card-content {
		padding: 25px 10px;
		height: 100%;
	}
	.card .card-content__information {
		height: 100%;
	}
	.card .card-content__information h3 {
		margin: 0;
	}
	.card .card-content__information .card-category {
		height: fit-content;
	}
	.card .card-content__information p {
		font-size: 14px;
		line-height: 24px;
	}
	.card:hover .card-link {
		position: absolute;
		top: 25px;
		right: 10px;
	}
	.card:hover h3 {
		padding-right: 80px;
	}
	.card:hover .card-content__information p {
		display: -webkit-box;
     	-webkit-line-clamp: 3;
     	-webkit-box-orient: vertical;
      	overflow: hidden;
      	text-overflow: ellipsis;
	}
	.card-service:nth-child(4), .card-service:nth-child(6), .card-service:nth-child(7), .card-service:nth-child(8), .card-service:nth-child(9){
		top: 0px;
	}
	/* NEW CARDS */
	.card-service-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.card-service {
		transform: inherit !important;
	}
	.card-service .card-service__title {
		font-size: 26px;
		line-height: 36px;
	}
	/* END NEW CARDS */
}