/*=============================
	Start Formations CSS 
===============================*/
.card .card-title {
    border-left: 2px solid #d61a78;
    padding: 10px;
    font-size: 20px;
    font-family: 'Crete Round', sans-serif;
    text-transform: uppercase;
}

.card .card-text {
    border-left: 2px solid #164bbe;
    padding: 10px;
    margin-top: 10px;
}

.card .price {
    color: #11757a;
    border-left: 2px solid #11757a;
    padding: 10px;
    font-size: 20px;
    font-family: 'Crete Round', sans-serif;
}

.card:hover {
    border-left: 2px solid #11757a;
    border-bottom: 2px solid #11757a;
    transform: translateY(-5px);
    transition: 0.4s ease-in-out;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/*=============================
	Start About CSS 
===============================*/
.choose-left h2 {
    font-weight: 400px;
    font-size: 24px;
    padding: 5px;
    border-left: 2px solid #fd6603;
}

/*=============================
	Start Blog CSS 
===============================*/

/* Blog Meta */

.author {
    display: flex;
    align-items: center;
}

.news-single .meta-left .author .circle {
	border-radius: 100%;
	margin-right: 12px;
    width: 40px;
    height: 40px;
    background-color: #fd6603;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Styles CSS Popup */
.popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #11757a;
    border: none;
    padding: 20px;
    z-index: 9999;
    animation: fadeInUp 1s ease-in-out; /* Animation d'entrée */
    color: white;
    border-radius: 5px;
}

/* span.close {
    cursor: pointer;
    padding-left: 20px;
    color: white;
    font-weight: bold;
    
} */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}