:root {

    /* FONT SIZES */
        
    --anchor-text-color: #9b9b9b;
    --gray-background-color: rgb(241, 241, 241);


    --header-text-color: aliceblue;


    --button-color: #e00f0f;
    --button-text-color: #ffffff;
    --button-border-radius: 1.75em;
    --button-padding: 0.7rem 2.5rem;
    --button-font-weight: 500;
    --letter-spacing: 2px;

}


*, html {
    margin: 0;
    left: 0;
    top: 0;
    /* font-size: 18px; */
}
  
body {
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    background-color: #dadada;
}
  
h1 {
    font-size: 5rem;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
    margin-top: 2em;
}

.services-header {
    margin: 3em auto;
}

a {
    text-decoration: none !important;
    color: var(--anchor-text-color);
    font-size: 0.8rem;
}

li {
    text-align: left;
}

.body-wrap {
    background-color: white;
    max-width: 70%;
    margin: auto;
}

/* THIS IS THE LOGO SECTION */

.logo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.social-container {
    display: flex;
    margin: auto;
}

.navbar-container > a:hover {
    background-color: rgb(31, 31, 31);
}


/* THIS IS THE NAVBAR STYLING */

.navbar-container {
    background: linear-gradient(to bottom,#ebbe16 0,#dd9210 100%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}



.navbar-home,
.navbar-services,
.navbar-about,
.navbar-contact {
    display: block;
    text-align: center;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 25px 0 24px 0;
    color: #fff;
    text-decoration: none;
}

.home-img {
    width: 100%;
}

.business-img {
    width: 80%;
}

.tv2-img,
.tv1-img {
    width: 100%;
}

.specialized-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 5em;
    margin-bottom: 5em;
}

.header-gold {
    font-weight: 400;
    color: #e2a212;

}

.specialized-right-container {

}

.header-gold {
    margin-top: 1em;
}

/* FOOTER SECTION */

.footer-section {
    background-color: rgb(15, 15, 15);
    color: #8C8C8C;
}

.footer-top-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 70%;
    margin: auto;
    padding-top: 2em;
}

.footer-right-container {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
}




/* SERVICES PAGE STYLING */

.services-top-container,
.services-mid-container,
.services-bot-container {
    margin: 2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.top-content-container {
    margin: auto;
}





/* ABOUT PAGE */

.about-section {
    margin: 5em;
}

.about-container {
    margin-top: 30vh;
    height: 50vh;
}

.about-container > p {
    margin: auto 3em;
}


/* CONTACT US */

.form-box {
    height: 70vh;
    max-width: 80%;
    margin: auto;
    padding: 50px;
    background: #ffffff;
    border: 10px solid #f2f2f2;
}

.form-box > p {
    margin-top: 5em;
}

.form-horizontal {
    margin-top: 20vh;
}

#name,
#phone,
#email {
    width: 80%;
    padding: 10px;
}

#msg {
    width: 50%;
}


@media (max-width:1200px) { 

    .body-wrap {
        max-width: 100%;
    }


}

@media (max-width:960px) { 


    .specialized-section {
        grid-template-columns:  1fr;
    }

}


@media (max-width:560px) { 

    .footer-top-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding-bottom: 2em;

    }

    .services-bot-container,
    .services-mid-container,
    .services-top-container {
        grid-template-columns: 1fr;
    }

    .footer-right-container,
    .footer-left-container {
        text-align: center;
    }

    .navbar-container {
        grid-template-columns: 1fr 1fr;
    }

    .form-horizontal {
        margin-top: 0;
    }

    .about-container {
        height: 100vh;
        margin-top: 0;
    }

    .about-container > p {
        margin: auto;
    }

}

@media (max-width:460px) { 

    .logo-section {
        grid-template-columns: 1fr;
    }

}