


:root{
    --primary-color: #4C4A4A;
    --secondary-color: #374991;
    --third-color: #C7CA09;
    --fourth-color: #EA9595;
    --fifth-color: #82822E;     /* main yellow interacting w dark bg*/
    
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Inria Sans',sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: var(--primary-color);
}

ul {
    list-style-type: none;
}

a{
    text-decoration: none;
    color: #fff;
}

h1, h2{
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}

p{
    margin: 10px 0;
}

img {
    width: 100%;
}

code, pre {
    background: #333;
    color: #fff;
    padding: 10px;
}

.hidden {
    visibility: hidden;
    height: 0;
}


/******* NAVBAR STYLING *******/
.burger-nav{
    display: none;
}

.navbar .flex{
    display: flex;
    justify-content: space-between;
}

.navbar{
    border-bottom: var(--third-color) solid;
}

.navbar img{
    width: 12%;
    height: auto;
    padding-top: 5px;
}

nav {
    display: flex;
    justify-content: space-around;
    padding-right: 50px;
}

/* .navbar ul{
    display: flex;
    margin: auto 0;
    padding-right: 30px;
} */

.navbar a {
    color: var(--third-color);
    padding: 10px;
    margin: auto 25px;
    font-size: 1.35em;
}

/* Drop Down Stuff */
.navbar {
    overflow: hidden;
}

.dropdown {
    /* float: left; */
    overflow: hidden;
    color: var(--third-color);
    /* padding: 10px; */
    margin: auto 10px;
    font-size: 1.35em;
}

.dropdown .dropbtn{
    border: none;
    outline: none;
    color: var(--third-color);
    font-size: 1em;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0; 
    cursor: pointer;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    font-size: .75em;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a{
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 0;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}




/******* HOME PAGE *******/
main img{
    margin-top: 29px;
    position: relative;
}

main h1{
    position: absolute;
    top: 22%;
    right: 3%;
    font-weight:bold;
    font-style: italic;
    font-size: 2.75em;
    color: var(--fourth-color);
}

.divider{
    background-color: var(--fifth-color);
    text-align: center;
    height: 100px;
    /* height: 5%; */
}

.divider h2{
    padding: 25px 0;
    font-size: 2.5em;
}

.points {
    display: flex;
    justify-content: space-around;
    padding: 15px 30px;
}

.points h2{
    color: var(--third-color);
    text-align: center;
}

.points p{
    width: 450px;
}

.tech{
    display: flex;
    justify-content: center;
    padding-top: 100px;
    gap: 10%;
}

hr {
    border: none; /* Removes the default border */
    height: 2px; /* Sets the height of the line */
    background-color: var(--fifth-color); /* Sets the color of the line */
    margin: 20px 0; /* Adds space above and below the line */
}

.tech img{
    width: 40%;
}

.tech .about-text{
    /* margin: auto; */
    margin-top: 150px;
}

.about-text h3{
    font-size: 1.5em;
    color: var(--third-color);
}

.mission{
    display: flex;
    justify-content: center;
    height: 50vh;
    margin: auto;
}

.mission img{
    height: 220px;
    width: auto;
    margin: auto;
}

.mission h2{
    font-size: 2.75rem;
    font-weight: 400;
    width: 500px;
    text-align: center;
    margin: auto;
}

.blue {
    border: none; /* Removes the default border */
    height: 2px; /* Sets the height of the line */
    width: 1100px;
    background-color: #607FFF; /* Sets the color of the line */
    margin: auto; /* Adds space above and below the line */
}

.pink {
    border: none; /* Removes the default border */
    height: 2px; /* Sets the height of the line */
    width: 1100px;
    background-color: var(--fourth-color); /* Sets the color of the line */
    margin: auto; /* Adds space above and below the line */
}

.yellow {
    border: none; /* Removes the default border */
    height: 2px; /* Sets the height of the line */
    width: 1100px;
    background-color: var(--third-color); /* Sets the color of the line */
    margin: auto; /* Adds space above and below the line */
}

footer{
    border-top: var(--third-color) solid;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    height: 275px;
}

footer div{
    margin: auto 0;
    padding: 0 50px;
}

footer h3{
    padding-left: 29px;
}

footer img{
    width: 150px;
    height: auto;
}

footer p{
    text-align: right;
}

footer a{
    color: var(--third-color);
}

footer .my-link{
    margin-top: 50px;
}




/********************** CONTACT ***********************/
.contact-top{
    color: #fff;
    padding: 60px 0 30px 7%;
    display: flex;
}

.contact-top h1{
    font-weight: bold;
    padding-bottom: 15px;
}

.contact-top h1, .contact-top h2{
    width: 70%;
}

.contact-top img{
    width: 15%;
    height: auto;
    align-self: center;
    margin-right: 10%;
}




.contact-text h2{
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    padding: 50px 0 0 7%;
}

.contact {
    position: relative;
    width: 100%;
    padding: 15px 5% 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--primary-color);
}

.contact-form {
    position: relative;
    background: #607FFF;
    width: calc(100% - 400px);
    padding: 20px;
}

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

.contact-form .row{
    width: 100%;
    display: flex;
}

.contact-form .input50{
    width: 50%;
    margin: 0 10px;
}

.contact-form .input100{
    width: 100%;
    margin: 0 10px;
}

.contact-form .row input,
.contact-form .row textarea {
    position: relative;
    border: 1px solid rgba(0,0,0,0.2);
    color: #111;
    background: #fff;
    width: 100%;
    padding: 10px;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    margin: 10px 0;
    resize: none;
}

.contact-form .row textarea{
    height: 150px;
}

.contact-form .row input[type='submit'] {
    background-color: var(--primary-color);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border: 0;
    cursor: pointer;
    font-family: 'Inria serif';
}

.contact-info {
    /* width: 350px; */
    width: 25%;
    background: var(--fourth-color);
    padding: 60px 40px 20px;
    text-align: center;
}

.contact-info .info-box {
    /* display: flex;
    align-items: flex-start; */
    margin-bottom: 40px;
}

.contact-info .info-box .contact-icon{
    width: 25px;
    margin: auto;
}

.contact-info .info-box .details h3{
    color: #333;
}

.contact-info .info-box .details p,
.contact-info .info-box .details a {
    color: #111;
}




/*********** MOBILE **********/
@media(max-width: 630px){
    .navbar {
        display: none;
    }

    /* TOGGLE */
    .toggle {
        position: fixed;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: var(--fifth-color) url(images/menu.png);
        background-size: 30px;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 20;
        cursor: pointer;
    }


    .toggle.active {
        background: var(--primary-color) url(images/close.png);
        background-size: 25px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .burger-nav{
        display: contents;
        color: var(--primary-color);
    }

    .navigation {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        z-index: 15;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* If you want to remove img from nav after all, just delete
    flex direction: column above, and .navigation img{} below 
    (and img obv) */
    .navigation img{
        /* width: 30%; */
        width: 40%;
        align-self: center;
    }
    
    .navigation.active {
        left: 0;
    }

    .navigation ul{
        position: relative;
    }
    
    .navigation ul li{
        position: relative;
        list-style: none;
        text-align: center;
    }
    
    .navigation ul li a{
        font-size: 5rem;
        color: var(--fourth-color);
        text-decoration: none;
        font-weight: 300;
    }
    
    .navigation ul li a:hover{
        color: var(--primary-color);
    }

    .burger-nav img{
        width: 50%;
        padding: 5px 0 0 13px;
    }