main.container {
    display: flex;
    flex-direction: column;
}

section.hero-content-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    flex-direction: row;
}

section.hero-content-wrapper div.column-left {
    font-size: 3rem;
    font-family: var(--font-space-grotesk);
}

section.hero-content-wrapper div.column-left h1,
section.hero-content-wrapper div.column-right h2 {
    margin: 0;
    font-size: 4.5vw;
    margin-bottom: 2rem;
}

div.column-right h4 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: normal;
    font-family: var(--font-barlow);
}

div.column-right {
    width: 60%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10vw 0 10vw;
    font-family: var(--font-barlow);
}

div.column-left {
    width: 40%;
}

div.column-left h1 {
    font-size: 3rem;
}

div.column-left ul {
    padding-left: 0;
    font-size: 1rem;
    list-style: none;
}

div.column-left ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

div.column-left ul li a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
}

div.column-left ul li a:hover {
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}

input,
textarea {
    border-radius: 4px;
    width: 100%;
    border: none;
    outline: none;
    padding: 15px;
    margin: 10px 0;
    box-sizing: border-box;
}

textarea {
    resize: none;
    height: 100px;
}

form {
    display: flex;
    flex-direction: column;
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

form label {
    margin: 0;
    padding: 0;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

button {
    border: none;
    width: 100px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
    padding: 15px 20px;
    border-radius: 4px;
    background-color: var(--color-light-blue);
}

button:hover {
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}

button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.loading-button {
    overflow: hidden;
    position: relative;
}

.loading-button.loading {
    color: transparent;
}

.loading-button.loading::before {
    top: 50%;
    left: 50%;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    border-top-color: white;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

.modal {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: none;
    overflow: auto;
    position: fixed;
    font-size: 1.5rem;
    font-family: var(--font-barlow);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    width: 40%;
    padding: 20px;
    margin: 15% auto;
    border-radius: 5px;
    border: 1px solid #888;
    background-color: #fefefe;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    float: right;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    cursor: pointer;
    text-decoration: none;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media screen and (width <= 600px) {
    section.hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0rem;
        justify-content: flex-start;
    }

    section.hero-content-wrapper div.column-left h1 {
        font-size: 6.5vw;
    }

    section.hero-content-wrapper div.column-left,
    section.hero-content-wrapper div.column-right {
        width: 100%;
    }

    section.hero-content-wrapper div.column-left {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    section.hero-content-wrapper div.column-right {
        padding: 0;
    }

    .modal-content {
        width: 80%;
    }
}
