*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

html{
    background: #898989;
    max-width: 100vw;
    overflow-x: hidden;
}

body{
    background: rgb(171, 171, 171);
    max-width: 100vw;
    overflow: overlay;
    overflow-x: hidden;
}

::-webkit-scrollbar{
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb{
    background: rgba(90, 90, 90);
}

::-webkit-scrollbar-track{
    background: transparent;
}

.gray-bar{
    position: relative;
    background-color: #898989;
    color: black;
    height: 3.5vh;
    width: 100%;
    font-size: 1.5vh;
    line-height: 3.5vh;
    text-align: right;
    padding-right: 12vw;
}

.gray-bar a{
    color: black;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

.gray-bar a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #002856;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.35s;
}

.gray-bar a:hover::after{
    width: 100%;
}

#header{
    margin-top: 3vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

#header img{
    max-width: 120px;
    max-height: 120px;
    border-radius: 10px;
    margin-left: 12vw;
}

#header h1{
    margin-left: 55px;
    font-size: 55px;
    font-weight: 300;
}

#header .dropdown i:hover{
    cursor: pointer;
}

#dropbtn{
    color: black;
    padding: 16px;
    font-size: 40px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
  
#dropbtn:hover, #dropbtn:focus{
    background-color: #747474;
}
  
.dropdown{
    margin-left: auto;
    margin-right: 12vw;
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    right: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
}
  
.dropdown-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
}
  
.dropdown a:hover{
    background-color: #ddd;
}
  
.show{
    display: block;
}

.dropdown-content a{
    color: black;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

.dropdown-content a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #002856;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.35s;
}

.dropdown-content a:hover::after{
    width: 100%;
}

/* [[[[[[[[[[[[[[[[[[[[         body            ]]]]]]]]]]]]]]]]]]]] */

#about{
    margin-top: 20vh;
    display: flex;
    align-items: center;
}

#about img{
    margin-left: 12vw;
    border-radius: 15px;
    object-fit: cover;
    object-position: 20% 50%;
    height: 50vh;
    width: 35vw;
}

#about .aboutMe{
    margin-left: 5vw;
    margin-right: 14vw;
}

#about .aboutMe h2{
    font-weight: 500;
    font-size: 50px;
}

#about .aboutMe p{
    font-size: 30px;
    font-weight: 300;
}

#info{
    width: 100%;
    padding-top: 20vh;
    display: flex;
    justify-content: center;
    padding-bottom: 10vh;
}

#info .info-grid{
    display: grid;
    grid-template-columns: 25vw 25vw 25vw;
    column-gap: 2vw;
}

#info .info-grid .location, #info .info-grid .email, #info .info-grid .phone{
    background: #898989;
    border-radius: 30px;
}

#info .info-grid .location .container, #info .info-grid .email .container, #info .info-grid .phone .container{
    display: flex;
    justify-content: center;
}

#info .info-grid .container i{
    margin-top: 5vh;
    font-size: 30px;
    color: #002856;
}

#info .info-grid .container p{
    margin-top: 10px;
    text-transform: uppercase;
    color: black;
    letter-spacing: 4px;
    font-weight: 600;
}

#info .info-grid .container .bar{
    width: 80px;
    height: 5px;
    background: #002856;
    border-radius: 100px;
    margin: 30px;
}

#info .info-grid .container .text, #info .info-grid .container .text pre{
    color: black;
    font-size: 20px;
    font-weight: 350;
    margin-bottom: 5vh;
    text-align: center;
}

#info .info-grid .container .text a{
    text-decoration: none;
    color: black;
}


/* [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[          footer          ]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] */

#footer{
    display: flex;
    justify-content: center;
    background: #898989;
}

#footer p{
    margin-top: 3vh;
    margin-bottom: 8vh;
    font-size: 2vh;
}



/* [[[[[[[[[[[[[[[[[[[[[[[[[ interests        ]]]]]]]]]]]]]]]]]]]]]]]]] */

#interests{
    margin-left: 12vw;
    margin-top: 15vh;
    margin-right: 12vw;
}

#interests .description h2, #projects .description h2{
    font-weight: 500;
    font-size: 50px;
}

#interests .description p, #projects .description p{
    font-weight: 300;
    font-size: 20px;
}

#current-projects{
    margin-top: 20vh;
    margin-bottom: 20vh;
}

#current-projects .title{
    display: flex;
    justify-content: center;
}

