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

body,
html {
    height: 100%;
    width: 100%;
    font-family: "Mona Sans", sans-serif;
}

.main {
    position: relative;
    background-color: black;
    color: white;
    overflow: hidden;
}

.nav {
    height: 15vh;
    width: 100%;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
}

.nav .head {
    width: 50%;
}

.nav .head h1 {
    font-size: max(1vw, 1vh);
    text-transform: uppercase;
    font-weight: 400;
}

.nav .menu {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5vw;
}

.nav .menu a {
    font-size: max(1vw, 1vh);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
}

.hero {
    height: 70vh;
    width: 100%;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .imgCont {
    position: absolute;
    height: 70%;
    width: 20%;
    top: 0;
    z-index: 1;
}

.hero .imgCont img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: center;
}

.hero .heading {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 10vw;
    position: relative;
    z-index: 2;
}

.hero .heading h1:nth-child(1) {
    font-size: max(10vw, 10vh);
    align-self: flex-start;
    text-transform: uppercase;
    font-weight: 400;
}

.hero .heading h1:nth-child(2) {
    font-size: max(10vw, 10vh);
    align-self: center;
    text-transform: uppercase;
    font-weight: 400;
}

.hero .heading h1:nth-child(3) {
    font-size: max(10vw, 10vh);
    align-self: flex-end;
    text-transform: uppercase;
    font-weight: 400;
    margin-right: 20vw;
}

.footer {
    height: 15vh;
    width: 100%;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer h3 {
    font-size: max(1vw, 1vh);
    text-transform: uppercase;
    font-weight: 400;
}

.footer h3:nth-child(2) {
    text-align: center;
}