.section-hero-3 {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    min-height: 110vh;
    background-size: cover;
    background-position: center;
}

.section-hero-3 .wrap {
    width: 100%;
    max-width: 1440px;
}

.section-hero-3 .wrap .columns {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    padding: 0 40px;
    align-items: center;
}

.section-hero-3 .wrap .columns .column {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
    align-items: center;
    padding-top: 4rem;
    width: 100%;
    max-width: 1120px;
}

.section-hero-3 .wrap .columns .column h1 {
    font-size: 64px;
    line-height: 64px;
    text-align: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-transform: none;
}

.section-hero-3 .wrap .columns .column p {
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    font-weight: 300;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.section-hero-3 .wrap .columns .column .btn {
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
    border: 1px solid #fff;

}

.section-hero-3 .wrap .columns .column .btn .btn-text {
    min-width: 125px;
    height: 54px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    align-self: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.section-hero-3 .wrap .columns .column .btn .btn-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: all 300ms ease;
    z-index: -1;
}

.section-hero-3 .wrap .columns .column .btn .btn-text:hover {
    color: #000;
}

.section-hero-3 .wrap .columns .column .btn .btn-text:hover:before {
    transform: translateX(0);
}

.section-hero-3 .wrap .columns .column .btn .btn-icon {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fff;
}

@media only screen and (max-width: 1279px) {
    .section-hero-3 .wrap .columns .column {
        padding-top: 0;
    }

    .section-hero-3 .wrap .columns .column h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .section-hero-3 .wrap .columns .column h1 br {
        display: none;
    }

    .section-hero-3 .wrap .columns .column p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .section-hero-3 {
        min-height: 100vh;
        background-position: top center;
    }
}