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

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Manrope', sans-serif;
   


}

main {
    display: flex;
    flex-direction: row;
    width: 100vw;
    min-height: 99vh;
    margin-bottom: 40px !important;
    overflow-x: hidden;
}

.left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gllr_row_1,
.gllr_row_2,
.gllr_row_3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 90%;
}

.gllr_row_1 img,
.gllr_row_2 img,
.gllr_row_3 img {
    height: 180px;
    width: auto;
    margin: 10px;
}

.right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.right h2 {
    font-size: 56px;
}

label {
    display: none;
}

form div {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
   
}

form {
    width: 95%;
}

input:focus,
textarea:focus,
input:hover,
textarea:hover {
    outline: none;
}

input {
    border: none;
    height: 25px;
    border-bottom: 3px black solid;
    font-size: 18px;
    font-family: Manrope;
    margin-bottom: 20px;
    padding-left: 10px;
}

textarea {
    height: 100px;
    border: none;
    border-bottom: 3px black solid;
    margin-bottom: 20px;
    padding: 10px;
    resize: none;
    font-size: 18px;
    font-family: Manrope;
    margin-bottom: 20px;
}

button[type="submit"] {
    background-color: black;
    color: white;
    font-size: 20px;
    font-family: Manrope;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s linear;
}

button[type="submit"]:hover {
    background-color: white;
    color: black;
    font-weight: bold;
    outline: 1px black solid;
}

@media screen and (max-width: 800px) {
    main {
        margin-top: 50px;
        flex-direction: column;
    }

    .gllr_row_1 img,
    .gllr_row_2 img,
    .gllr_row_3 img {
        height: 90px;
        width: auto;
        margin: 5px;
    }

    .right {
        margin-top: 20px;
        padding-left: 5%;
        padding-right: 5%;
        width: 90%;
    }
}


/* ----------------------------------- nav ---------------------------------- */
.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 1.5%;
    padding-left: 3%;
    padding-right: 3%;
    z-index: 99999;
    color: #000;
    mix-blend-mode: difference;
}

.nav .titlenav a,
.nav a {
    text-decoration: none;
    color: #000;
}