@font-face {
    font-family: "Roboto";
    src: url("../../font/RobotoCondensed-Bold.ttf");
}

.download {
    width: 100%;
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: "Roboto";
}

.download .down {
    width: 100%;
    height: 900px;
    background-image: url("../../images/download/bg1.jpg");
    background-position: top;
    z-index: 10000;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.55);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.55);
}

.download .down .container {
    width: 80%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.title {
    width: 70%;
    height: 70px;
    background-image: url("http://localhost/assets/images/index/bg-text.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    position: relative;
}

.download .down .container .container_button {
    width: 40%;
    height: 130px;
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    /* Centre les boutons horizontalement */
    align-items: center;
    /* Centre les boutons verticalement */
}

.download .down .container .container_button a {
    text-decoration: none;
    color: #fff;
    width: 47%;
}

.download .down .container .container_button a .button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #283028;
    /* Couleur de fond principale */
    border: none;
    /* Supprime la bordure */
    border-radius: 8px;
    /* Coins arrondis */
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
    /* Effets de transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Ombre portée subtile */
}

.download .down .container .container_button a .button:hover {
    background-color: #45a049;
    /* Couleur de fond au survol */
    transform: translateY(-2px);
    /* Légère élévation au survol */
}

.download .down .container .container_button a .button .one,
.download .down .container .container_button a .button .two,
.download .down .container .container_button a .button svg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 33%;
}

.download .down .container .container_button a .button svg {
    margin-left: 10px;
    /* Espacement entre le texte et l'icône */
}

.download .down .container .container_img {
    width: 70%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.download .down .container .container_img .title_img {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccf800;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.download .down .container .container_img .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 210px;
    /* Hauteur fixe pour les boîtes d'images */
}

.download .down .container .container_img .content .image {
    flex: 1;
    /* Assure que chaque image occupe une portion égale de l'espace */
    margin: 0 1%;
    position: relative;
    border: 10px solid rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Hauteur égale à celle du conteneur .content */
}

.download .down .container .container_img .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajuste l'image pour couvrir le conteneur tout en conservant le ratio */
}

.download .down .container .container_img .content .image .desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
}