@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');


:root{
    --mobile-main-header-hieght: 70px;
    --themed-black: rgb(56, 56, 56);
    --base-font-size: 20px;/*not used atm*/
}

*,
::before,
::after{
    box-sizing:border-box;
}

html,
body{
    margin:0px;
    padding:0px;
    overflow-x:hidden;
    font-family: 'Open Sans', sans-serif;
    font-weight:100;
    letter-spacing: .25px;
    line-height: 1.5;
    text-align:justify;

}

h1,h2,h3{
    letter-spacing: 4px;

}



h1{
    font-size:49px;
}

p{
    margin-bottom:28px;
}

label{
    font-size:16px;
}

input{
    padding:3px 3px 3px 12px;
}


.wrapper{
    display:flex;
    flex-direction:column;
    margin: 0px auto;
    min-height: 100vh;
}


.text-centered{
    text-align: center;
}

.show-on-large-screen{
    display:none;
}

.submit-button,.back-to-projects-back-arrow,.x-box :hover{
    cursor: pointer;
}

.back-to-projects-back-arrow,.x-box :hover{
    border:rgb(58, 55, 55) 1px solid;
    box-shadow:  -1px 1px #77aaff,
         -2px 2px #77aaff,
         -3px 3px #77aaff,
         -4px 4px #77aaff,
         -5px 5px #77aaff;
}

/*****Main Header Area******/

.main-header{
    position:relative;
    height:var(--mobile-main-header-hieght);
}

.main-nav{
    position:relative;
    width:100%;
    top:0;
    display:flex;
    justify-content:right;
}

.empty-flex-styling-div{
    content:'';
}   

.banner{
    height: var(--mobile-main-header-hieght);
    position:absolute;
    width:100%;
    text-align:center;
    text-decoration:underline;
    
}

.banner h2{
    font-size: 30px;
    font-stretch:extra-condensed;
}

.banner-title{
    color:black;
}

.nav-options{
    font-size: 25px;
    display:flex;
    flex-direction: column;
    width:90%;
    position:fixed;
    z-index:98;
    top:0;
    left:100vw;
    height:100vh;
    background-color: white;
    transition:.5s;
}

.nav-options.show-mobile-version{
    left:10vw;
}



.nav-links{
    display:block;
    text-decoration:none;
    padding:40px 0 40px 40px;
    transition:.5;
}

.nav-links.current-page{
    color:black;
    background-color:rgb(220, 215, 215);
}


.three-line-nav{
    position:relative;
   /* margin-left:auto;*/
    z-index:99;
    display:block;
    width:30px;
    margin: 30px 30px 0 0;
}

.three-line-nav.is-active{
    position:fixed;
}

.three-line-nav:hover{
    cursor:pointer;
}

.three-line-nav div {
    height: 4px;
    background-color: black;
    border-radius: 25px;
    margin: 5px 0px;
    transition: .5s;
}




.three-line-nav.is-active div:nth-child(2) {
    opacity: 0;
}

.three-line-nav.is-active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.three-line-nav.is-active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-backdrop{
    content:'';
    z-index:97;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    width:100vw;
    background-color:black;
    display:none;
    opacity:0;
    transition:2s;
}

.mobile-menu-backdrop.use{
    display:block;
    opacity:.7;
}

/*****Page Content Area******/

.page-content{
    position:relative;
    display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        margin-top:auto;
    
}

/**Index Page CSS**/

.about-section,.thank-you-container{
    padding: 10px 30px;
    display:flex;
    flex-direction: column;
    font-size:18px;
    letter-spacing:.33px;
}

.about-section a{
    color:black;
}

.about-title{
    order: 1;
    align-self:center;
    font-weight: normal;
    
}

.about-img{
    order: 2;

}

.about-details{
    order: 3;
    text-align:justify;
}




/** End of Index Page CSS**/



/**Projects Page CSS**/

.projects-listing-container{
    display:grid;
    /*grid-template-columns: repeat(auto-fill,minmax(244px,259px));*/
    grid-template-columns: repeat(auto-fill,259px);
    grid-gap:3rem;
    margin: 30px auto;
    justify-content:center;
}

