* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

body{
    max-width: 100%;
    overflow-x: hidden;
}
/* Big black box background */
.navbar {
    background: white;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items:center;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* container block for items on black bar */
.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 60px;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;  /* 2 values for margin, (top and bottom) (Left and Right) / 4 values for margin, (top right bottom left) */
    padding: 0 50px;
    /* border: solid blue; */

}

/* Next Logo */
#navbar__logo {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff9900 0%, #fabe85 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.9rem;
    margin-right: 5px;

    /* border: solid red; */

}

#navbar__name {
    color: black;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 600;
    /* border: solid green; */
    margin-right:auto;
    font-family: 'Kumbh Sans', sans-serif;

}



/* Menu for home tech products and signup  */
.navbar__menu{
    display:flex;
    align-items: center;
    list-style: none;
    text-align: center;

    /* border: solid green; */
}

.navbar__item{
    height: 80px;
}

/* flex container for navbar items  */
.navbar__links{
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; 
    padding: 0 1rem ;
    height: 100%;
    /* border: solid red; */

}

/* flex container for sign up button  */
/* .navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;

} */

/* red button for sign up  */
/* .button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color:#fff;


} */


/* .button:hover{
    background: #4837ff;
    transition: all 0.3s ease;
} */

.navbar__links:hover{
    color:#f77062;
    transition: all 0.3s ease;

}

@media screen and (max-width:947px){
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 60px;
        z-index: 1;
        width: 100%;
        margin: 0 0;  /* 2 values for margin, (top and bottom) (Left and Right) / 4 values for margin, (top right bottom left) */
        padding: 0 0px;
        /* border: solid blue; */
    }
    
    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        /* For mobile or reduced screen, it sets the menu to be out of frame */
        top: -1000px;          
        opacity: 0;
        transition: all 0.5 ease;
        height: 50vh;
        z-index: -1;
        background: linear-gradient(to top, #ff9900 0%, #fabe85 100%);
        /* border: solid green; */

    }

    .navbar__menu.active{
        background: linear-gradient(to bottom, #ff9900 0%, #fabe85 50%,#ff9900 100% );
        top: 100%;
        opacity:1;
        transition: all 0.5s ease, opacity 1.2s;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
        width: 100%;
        font-weight: 600;

    }

    #navbar__logo{
        padding-left: 25px;

    }

    .navbar__toggle{
        cursor: pointer;
    }

    .navbar__toggle .bar1{
        width:12px;
        height: 4px;
        margin: 5px 1px 5px 1px;
        transition: all 0.3s ease-in-out;
        background: orange;
        left: 5%;
        border-radius: 20%;
        
    } 

    .navbar__toggle .bar3{
        width:12px;
        height: 4px;
        margin: 5px 1px 5px 12px;
        transition: all 0.3s ease-in-out;
        background: orange;
        border-radius: 20%;
    } 


    .navbar__toggle .bar{
        width:24px;
        height: 4px;
        margin: 5px 1px;
        transition: all 0.3s ease-in-out;
        background: orange;
        border-radius: 20%;
    } 

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%,20%);
        /* border: solid red; */
    }

    .navbar__btn{
        padding-bottom: 2rem;
    }


    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
        
    }

    .navbar__toggle .bar1{
        display: block;
        cursor: pointer;
        
    }

    .navbar__toggle .bar3{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar1{
        transform: translateY(5px) translateX(1px) rotate(45deg);;
    }

    #mobile-menu.is-active .bar{
        transform:rotate(-45deg);
    }

    #mobile-menu.is-active .bar3{
        transform: translateY(-4.5px) translateX(-1px) rotate(45deg);
    }
}

/* Hero Section CSS */
.main{
    background-color: white;
    max-width: 100%;

}

.main__container{
    display: grid;
    grid-template-columns: 1fr 70px 1.5fr;
    align-items: flex-start;
    justify-self: flex-start;
    /* 90 vh is 90 viewport height (90% of screen) */ 
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    padding: 0 0px;
    height: 800px;

    /* border: solid red; */
}

.main__content{
    /* border: solid yellow; */
    width: 550px;
    margin-top: 170px;
    height: 630px;


}

.main__content h1{
    font-size: 4rem;
    /* background-color: #ff8177;
    background-image: linear-gradient(to top,#ff0844 0%, #ffb199 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    border: solid green; */
    color:#141414d4;


}

/* .main__content h2{
    font-size: 4rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top,#b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    border: solid blue;

} */

