body{
    margin: 0;
    padding: 0;
    font-family:"IBM Plex Sans";
    /* overflow-x: hidden; */
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

:target:before{
    content: "";
    display: block;
    height: 50px;
    margin: -50px 0 0 0;
}

.main{
    width: calc(100vw - (100vw - 100%));
    overflow-x: hidden;
}

.about {
    width: calc(100vw- (100vw - 100%));
    height: 100vh;
    background: rgb(162,60,37);
    display: flex;
}

.about_img_box {
    width: 50vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_img {
    width: auto;
    height: 100vh;
    overflow: hidden;
}

.brighter {
    filter: brightness(110%);
}

.about_content {
    width: 50vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_content_text h2{
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 4rem;
    font-weight: 600;
    text-align: left;
    color: #fff;
    width: 37.5vw;
}

.about_content_text p{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 300;
    width: 37.5vw;
    text-align: left;
    color: #fff;
}

.about__links {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.blue__button {
    text-align: center;
    width: auto;
    background-color: rgb(18,40,73);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgb(18,40,73);
    transition: 0.15s;
    margin-right: 20px;
}

.white__button {
    text-align: center;
    width: auto;
    background-color: rgb(255, 255, 255);
    color: #000000;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgb(18,40,73);
    transition: 0.15s;
    margin-right: 20px;
    cursor: text;
}

.blue__button:hover{
    background: rgb(13, 30, 56);
    border: 1px solid rgb(13, 30, 56);
}

.orange__button {
    text-align: center;
    width: auto;
    background-color: rgb(162,60,37);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgb(162,60,37);
    transition: 0.15s;
    margin-right: 20px;
    margin-bottom: 125px;
}

.orange__button:hover{
    background: rgb(153, 54, 32);
    border: 1px solid rgb(153, 54, 32);
}

.about__link__ion {
    margin-bottom: -2px;
    margin-left: 2px;
}

.right-align {
    text-align: right !important;
}

.projects {
    width: calc(100vw- (100vw - 100%));
    height: auto;
    background: linear-gradient(rgba(22, 21, 21, 0), rgba(22, 21, 21, 0)),  rgb(18,40,73); 
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
}

.projects .about_content {
    padding-top: 125px;
    height: auto !important;
    margin-bottom: 40px;
}

.projects .about_content h2 {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.projects_content {
    width: 100vw;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.row {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 5px;
}

.row img {
    width: 20vw;
    height: auto;
    border: black solid 2px;
    transition: filter 0.2s;
}

.row img:hover {
    filter: brightness(0.9);
}

.row a .lazy-load {
    filter: blur(4px);
}

.item {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 10px 10px;
    border: white solid 5px;
    border-radius: 5px;
    background-color: rgb(245, 241, 241);
}

.item a {
    text-decoration: none;
    color: #000;
}

.item h2 {
    font-weight: 400;
    margin-top: 10px;
}

.item h2:hover {
    text-decoration-line: underline;
    color: rgb(104, 131, 219);
}

.item p {
    width: 20vw;
    margin-top: -10px;
    text-align: center;
}

.involvement {
    width: 40vw;
    height: 75px;
    border-radius: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.involvement__picture {
    width: 75px;
    height: 75px;
    margin-right: 15px;
    background-color: #ebe7e7;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .involvement__picture img {
   width: 60px;
} */





.involvement__text {
    width: 25vw;
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.involvement__text h3 {
    font-size: 1.50rem;
    margin-top: 0px;
    margin-bottom: -2px;
    width: 25vw;;
    font-weight: 500;
    font-style: normal;
}

.involvement__text .involvement__role__text {
    margin-bottom: 0px;
    margin-top: 0px;
    color: rgb(35, 35, 35);
    font-size: 1rem;
    width: 25vw;
}

.involvement__role__text:last-of-type {
    margin-top: -2px;
}

.footer {
    background: black;
}

.footer p {
    height: auto;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 20px;
    margin: 0;
    padding: 75px 0 15px 0;
}


.hidden {
    display: none;
}



/**************************************/
/*Hero*/
/**************************************/

.hero{
    margin: 0;
    padding: 0;
    background: #555;
    width: calc(100vw- (100vw - 100%));
    height: 100vh;
    background: linear-gradient(to bottom right, rgba(22, 21, 21, 0), rgba(22, 21, 21, 0.2)), rgb(18,40,73);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav {
    width: 1140px;
    height: 75px;
    display: flex;
}
.nav__brand {
    width: 200px;
}
.nav__logo {
    width: 100px;
}

.nav__links {
    min-width: 10px;
    width: 1000px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav__link {
    color: white;
    cursor: pointer;
    margin-right: 34px;
    font-weight: 400;
    transition: 0.15s;
}
.mobile__socials, .socials {
    background: #fff;
    padding: 5px 0;
    border-radius: 20px;
}
.mobile__socials {
    width: 187px;
    margin-top: 50px;
    margin-left: 40px;
}
.sticky__nav .socials {
    margin-top: 10px;
    padding: 2px 0;
}
.mobile__socials a, .socials a {
    text-decoration: none;
}
.social {
    width: 25px;
    height: 25px;
    margin-top: 5px;
    margin-right: 15px;
    filter: brightness(0.0);
}
.social:hover {
    filter: brightness(1);
}
.instagram {
    margin-left: 15px;
}
.instagram {
    color: #e95950;
}
.linkedin {
    color: rgb(0,120,181);
}
.youtube {
    color: #FF0000;
}
.github {
    color: #c7958c;
}


.header {
    padding-bottom: 100px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 40px;
}

.header__title{
    color: white;
    font-size: 3rem;
    width: auto;
    padding: 0;
    margin-bottom: 10px;
    text-align: left;
}
.header__subtitle{
    margin-top: 0;
    margin-bottom: 45px;
    font-size: 2rem;
    font-weight: 400;
    width: auto;
    text-align: left;
    color: #d3d1d1;
}

.header__links {
    margin-top: -10px;
}
.header__link {
    cursor: pointer;
    margin-right: 20px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #FF8A8A;
    transition: 0.15s;
}
.header__link:first-of-type{
    color: white;
    background: #FF8A8A;
}
.header__link:first-of-type:hover{
    background: #f57c7c;
    border: 1px solid #f57c7c;
}
.header__link:last-of-type{
    color: #FF8A8A;
}
.header__link:last-of-type:hover{
    background: #f57c7c;
    color: white;
}

/* ************* */
/* Sticky nav */
/* ************* */

.sticky__nav{
    margin-top: -30px;
    padding-bottom: 0px;
    padding-top: 20px;
    position: fixed;
    z-index: 2000;
    background: rgba(0, 0, 0, 0);
    width: calc(100vw - (100vw - 100%));
    filter: opacity(1);
    display: flex;
    justify-content: center;
    transition: 0.25s;
}
.sticky__nav .nav__logo{
    margin-top: 10px;
    width: 60px;
    filter: invert(100%);
    filter:brightness(500%);
    margin-bottom: 0;
}
.sticky__nav .nav__link {
    margin-bottom: 10px;
}
.sticky__nav .nav__links {
    margin-right: 10vw;
}
.sticky__nav .nav__logo:hover{
    filter: brightness(300%);
}
.sticky__nav .nav__brand {
    margin-left: 10vw;
}

.nav__link__a {
    text-decoration: none;
    color: #fff;
    transition: 0.15s;
}
.nav__link__a:hover{
    color: #70bff8;
    padding-bottom: 3px;
    border-bottom: solid #70bff8 3px;
}

a.anchor {
    display: block;
    position: relative;
    top: -15px;
    visibility: hidden;
}
a.anchor2 {
    display: block;
    position: relative;
    top: -18vh;
    visibility: hidden;
}

.menu__outline {
    color: white;
    height: 50px;
    min-width: 50px;
    width: 50px;
    margin-top: 10px;
    margin-right: 30px;
}

.menu__outline:hover {
    filter: brightness(0.9);
}

.mobile__nav {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 40vw;
    z-index: 9000;
}
.mobile__nav__logo{
    width: 15vw;
    margin: 25px 0 50px 40px;
    filter: invert(100%);
    filter:brightness(500%);

}
.mobile__nav__logo:hover{
    filter: brightness(300%);
}

.mobile__nav__link {
    color: white;
    cursor: pointer;
    font-weight: 300;
    transition: 0.15s;
    display: block;
    margin: 0 0 30px 40px;
}

.mobile__nav .nav__link__a {
    font-size: 1.75rem;
}

.solid {
    background: rgba(0, 0, 0, 1);
    transition: 0.25s;
}