#current-projects .title h2{
    font-size: 60px;
    margin-bottom: 4vh;
    font-family: "Roboto", sans-serif;
}

#current-projects .row{
    display: flex;
    justify-content: center;
}

#current-projects .row .col1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35vw;
}

#current-projects .row .col1 img{
    width: 35vw;
    height: auto;
    object-fit: contain;
}

#current-projects .row .col1 i{
    font-size: 30vw;
}

#current-projects .row .orange-bar{
    width: 8px;
    background: #898989;
}

#current-projects .row .col2{
    width: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #002856;
}

#current-projects .row .col2 .description{
    width: 28vw;
    margin-top: 6vh;
    margin-bottom: 6vh;
}

#current-projects .row .col2 .description h3{
    width: fit-content;
    display: block;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 1vh;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    
}

#current-projects .row .col2 .description a:hover{

}

#current-projects .row .col2 .description p{
    color: white;
    font-size: 25px;
    font-weight: 350;
}





/* [[[[[[[[[[[[[[[[[[[[[[[[[[[         projects            ]]]]]]]]]]]]]]]]]]]]]]]]]]] */

#projects{
    margin-top: 15vh;
    margin-left: 12vw;
    margin-right: 12vw;
}

#projects .description{
    margin-bottom: 8vh;
}

#projects .projectContainer{
    display: flex;
    margin-bottom: 14vh;
    align-items: center;
}

#projects .projectContainer img{
    border-radius: 30px;
    max-width: 50vw;
    height: auto;
    width: auto;
    object-fit: contain;
}

#projects .projectContainer .projectDescription{
    margin-left: 3vw;
}

#projects .projectContainer .projectDescription h3 a{
    font-weight: 400;
    font-size: 30px;
    text-decoration: none;
    color: black;
}

#projects .projectContainer .projectDescription p{
    font-size: 18px;
    font-weight: 200;
}



/* [[[[[[[[[[[[[[[[[[[[[[[[[[[[       contact         ]]]]]]]]]]]]]]]]]]]]]]]]]]]] */


#contact-us{
    margin-top: 15vh;
    margin-left: 12vw;
}

#contact-us .row{
    display: flex;
}

#contact-us .para{
    margin-bottom: 6vh;
    font-size: 20px;
    font-weight: 300;
    width: 80%;
}

#contact-us h1{
    font-weight: 500;
    font-size: 50px;
}

#contact-us .contacts{
    margin-bottom: 12vh;
}

#contact-us .contacts .row, #contact-us .hours .row{
    display: flex;
    align-items: center;
    margin-bottom: 8vh;
    background: #002856;
    border-radius: 30px;
    padding-left: 1.5vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    width: fit-content;
    padding-right: 1.5vw;
}

#contact-us .contacts .row h2, #contact-us .hours .row h2{
    font-size: 5vw;
    font-weight: 100;
    color: rgb(255, 255, 255);
    margin-left: -0.2vw;

}

#contact-us .contacts .row p, #contact-us .hours .row p{
    font-size: 20px;
    font-weight: 100;
    margin-left: 3vw;
    color: white;
    letter-spacing: 1px;
}

#contact-us .contacts .row p b, #contact-us .hours .row p b{
    font-weight: 400;
    color: white;
}

#contact-us .contacts .row a i{
    font-size: 60px;
}

#contact-us .contacts .row a{
    margin: 0 1.5vw;
}

#contact-us .contacts .row a img{
    width: 60px;
    border-radius: 10px;
}

#contact-us .contacts .row a .twitter{
    margin-left: 3vw;
}

#contact-us .contacts .row a .facebook{
    color: #0079fe;
    border-radius: 30px;
}

#contact-us h1{
    font-size: 50px;
    font-weight: 500;
}

#contact-us .directEmail{
    margin-left: 12vw;
}

#contact-us .directEmail form input, #body .col2 .row .contact-in-body form textarea{
    display: block;
    border-radius: 8px;
    width: 20vw;
    border: none;
}

#contact-us .directEmail form input{
    height: 3vh;
}

#contact-us .directEmail form input, #contact-us .directEmail form textarea{
    margin-bottom: 1vh;
    background: rgb(193, 193, 193);
    padding-left: 4px;
}

#contact-us .directEmail form textarea{
    padding-top: 4px;
    border-radius: 8px;
    border-width: 0px;
    width: 100%;
}

