.Forma{
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(36,0,21,1) 20%, rgba(121,9,43,1) 51%, rgba(144,7,60,1) 75%, rgba(255,0,112,1) 100%);
    padding: 1%;
}
.Forma h2{
    font-size: 25px;
    margin:1% 0% 0% 28%;
    padding: 1%;
    background-color: #fff;
    text-align: center;
    margin-right: 0%;
}
.Forma p{
    font-size: 17px;
    text-align: justify;
    color: #fff;
    margin: 1% 8%;
}
.Formation{
margin: 1% 4%;    
}
.Formation a{
    text-decoration: none;
    margin: 0% 8%;
    color: rgb(255, 251, 251);
    font-size: 90%;
}
.Formation a:hover{
    color: rgb(41, 5, 5);
    transition: all 0.8s ease;
    background-color: #fff;
    font-size: 100%;
    font-weight: bolder;
}
.deboucher{
    display: flex;
    align-items: center;
    justify-content: center;
    color: burlywood;
    margin: 1%;
}
.h2{
    text-align:center;
    color: rgb(73, 71, 69);
    font-style: italic;
    text-decoration: underline;
 }
.menu2{
    background-color: antiquewhite;
    text-align: center;
    font-size: 15px;
    padding: 1%;
}
.objetcs{
    margin: 2% 10%;
    font-size: 16px;
    text-align: center;
}
/************************/
#popular-destination {
    padding: 0 4% ;
    margin-bottom: 50px;
    margin: 1%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#popular-destination .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 32px;
    margin: 2%;
}
#popular-destination .content .box {
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: 0.5s;
    text-align: center;
    border-radius: 15px;
    background-color: #29d9d5;
}
#popular-destination .content .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.box .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffffcb;
    text-align: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.5s;
    border-radius: 15px;
}
.box  h4 {
    font-size: 70%;
    margin-bottom: 10px;
    color: rgb(98, 100, 102);
    padding: 2%;
}
.box .content  h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgb(5, 5, 5);
}
.box .content p {
    padding: 2px;
    font-size: 12px;
}
.box .content p:nth-child(3){
    margin-bottom: 25px;
}
/* .box .content a {
    margin-top: 60px;
    padding: 10px 60px;
    border: 2px solid #29d9d5;
    color: #29d9d5;
    font-weight: bold;
} */
.box:hover {
    box-shadow: 0 0 10px #29d9d5;
}
.box:hover .content {
    transform: translateX(0);
}
/************************/
@media (max-width: 800px) {
    .Forma h2{
        font-size: 20px;
        margin:2% 0% 0% 16%;
        padding: 2%;
        margin-right: 0%;
    }
    .Forma p{
        font-size: 14px;
        margin: 2% 4%;
    }
    .deboucher{
        font-size: 12px;
    }
}
@media (max-width: 400px) {
     .objetcs{
        font-size: 14px;
        width: 95%;
        margin: 2%;
    }
    .h2{
        font-size: 20px;
     }
}