:root{
    --color-primary:rgba(30, 170, 63, 0.795);
    /* --color-secondary:; */
    --color-overlay: rgba(0, 0, 0, 0.658);
    --animation-time:0.75s;
}



@media screen and (min-width:770px)  and (max-width:890px){
    #navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0px;
        width: 100%;
    }
    .nav-bar::before{
        content: "";
        opacity: 0.5;
        background-color: rgb(5, 5, 5);
        height: 120px;
        width: 100%;
        z-index: -10;
        position: absolute;
        left: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
    }
    .nav-bar{
        display: flex;
        justify-content: center;
        padding: 0px 15px 0px 15px;
        position: fixed;
        top:0px;
        width: 100%;
        
}
.nav-bar{
    display: flex;
    justify-content: space-between;
    padding: 0px 15px 0px 15px;
    position: fixed;
    top:0px;
    width: 100%;
    z-index: 11;

}
 
    .flex-boxes-2{
        display: flex;
        flex-direction: column;
        flex: 100%;
        max-width: 100%;
        background-color: #28a745;
    
    }
    .second-panel,.first-panel{
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
        
    } 
}
@media screen and (min-width:522px) and (max-width:769px) {
    #navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0px;
        width: 100%;
    }
    .nav-bar::before{
        content: "";
        opacity: 0.5;
        background-color: rgb(5, 5, 5);
        height: 120px;
        width: 100%;
        z-index: -10;
        position: absolute;
        left: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
    }
    .nav-bar{
        display: flex;
        justify-content: space-between;
        padding: 0px 15px 0px 15px;
        position: fixed;
        top:0px;
        width: 100%;
        
}
.nav-bar{
    display: flex;
    justify-content: space-between;
    padding: 0px 15px 0px 15px;
    position: fixed;
    top:0px;
    width: 100%;
    z-index: 11;

}
.content{
    padding-left: 20px;
    padding-right: 20px;
    

}
.content h1{
    margin-bottom: 10px;
    line-height: 4rem;
}
    #about .flex-boxes{
        display: flex;
        flex-direction:column;
        flex-grow: 1;
        flex-wrap: wrap;
        flex-basis: 32.8%;
        justify-content: center;
        align-items: center;
        padding: 25px;
        
    }
    #navbar ul{
        padding: 5px;
        list-style: none;
    }
    .flex-boxes-2{
        display: flex;
        flex-direction: column;
        flex: 100%;
        max-width: 100%;
        background-color: #28a745;
    
    }
    .second-panel,.first-panel{
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
        
    } 
    #whoweare .flex-team {
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;  
        padding-left: 20px;
        padding-right: 20px;  
        margin: auto;
        margin-bottom: 40px;
    }
    #whoweare .flex-team div {
        flex-basis: 32.8%;
        flex-grow: 1;
        padding: 85px;
        padding-top: 15px;}
    
    #whoweare {
        padding: 20px 40px;}
    }


@media screen and (max-width:521px) {
    .hero-header-responsive{
    
        background-image: url('../images/home/showcase.jpg');
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
        height: 100vh;
        opacity: 0.95;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
    }
    .hero-header-responsive::before{
        content: "";
        opacity: 0.5;
        background-color: rgb(0, 0, 0);
        height: 100vh;
        z-index: -10;
        position: absolute;
        left: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
    }
    .hero{
        display: none;
    }
    .hero-header-responsive{
        display: block;
    }
    .menu-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
      }
      
      .menu-wrap .toggler {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        cursor: pointer;
        width: 50px;
        height: 50px;
        opacity: 0;
      }
      
      .menu-wrap .hamburger {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 60px;
        height: 60px;
        padding: 1rem;
        background: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      /* Hamburger Line */
      .menu-wrap .hamburger > div {
        position: relative;
        flex: none;
        width: 100%;
        height: 2px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
      }
      
      /* Hamburger Lines - Top & Bottom */
      .menu-wrap .hamburger > div::before,
      .menu-wrap .hamburger > div::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: -10px;
        width: 100%;
        height: 2px;
        background: inherit;
      }
      
      /* Moves Line Down */
      .menu-wrap .hamburger > div::after {
        top: 10px;
      }
      
      /* Toggler Animation */
      .menu-wrap .toggler:checked + .hamburger > div {
        transform: rotate(135deg);
      }
      
      /* Turns Lines Into X */
      .menu-wrap .toggler:checked + .hamburger > div:before,
      .menu-wrap .toggler:checked + .hamburger > div:after {
        top: 0;
        transform: rotate(90deg);
      }
      
      /* Rotate On Hover When Checked */
      .menu-wrap .toggler:checked:hover + .hamburger > div {
        transform: rotate(225deg);
      }
      
      /* Show Menu */
      .menu-wrap .toggler:checked ~ .menu {
        visibility: visible;
      }
      
      .menu-wrap .toggler:checked ~ .menu > div {
        transform: scale(1);
        transition-duration: var(--animation-time);
      }
      
      .menu-wrap .toggler:checked ~ .menu > div > div {
        opacity: 1;
        transition:  opacity 0.4s ease 0.4s;
      }
      
      .menu-wrap .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .menu-wrap .menu > div {
        background: var(--color-overlay);
        border-radius: 50%;
        width: 300vw;
        height: 300vw;
        display: flex;
        flex: none;
        align-items: center;
        justify-content: center;
        transform: scale(0);
        transition: all 0.4s ease;
      }
      
      .menu-wrap .menu > div > div {
        text-align: center;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
      }
      
      .menu-wrap .menu > div > div > ul > li {
        list-style: none;
        color: #ffffff;
        font-size: 1.5rem;
        padding: 1rem;
      }
      
      .menu-wrap .menu > div > div > ul > li > a {
        color: inherit;
        text-decoration: none;
        transition: color 0.4s ease;
      }
      
      .menu-wrap .menu > div > div > ul > li > a:hover {
        color: white;
        text-decoration: underline;
      }

