* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: white;
    --dark: grey;
    --light: white;
    --shadow: 0 1px 5px rgba(130, 119, 119, 0.8);
 }

@font-face {
    font-family: futura;
    src: url(fonts/Futura\ Book\ font.ttf);
}

.container a:hover {
    color: gold;
}

a {
    color: beige;
    text-decoration: none;
}

body {
    background-color: beige;
    color: navy;
    font-family: futura;
    width: 100%;

    display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: ;
        grid-template-areas: 
            "header header header header header header"
            "nav nav nav nav nav nav"
            "slider slider slider slider slider slider"

            "services services services services services services"
            "Company_Overview Company_Overview Company_Overview Company_Overview Company_Overview Company_Overview"
            "about_image about_image about_image about_image about_image about_image"
            "Vision Vision Vision Vision Vision Vision"


            "footer footer footer footer footer footer"
}


header {
    grid-area: header;
    display: grid;
    width: 100%;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    font-size: 1rem;
    padding: .3rem 0;
    color: ;
}


nav {
    grid-area: nav;
    display: flex;
    justify-content: space-around;
    align-items: center;

 
    transition: background-color .4s ease-in-out ;
    /* background-color: beige; */
    box-shadow: var(--shadow);
    margin-top: .3rem;
    padding: 2rem 0;
    
}


nav h1 {
    font-size: 1rem;
    padding: 0rem 0rem;
    color: navy;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: navy;
    text-decoration: none;
    padding: .2rem 1rem;
    margin: 0 .5rem;
    box-shadow: var(--shadow);
    background-color: var(--shadow);
    font-size: 1rem;
}




/* SERVICES SECTION  */
.services {
    grid-area: services;
    display: grid;
    justify-content: center;
}

.services a {
    padding: .5rem 2rem;
    margin-top: 1rem;
    box-shadow: var(--shadow);
    color: navy;
}

.services a:hover {
  color: beige;

}


.Company_Overview {
    grid-area: Company_Overview;
    box-shadow: var(--shadow);
    padding: 2rem;
    background-color: beige;
}

.about_image {
    grid-area: about_image;
    background-color: beige;
}

.about_image img {
    width: 100%;
}

.Vision {
    grid-area: Vision;
    box-shadow: var(--shadow);
    padding: 2rem;
    background-color: beige;
}



/* FOOTER SECTION */


footer {
    display: grid;
    grid-area: footer;
    box-shadow: var(--shadow);
    background-color: rgb(87, 87, 87);
    
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: ;
    grid-template-areas:
                            "footer_social_links footer_info footer_info foot_logo"

    ;
}

footer ul li {
    list-style: none;
}


.footer_social_links {
    grid-area: footer_social_links;
    margin: 0rem 2rem;
    
}

.footer_social_links ul li a {
    display: flex;
    color: rgb(255, 255, 255);
    list-style: none;
    padding: 1rem;
}

.footer_social_links a:hover {
    color: royalblue;
}

.footer_info {
    grid-area: footer_info;
    display: grid;
    justify-content: center;
    padding: 1rem 1rem;
}

.footer_info ul li a {
    display: flex;
    color: rgb(255, 255, 255);
    list-style: none;
    padding: .5rem;
}


.footer_info ul li p {
    color: white;
}

.footer_info a:hover {
    color: royalblue;
}

.foot_logo {
    grid-area: foot_logo;
    display: grid;
    justify-content: start;
    align-items: center;
}

.foot_logo img {
    max-width: 70%;
}








@media screen and (max-width: 800px) {

    
    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    :root {
        --primary: white;
        --dark: grey;
        --light: white;
        --shadow: 0 1px 5px rgba(130, 119, 119, 0.8);
     }
    
    @font-face {
        font-family: futura;
        src: url(fonts/Futura\ Book\ font.ttf);
    }
    
    .container a:hover {
        color: gold;
    }
    
    a {
        color: beige;
        text-decoration: none;
    }
    
    body {
        background-color: beige;
        color: navy;
        font-family: futura;
        width: 100%;
    
        display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: ;
            grid-template-areas: 
                "header header"
                "nav nav"
                "slider slider"
    
            "services services"
                        "about_image about_image"
            "Company_Overview Company_Overview"

            "Vision Vision"
    
            "footer footer"
    }

    header {
        grid-area: header;
        display: grid;
        width: 100%;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow);
        font-size: .8rem;
        padding: .5rem 0;
        color: navy;
    }

    nav {
        grid-area: nav;
        display: grid;
        justify-content: center;
        align-items: center;
    
     
        transition: background-color .4s ease-in-out ;
        background-color: beige;
        margin-top: .3rem;
        padding: 0rem 0;
        padding-bottom: 2rem;
    }
    
    
    nav h1 {
        display: grid;
        justify-content: center;
        font-size: .8rem;
        padding: 1rem 0rem;
        color: navy;
    }
    
    nav ul {
        display: flex;
        list-style: none;
        justify-content: center;
    }
    
    nav ul li a {
        color: navy;
        text-decoration: none;
        padding: 0rem .5rem;
        margin: 0 .2rem;
        box-shadow: var(--shadow);
        background-color: var(--shadow);
        font-size: .9rem;
    }
    
    
    

    
    
/* SERVICES SECTION  */
.services {
    grid-area: services;
    display: grid;
    justify-content: center;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.services a {
    padding: .5rem 5rem;
    box-shadow: var(--shadow);
}

.services a:hover {
  color: gold;
  box-shadow: var(--shadow);
}

.Company_Overview {
    grid-area: Company_Overview;
    box-shadow: var(--shadow);
    padding: .5rem;
    background-color: beige;
    font-size: 1rem;
}

.about_image {
    grid-area: about_image;
}

.about_image img {
    width: 100%;
}

.Vision {
    grid-area: Vision;
    box-shadow: var(--shadow);
    padding: .8rem;
    background-color: beige;
    font-size: .9rem;
}






/* FOOTER SECTION */


footer {
    display: grid;
    grid-area: footer;
    box-shadow: var(--shadow);

    
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: ;
    grid-template-areas:
                            "foot_logo foot_logo foot_logo foot_logo"
                            "footer_social_links footer_social_links footer_info footer_info"

    ;
}

footer ul li {
    list-style: none;
}


.footer_social_links {
    grid-area: footer_social_links;
    margin: 0rem .3rem;
    
}

.footer_social_links ul li a {
    display: flex;
    color: rgb(255, 255, 255);
    list-style: none;
    padding: 1rem;
    font-size: .8rem;
}

.footer_social_links a:hover {
    color: royalblue;
}

.footer_info {
    grid-area: footer_info;
    display: grid;
    justify-content: start;
    padding: 0rem 1rem;
}

.footer_info ul li a {
    display: flex;
    color: rgb(255, 255, 255);
    list-style: none;
    padding: .5rem;
    font-size: .8rem;
}

.footer_info ul li p {
    font-size: .8rem;
}

.footer_info a:hover {
    color: royalblue;
}

.foot_logo {
    grid-area: foot_logo;
    display: grid;
    justify-content: start;
    align-items: center;
}

.foot_logo img {
    max-width: 50%;
    padding: 1rem 2rem;
}



}