:root{
    --font-color: rgb(50,50,50);
    --bg-light-blue: rgb(242,242,247);
    --light-transp-blue: rgb(0,0,50,0.1);
    --dark-transp-blue:rgba(0,0,50,.3);
    --navbar-gap: max(12vh,100px);
    --lighter-font-color: rgb(111,111,111);
}
body{
    margin:0;
    background:var(--bg-light-blue);
    font-family: 'Poppins';
    color:var(--font-color);
}

/* TOGGLE THEME */
#toggleTheme{
    position: fixed;
    bottom:0;
    right:0;
    display: block;
    padding: 10px;
    margin:10px;
    background:rgba(255,255,255,0.3);
    border-radius: 7px;
    box-shadow: 0 10px 15px rgb(0,0,50,0.1);
    border:2px solid rgb(0,0,50,0.1);
    cursor: pointer;
}

/* NAVBAR */
#navbar{
    position: fixed;
    top:0;
    left:0;
    right:0;
    padding:15px;
    background:white;
    /*border-bottom: 2px solid var(--light-transp-blue);*/
    display: flex;
    justify-content: space-around;
    z-index: 999;
}

#navbarSide{
    display: flex;
    align-items: center;
}

.currentPage{
    background: linear-gradient(to right, #6fa7f5, #2af798);
    background: var(--light-transp-blue);
    padding: 5px;
    border-radius: 12px;
    padding-left: 25px;
    padding-right: 25px;
}

#navbarSide a{
    text-decoration: none;
    opacity: .7;
    color:var(--font-color);
    transition: .25s;
    margin-left: 50px;
}

#navbarSide a:hover{
    opacity: 1;
}

#navbarSide a h2{
    margin: 0;
    font-weight: 600;
    font-size: 17px;
}

/* gap */
#navbarGap{
    height:73.3px;
}


/* LOGO */
.logo{
    text-decoration: none;
    color:var(--font-color);
}

.logo img{
    width: 70px;
    vertical-align: middle;
    margin-right: 15px;
}

.logo h2 span{
    color:rgb(82 199 207);
}

.logo h2{
    margin:0;
    font-weight: 600;
    font-size: 30px;
}

/*LANDING SECTION */
#landingSection{
    max-height: 60vh;
    overflow: hidden;
}

/* text */
#landingText{
    position:absolute;
    z-index: 1;
    height: -webkit-fill-available;
    max-height: 60vh;
    display: grid;
    align-content: center;
    padding-left: 10vw;
    width: -webkit-fill-available;
    background: linear-gradient(45deg, var(--bg-light-blue), transparent);
}

#landingText h1{
    font-weight: 600;
    margin: 0;
    font-size: 70px;
    line-height: 75px;
}

#landingText h1 span{
    font-size: 72px;
    background: linear-gradient(to right, rgb(110 167 244), rgb(59 226 176));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0,0,50,0.3);*/
}

.blueGradient{
    background: linear-gradient(to right, rgb(110 167 244), rgb(59 226 176));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#landingText a{
    text-decoration: none;
    color: var(--bg-light-blue);
    background: var(--font-color);
    width: fit-content;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 12px;
    /* font-weight: 600; */
    margin-top: 12px;
    font-size: 20px;
    transition: .75s;
    box-shadow: 0 10px 20px var(--dark-transp-blue);
}

#landingText a:hover{
    box-shadow: none;
}
/* image */ 
#landingSection img{
    width: 100vw;
}


#banner{
    transition: .7s;
}

/* SERVICES PREVIEW */

#servicesPreview{
    margin-top: 120px;
}

#servicesPreview h1{
    font-weight: 600;
    font-size: 40px;
    text-align: center;
}

#servicesPreview p{
    text-align: center;
    font-size: 20px;
    opacity: .7;
    margin-top: 0;
}

/* grid */ 
#servicesGrid{
    display: flex;
    justify-content: center;
    margin-top: 80px;

}