.content h1{
    padding-left: 20px;
    padding-right: 20px;
    font-size: 55px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 4rem;
}
.content p{
    margin: 14px auto 25px auto;
    font-size: 24px;
    font-weight: 200;
}
#about .flex-boxes{
    display: flex;
    flex-direction:column;
    flex-grow: 1;
    flex-wrap: wrap;
    flex-basis: 32.8%;
    justify-content: center;
    align-items: center;
    padding: 25px;
    
}
.flex-boxes-2{
    display: flex;
    flex-direction: column;
    flex: 100%;
    max-width: 100%;
    background-color: #28a745;

}
.blog .flex-boxes-2{
    height: 100vh;
}
.second-panel,.first-panel{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    
} 
#cases .img-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
}
#whoweare .flex-team {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;  
    padding-left: 20px;
    padding-right: 20px;  
    margin: auto;
    margin-bottom: 40px;
}

#whoweare {
    padding: 20px 40px;
}
#cases{padding: 0px 25px;}
.case-header h2{line-height: 2.8rem;}
.section{
    height: 100vh;
}

}



    /* .hero.hamburger{
        position: fixed;
        left: 0;
        top: 0;
        z-index: 19px;
        
    }
    .hero .toggler{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
        cursor: pointer;
        height: 50px;
        width: 50px;
        opacity: 0;
    }
    .nav-bar.hamburger{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 19;
        height: 60px;
        width: 60px;
        padding: 1rem;
        background-color: var(--color-primary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    /*Hamburger Lines*/
    /* .nav-bar.hamburger > div{
        position: relative;
        flex: none;
        width: 100%;
        height: 2px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    } */

    /* Hamburger Lines - Top & Bottom */

    /* .nav-bar.hamburger .line::before,
    .nav-bar.hamburger .line::after{
        content: "";
        z-index: 20;
        position: absolute;
        top:-10px;
        width: 100%;
        height: 2px;
        background: white;
    }
    .nav-bar.hamburger .line::after{
        top: 10px;
    } */

    /* Toggler Animation */

    /* .hero .toggler:checked + .nav-bar.hamburger .line {
        transform: rotate(120deg);
    }
    .hero.hamburger .toggler:checked +.nav-bar.hamburger .line:before,.hero.hamburger .toggler:checked +.nav-bar.hamburger .line:after{
        top: 0px;
        transform: rotate(90deg);
    }
    
    .hero.hamburger .menu{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

    } */
    /*Show MENU*/

    /* .hero.hamburger .toggler:checked ~ .menu{
        visibility: visible;
    }
    .hero.hamburger .toggler:checked ~ .menu > div {
        transform: scale(1);
        transition-duration: var(--animation-time);
        
    }
    .hero.hamburger .toggler:checked ~ .menu > div > div{
        opacity: 1;
        transition: opacity 0.4s ease 0.4s;
    }
    .hero.hamburger .menu > div > div{
        background-color: var(--color-overlay);
        width: 200vh;
        height: 200vh;
        display: flex;
        flex: none;
        align-items: center;
        justify-content: center;
        transform: scale(0);
        transition: all 0.4s ease;
    }
    .hero.hamburger .menu > div > div {
        text-align: center;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
      }
    .hero.hamburger .menu nav ul{
        display: flex;
        flex-direction: column;
        z-index: 30;
    }
    #navbar ul li{margin: 10px;}
    #navbar ul li a{
        padding: 15px;
        color: black;
    }
    #navbar .logo{
        display: none;
    }
    .content{
        z-index: 9;
    } */ 


    /* #navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0px;
        width: 100%;
    }
    .nav-bar::before{
        content: "";
        opacity: 0.5;
        background-color: rgb(5, 5, 5);
        height: 120px;
        width: 100%;
        z-index: -10;
        position: absolute;
        left: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        background-size: cover;
    }
    
.nav-bar{
    display: flex;
    justify-content: space-between;
    padding: 0px 15px 0px 15px;
    position: fixed;
    top:0px;
    width: 100%;
    z-index: 11;

}



#navbar ul li a{
    color: #fff;
    padding: 10px 2px;
    margin: 0 5px;
    text-decoration: none;
}  */