@keyframes slideIn{
    0%{
        opacity: 0;
        transform: translateY(300px);
    }
    20%{
        opacity:.2;
        transform: translateY(200px);
    }
    40%{
        opacity:.7;
        transform: translateY(100px);

    }
    60%{
        opacity:1;
        transform: translateY(50px);
    }
    100%{
        transform: translate(0);

    }
}



.projects-page-widget{
    display:block;
    width:100%;
    position:relative;
    /*animation:slideIn 2s;*/
    transition: ease 3s;

}

img{
    width:100%;
    height:auto;
}


.project-motto-img{
    position:absolute;
    top:0;
    left:0;
}


.project-motto-img.hover-overlay{
    opacity:0;
    transition: .6s ease;
}

.projects-listing-container,.project-details-overlay{
    transition: 1s ease;
}

.hover-overlay:hover{
    opacity:1;
    cursor:pointer;
}
.project-details-overlay{
    width:100%;
}
.click-overlay{
    opacity:0;
}

.revealed{
    opacity:1;
}

.hidden{
    opacity:0;
    height:1px;
    overflow:hidden;
    position:absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.overlay-module{
    display:none;
    z-index: 2;
    background:black;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
}


/**End of Projects Page CSS**/


/**Projects Details Page CSS**/


.project-title-section{
    text-align: center;
}

.back-to-projects-back-arrow,.x-box{
    float:right;
    z-index:10;
    transition:.1s;
}
.x-box{
    position: absolute;
    left:100%;
    margin-left:-70px;
    height: 50px;
    border-radius: 50%;
        
}

/*gave a little white x in a blue circle*/
/*.x-box{
    position: fixed;
    left: 100%;
    margin-left: -70px;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    color: white;
    background: rgb(83, 83, 227);
    font-weight: bold;
    font-size: 32px;
}*/

.back-to-projects-back-arrow,.x-box img{
    width:50px;
}





.project-details, .project-pages-redirect-to-contact-us{
    margin: 0 3%;
}
.project-details{
    padding-top: 25px;
}

.page-divider-line{
    width:100%;
    margin:35px auto 50px;
}



.project-pages-redirect-to-contact-us{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin: 0 auto 50px;
    text-align: center;
    
}

.project-pages-redirect-to-contact-us *{
    padding:0 10px;
}
    
.get-in-touch-div{
    font-weight:bold;
    font-size:2rem;
}

.interested-in-project-div{
    font-weight:normal;
    font-size:1.5rem;
    padding-top:10px;
}

.svg-envelope{
    display:block;
    height:40px;
    width:"auto"; 
    margin:10px auto;
}



.project-meetup-url a{
    display:block;
    background:rgb(50,1,206);
    padding:10px 25px;
    color:white;
    text-decoration:none;
    margin:auto;
    text-align:center;
}



.contact-us-link{
    display:block;
    background:var(--themed-black);
    color:white;
    text-decoration: none;
    padding:10px 50px;
    text-align:center;

}

/**End of Projects Details Page  CSS**/

/**Contact Us Page CSS**/


.contact-us-form-container{
    max-width:580px;
    display:flex;
    justify-content: center;
    align-items: center;
    margin: 30px 5%;
}

.contact-us-form{
    display:flex;
    flex-wrap: wrap;
    text-align: initial;
    justify-content: space-between;
}

.contact-us-form *{
    width: 100%;
    
}

.leave-message{
    font-family: 'Open Sans', sans-serif;
}

.contact-us-submit{
    width:113px;
    height:30px;
    border:2px solid var(--themed-black);
    background:var(--themed-black);
    color:white;
    padding:1px 6px;
    margin-left:auto;
    margin-right:auto;
}
/** End of Contact Us Page CSS**/

/*Thank You Page CSS*/

.thank-you-container{

}

.thank-you-title{
    margin-top:0;
}



.projects-hyperlink-button{
    margin:auto;
}

.projects-hyperlink-button a{
    display:block;
    background:rgb(50,1,206);
    padding:10px 50px;
    color:white;
    text-decoration:none;
    margin:auto;
    text-align:center;
}
/*End of Thank You Page CSS*/


.form-label-element-grouping{
    margin-bottom:10px;
}





.page-contents-initial-overlay{
    background:white;
    position:absolute;
    width:100%;
    height:100%;
    transition:2s;
}


/*****Main Footer Area******/

.main-footer{
    text-align: center;
    /*display:flex;
    justify-content:center;*/
    background-color:var(--themed-black);
    color:white;
    width:100%;
    height:57px;
    margin-top:auto; 
    padding-top:14px;

}

.main-footer div{
    position:relative;
    margin:auto;
}

/****************************************
*******************************

CSS for Min Width 750 for Larger Screens is Below



*******************************
********************************************/
@media screen and (min-width: 750px) {

    html,body{
        font-size:14px;
    }

    body{
        
    }

    html{
        font-size:14px;
        font-stretch:ultra-expanded;
    }

    .mobile-menu-title{
        display:block;
        width:100%;
    }

    .show-on-small-screen{
        display:none;
    }

    /*******Main Header Area******/

    .main-header{
        height:auto;
    }
    
    .banner{
        position:relative;
    }

    .banner h2{
    margin:initial;
    }
    
    .main-nav{
        position:relative;
        height:41px;
        margin:auto;
    }

    
    .three-line-nav{
        display:none;
    }
    
  

    
    .nav-options{
        width:100%;
        background-color:var(--themed-black);
        /*font-size:var(--base-font-size);*/
        height:41px;
        font-weight:900;
        flex-direction:row;
        justify-content:center;
        align-items: center;
        position:relative;
        left:inherit;
        margin:initial;
        padding:initial;

    }

    

    .nav-links{
        display:block;
        color:white;
        padding:0 10px;
        font-size:16px;
        margin:initial;
    }

    .nav-links:hover{
        color:rgb(34, 234, 252);
    }

    .nav-links.current-page{
        color:yellow;
        background-color:initial;
    }




    /*****Page Content Area******/
    .page-content{
        padding: 0 5% 0 5%;

    }

    .size-of-parent{
        width:100%;
    }


    /**About Page CSS **/

    .flex-wrapper{
        display:flex;
        width:100%;
        justify-content:center;
        align-items:center;
        margin:auto;
    }

    .about-section,.thank-you-container{
        font-size:14px;
    }

    .about-section{
        display:block;
        max-width:1000px;
        /*margin-top: 40px;*/
        
        
    }

    
    .about-img{
        width: 52%;
        margin-right:2%;
        float:left;
    }

    

    /** End of About Page CSS**/

    /** Projects Page CSS**/

    .projects-listing-container{
        width:100%;
        max-width:1100px;
        
    }
    /** End Of Projects Page CSS **/

    /** Projects Preview Page CSS**/

    .project-details-container{
        width:100%;
    }

    .back-to-projects-back-arrow,.x-box{
        display:none;
    }

    .page-divider-line{
        width:95%;
    }


    .project-details, .project-pages-redirect-to-contact-us{
        max-width:70%;
        max-width:950px;
        margin:auto;
    }


    .project-details:after{
        clear:both;
        content:"";
        height:auto;
        display:table;
    }

    

    .project-img-container{
        float:left;
        margin: 0 20px 30px 0px;
    }

    .project-img-container img{
        width:400px;
        height:auto;
        /*width:100%;
        min-width:365px;
        max-width:404px;*/

    }

    
    .project-meetup-url{
        float:right;
    }


    


    .project-pages-redirect-to-contact-us{
        display:flex;
        flex-direction: row;
        justify-content: space-around;
        align-items:initial;
        min-height:220px;
    }

    

    /** End of Projects Preview Page CSS**/


    /** Contact Us Page CSS **/
    .contact-us-form{
        width:100%;
    }

    .contact-us-title{
        margin-top:0px;
        font-weight:100;
        left:30;
    }



    .contact-us-link{
        padding:10px 110px;    
    }
    /** End of Contact Us Page CSS **/

    
    

    .form-label-element-grouping{
        margin-bottom:24px;
    }

    .shares-a-line-on-big-screen{
        display:flex;
        justify-content: space-between;
    }

    .flex-2-items-share-on-high-res{
        width:48%;
    }
    
    label{
        font-size:initial;
    }
    
    
    /*****Main Footer Area******/

    /*.main-footer{
        height:131px;
    }*/
}


