/* Hero section styles*/
.hero-section {
    background-image: url(../images/backrounds/hd-food-background.jpg);
    padding: 100px;
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section > .top-heading{
    background-color: #11122b;
    color: #cbcbcb;
    width: 290px;
    border-radius: 2px;
    padding: 1px 20px;
}

.hero-section > .bottom-heading{
    background-color: #cea135;
    color: #11122b;
    padding: 1px 20px;
    margin-top: 15px;
    width:107px;
    border-radius: 2px;
}

/*features action styles*/

.features-section{
    height: 400px;
    background-image: url(../images/backrounds/cea.png);
    background-color: #cea135;
    border-top: 10px solid white;
    color: #11122b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu Condensed" , sans-serif;
    box-shadow: inset 0px -26px 79px -8px rgba(0,0,0,0.58);
}

.features-section > .columns-wrapper{
    width: 1000px;
    display: flex;
    justify-content:space-between;
}

.features-section > .columns-wrapper > .column{

    padding: 20px;
    margin: 42px;
    text-align: center;
    border-bottom: 5px solid transparent;
    border-radius: 10px;
    transition: 1s;
}

.features-section > .columns-wrapper > .column:hover {
    border-bottom:5px solid #11122b;

}


.features-section > .columns-wrapper > .column :nth-child(1){
font-size: 3em;

}

.features-section > .columns-wrapper > .column :nth-child(2){
    font-size: 1.5em;
    font-weight: 900;
    height: 50px;
    transition: 1s;
}

.features-section > .columns-wrapper > .column :nth-child(2):hover{

    letter-spacing:1px;
}

.features-section > .columns-wrapper > .column :nth-child(3){

    letter-spacing: 2px;
}
/* bottom feature*/

.footer{
    background-color: #11122b;
    height: 400px;
    color: #cbcbcb;
    font-family: "Ubuntu Condensed", sans-serif;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction: column;
    margin-top: -4px;
    

}


.footer > .image-banner img{
    height: 80px;
    width:90px;
   /* filter:brightness(50%)*/
   opacity: 0.5;
   margin-bottom:10px;
}

.footer > .footer-phone-hours span {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1em;
    letter-spacing: 2px;
}

.footer > .footer-phone-hours > .hours {
    font-size: 0.8em;
    color: #cea135;
}

.footer > .links-wrapper{
    margin-top: 40px;
    margin-bottom: 40px;
    width: 400px;
}
    

.footer > .social-media-icons-wrapper{
    margin-top: 40px;
    margin-bottom: 40px;
    width: 300px;
    display:flex;
    justify-content: space-around;
}

.footer > .social-media-icons-wrapper a{
font-size:1.5em;
color: #cbcbcb;
transition: 0.5s;
} 

.footer > .social-media-icons-wrapper a:hover{
    color: #cea135;

} 

.footer > .copyright-wrapper{
    margin-bottom: 42px;
    font-size: 0.7em;
    color: #858585;

}