.card {
    transition: all ease-in-out .3s;
}



/* LATEST NEWS CARD */
#front-page-latest-news .card {
    position: relative;
    aspect-ratio: 3/3;
    overflow: hidden;
}

#front-page-latest-news .card img {
    transition: all ease-in-out .3s;
}

#front-page-latest-news .card:hover>img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#front-page-latest-news .card::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(28, 28, 31, 0) 0%, #1C1C1F 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

#front-page-latest-news .card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#front-page-latest-news .card-body {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}




/* SERVICE CARD */
.service-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.service-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.service-card::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 28, 31, 0) 0%, rgba(28, 28, 31, 1) 100%);
    z-index: 2;
    transition: all ease-in-out .8s;
}

.service-card .card-body {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card:hover::after {
    background: linear-gradient(180deg, rgba(28, 28, 31, 0) 0%, rgba(28, 28, 31, 1) 100%);
}

.service-card:hover{
    transform: translateY(-8px);
}


/* TECHNOLOGY CARD */
.technology-card{
	transition: all ease-in-out .3s;
}
.technology-card:hover{
	transform: translateY(-8px);
}
/* ABOUT US CARD */