main {
    background-color: #000;
    color: #fff;
}

.section {
    padding: 110px 20px;
}

.section .image-container {
    height: 370px;
    padding-bottom: 1rem;
}

.section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section h3 {
    text-transform: uppercase;
}

.section a {
    background-color: var(--bg-color-grey);
}

.separator-logo {
    height: 70px;
    width: auto;
    padding-bottom: 1rem;
}

.proxital-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
}

.modal-wrapper {
    max-width: 500px;
    background: var(--bg-color-grey);
}

.modal-head {
    display: flex;
    justify-content: flex-end;
}

.modal-close {
    --size: 40px;

    color: white;
    background: var(--color-primary);
    height: var(--size);
    width: var(--size);
    border: none;
    transition: background-color 150ms ease-in;
}

.modal-close:hover {
    background: var(--color-primary-dark);
}

.modal-body {
    margin: 1.25rem;
    margin-top: 0;
}