.serviceBlock{
    display: grid;
    justify-items: center;
    box-shadow: 0 20px 30px rgb(0 0 50 / 12.5%);
    padding:10px;
    margin-left: 15px;
    border-radius: 15px;
    width: 250px;
    padding-bottom: 20px;
    transition: .5s;
    border:2px solid transparent;
    align-content: space-between;
}

.serviceBlock:hover{
    box-shadow: none;
    border:2px solid var(--light-transp-blue);
}

.serviceBlock a{
    text-decoration: none;
    margin-top:20px;
    padding:7px;
    padding-left: 15px;
    padding-right: 15px;
    border: 2px solid var(--light-transp-blue);
    border-radius: 15px;
    color:var(--lighter-font-color);
    font-weight: 600;
    transition: .25s;
}

.serviceBlock a:hover{
    border:2px solid var(--dark-transp-blue);
}

.serviceBlock h2{
    font-weight: 600;
    text-align: center;
}

/* SOLUTIONS PREVIEW */

#solutionsPreview{
    width: 80%;
    margin:auto;
}

#solutionsPreview h1{
    font-weight: 600;
    font-size: 40px;
    text-align: center;
}

#solutionsPreview p{
    text-align: center;
    font-size: 20px;
    opacity: .7;
    margin-top: 0;
    margin-bottom: 40px;
}

.solutionBlock{
    width: 80%;
    max-width: 400px;
    padding:12px;
    border-radius: 12px;
    border: 2px solid var(--light-transp-blue);
    margin:auto;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgb(0 0 50 / 12.5%);
}


.solutionBlock h2{
    font-weight: 600;
    text-align: center;
    opacity: .7;
    font-size: 20px;
}

/* WHY US BlURB */

#whyUsBlurb h1{
    font-weight: 600;
    font-size: 40px;
    text-align: center;
}

#whyUsBlurb p{
    /*text-align: center;*/
    font-size: 20px;
    width: 40%;
    max-width: 650px;
    display: block;
    margin:auto;
    margin-bottom: 30px;
}

#whyUsBlurb p img{
    vertical-align: middle;
}

.listTitle{
    font-weight: 600;
    /*color: #6aaaef;*/
    margin-right: 10px;
}

.listDesc{
    opacity: .7;
}


/* SERVICE BLURBS */
.serviceBlurb{
    width: 70%;
    max-width: 700px;
    margin: auto;
    border-radius: 15px;
    padding: 15px;
    border: 2px solid var(--light-transp-blue);
    box-shadow: 10px 10px 50px var(--light-transp-blue);
    transition: .5s;
}

.serviceBlurb:hover{
    box-shadow: none;
}


.serviceBlurb h1{
    font-weight: 600;
}

.serviceBlurb h1 img{
    vertical-align: middle;
    margin-right: 12px;
}

.serviceBlurb p{
    opacity: .8;
}

/*separators*/
.blurbSeparator{
    width: 2px;
    height: 10vh;
    background:var(--light-transp-blue);
    margin:auto;
}

/* call to action */
#actionCall h2{
    font-weight: 600;
    text-align: center;
}

#actionCall a{
    text-decoration: none;
    color: var(--bg-light-blue);
    background: var(--font-color);
    width: fit-content;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 12px;
    font-size: 20px;
    transition: .75s;
    box-shadow: 0 10px 20px var(--dark-transp-blue);  
    display: block;
    margin:auto; 
}

#actionCall a:hover{
    box-shadow: none;
}

/* BIOGRAPHY BLOCK */
.bioBlock{
    width: 80%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border: 2px solid var(--light-transp-blue);
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--light-transp-blue);
}

.bioBlock img{
    width: 75%;
    display: block;
    margin:auto;
    border-radius: 12px;
}

.bioBlock h2{
    font-weight: 600;
}

.bioBlock p{
    opacity: .7;
}


/* EMAIL FORM */
#emailForm{
    font-size: 18px;
    width: 50%;
    max-width: 650px;
    margin:auto;
    border-radius: 15px;
    padding: 15px;
    border: 2px solid var(--light-transp-blue);
    box-shadow: 10px 10px 50px var(--light-transp-blue);
}

