/*
    @author: Nizar El yaakoubi 5AIN
*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Raleway', sans-serif;
    background: #fff;
}
.top-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background: #252525;
    color: #fff;
    padding: 20px 30px;
}
ul{
    list-style: none;
    background-color: #000;
}
a{
    text-decoration: none;
    color: #000;
    font-family: sans-serif;
    font-size: 12px;
}
.navigation-container{
    display: flex;
    background: #252525;
    align-items: center;
    flex-wrap: wrap;
    font-size: 25px;
    font-family: 'Courier New', Courier, monospace;
}
.nav-bar{
    flex: 1 0 auto;
    height: 100%;
    background: transparent;
    }
.nav-bar nav ul{
    display: flex;
    justify-content: center;
}
.nav-bar nav ul li{
    padding-right: 30px;
}

.nav-bar nav ul li:hover{
    background: none;
}

.nav-bar ul li{
    text-align: center;
    display: block;
    padding: 15px 0;
    transition: background 1s ease;
}
.nav-bar ul li:hover{
    background: #d1cece;
}

.nav-bar ul li a{
    color: #fff;
    text-transform: uppercase;
}

.nav-bar ul li a:hover{
    text-decoration: underline;
}
.banner{
    grid-template-columns: 1fr;
    margin-top: 8px;
    text-align: center;
    align-items: center;
    margin-left: 25%;
    margin-right: 25%;
}

.banner-main-content{
    padding: 0 2rem;
    line-height: 1.7;
}

.banner-main-content h2{
    font-size: 2rem;
    font-family: var(--heading);
}

.banner-main-content h3{
    padding: 1rem 0;
}

.banner-main-content button{
    border: none;
    background: #252525;
    padding: 14px 18px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    transition: background 1s ease;
}

.banner-main-content button a{
    color: #f3f3f3f3;
    transition: color 1s ease;
}

.banner-main-content button:hover{
    background: #fff;
}

.banner-main-content button:hover a{
    color: #0d0a0b;
}
.banner{
    grid-template-columns: 1fr 2fr;
}


.current-news-head{
    background: #fff;
    padding: 20px;
    font-size: 12px;
    margin: 20px 0;
    text-align: left;
}

.current-news-head h3{
    padding: 6px;
    cursor: pointer;
    position: relative;
}

.current-news-head h3:hover::before{
    content: ">> ";
    position: absolute;
    left: -12px;
}

.current-news-head span{
    display: block;
    font-family: var(--heading);
    font-weight: 300;
    text-transform: uppercase;
}
.main-topic{
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 15%;
    margin-right: 15%;
    display: block;
    text-align: center;
}
.main-topic p{
    padding-top: 10px;
    font-size: 22px;
    font-family: sans-serif;
    color: rgba(0, 0, 0, 0.6)
}
footer{
    background: #252525;
    color: #f3f3f3;
    padding: 10px;
    position: static;
    width: 100%;
    height: 170px;
    margin-bottom: 0;
}

footer h2{
    padding: 10px 0;
    font-size: 30px;
}

footer p{
    padding: 10px 0;
    line-height: 1.3;
}

.footer-left, 
.footer-right{
    margin: 0 10px;
    font-size: 12px;
    flex: 1;
}

.copyright{
    text-align: center;
    opacity: 0.8;
    padding-top: 0px;
}

.footer-container{
    display: flex;
}
hr{
    width: 0%;
    min-width: 50%;
    max-width: 100%;
    margin: 0 auto;
    border: none;
    border-bottom: 1px solid 
}

