/*------------------------------------------------------***Style for Dev 2***------------------------------------------------------*/
.item-body * {
    transition: all 0.5s ease-in-out;
}
.item-body {
    overflow: hidden;
}
.img-icon {
    width: 70px !important;
    margin-bottom: 20px;
}
.prestation-container {
    text-align: center;
    border: 1px solid white;
    min-height: 450px;
}
.prestation-front {
    background: var(--e-global-color-color_2);
    color: white;
    padding: 20px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.prestation-back {
    background: var(--e-global-color-color_1);
    padding: 20px;
    position: absolute;
    height: calc(100% - 30px);
	width: calc(100% - 30px);
	margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(-480px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.prestation-text {
    font-family: 'Montserrat';
	color: var(--e-global-color-color_white) !important;
	
}
.prestation-front .prestation-h3 {
	color: var(--e-global-color-color_white) !important;
}
.prestation-btn {
    color: var(--e-global-color-color_white) !important;
    border-bottom: 1px solid currentcolor;
    font-family: 'Montserrat';
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.prestation-btn:before {
    content: "";
    width: 30px;
    height: 3px;
    background: currentcolor;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.prestation-back .prestation-h3{
	color: var(--e-global-color-color_white) !important;
}

/*Hover*/
.btn-style .slick-arrow i {
    transform: translateX(0px) !important;
}

.prestation-btn:hover:before {
    width: 100%;
}
.item-body:hover .prestation-back {
    transform: translateX(0px);
}


@media only screen and (max-width: 800px){
.item-body .prestation-back {
    transform: translateX(0px);
}
.prestation-container {
    min-height: 500px;
}
}