.main__content p{
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 300;
    color:solid black;
    /* border: solid purple; */



}

.main__btn{
    font-size: 1.1rem;
    background-image: linear-gradient(to top, #ff9900 0%, #fabe85 100%);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    /* transition: all 0.45s ease; */
    outline: none;
    font-weight: 800;

}

.main__btn a{
    position: relative;
    z-index: 2;
    color: white;
    /* Takes away underline */
    text-decoration: none;
    transition: all 0.45s ease;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 5%;
    left: 1.5%;
    width: 97%;
    height: 90%;
    background: white;
    transition: all 0.45s ease; 
    border-radius: 30px;
    opacity:0%;

}

.main__btn:hover a{
    color: orange;
}

.main__btn:hover:after{
    opacity: 100%;

}

.main_img--container{
    display:flex;
    
    /* border: solid green; */
    width:auto;
    min-width: 330px;
    height:800px;
    /* align-items: center;
    justify-content: center; */
    background-image: url(images/Engineering_Background.jpg);
    background-size: cover;
    background-repeat: no-repeat;

}

/* #main__img{

    width:80%;
    border: solid green;
   
    

} */

.profile__container{
    /* display: grid; */
    display: flex;
    flex-direction: column;
    /* border: solid yellow; */
    position: relative;
    bottom: 600px;
    right: 400px;
    width: 370px;
    height: 550px;
    background-color:  #072938;
    color: white;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 5px 2px 10px #d1d1d1 ;

}

.profile_img--container{
    display: flex;
    height: 150px;
    width: 300px;
    /* border: solid red; */
    position: relative;
    bottom: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

#profile__img{
    width: 70%;
    height:auto;
    border-radius: 50%;
}
.profile__container h1{
    color: white;
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.profile__container h2{
    color: white;
    font-size: 1.3rem;
    margin-top: 5rem;
    font-weight: 100;
}

.profile__container h3{
    color: white;
    font-size: 1.3rem;
    margin-top: 1rem;
    font-weight: 100;
}

.spacing{
    position: relative;
    display: flex;
    width:60px;
    height: 2px;
    background-color:#1e79a1;
    bottom: 100px;
  
} 

.social__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 70px;
    background-color: white;
    margin-top: 41px;

}

.social__icon--link1{
    color:black;
    font-size: 2rem;
    margin-right: 1rem;
}

.social__icon--link2{
    color:black;
    font-size: 2rem;
}
.social__icon--link3{
    color:black;
    font-size: 2rem;
    margin-left: 1rem;
}

.main_side--container{
    
    display:flex;
    flex-direction: column;
    width:250px;
    height:700px;
    position: relative;
    bottom: 1200px;
    left:600px;
    background-color:  #072938;
    justify-content: space-between;
}

.image_1--container{
    margin-top: 30px;
    display: flex;
    height: 150px;
    width: 250px;
    /* border: solid red; */
    position: relative;
    align-items: center;
    justify-content: center;

}

.image_2--container{
    display: flex;
    height: 150px;
    width: 250px;
    /* border: solid green; */
    position: relative;
    align-items: center;
    justify-content: center;

}

.image_3--container{
    display: flex;
    height: 150px;
    width: 250px;
    /* border: solid yellow; */
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

}

#side_1{
    width: 70%;
    height:auto;
    border-radius: 50%;
}

#side_2{
    width: 70%;
    height:auto;
    border-radius: 50%;
}

#side_3{
    width: 70%;
    height:auto;
    border-radius: 50%;
}

@media screen and (max-width: 947px){
    /* .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width:100%;
        margin: 0 auto;
        height:90vh;
    } */
}
/* Mobile Responsive

@media screen and (max-width: 764px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;

    }
    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;

    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;

    }
}

@media screen and (max-width: 480px) {
    .main__content h1{
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2{
        font-size: 2rem;

    }

    .main__content p{
        margin-top: 2rem;
        font-size: 1.5rem;

    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;

    }
}

/* Services Section CSS */

