
.banner {
    padding: 100px 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.banner > div {
    width: 50%;
    overflow: hidden;
}

.banner > div:first-of-type {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.banner > div:last-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner > div > h1 {
    font-size: 64px;
    margin: 0;
    padding: 0;
}

.banner > div > p {
    font-size: 28px;
    margin: 0;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
}

.banner > div > button {
    background-color: var(--color-special);
    color: var(--color-background);
    border: 2px solid var(--color-special);
    font-weight: 600;
    font-size: 32px;
    border-radius: 50px;
    padding: 10px 30px 10px 5px;
    max-width: 400px;
}

.banner > div > button:hover {
    color: var(--color-special);
    background-color: var(--color-background);
}

.banner > div > button > i {
    margin-right: 20px;
    margin-left: 10px;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.banner > div > button:hover > i {
    margin-left: 15px;
    margin-right: 15px;
}

.banner > div > img {
    width: auto;
    height: 100%;
    object-fit: contain;
    animation: pop-up 1s ease;
    -webkit-animation: pop-up 1s ease;
}

@keyframes pop-up {
    from { opacity: 0; margin-right: -50px; margin-bottom: -50px; }
    to { opacity: 1; margin-right: 0; margin-bottom: 0; }
}