/*------------------------------------*\
    
    WebFX WYSIWYG Customizations - Global styling for all ACF WYSIWYG's

    Add custom WYSIWYG styling to this file if it should be applied to all ACF WYSIWYG's on the site
    Otherwise, put your block-specific styles in individual block stylesheets

\*------------------------------------*/

.wysiwyg { 
    position: relative;
    overflow: hidden;
}

.wysiwyg-wrapper {
    position: relative;
    z-index: 9;
}

.top-curve-bg {
    padding-top: 120px;
    margin-top: -60px;
}

.example-btns .btn {
    margin-bottom: 24px;
}

.bg-swirls-gray {
    position: absolute;
    right: -943px;
    top: 50%;
    transform: translate(0, -68%);
    opacity: 0.2;
}

.bg-swirls-gray img {
    max-width: inherit;
}

.wysiwyg p a:not(.btn) { 
    position: relative;
    font-weight: 700;
    color: #1D2620;
}

.wysiwyg p a:not(.btn)::before {
    content: "\e929";
    font-family: 'icomoon';
    position: absolute;
    left: 50%;
    bottom: -17px;
    font-size: 87px;
    font-weight: normal;
    transform: translate(-50%, 0);
}


@media (min-width: 768px) {
    .top-curve-bg {
        padding-top: 150px;
        margin-top: -90px;
    }

    .bg-swirls-gray {
        right: -574px;
        top: 60%;
        transform: translate(0, -50%);
    }

}

@media (min-width: 1200px) {
    .bg-gray {
        padding: 80px 0 0;
    }

    .top-curve-bg {
        padding-top: 300px;
        margin-top: -220px;
        padding-bottom: 0;
    }

    .bg-swirls-gray {
        right: 0;
        top: 66%;
        transform: translate(0, -50%);
    }

    .bg-swirls-gray::before{
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 805px;
        height: 470px;
        z-index: 1;
        background: linear-gradient(to bottom,  rgba(248,249,242,1) 0%,rgba(245,246,237,0) 100%);
    }

    .wysiwyg p a:not(.btn):hover {  color: #abbbb0; }
}