/* .services{
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.services h1{
    background-color: #ff8177;
    background-image: linear-gradient(to right, 
    #ff8177 0%,
    #ff867a 0%, 
    #ff8c7f 21%, 
    #f99185 52%, 
    #cf556c 78%, 
    #b1285b 100%);

    background-size: 100% ;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}


.services__card{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%,
    rgba(17,17,17,0.6) 100%), url('/images/pic2.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
}

.services__card:nth-child(2){
    background-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%,
    rgba(17,17,17,0.6) 100%), url('/images/pic3.jpg');
}

.services h2{
    position: absolute;
    top: 350px;
    left: 30px;
}

.services__card p{
    position: absolute;
    top: 400px;
    left: 30px;
}

.services__card button{
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;

}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;


}

@media screen and (max-width:865px){
    .services{
        height: 1600px;
    
    }
    .services h1{
        font-size: 2rem;
        margin-top: 12rem;
    }
}

@media screen and (max-width: 480px){
    .services{
        height: 1400px;

    }

    .services h1{
        font-size: 1.2rem;

    }

    .services__card{
        width: 300px;
    }

} */

/* Footers CSS */

.footer__container{
    display: flex;
    background-color: white;
    height: 110px;   
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 0 3%;
}

.name__footer h2{
    font-size: 1rem;
    font-weight: 100;
}
.footer__link--wrapper h1{
    font-size: 1rem;
    font-weight: 400;
}
.footer__link--wrapper h2{
    font-size: 1rem;
    font-weight: 100;
    margin-top: .6rem ;
}
.footer__link--wrapper{
    display: flex;
    flex-direction: row;

}

.footer__insta{
    /* justify-content: center;
    align-items: center; */
    margin-right: 3rem;
  
    text-align: center;

}

.footer__email{
    /* justify-content: center;
    align-items: center; */
    text-align: center;
}


/* #footer__logo{
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;

}  

.footer__links{
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper{
    display: flex;
}

.footer__link--items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2{
    margin-bottom: 16px;

}

.footer__link--items > h2{
    color: #fff;

}

.footer__link--items a{
    color:#fff;
    text-decoration: none;
    margin-bottom: 0.5rem;

}

.footer__link--items a:hover{
    color:#e9e9e9;
    transition: 0.3s ease-out; 

}

/* Social Icons */

/* .social__icon--link{
    color:black;
    font-size: 24px;

} */

/* .social__media{
    max-width: 1000px;
    width: 100%;

}

.social__media--wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}  */

/* .social__icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
} */

/* .social__logo{
    color: #fff;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;

}

.website__right{
    color:#fff;
}


@media screen and (max-width:820px){
    .footer__links{
        padding-top: 2rem;

    }

    #footer__logo{
        margin-bottom: rem;
    }

    .website__right{
        margin-bottom: 2rem;
    }

    .footer__link--wrapper{
        flex-direction: column;
    }

    .social__media--wrap{
        flex-direction: column;

    }
}

@media screen and (max-width:480px){
    .footer__link--items{
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}  */


/* Portfolio Section */

/* Hero Section Portfolio CSS */

.portmain {
    background-color: white;
    max-width: 100%;
    overflow:hidden;

  }

.portmain__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    /* 90 vh is 90 viewport height (90% of screen) */ 
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    min-width: 980px;
    padding-bottom: 100px;
    height: auto;
    /* border: solid green; */
    background-image: url(images/background_portfolio.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;



    /* border: solid red; */

}

.portmain__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* border: solid red; */
    margin-top: 3rem;
    height: 400px;
}

.portmain__content h1{
    font-size: 4rem;
    font-family:fantasy;
}