#emailForm input{
    font-size: 18px;
    background:transparent;
    border:none;
    outline:none;
    display: block;
    width: -webkit-fill-available;
    font-family: 'Poppins';
    padding:10px;
    border-bottom:2px solid var(--light-transp-blue);
    margin-bottom: 30px;
}

#emailForm textarea{
    margin-top:20px;
    font-size: 18px;
    border:none;
    background:rgb(0 0 50 / 5%);
    border-radius: 12px;
    outline:none;
    padding:15px;
    font-family: 'Poppins';
    display: block;
    width: -webkit-fill-available;
    resize: none;
    height: 30vh;
}

#emailForm button{
    margin-top:20px;
    display: block;
    width: 100%;
    padding:12px;
    font-family: 'Poppins';
    background:var(--font-color);
    color:var(--bg-light-blue);
    border-radius: 12px;
    cursor: pointer;
    transition: .5s;
    border:none;
}

#emailForm button:hover{
    opacity: .6;
}

/* FOOTER */
#footer{
    background:var(--font-color);
    display: flex;
    justify-content: space-evenly;
    padding:20px;
    color:var(--bg-light-blue)
}

.footerColumn h3{
    font-weight: lighter;
    margin:0;
    opacity:.8;
}

.footerColumn a{
    color:var(--bg-light-blue);
    text-decoration: none;
    display: block;
    opacity: .5;
    transition: .25s;
}

.footerColumn a:hover{
    opacity: 1;
}

#imgColumn{
    display: grid;
    align-items: center;
}


#imgColumn img{
    width: 60px;
    opacity: .5;
}

.mobile{
    display: none;
}

@media only screen and (max-width: 800px) {

    .mobile{
        display: block;
    }

    /* NAVBAR */
    #navbar{
        display: none;
    }

    #mobileNavbar{
        position: fixed;
        top:0;
        left:0;
        right:0;
        padding:15px;
        background:white;
        display: flex;
        justify-content: space-between;
        z-index: 999;
    }

    .logo img{
        width: 60px;
    }

    #burgerMenu{
        position: fixed;
        top:0;
        bottom:0;
        right:0;
        left:0;
        z-index:998;
        background:var(--bg-light-blue);
        display: grid;
        justify-content: center;
        align-content: center;
        opacity: 0;
        pointer-events: none;
        transition: .5s;
    }

    #burgerMenu a{
        display: block;
        text-decoration: none;
        color:var(--lighter-font-color);
        margin-bottom:10vh;
    }

    #burgerMenu a h2{
        margin: 0;
        font-weight: 600;
        text-align: center;
    }

    #navbarGap{
        height:113.3px
    }

    #landingSection{
        overflow:visible;
        max-height: unset;
    }

    #landingSection > .mobile{
        position: absolute;
    }

    #landingText{
        z-index: unset;
        height: unset;
        justify-items: center;
        align-content: unset;
        background: linear-gradient(to bottom, var(--bg-light-blue) 50%, transparent);
        padding: 0;
        /*margin-top:50px;*/
    }

    #landingText a{
        box-shadow: none;
    }

    #landingText h1{
        text-align: center;
        font-size: 40px;
        line-height: 43px;
    }

    #landingText h1 span{
        font-size: 50px;
        background:transparent;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;

    }

    #servicesPreview{
        width: 80%;
        margin:auto;
    }

    #servicesPreview p br, #solutionsPreview p br{
        display: none;
    }

    #servicesGrid{
        display: grid;
    }

    .serviceBlock{
        margin:0;
        border:2px solid var(--light-transp-blue);
        margin-bottom:30px;
        box-shadow: none;
    }



    #whyUsBlurb p{
        width: 80%;
    }

    #footer{
        display: grid;
        justify-content: center;
    }

    #imgColumn{
        display: flex;
        justify-content: center;
        margin-bottom:40px;
    }

    .footerColumn{
        margin-bottom:30px;
    }

    #emailForm{
        width: 80%;
    }
}