@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

:root {
    --white: #f7f7f7;
}
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: orator-std, monospace;
    /* font-family: 'Anonymous Pro', monospace; */
    line-height: 1.2;
    /* user-select: none; */
    
    
}
html,
body {
    overflow-x: hidden;
}

body {
    width: 100%;
    background: url(FreshPaint-42-2021.01.11-11.25.03.jpg) repeat top center / cover;
}

a {
    color : black;
    text-decoration: none;
}

ul {
    list-style-type: none;
}

img {
    width: 100%;
}

.text-header {
    display: flex;
    justify-content: flex-start;
    width: 400px;
    color: black;
    letter-spacing: 35px;
    padding: 76px 100px;
}

.text-header a {
    color: white;
    font-size: 28px;
    font-family: orator std, monospace;
    /* font-family: 'Anonymous Pro', monospace; */
}

nav ul {
    list-style: none;
}

nav li {
    width: fit-content;
    position: relative;
    margin-top: 5px;
}

/* nav li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: rgb(68, 67, 67);
    transition: 0.4s ease-out;
} */

nav li:hover::after{
    left: 0;
    width: 100%;
}

nav {
    padding: 80px 100px;
    height: 67vh;
}

nav a {
    color : black;
    background-color: #f7f7f7;
    font-size: 1.5em;
    letter-spacing: 0.5px;
}
nav a:hover {
    background-color:#00ff33;
    color: white;
}

/* =====NEW CODE ========== */

nav ul li a{
    position: relative;
    color: black;
    text-decoration: none;
    font-size: 19px;
    line-height: 15px;
    display: block;
    width: 100%;
}

nav ul ul{
    position: static;
    display: none;
}

nav ul .feat-show.show{
    display: block;
}

nav ul .serv-show.show1{
    display: block;
}

nav ul ul li{
    line-height: 42px;
}

nav ul ul li a{
    font-size: 17px;
    color: black;
    margin-left: 19px;
    padding-right: 0px;
    margin-right: -16px;
}

nav ul li.active ul li a{
    color : black;
    line-height: 12px;
    font-size: 19px;
}

nav ul li.active ul li a:hover{
    color: white;
}



/* ////////ROOTED //////////////////////// */

.rooted {
    background:white;
    height: auto;
}

.rooted img {
    padding: 50px 100px 0px 100px;
    width: 100%;
}
.rooted p {
    padding: 10px 50px 10px 50px;
}
.rooted-text {
    display: flex;
    justify-content: flex-start;
}
.rooted-text a {
    font-size: 30px;
    padding: 10px 50px 10px 50px;
    
}
.rooted iframe {
    padding: 20px 50px;
    width: 100%;
    height: 600px;
    border: none;
}

.feat-show2 {
    display: none;
  }
  
  .feat-show2.show {
    display: block;
  }

/* Media Queries */

@media (max-width: 768px) {
    body {
        background-size: auto;
    }

    .text-header {
        display: flex;
        align-items: center; 
        padding: 50px 30px;
        letter-spacing: 19px;
        margin-top: 20px;
    }

    .text-header a {
        font-size: 19px;
        padding: 2px 2px;
        font-weight: bold;
        color: white;
    }

    nav {
        padding-top: 0;
        padding-left: 30px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 1px 2px 1px 2px;
    }
    
    nav ul ul li a{
        font-size: 16px;
        padding-left: 5px;
        font-weight: normal;
        letter-spacing: normal;
    }
    nav ul li.active ul li a {
        line-height: 15px;
        font-size: 16px;
    }

}