.portmain__content button{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.portmain__content h2{
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgb(216, 149, 25);
    font-style: italic;
}

.portmain__content h3{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(216, 149, 25);

}

.portmain__hub--container{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width:980px;
    height: auto;
    /* border: solid yellow; */
}

.portmain__hub{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width:100%;
    height: auto;
    /* border:solid blue; */
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    row-gap: 50px;
}

.portmain__project{

    display: flex;
    flex-direction: column;

    height: 400px;
    width: 300px;
    background-color: white;
    

}

.project__image {
    display: flex;
    width: 100%;
    height: 200px;
    /* border: solid black; */
    background-image: url(images/Chessbot.jpeg);
    background-size: cover;
}

.portmain__project:nth-child(2) .project__image {
    background-image: url(images/MTB_DAQ.jpg);
}

.portmain__project:nth-child(3) .project__image {
    background-image: url(images/Planetary_SunFix.jpg);
}

.portmain__project:nth-child(3):hover .project__image {
    background-image: url(images/Planetary_SunFix.gif);
}

.project__header{
    display: flex;
    flex-direction: column;
    width:auto;
    height:40px;
    background-color: white;
    position: absolute;
    font-size: .75rem;
    justify-content: center;
    padding: 5px;
    margin-top: 160px;
    margin-left: 0px;
}

.project__header h1{
    font-family:'Courier New', Courier, monospace;
    font-weight: 650;
    align-self: flex-start;
}

.portmain__project:nth-child(3) .project__header{
    width:140px;
    height:auto;
    margin-top: 155px;
}

.portmain__project:nth-child(2) h2{
    color: #4ea3f8;
}

.portmain__project:nth-child(3) h1{
    font-size: 1rem;
}

.project__text{
    display: flex;
    flex-direction: column;
    border: green;
    width: 100%;
    height: auto;
    background-color: white;
    align-self: flex-start;
}
.portmain__project h2{
    font-size: .95rem;
    font-weight: 300;
    color: rgb(219, 144, 4);
    position: relative;
    /* bottom: 40px; */
    text-align:start;
    padding: 10px;
}

.portmain__project p{
    font-size: .95rem;
    font-weight: 300;
    position: relative;
    /* bottom: 40px; */
    text-align: start;
    padding: 13px;

}

.project__btn{
    font-size: .9rem;
    background-image: linear-gradient(to top, #ff9900 0%, #fabe85 100%);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    position: relative;
    /* transition: all 0.45s ease; */
    outline: none;
    font-weight: 800;
    width: 45%;
    margin-left: 50%;
    margin-top: 20px;

   

}

.project__btn a{
    position: relative;
    z-index: 2;
    color: orange;
    /* Takes away underline */
    text-decoration: none;
    transition: all 0.45s ease;
}

.project__btn:after{
    position: absolute;
    content: '';
    top: 3.8%;
    left: 1.5%;
    width: 97%;
    height: 92.1%;
    background: white;
    transition: all 0.45s ease; 
    border-radius: 5px;
    opacity:100%;

}

.project__btn:hover a{
    color: white;
}

.project__btn:hover:after{
    opacity: 0%;
}

.portmain__project:nth-child(2) .project__btn {
    margin-top: 2px;
    background-image: linear-gradient(to top, #4ea3f8 0%, #00f2ff 100%);
}

.portmain__project:nth-child(2) .project__btn a{
    color: #4ea3f8;
}

.portmain__project:nth-child(2) .project__btn:hover a{
    color: white;
}

.portmain__project:nth-child(3) .project__btn {
    margin-top: 2px;
}


@media screen and (max-width: 947px){
    .portmain__container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
        /* 90 vh is 90 viewport height (90% of screen) */ 
        background-color: white;
        z-index: 1;
        width: 100%;
        max-width: 1600px;
        min-width: 300px;
        padding-bottom: 100px;
        height: auto;
        /* border: solid green; */
        background-image: url(images/Background_Portfolio.JPG);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    
    
    
        /* border: solid red; */
    
    }

    .portmain__hub--container{
        display: flex;
        justify-content: center;
        justify-items: center;
        align-items: center;
        width:350px;
        height: auto;
        /* border: solid yellow; */
    }
    
    .portmain__hub{
        display: flex;
        flex-direction: column;
        width:100%;
        height: auto;
        /* border:solid blue; */
        justify-content: center;
        align-items: center;
        column-gap: 40px;
        row-gap: 50px;
    }

}
/* Chessbot Section */

.chessmain {
    background-color: white;
    max-width: 100%;
    overflow:scroll;

}

.chessmain__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    /* 90 vh is 90 viewport height (90% of screen) */ 
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    min-width: 980px;
    padding-bottom: 100px;
    height: auto;
    /* border: solid green; */
    background-image: url(images/chessbackground.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* border: solid red; */

}

.chessmain__intro{

    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 380px;

    
}

.chessmain__header{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background-color: white;
    padding: 20px;
    text-align: center;

}

.chessmain__header h1{
    font-size: 4rem;
    font-weight:600;
}

.chessmain__header h2{
    font-size: 1rem;
    font-weight:300;
    font-style: italic;
}

.nav__btn{
    font-size: 1.1rem;
    background-image: linear-gradient(to top, #ff9900 0%, #fabe85 100%);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    /* transition: all 0.45s ease; */
    outline: none;
    font-weight: 800;

}

.nav__btn a{
    position: relative;
    z-index: 2;
    color: white;
    /* Takes away underline */
    text-decoration: none;
    transition: all 0.45s ease;
}

.nav__btn:after{
    position: absolute;
    content: '';
    top: 5%;
    left: 1.5%;
    width: 97%;
    height: 90%;
    background: white;
    transition: all 0.45s ease; 
    border-radius: 30px;
    opacity:0%;

}

.nav__btn:hover a{
    color: orange;
}

.nav__btn:hover:after{
    opacity: 100%;

}

.project__overview{
    display: flex;
    background-color: white;
    width: 980px;
    height: auto;
    padding-bottom: 5px;
}

.overview__grid{
    display: grid;
    grid-template-columns:2fr 1.3fr;
}

.overview__text{
    display: flex;
    height: 100%;
    width:100%;
    flex-direction: column;
    padding: 30px;
}

.overview__text h1{
    margin-bottom: 1.5rem;
    color:  #e28800;
    font-size: 2.2rem;
    font-weight: 550;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.overview__text p{
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.5;

}

.overview__image{
    display: flex;
    width: 100%;
    height: 90%;
    background-image: url(/images/Chessbot.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.overview__hover{
    display:flex;
    background-color: rgba(0, 0, 0, 0.264);
    height: 100%;
    width: 100%;
    padding: 30px ;
    opacity: 0%;
}

.overview__hover h1{
    font-size: 1.5rem;
    color: white;
    margin-top: 70%;
    opacity: 0%;
}

.overview__hover:hover{
    opacity: 100%;
}

.overview__hover:hover h1{
    opacity: 100%;
}

.design__bar{
    display:flex;
    position: absolute;
    background-color: #e28800;

    height: 60px;
    width: 10px;
    margin-top: 20px;
}

.project__topic{
    display: flex;
    background-color: white;
    width: 980px;
    height: auto;
    padding-bottom: 5px;
    margin-top: 50px;
}

.topic__grid{
    display: grid;
    grid-template:
    "a b" auto
    "a b" auto
    "a b" auto/ 1fr 1.4fr;
}

.topic__text{
    display: flex;
    height: 100%;
    width:100%;
    flex-direction: column;
    padding: 30px;
}

.topic__text h1{
    margin-bottom: 1.5rem;
    color:  #e28800;
    font-size: 2.2rem;
    font-weight: 550;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.topic__text p{
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 1rem;

}

.topic__visuals{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
}

.topic__image{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Chessboard_CAD.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.topic__hover{
    display:flex;
    background-color: rgba(0, 0, 0, 0.264);
    height: 100%;
    width: 100%;
    padding: 30px ;
    opacity: 0%;
}

.topic__hover h1{
    font-size: 1.5rem;
    color: white;
    margin-top: 80%;
    opacity: 0%;
}

.topic__hover h2{
    font-size: 1.5rem;
    color: white;
    margin-top: 120%;
    opacity: 0%;
}

.topic__hover:hover{
    opacity: 100%;
}

.topic__hover:hover h1{
    opacity: 100%;
}

.topic__hover:hover h2{
    opacity: 100%;
}

.topic__smallcontainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.topic__smallimage{
    display: flex;
    background-image: url(/images/Chessbot_real.png);
    background-repeat: no-repeat;
    background-size: contain;

}

.topic__smallimage:nth-child(2){
    background-image: url(/images/Hbot.png);
}

.topic__image2{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Chessboard_Eagle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}


.topic__smallimage1{
    display: flex;
    background-image: url(/images/Assembled_Board1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;

}

.topic__smallimage1:nth-child(2){
    background-image: url(/images/Assembled_Board2.jpg);
    background-position: 50%;
}

.topic__image3{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Chessbot_Server.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}


.topic__smallimage2{
    display: flex;
    background-image: url(/images/FSM_Controller.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;

}

.topic__smallimage2:nth-child(2){
    background-image: url(/images/Task_Diagram.png);
    background-position: 50%;
}


/* MTB DAQ Section */

.DAQmain {
    background-color: white;
    max-width: 100%;
    overflow:scroll;

}

.DAQmain__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    /* 90 vh is 90 viewport height (90% of screen) */ 
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    min-width: 980px;
    padding-bottom: 100px;
    height: auto;
    /* border: solid green; */
    background-image: url(images/MTB_DAQ.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* border: solid red; */

}

.DAQmain__intro{

    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 380px;

    
}

.DAQmain__header{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background-color: white;
    padding: 20px;
    text-align: center;

}

.DAQmain__header h1{
    font-size: 4rem;
    font-weight:600;
}

.DAQmain__header h2{
    font-size: 1rem;
    font-weight:300;
    font-style: italic;
}

.DAQoverview__image{
    display: flex;
    width: 100%;
    height: 90%;
    background-image: url(/images/MTB_Housing.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.DAQoverview__hover{
    display:flex;
    background-color: rgba(0, 0, 0, 0.264);
    height: 100%;
    width: 100%;
    padding: 30px ;
    opacity: 0%;
}

.DAQoverview__hover h1{
    font-size: 1.5rem;
    color: white;
    margin-top: 110%;
    opacity: 0%;
}

.DAQoverview__hover:hover{
    opacity: 100%;
}

.DAQoverview__hover:hover h1{
    opacity: 100%;
}
    

.DAQtopic__image{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Sensor_Locations.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}


.DAQtopic__smallimage{
    display: flex;
    background-image: url(/images/Housing_Ideation.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;

}

.DAQtopic__smallimage:nth-child(2){
    background-image: url(/images/Concept_Prototype.jpg);
    background-position: 50%;
}

.topic__text h3{
    color:  #e28800;
    font-size: 2.2rem;
    font-weight: 550;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.topic__text h2{
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 200;
    margin-bottom: 1rem;
}


.DAQtopic__smallimage2{
    display: flex;
    background-image: url(/images/Prototype_Assembly.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;

}

.DAQtopic__smallimage2:nth-child(2){
    background-image: url(/images/Ideation_Drawing.jpg);
    background-position: 50%;
    background-size: contain;
}

.DAQtopic__image2{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Completed_Board.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 40%;
}

.DAQtopic__smallimage3{
    display: flex;
    background-image: url(/images/Solder_Paster.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;

}

.DAQtopic__smallimage3:nth-child(2){
    background-image: url(/images/Accel_Board.jpg);
    background-position: 50%;
    background-size: contain;
}

.DAQtopic__smallimage4{
    display: flex;
    background-image: url(/images/Accel_Final.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;

}

.DAQtopic__smallimage4:nth-child(2){
    background-image: url(/images/Reflow_Oven.jpg);
    background-position: 50%;
    background-size: contain;
}

.DAQtopic__image3{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/MTB_Action.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 40%;
}

.DAQtopic__smallimage5{
    display: flex;
    background-image: url(/images/Accelerometer_Real.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;

}

.DAQtopic__smallimage5:nth-child(2){
    background-image: url(/images/Accel_Test1.jpg);
    background-position: 50%;
    background-size: cover;
}

.DAQtopic__smallimage6{
    display: flex;
    background-image: url(/images/Transmissibillity.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;

}

.DAQtopic__smallimage6:nth-child(2){
    background-image: url(/images/ForkCompression.png);
    background-position: 50%;
    background-size: contain;
}

/* Planetary Gear Section  */


.PGmain {
    background-color: white;
    max-width: 100%;
    overflow:scroll;

}

.PGmain__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    /* 90 vh is 90 viewport height (90% of screen) */ 
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    min-width: 980px;
    padding-bottom: 100px;
    height: auto;
    /* border: solid green; */
    background-image: url(images/Planetary_Background.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* border: solid red; */

}

.PGmain__intro{

    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 380px;

    
}

.PGmain__header{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background-color: white;
    padding: 20px;
    text-align: center;

}

.PGmain__header h1{
    font-size: 4rem;
    font-weight:600;
}

.PGmain__header h2{
    font-size: 1rem;
    font-weight:300;
    font-style: italic;
}

.PGoverview__image{
    display: flex;
    width: 100%;
    height: 90%;
    background-image: url(/images/Planetary_SunFix.gif);
    background-repeat: no-repeat;
    background-size: cover;
}

.PGoverview__hover{
    display:flex;
    background-color: rgba(0, 0, 0, 0.264);
    height: 100%;
    width: 100%;
    padding: 30px ;
    opacity: 0%;
}

.PGoverview__hover h1{
    font-size: 1.5rem;
    color: white;
    margin-top: 80%;
    opacity: 0%;
}

.PGoverview__hover:hover{
    opacity: 100%;
}

.PGoverview__hover:hover h1{
    opacity: 100%;
}
    

.PGtopic__image{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/PlanetaryAdamsModel.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}


.PGtopic__smallimage{
    display: flex;
    background-image: url(/images/Involute_Profile.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;

}

.PGtopic__smallimage:nth-child(2){
    background-image: url(/images/PG_Solidworks_Model.png);
    background-position: 50%;
}


.PGtopic__image2{
    display: flex;
    width: 100%;
    height:500px;
    background-image: url(/images/Planetary_NoFix.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}


.PGtopic__smallimage2{
    display: flex;
    background-image: url(/images/Planetary_RingFix.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;

}

.PGtopic__smallimage2:nth-child(2){
    background-image: url(/images/Planetary_SunFix.gif);
    background-position: 50%;
}

