
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.mobile-br {
  display: block;
}

.desktop-br {
  display: none;
}

/* Navigation bar */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

#logo {
    background-color: white;
    width: 100%;
    max-width: 100%;
}

#logo > h1 {
    width: calc(100% - 10vh);
}

#logo > div {
    width: 8vh;
    height: 0;
    position: fixed;
}

#icon_menu {
    display: block;
    position: fixed;
    z-index: 2;
    right: 1vh;
    top: 1vh;
    width: 6vh;
    height: 6vh;
    transition: all 0.5s ease-in-out;
}

#icon_close {
    display: block;
    position: fixed;
    z-index: 2;
    right: 1vh;
    top: 1vh;
    width: 6vh;
    height: 6vh;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#navlist {
    display: block;
    position: fixed;
    margin-top: 8vh;
    left: -100%;
    margin-left: 0;
    padding-top: 10vh;
    width: 100%;
    max-width: 100%;
    height: 92vh;
    background-color: white;
    transition: all 0.5s ease-in-out;
}

#navlist > li {
    display: block;
    text-align: center;
    margin-top: 5vh;
}

#navlist > li > a {
    margin-left: auto;
    margin-right: auto;
    font-size: 6vw;
}

#navbar {
    display: block;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 140px;
    background: #000;
}

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


#hero { 
    height: 60vh;
}

#hero > h1 {
    top: -56vh;
    font-size: 9vw;
}

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

#problem {
    height: 68vh;
}

#problem > img {
    height: 60vh;
}

#problem > h1 {
    top: -57.5vh;
    left: 5vw;
    font-size: 5.5vw;
    line-height: 8vw;
}

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

#solution > h1 {
    line-height: 20vw;
    font-size: 10vw;
}

#solution > ul {
    height: 30vh;
}

#solution > ul > li {
    width: 30vw;
    height: 16vh;
}

#solution > ul > li > img {
    width: 100%;
    object-fit: cover;
}

#solution > ul > li > h2 {
    font-size: 4vw;
    width: 30vw;
}

#solution > p {
    line-height: 3.75vh;
    font-size: 4.8vw;
    margin-top: 0vh;
    padding-bottom: 8vh;
    border-bottom: 1.5px solid black;
}

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

#partner {
    height: 20vh;
}

#partner > h1 {
    line-height: 20vw;
    font-size: 10vw;
}

#partnercontainer {
    height: 8vh;
}

#partnercontainer > a {
    width: 20vw;
}

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

#team {
    width: 100%;
    height: 60vh;
    margin-top: 5vh;
}

#team > h1 {
    line-height: 16vw;
    font-size: 10vw;
}

#teamcontainer {
    height: 22.5vh;
    margin-top: 5vh;
    flex-wrap: wrap;
}

#teamcontainer > a {
    width: 40%;
}

#teamcontainer > a:nth-child(n+3) {
    width: 32%;
}

#teamcontainer > a > img {
    width: 20vw;
    height: 20vw;
    border-radius: 10vw;
}

#teamcontainer > a > h3 {
    margin-top: 4vw;
    font-size: 4vw;
}

#teamcontainer > a > p {
    margin-top: 2.5vw;
    font-size: 2.5vw;
    line-height: 3.2vw;
}

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

#contact > a {
    color: white;
    font-size: 6vw;
    border-radius: 10px;
    border: 1px solid white;
    padding: 10px 20px 10px 20px;
    color: white;
    background-color: black;
    transition: 0.25s;
}