body {
    font-family: 'Exo', sans-serif;
}

#Ar {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.container {
    max-width: 960px;
    /* background-color: #4caf50; */
    margin: .6em auto;
    display: grid;
    /* grid-template-columns: 1fr;
    column-gap: 1em; */
    /* background-color:antiquewhite; */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    margin: 20px 15px 20px 15px;

}

.lang {
    background-color: #2D7894;
    color: #fff;
    padding: 10px 30px 10px 30px;
    border: 2px #2D7894 solid;
    border-radius: 6.02px;
    text-decoration: none;

}

.Header-Module img {
    width: 100px;
    height: auto;
}

.Header-Module {
    margin-top: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.Module-list {
    margin-top: 60px;
    display: grid;
    column-gap: 4em;
    row-gap: 3em;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    margin-bottom: 60px;
}

.Module-list div {
    padding: 10px;
    line-height: 2;

    border: 1px solid #2D78940D;
    border-radius: 25px;
    background-color: #2D78940D;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 125px;

}

p {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
}

footer {

    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {
    .Module-list {
        margin-top: 60px;
        display: grid;
        column-gap: 4em;
        row-gap: 3em;
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        margin-bottom: 60px;
    }
    .container {

    margin-right: 30px;
    margin-left: 30px;

}
}

@media (max-width: 768px) {
    .Module-list {
        margin-top: 60px;
        display: grid;
        column-gap: 4em;
        row-gap: 3em;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        margin-bottom: 60px;
    }
     .container {
        margin-right: 30px;
        margin-left: 30px;
    }

}

@media (max-width: 576px) {
    .Module-list {
        margin-top: 60px;
        display: grid;
        column-gap: 4em;
        row-gap: 3em;
        grid-template-columns: repeat(1, 1fr);
        align-items: stretch;
        margin-bottom: 60px;
    }

    .container {
       min-width: 546px;
    }
}