.large_banner {
    width: 100%;
    padding: 0 0 120px;
    background-color: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.large_banner .banner_icon {
    position: absolute;
    right: 0;
    bottom: -140px;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.large_banner .banner_icon i {
    font-size: 300px;
    color: var(--white);
    opacity: 0.2;
}

.large_banner h2 {
    color: var(--white);
    font-size: 70px;
    text-align: center;
    margin-top: 92px;
    margin-bottom: 0;
}

.large_banner p {
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.banner_social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--white);
    border: 2px solid var(--white);
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
    transition: 0.2s all ease-in-out;
}

.banner_social a:last-of-type {
    margin-right: 0;
}

.banner_social a:hover {
    color: var(--red);
    background-color: var(--white);
    transition: 0.2s all ease-in-out;
}

@media (max-width: 650px) {
    .large_banner h2 {
        font-size: 48px;
    }
}