/* === Custom Block Styling === */
.secondLevelHero{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

/* .secondHero__row{
    align-items: center;
} */
.secondHero__contentWrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.secondHero__subheading{
    color: var(--FC-mint);
}

.secondHero__heading{
    padding-bottom: 20px;
    margin-bottom: 32px;
    width: fit-content;
}
.secondHero__heading::after{
    content: '';
    background-color: var(--FC-secondary-color);
    width: 85%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.secondHero__copy{
    padding-bottom: 25px;
}


.secondHero__image{
    position: relative;
    margin-right: 32px;
}

.secondHero__image img{
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}
.secondHero__image::after{
    content: '';
    background-color: var(--FC-mint);
    height: 95%;
    width: 95%;
    position: absolute;
    right: -32px;
    top: 20%;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
}

.secondHero__button{
    background-color: transparent !important;
    color: var(--FC-primary-color) !important;
    transition: var(--FC-default-transition);
}
.secondHero__button:hover{
    background-color: var(--FC-primary-color) !important;
    color: var(--FC-near-white) !important;
    transition: var(--FC-default-transition);
}


@media screen and (max-width: 767px){
    .secondHero__image{
        max-width: 400px;
        width: 100%;
        display: block;
        margin: auto;
    }
}

@media screen and (max-width: 575px){
    .secondHero__image{
        width: 90%;
        margin: auto;
        display: block;
    }
    .secondHero__image::after{
        display: none;
    }
    .secondHero__spacerCol{
        display: none;
    }
}