*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #555;
}

a{
    color: black;
}

ul{
    list-style: none;
}

h3.title{
    color: black;
    text-transform: capitalize;
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
}

hr{
    width: 150px;
    height: 2px;
    background-color: #000;
    border: 0;
    margin: 40px auto;
}

#comments p{
    text-align: center;
    font-size: 20px;
    color: #000;
}

/*---------------
NEWS
---------------*/

#news{
    background-color: black;
    background-attachment: scroll;
    background-position: center;
    background-image: url('img/news.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    background-size: contain;
    text-align: center;
    color: #ff9900;
    font-size: 20px;
}

#news h5{
    font-size: 19px;
}

#news h5 a{
    color: #ff9900
}

#news h2{
    color: #ff9900;
    margin-bottom: 25px;
}

/*---------------
WHAT-WE-DO
---------------*/

#what-we-do{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#what-we-do ul.grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

#what-we-do p{
    margin-bottom: 20px;
}

#what-we-do ul.grid li{
    flex-basis: 20%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.ico{
    font-size: 30px;
    color: #ff9900;
    margin-bottom: 20px;
}

#what-we-do ul.grid li h4{
    color: #000;
    font-size: 20px;
    margin-bottom: 0;
}

#what-we-do ul.grid li p{
    text-align: left;
    margin: 0;
}

@media(max-width:1000px){
    #what-we-do{
        padding: 0 40px;
    }
    
    #what-we-do ul.grid li{
        flex-basis: 70%;
        margin-bottom: 65px;
    }
    
    #what-we-do ul.grid li p{
        text-align: center;
    }
    
}

#button a.btn{
    color: black;
    background-color: #ff9900;
    text-decoration: none;
    padding: 20px 46px;
    border-radius: 8px;
    text-transform: none;
    font-weight: bold;
    text-align: center;
    opacity: 1;
    border: 2px solid black;
            }
            
#button a.btn:hover{
    background-color: black;
    color: #ff9900;
}

/*---------------
ABOUT
---------------*/

#about{
    padding: 10px;
    background-color: #ff9900;
    margin-bottom: 20px;
}

#two-cols{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-img{
    border: 6px solid #000;
    background-color: #000;
}

.about-bio{
    width: 65%;
    max-width: 800px;
    line-height: 2;
    margin-left: 20px;
    color: #000;
}

@media(max-width:600px){
    #about, #two-cols{
        flex-direction: column;
    }
    
    .about-bio{
        margin-top: 20px;
        line-height: 1.5;
        text-align: left;
    }
}

/*---------------
HERO
---------------*/

#hero{
    background: black;
    color: #ff9900;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-image: url('img/background.png');
    
    min-height: 100vh
}
#hero h1, #hero h3{
    font-size: 28px;
    margin-bottom: 40px;
}
            
#hero h1{
    font-size: 60px;
    margin-bottom: 15px;
}
            
#hero a.btn{
    color: #ff9900;
    background-color: black;
    text-decoration: none;
    padding: 20px 46px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    opacity: 1;
    border: 2px solid #ff9900;
            }
            
#hero a.btn:hover{
    background-color: #ff9900;
    color: black;
}
            
@media(max-width:800px){
                
    #hero{
        min-height: 600px;
    }
    #hero h1{
        font-size: 36px;
    }
    
    #hero h3{
        font-size: 18px;
    }
    
    #hero a.btn{
        padding: 15px 40px;
    }
    
    #button a.btn{
      padding: 15px 40px;
    }
}

/*---------------
FOOTER
---------------*/

footer{
    background-color: #ff9900;
    color: white;
    text-align: center;
    background: linear-gradient(to bottom, #ff9900, #000 100%);
    padding: 60px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p{
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-bottom: 10px;
}

footer ul{
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
}

footer ul li{
    margin: 0 8px;
}

footer ul li a{
    font-size: 36px;
    cursor: pointer;
}

@media(max-width: 800px){
    footer{
        padding: 80px 15px;
    }
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif; 
}

#button a.btn{
    color: #ff9900;
    background-color: black;
    text-decoration: none;
    padding: 20px 46px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    opacity: 1;
    border: 2px solid #ff9900;
            }
            
#button a.btn:hover{
    background-color: #ff9900;
    color: black;
}