#contact-us .directEmail form .row{
    display: flex;
}

#contact-us .directEmail form .col1-contact button{
    margin-top: 0vh;
    border: none;
    border-radius: 20vw;
    width: 8vw;
    height: 4vh;
    font-size: 1vw;
    color: white;
    background: #002856;
}

#contact-us .directEmail form .col1-contact button:hover{
    transition: 0.4s;
    background: #003b7d;
    cursor: pointer;
}

#contact-us .directEmail form .col1-contact button:active{
    transition: 100ms;
    background: #0059bf;
}

#msg{
    padding-left: 20px;
    margin-top: 0.9vh;
    color: gray;
}


@media only screen and (max-width: 900px){
    .gray-bar{
        display: none;
    }

    #header img{
        width: 30vw;
    }

    #header h1{
        font-size: 20px;
        margin-left: 20px;
        margin-right: 10px;
    }

    #about{
        display: block;
        margin-top: 10vh;
    }

    #about .container{
        display: flex;
        justify-content: center;;
    }

    #about img{
        width: 80vw;
        margin: 0;
    }

    #about .aboutMe{
        margin: 0;
    }

    #about .aboutMe h2{
        margin-top: 4vh;
    }

    #about .aboutMe p{
        text-align: center;
        font-size: 20px;
        width: 35vh;
    }

    #info{
        padding-top: 10vh;
    }

    #info .info-grid{
        display: grid;
        grid-template-columns: 60vw;
        row-gap: 3vh;

    }

    #footer p{
        font-size: 3.8vw;
    }

    #interests .description h2{
        text-align: center;
        margin-bottom: 2vh;
    }

    #interests .description p{
        text-align: center;
    }

    #current-projects .row{
        display: block;
    }

    #current-projects .row .col1{
        width: 100vw;
    }

    #current-projects .row .col1 img{
        width: 70vw;
        margin: 5vh 0;
    }

    #current-projects .row .col1 i{
        font-size: 60vw;
        margin-bottom: 2.5vh;
    }

    #current-projects .row .orange-bar{
        display: none;
    }

    #current-projects .row .col2{
        width: 100vw;
    }

    #current-projects .row .col2 .description{
        width: 85vw;
        text-align: center;
    }

    #current-projects .row .col2 .description h3{
        width: 100%;
        text-align: center;
    }

    #projects{
        margin: 0;
        margin-top: 15vh;
    }

    #projects .description{
        text-align: center;
        margin-bottom: 10vh;
        width: 80vw;
        margin-left: 10vw;
    }

    #projects .projectContainer{
        display: block;
        width: 100vw;
        margin-bottom: 16vh;
    }

    #projects .projectContainer img{
        border-radius: 10px;
        width: 80vw;
        max-width: 100vw;
        margin-bottom: 2vh;
    }

    #projects .projectContainer .container{
        display: flex;
        width: 100vw;
        justify-content: center;
    }

    #projects .projectContainer .projectDescription{
        margin: 0;
        width: 85vw;
        margin-left: 7.5vw;
        text-align: center;
    }

    #contact-us{
        margin: 0;
        margin-top: 15vh;
        text-align: center;
    }

    #contact-us .contacts{
        margin-bottom: 13vh;
        width: 100vw;
    }

    #contact-us .contacts .container{
        display: flex;
        justify-content: center;
    }

    #contact-us .contacts .row{
        border-radius: 20px;
        padding: 0;
        padding: 2vh;
    }

    #contact-us .directEmail{
        display: none;
    }

    #experience{
        margin: 0;
        justify-items: center;
    }

    #experience .individual-experience{
        flex-direction: column;
        justify-items: center;
    }

    #experience .individual-experience .description{
        align-items: center;
        justify-items: center;
        text-align: center;
        margin-bottom: 10vh;
    }

}



/* ----------------------------------------------------------- experience -------------------------------------*/

#experience{
    margin-top: 15vh;
    margin-left: 12vw;
    margin-right: 12vw;
    margin-bottom: 12vh;
}

#experience h1{
    font-weight: 500;
    font-size: 50px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 7vh;
}

#experience .individual-experience{
    display: flex;
    align-items: center;
    margin-bottom: 4vh;
}

#experience .individual-experience img{
    width: 400px;
}

#experience .individual-experience .description p{
    max-width: 90vw;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2vh;
}

#experience .individual-experience .description h2{
    max-width: 95vw;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 4vh;
}

