/*
    THEME NAME: BUILDER V3.0
    AUTHOR: MATCHPLAY GOLF MARKETING
    DESCRIPTION: THE THIRD ITERATION OF MATCHPLAY GOLF MARKETING'S WORDPRESS THEME, HEAVILY OPTIMIZED.
    TEXT DOMAIN: BUILDERV3
*/

/*THEME VARIABLES*/

    /*GLOBAL FOCUS COLOR*/

        :root {
            --focus-color: rgba(157, 13, 13, 0.9);
        }

    /*DARK THEME OVERRIDES*/

        .standard-block[data-theme="header-dark"],
        header.header-dark {
            --vid-btn-bg: #FFFFFF;
            --vid-btn-color: #9D0D0D;
            --vid-btn-border: #FFFFFF;
            --vid-btn-hover-bg: #9D0D0D;
            --vid-btn-hover-color: #FFFFFF;
            --vid-btn-hover-border: #FFFFFF;
            --vid-btn-active-bg: #9D0D0D;
            --vid-btn-active-color: #FFFFFF;
            --vid-btn-active-border: #FFFFFF;
        }

    /*LIGHT THEME OVERRIDES*/

        :root,
        .standard-block[data-theme="header-light"],
        header:not(.header-dark) {
            --vid-btn-bg: #9D0D0D;
            --vid-btn-color: #FFFFFF;
            --vid-btn-border: #9D0D0D;
            --vid-btn-hover-bg: #9D0D0D;
            --vid-btn-hover-color: #FFFFFF;
            --vid-btn-hover-border: #FFFFFF;
            --vid-btn-active-bg: #9D0D0D;
            --vid-btn-active-color: #FFFFFF;
            --vid-btn-active-border: #FFFFFF;
        }

/*RESET & ACCESSIBILITY*/

    /*BASE HTML & BODY*/

        body:not(.wp-admin) {
            all: unset;
            display: revert;
        }

        html {
            overflow-x: hidden;
        }

    /*BOX SIZING*/

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

    /*INTERACTIVE ELEMENTS*/

        a,
        button {
            cursor: revert;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

    /*MEDIA*/

        img,
        video {
            max-width: 100%;
            max-inline-size: 100%;
            max-block-size: 100%;
        }

    /*LISTS*/

        ol,
        ul,
        menu {
            all: unset;
            list-style: none;
        }

    /*ACCESSIBILITY UTILITIES*/

        /*SCREEN READER ONLY*/

            .sr-only {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }

        /*GLOBAL FOCUS STATE*/

            *:focus-visible {
                outline: 2px dashed var(--focus-color) !important;
                outline-offset: 3px !important;
                border-radius: 2px;
            }

        /*REDUCED MOTION KILL-SWITCH*/

            @media (prefers-reduced-motion: reduce) {

                *,
                *::before,
                *::after {
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                    transition-duration: 0.01ms !important;
                    scroll-behavior: auto !important;
                }

            }

/*UTILITY ENGINE*/

    /*BACKGROUNDS & POSITIONING*/

        /*COVER BACKGROUNDS*/

            .u-bg-cover {
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

        /*ABSOLUTE COVER LAYERS*/

            .u-absolute-cover {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
            }

        /*ABSOLUTE VIDEO BACKGROUNDS*/

            .u-absolute-video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 0;
            }

        /*ABSOLUTE CENTERING*/

            .u-absolute-center {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    /*LAYOUT WIDTHS*/

        /*FULL WIDTH*/

            .full {
                width: 100%;
            }

        /*CENTER WIDTHS*/

            .center {
                width: 65%;
                margin: 0 auto;
            }

            .center-alt {
                width: 85%;
                margin: 0 auto;
            }

    /*FLEXBOX CLASSES*/

        /*ROWS*/

            .flex-row-start-start {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-start;
            }

            .flex-row-start-stretch {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: stretch;
            }

            .flex-row-end-stretch {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: stretch;
            }

            .flex-row-start-center {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: center;
            }

            .flex-row-end-end {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: flex-end;
            }

            .flex-row-between-start {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-start;
            }

            .flex-rowreverse-between-start {
                display: flex;
                flex-direction: row-reverse;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-start;
            }

            .flex-row-between-center {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
            }

            .flex-row-between-stretch {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: stretch;
            }

            .flex-rowreverse-between-stretch {
                display: flex;
                flex-direction: row-reverse;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: stretch;
            }

            .flex-row-center-center {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
            }

            .flex-row-between-end {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-end;
            }

        /*COLUMNS*/

            .flex-col-start-start {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-start;
            }

            .flex-col-end-center {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: center;
            }

            .flex-col-center-end {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                align-items: flex-end;
            }

            .flex-col-center-center {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
            }

            .flex-col-center-start {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: center;
                align-items: flex-start;
            }

            .flex-col-between-center {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
            }

            .flex-col-end-end {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: flex-end;
            }

            .flex-col-end-start {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-end;
                align-items: flex-start;
            }

            .flex-col-start-end {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-end;
            }

/*TYPOGRAPHY & GLOBALS*/

    /*PARAGRAPHS & LINKS*/

        p {
            margin: 0px;
            transition: .15s ease-out;
        }

        p,
        a {
            font-display: swap;
        }

    /*HEADINGS & COPY*/

        .title {
            font-family: var(--title-font-family);
            font-size: var(--title-font-size);
            font-weight: var(--title-font-weight);
            letter-spacing: var(--title-font-letterspacing);
            line-height: var(--title-font-lineheight);
        }

        .subtitle {
            font-family: var(--subtitle-font-family);
            font-size: var(--subtitle-font-size);
            font-weight: var(--subtitle-font-weight);
            letter-spacing: var(--subtitle-font-letterspacing);
            line-height: var(--subtitle-font-lineheight);
        }

        .heading {
            font-family: var(--heading-font-family);
            font-size: var(--heading-font-size);
            font-weight: var(--heading-font-weight);
            letter-spacing: var(--heading-font-letterspacing);
            line-height: var(--heading-font-lineheight);
        }

        .subheading {
            font-family: var(--subheading-font-family);
            font-size: var(--subheading-font-size);
            font-weight: var(--subheading-font-weight);
            letter-spacing: var(--subheading-font-letterspacing);
            line-height: var(--subheading-font-lineheight);
        }

        .copy,
        p {
            font-family: var(--copy-font-family);
            font-size: var(--copy-font-size);
            font-weight: var(--copy-font-weight);
            letter-spacing: var(--copy-font-letterspacing);
            line-height: var(--copy-font-lineheight);
        }

    /*WEBKIT SCROLLBARS*/

        /*SET TRACK WIDTH*/

            body::-webkit-scrollbar {
                width: var(--scrollbar-width);
            }

        /*SET TRACK COLOUR*/

            body::-webkit-scrollbar-track {
                background: var(--scrollbar-track-bg);
            }

        /*SET THUMB COLOUR*/

            body::-webkit-scrollbar-thumb {
                background: var(--scrollbar-thumb-bg);
            }


            
/* ==========================================================================
   5. COMPONENTS
   ========================================================================== */

/*GRID LISTS*/

    /*BASIC GRID*/

        .grid-basic-list {
            display: grid;
            grid-gap: 25px;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            justify-content: start;
            align-items: start;
            vertical-align: top;
        }

    /*CENTERED GRID*/

        .grid-centered-list {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: stretch;
        }

        /*LIST ITEMS*/

            .list-items-2 .centered-list-item {
                width: calc(50% - 50px);
            }

            .list-items-3 .centered-list-item {
                width: 33.333%;
                border-right: 1px solid #FFF;
                text-align: center;
            }

            .list-items-3 .centered-list-item:last-of-type {
                border-right: none;
            }

            .list-items-4 .centered-list-item {
                width: calc(25% - 50px);
            }

/*SLIDERS*/

    /*SWIPER CONTROLS*/

        .component-swiper-controls {
            margin-top: 15px;
        }

        .component-swiper-controls .arrow-left,
        .component-swiper-controls .arrow-right {
            margin-right: 25px;
            cursor: pointer;
        }

/*VIDEO PLAYERS*/

    /*POSTER IMAGES*/

        .vjs-poster img {
            object-fit: cover !important;
        }

    /*MATCHPLAY THEME CUSTOMIZATION*/

        .matchplay-video-player-theme {
            position: relative;
        }

        /*BIG PLAY BUTTON*/

            .matchplay-video-player-theme .vjs-big-play-button {
                transform: translate(-50%, -50%);
                margin-top: 0px;
                margin-left: 0px;
                width: 64px;
                height: 64px;
                background-image: url('/wp-content/uploads/2025/02/play-button.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                border: none;
                background-color: transparent;
            }

            @media (hover: hover) and (pointer: fine) {

                .matchplay-video-player-theme .vjs-big-play-button:focus,
                .matchplay-video-player-theme:hover .vjs-big-play-button {
                    background-color: transparent;
                    background-image: url('/wp-content/uploads/2025/02/play-button-white.png');
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                }

            }

        /*HIDE DEFAULT ICON*/

            .matchplay-video-player-theme .vjs-big-play-button .vjs-icon-placeholder {
                display: none;
            }

        /*CONTROL BAR*/

            .matchplay-video-player-theme .vjs-control-bar {
                background: rgba(252, 194, 14, 0.5);
                margin-bottom: 0px;
                padding-left: 1em;
                padding-right: 1em;
            }

        /*PROGRESS BAR*/

            .matchplay-video-player-theme .vjs-slider {
                background-color: #2F2F2F;
            }

            .matchplay-video-player-theme .vjs-load-progress {
                background: #474747;
            }

            .matchplay-video-player-theme .vjs-play-progress:before {
                display: none;
            }

/*BUTTONS*/

    /*SPACING FOR MULTIPLE BUTTONS*/

        .buttons .primary-button:not(:first-of-type),
        .buttons .fancy-button-holder:not(:first-of-type) {
            margin-left: 25px;
        }

    /*PADDED BUTTONS*/

        .buttons.padding-enabled .primary-button {
            padding-top: 15px;
            padding-bottom: 15px;
            padding-left: 30px;
            padding-right: 30px;
        }

    /*ICONS WITHIN BUTTONS*/

        .buttons .primary-button .button-icon {
            margin-right: 15px;
        }

/*MAPS*/

    /*STANDARD MAP HEIGHT*/

        .map {
            position: relative;
            object-fit: cover;
            min-height: 450px;
            height: 100%;
            z-index: 25;
        }

/*ACCORDIONS*/

    /*PADDING & LAYOUT*/

        .accordion summary,
        .accordion .copy {
            padding: 15px;
        }

        .accordion summary {
            display: flex;
            cursor: pointer;
        }

/*UNORDERED LISTS*/

    /*BULLET STYLING*/

        .unordered-list ul {
            margin-left: 24px;
            list-style-position: inside;
            list-style-type: disc;
        }

        .unordered-list ul li {
            margin-bottom: 10px;
            font-family: var(--copy-font-family);
            font-size: var(--copy-font-size);
        }

/*IMAGE WITH HOVER CONTENT*/

    /*CONTAINER*/

        .image-with-hover-content-holder {
            position: relative;
            overflow: hidden;
        }

    /*BACKGROUND FADE*/

        .image-with-hover-content-holder .bg-fade {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
            z-index: 0;
        }

        @media (hover: hover) and (pointer: fine) {

            .image-with-hover-content:hover .bg-fade {
                opacity: 1;
            }

        }

    /*CLIP WRAPPER*/

        .image-with-hover-content .clip-wrapper {
            position: relative;
            overflow: hidden;
            height: auto;
        }

    /*INNER CONTENT*/

        .image-with-hover-content .inner-content {
            position: relative;
            transition: transform 1s ease;
            will-change: transform;
            z-index: 1;
            display: flex;
            flex-direction: column;
        }

        .image-with-hover-content .inner-content .subheading {
            margin-bottom: 15px;
        }

/*TABLES*/

    /*RESPONSIVE CONTAINER*/

        .table-external-container {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            overflow-x: auto !important;
            overflow-y: hidden;
            position: relative;
            -webkit-overflow-scrolling: touch;
            border: 1px solid #dddddd;
            margin-bottom: 25px;
        }

        .table-external-container::-webkit-scrollbar {
            height: 10px;
            background-color: #FFF;
        }

        .table-external-container::-webkit-scrollbar-thumb {
            background-color: #906241;
        }

    /*GRID SETUP*/

        .table-grid-main {
            display: grid;
            grid-template-columns: repeat(var(--total-cols), minmax(200px, 1fr));
            background-color: #dddddd;
            gap: 1px;
            width: max-content !important;
            min-width: 100%;
            font-family: var(--copy-font-family);
            font-size: var(--copy-font-size);
        }

    /*ROWS & COLUMNS*/

        .table-row {
            display: contents;
        }

        .table-column {
            background-color: #ffffff;
            padding: 1rem;
            display: flex;
            text-align: left;
            align-items: center;
            position: relative;
            flex-shrink: 0;
            word-break: break-word;
        }

    /*HEADERS & STICKY COLUMNS*/

        .table-row-header .table-column {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 20;
            background-color: #f2f2f2;
            font-weight: bold;
        }

        .is-first-column {
            position: -webkit-sticky;
            position: sticky;
            left: 0;
            z-index: 30;
            border-right: 1px solid #dddddd;
        }

        .table-row-header .is-first-column {
            z-index: 40;
            background-color: #f2f2f2;
        }

    /*STRIPING*/

        .table-row-body:nth-child(odd) .table-column {
            background-color: #f6f1e9;
        }

        .table-row-body:nth-child(even) .table-column {
            background-color: #fff;
        }

/*IMAGE LINK WITH TEXT*/

    /*CONTAINER*/

        .image-link-with-text {
            position: relative;
            display: block;
            padding-top: 250px;
            padding-left: 25px;
            padding-bottom: 25px;
            padding-right: 25px;
        }

    /*OVERLAY*/

        .image-link-with-text .overlay {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            z-index: 10;
            transition: .15s ease;
        }

        @media (hover: hover) and (pointer: fine) {

            .image-link-with-text:hover .overlay {
                background-color: rgba(0, 0, 0, 0.5);
                transition: .15s ease;
            }

            .image-link-with-text:hover .image-link {
                color: #4c8B9E;
            }

        }

    /*CONTENT*/

        .image-link-with-text .image-link-content {
            position: relative;
            z-index: 20;
        }

        .image-link-with-text .heading,
        .image-link-with-text .image-link {
            color: #FFF;
        }

/* ==========================================================================
   6. LAYOUT BLOCKS
   ========================================================================== */

/*SIMPLE LAYOUT*/

    /*ALIGNMENTS*/

        .simple-layout.left-align {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
        }

        .simple-layout.center-align {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .simple-layout.right-align {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: flex-end;
            text-align: right;
        }

    /*BUTTON ALIGNMENTS*/

        .simple-layout.center-align .buttons {
            justify-content: center !important;
            align-items: center !important;
        }

        .simple-layout.right-align .buttons {
            justify-content: flex-end !important;
            align-items: flex-end !important;
        }
        
/*PANELS*/

    /*PANEL HOLDER*/

        .panels .panel {
            position: relative;
            height: 100vh;
            height: 100svh;
        }

    /*ALIGNMENTS*/

        .panels.left-align .panel .center {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .panels.center-align .panel .center {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .panels.right-align .panel .center {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: flex-end;
        }

/*SIDE SCROLL*/

    /*MAIN HOLDER*/

        .side-scroll {
            height: 100vh;
            height: 100svh;
            position: relative;
            overflow: hidden;
        }

        .side-scroll-holder {
            display: flex;
            flex-wrap: nowrap;
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

    /*ARTICLES*/

        .side-scroll-holder article {
            position: relative;
            flex: 0 0 100vw;
            min-height: 100vh;
            min-height: 100svh;
        }

        .side-scroll-holder article .background-overlay {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
            width: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.1) 40%,
                rgba(0, 0, 0, 0.5) 70%,
                rgba(0, 0, 0, 0.9) 100%
            );
            z-index: 12;
            pointer-events: none;
        }

    /*CONTENT STACK*/

        .side-scroll-content-stack {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 50;
            pointer-events: none;
            display: block;
        }

        .side-scroll-content-stack .content-item {
            position: absolute;
            left: 100px;
            bottom: 150px;
            width: calc(100% - 200px);
            opacity: 0;
            visibility: hidden;
        }

        .side-scroll-content-stack .content-item.is-initial {
            opacity: 1;
            visibility: visible;
        }

    /*CONTENT ALIGNMENTS*/

        .side-scroll-content-stack .content-item.left-align {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .side-scroll-content-stack .content-item.center-align {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .side-scroll-content-stack .content-item.right-align {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
        }

    /*ANIMATION MASKS*/

        .anim-mask-title,
        .anim-mask-copy,
        .anim-mask-logo {
            overflow: hidden;
            display: block;
            margin-bottom: 10px;
            position: relative;
        }

        .anim-mask-title .subtitle,
        .anim-mask-copy .copy,
        .anim-mask-logo img {
            display: block;
            margin: 0;
        }

        .side-scroll-content p {
            color: #FFF;
            max-width: 60ch;
        }

    /*NAVIGATION*/

        .side-scroll-nav {
            position: absolute;
            bottom: 50px;
            left: 0;
            width: 100%;
            display: flex;
            padding: 0 100px;
            gap: 30px;
            z-index: 100;
            box-sizing: border-box;
        }

        .side-scroll-nav .nav-item {
            flex: 1;
            cursor: pointer;
            pointer-events: auto;
            display: flex;
            flex-direction: column;
        }

        .side-scroll-nav .progress-bar-wrap {
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .side-scroll-nav .progress-bar-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: #FFF;
        }

        .side-scroll-nav .nav-item p.nav-title {
            color: #FFF;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.1em;
            opacity: 0.4;
            margin-top: 15px;
            transition: opacity 0.3s ease;
        }

        .side-scroll-nav .nav-item p.nav-title.is-active {
            opacity: 1;
        }

    /*MOBILE CONTENT*/

        .mobile-slide-content {
            display: none;
        }

/*STICKY IMAGE*/

    /*IMAGE HOLDER*/

        .sticky-images .images {
            position: sticky;
            top: 0px;
            width: 50%;
            height: 100vh;
            height: 100svh;
        }

        .sticky-images .images aside {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
        }

    /*ARTICLES LIST*/

        .sticky-images .articles {
            width: 50%;
            padding: 100px;
        }

        .sticky-images .articles article {
            height: 100vh;
            height: 100svh;
        }

        .sticky-images .articles article .copy {
            max-width: 60ch;
        }

/*HALF AND HALF*/

    /*HALVES*/

        .half-and-half .half {
            position: relative;
            width: 50%;
        }

        .half-and-half .half .half-content {
            position: relative;
            z-index: 15;
        }

/*COURSE SLIDER*/

    /*SLIDES*/

        .course-slider .slide {
            width: 85%;
            border-radius: 25px;
        }

        .course-slider .slide .slide-media {
            position: relative;
            width: 45%;
            min-height: 500px;
        }

        .course-slider .slide .media-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            z-index: 15;
        }

        .course-slider .slide .slide-content {
            width: 55%;
            padding: 50px;
        }

    /*CONTROLS*/

        .course-slider .swiper-controls {
            margin-top: 50px;
        }

        .course-slider .swiper-controls .arrow-left {
            margin-right: 25px;
        }

        .course-slider .swiper-controls .nav-arrow {
            width: 25px;
            cursor: pointer;
        }

/*EVENT CALENDAR*/

        .site-events-block {
            --event-border-radius: 0px;
            --event-padding-base: 1rem;
            --event-gap-base: 1.5rem;
            --event-font-weight-bold: 700;
            --event-border-width: 1px;
            --event-bg: #ffffff;
            --event-text: #333333;
            --event-text-muted: #666666;
            --event-border: rgba(0, 0, 0, 0.15);
            --event-accent-bg: rgba(0, 0, 0, 0.05);
            --event-accent-hover: rgba(0, 0, 0, 0.1);
            --event-highlight-bg: rgba(0, 0, 0, 0.05);
            --event-highlight-text: var(--event-text);
            --event-focus-ring: var(--focus-color, #9D0D0D);
            --event-empty-day-bg: #f9f9f9;
            --event-active-day-bg: rgba(0, 0, 0, 0.02);
            --event-active-day-border: var(--event-focus-ring);
            padding: calc(var(--event-padding-base) * 4) 5vw;
            background-color: transparent;
        }

        .site-events-block .site-events-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .site-events-block .events-header {
            display: flex;
            flex-direction: column;
            gap: var(--event-gap-base);
            margin-bottom: calc(var(--event-padding-base) * 3);
        }

        .site-events-block .events-header-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: var(--event-gap-base);
        }

        .site-events-block .events-block-title {
            font-family: var(--heading-font-family);
            font-size: var(--heading-font-size);
            color: var(--event-text);
            margin: 0;
        }

        .site-events-block .events-controls-bar {
            position: relative;
            z-index: 10;
            display: flex;
            flex-wrap: wrap;
            gap: var(--event-gap-base);
            align-items: stretch;
            justify-content: space-between;
            background: var(--event-bg);
            padding: var(--event-padding-base);
            margin-bottom: calc(var(--event-padding-base) * 2);
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
        }

        .site-events-block .events-filters-group {
            display: flex;
            flex: 1;
            flex-wrap: wrap;
            gap: 1rem;
            min-width: 250px;
        }

        .site-events-block .events-input-wrapper {
            flex: 1;
            min-width: 200px;
            display: flex;
        }

        .site-events-block .events-clear-btn {
            background: transparent;
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            font-family: var(--copy-font-family);
            font-size: 14px;
            font-weight: var(--event-font-weight-bold);
            color: var(--event-text);
            cursor: pointer;
            padding: 0 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            height: 46px;
            align-items: center;
            justify-content: center;
        }

        .site-events-block .events-clear-btn:hover,
        .site-events-block .events-clear-btn:focus-visible {
            background: var(--event-accent-bg);
            outline: none;
        }

        .site-events-block .events-form-control {
            width: 100%;
            height: 46px;
            padding: 0 16px;
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            font-family: var(--copy-font-family);
            font-size: 14px;
            color: var(--event-text);
            background-color: var(--event-bg);
            box-sizing: border-box;
        }

        .site-events-block .events-form-control:focus {
            outline: 2px solid var(--event-focus-ring);
            outline-offset: -1px;
        }

        .site-events-block .events-view-toggles {
            display: flex;
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            overflow: hidden;
            height: 46px;
            box-sizing: border-box;
        }

        .site-events-block .view-toggle-btn {
            background: var(--event-bg);
            border: none;
            padding: 0 20px;
            height: 100%;
            font-family: var(--copy-font-family);
            font-size: 14px;
            font-weight: var(--event-font-weight-bold);
            color: var(--event-text);
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .site-events-block .view-toggle-btn:first-child {
            border-right: var(--event-border-width) solid var(--event-border);
        }

        .site-events-block .view-toggle-btn:hover,
        .site-events-block .view-toggle-btn:focus-visible {
            background: var(--event-accent-bg);
            outline: none;
        }

        .site-events-block .view-toggle-btn.is-active {
            background: var(--event-focus-ring);
            color: #ffffff;
        }

        .site-events-block .events-view-container {
            display: none;
        }

        .site-events-block .events-view-container.is-active {
            display: block;
        }

        .site-events-block .calendar-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: calc(var(--event-padding-base) * 2);
            padding: 0;
            border: none;
        }

        .site-events-block .calendar-month-title {
            font-family: var(--heading-font-family);
            font-size: 24px;
            color: var(--event-text);
            margin: 0;
            min-width: 200px;
            text-align: center;
        }

        .site-events-block .calendar-nav-btn {
            background: transparent;
            border: var(--event-border-width) solid var(--event-border);
            padding: 8px 16px;
            border-radius: var(--event-border-radius);
            font-family: var(--copy-font-family);
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            color: var(--event-text);
            transition: all 0.2s ease;
        }

        .site-events-block .calendar-nav-btn:hover:not(:disabled) {
            background: var(--event-accent-bg);
        }

        .site-events-block .calendar-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .site-events-block .calendar-month-grid {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
            background: var(--event-bg);
            border: var(--event-border-width) solid var(--event-border);
        }

        .site-events-block .calendar-month-grid th {
            font-family: var(--copy-font-family);
            font-size: 14px;
            text-transform: uppercase;
            color: var(--event-text-muted);
            padding: var(--event-padding-base);
            text-align: center;
            border-bottom: var(--event-border-width) solid var(--event-border);
            border-right: var(--event-border-width) solid var(--event-border);
        }

        .site-events-block .calendar-month-grid th:last-child {
            border-right: none;
        }

        .site-events-block .calendar-month-grid td {
            vertical-align: top;
            height: 100px;
            padding: 0.5rem;
            border-bottom: var(--event-border-width) solid var(--event-border);
            border-right: var(--event-border-width) solid var(--event-border);
            position: relative;
        }

        .site-events-block .calendar-month-grid td:last-child {
            border-right: none;
        }

        .site-events-block .calendar-month-grid td.empty-cell {
            background-color: var(--event-empty-day-bg);
        }

        .site-events-block .calendar-month-grid td.active-cell {
            background-color: var(--event-active-day-bg);
            box-shadow: inset 0 0 0 2px var(--event-active-day-border);
        }

        .site-events-block .calendar-month-grid td[aria-current="date"] {
            box-shadow: inset 0 0 0 2px var(--event-focus-ring);
        }

        .site-events-block .calendar-month-grid td.has-events {
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .site-events-block .calendar-month-grid td.has-events:hover,
        .site-events-block .calendar-month-grid td.has-events:focus-visible {
            background: var(--event-accent-hover);
            outline: 2px dashed var(--event-focus-ring);
            outline-offset: -2px;
        }

        .site-events-block .cal-day-number {
            font-family: var(--copy-font-family);
            font-size: 16px;
            font-weight: var(--event-font-weight-bold);
            color: var(--event-text);
            display: block;
            margin-bottom: 0;
            text-align: right;
            pointer-events: none;
        }

        .site-events-block .cal-event-indicators {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            pointer-events: none;
            margin-top: 4px;
            width: 100%;
        }

        .site-events-block .cal-event-title-text {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: var(--copy-font-family);
            font-size: 11px;
            line-height: 1.2;
            color: var(--event-text);
            background-color: var(--event-highlight-bg);
            padding: 2px 4px;
            border-radius: 2px;
            margin-bottom: 2px;
            font-weight: normal;
            text-align: left;
            transition: opacity 0.3s ease;
        }

        .site-events-block .cal-cell-recurring-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            width: 12px;
            height: 12px;
            color: var(--event-text-muted);
            opacity: 0.5;
            pointer-events: none;
        }

        .site-events-block .cal-event-count {
            font-family: var(--copy-font-family);
            font-size: 10px;
            color: var(--event-text-muted);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: left;
            display: block;
            margin-top: 2px;
            transition: opacity 0.3s ease;
        }

        .site-events-block .cal-accordion-row {
            display: table-row;
        }

        .site-events-block .cal-accordion-cell {
            padding: 0 !important;
            border: none !important;
        }

        .site-events-block .cal-accordion-wrapper {
            overflow: hidden;
            height: 0;
            background-color: var(--event-empty-day-bg);
        }

        .site-events-block .cal-accordion-inner {
            padding: calc(var(--event-padding-base) * 2);
            border-bottom: var(--event-border-width) solid var(--event-border);
            box-shadow: inset 0 8px 15px rgba(0,0,0,0.03);
        }

        .site-events-block .past-events-drawer {
            margin-bottom: var(--event-gap-base);
            border-bottom: var(--event-border-width) solid var(--event-border);
            padding-bottom: var(--event-padding-base);
        }
        
        .site-events-block .past-events-drawer:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .site-events-block .past-events-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 15px;
            background: var(--event-empty-day-bg);
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            font-family: var(--copy-font-family);
            font-size: 14px;
            font-weight: var(--event-font-weight-bold);
            color: var(--event-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            list-style: none;
        }
        
        .site-events-block .past-events-summary::-webkit-details-marker {
            display: none;
        }

        .site-events-block .past-events-summary:hover,
        .site-events-block .past-events-summary:focus-visible {
            background: var(--event-accent-hover);
            color: var(--event-text);
            outline: none;
        }
        
        .site-events-block .past-events-summary:focus-visible {
            outline: 2px dashed var(--event-focus-ring);
            outline-offset: 2px;
        }

        .site-events-block .past-events-summary svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .site-events-block .past-events-drawer[open] .past-events-summary {
            margin-bottom: var(--event-gap-base);
            background: var(--event-bg);
            border-color: transparent;
        }

        .site-events-block .past-events-drawer[open] .past-events-summary svg {
            transform: rotate(180deg);
        }

        .site-events-block .is-past-list .event-item {
            opacity: 0.7;
        }
        
        .site-events-block .is-past-list .event-item:hover,
        .site-events-block .is-past-list .event-item:focus-within {
            opacity: 1;
        }

        .site-events-block .events-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: var(--event-gap-base);
        }

        .site-events-block .event-item {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--event-gap-base);
            padding: calc(var(--event-padding-base) * 2);
            background-color: var(--event-bg);
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            transition: box-shadow 0.3s ease;
            position: relative;
        }

        .site-events-block .event-item:hover, 
        .site-events-block .event-item:focus-within {
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .site-events-block .event-thumbnail {
            width: 100%;
            height: 200px;
            border-radius: var(--event-border-radius);
            overflow: hidden;
            background-color: var(--event-accent-bg);
        }

        .site-events-block .event-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .site-events-block .event-thumbnail.no-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .site-events-block .event-thumbnail.no-image::after {
            content: '';
            display: block;
            width: 40px;
            height: 40px;
            background-color: var(--event-accent-hover);
            border-radius: 50%;
        }

        .site-events-block .event-date time {
            font-family: var(--copy-font-family);
            font-size: 14px;
            font-weight: var(--event-font-weight-bold);
            letter-spacing: 1px;
            color: var(--event-text);
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }

        .site-events-block .event-time {
            font-family: var(--copy-font-family);
            font-size: 12px;
            color: var(--event-text-muted);
            display: block;
            margin-top: 4px;
        }
        
        .site-events-block .event-recurring-icon {
            display: block;
            width: 14px;
            height: 14px;
            margin-left: 6px;
            color: currentColor;
            opacity: 0.8;
            flex-shrink: 0;
        }

        .site-events-block .event-venue {
            font-family: var(--copy-font-family);
            font-size: 12px;
            color: var(--event-text-muted);
            display: block;
            margin-top: 4px;
            font-style: italic;
        }

        .site-events-block .event-notice {
            display: inline-block;
            background-color: var(--event-highlight-bg);
            color: var(--event-highlight-text);
            font-family: var(--copy-font-family);
            font-size: 11px;
            padding: 2px 6px;
            border-radius: var(--event-border-radius);
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .site-events-block .event-title {
            font-family: var(--heading-font-family);
            font-size: var(--heading-font-size);
            margin: 0 0 0.5rem 0;
            color: var(--event-text);
        }

        .site-events-block .event-excerpt {
            font-family: var(--copy-font-family);
            font-size: var(--copy-font-size);
            line-height: 1.5;
            color: var(--event-text-muted);
            margin: 0 0 1.5rem 0;
        }

        .site-events-block .event-link {
            display: inline-block;
            font-family: var(--copy-font-family);
            font-size: var(--copy-font-size);
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--event-text);
            text-decoration: none;
            border-bottom: var(--event-border-width) solid var(--event-text);
            padding-bottom: 2px;
            transition: opacity 0.2s ease;
        }

        .site-events-block .event-link:hover {
            opacity: 0.7;
        }

        .site-events-block .event-link:focus-visible {
            outline: 2px dashed var(--event-focus-ring);
            outline-offset: 4px;
        }

        .site-events-block .events-empty-state {
            text-align: center;
            padding: calc(var(--event-padding-base) * 4) calc(var(--event-padding-base) * 2);
            background: var(--event-bg);
            border: var(--event-border-width) solid var(--event-border);
            border-radius: var(--event-border-radius);
            margin-top: calc(var(--event-padding-base) * 2);
        }

        .site-events-block .events-empty-state .empty-message {
            color: var(--event-text-muted);
            font-family: var(--copy-font-family);
            font-size: 18px;
            margin: 0;
        }

        .site-events-block .events-jump-btn {
            background: transparent;
            border: 2px solid var(--event-focus-ring);
            color: var(--event-focus-ring);
            padding: 10px 20px;
            font-family: var(--copy-font-family);
            font-size: 14px;
            font-weight: var(--event-font-weight-bold);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: var(--event-border-radius);
            cursor: pointer;
            margin-top: 1.5rem;
            transition: all 0.2s ease;
        }

        .site-events-block .events-jump-btn:hover,
        .site-events-block .events-jump-btn:focus-visible {
            background: var(--event-focus-ring);
            color: #fff;
            outline: none;
        }

        .site-events-block .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }

        @media (max-width: 768px) {
            .site-events-block .calendar-month-grid th {
                padding: 0.5rem;
                font-size: 12px;
            }
            .site-events-block .calendar-month-grid td {
                height: 60px;
                padding: 0.25rem;
            }
            .site-events-block .events-controls-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .site-events-block .events-filters-group {
                flex-direction: column;
                width: 100%;
            }
            .site-events-block .events-view-toggles {
                width: 100%;
            }
            .site-events-block .view-toggle-btn {
                flex: 1;
            }
            .site-events-block .calendar-controls {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }
            .site-events-block .calendar-month-title {
                order: -1;
                width: 100%;
            }
            .site-events-block .desktop-month-grid {
                display: none;
            }
            .site-events-block .mobile-month-list {
                display: block;
                margin-top: 1rem;
            }
        }

        @media (max-width: 768px) {
            .site-events-block .calendar-month-grid th {
                padding: 0.5rem;
                font-size: 12px;
            }
            .site-events-block .calendar-month-grid td {
                height: 60px;
                padding: 0.25rem;
            }
            .site-events-block .events-controls-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .site-events-block .events-filters-group {
                flex-direction: column;
                width: 100%;
            }
            .site-events-block .events-view-toggles {
                display: none !important;
            }
            .site-events-block .calendar-controls {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }
            .site-events-block .calendar-month-title {
                order: -1;
                width: 100%;
            }
            .site-events-block .desktop-month-grid {
                display: none;
            }
            .site-events-block .js-view-calendar {
                display: none !important;
            }
            .site-events-block .js-view-list {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
        }

        @media (min-width: 768px) {
            .site-events-block .events-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
            }
            .site-events-block .events-header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .site-events-block .event-item {
                grid-template-columns: 220px 150px 1fr;
            }
            .site-events-block .event-thumbnail {
                height: 100%;
                min-height: 140px;
            }
        }

/* ==========================================================================
   7. GLOBAL SECTIONS
   ========================================================================== */

/*BODY*/

    body {
        position: relative !important;
    }

/*HEADER*/

    /*BASE HEADER*/

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            display: flex;
            align-items: center;
            transition: background-color 0.4s ease;
            --hamburger-color: #9D0D0D;
            --plantrip-bg: #FFFFFF;
            --plantrip-color: #9D0D0D;
            --plantrip-hover-bg: #161616;
            --plantrip-hover-color: #FFFFFF;
            --book-bg: #9D0D0D;
            --book-color: #FFFFFF;
            --book-hover-bg: #161616;
            --book-hover-color: #FFFFFF;
        }

        header.header-dark {
            --hamburger-color: #FFFFFF;
            --plantrip-bg: #9D0D0D;
            --plantrip-color: #FFFFFF;
            --plantrip-hover-bg: #161616;
            --plantrip-hover-color: #FFFFFF;
            --book-bg: #FFFFFF;
            --book-color: #9D0D0D;
            --book-hover-bg: #161616;
            --book-hover-color: #FFFFFF;
        }

/*FOOTER*/



/*OTHER*/

    /*RECAPTCHA*/

            .grecaptcha-badge {
                visibility: hidden;
            }

        /*FANCYBOX*/

            .fancybox-infobar {
                display: none;
            }

/* ==========================================================================
   8. MEDIA QUERIES & SYSTEM PREFERENCES
   ========================================================================== */

/*MAX WIDTH: 1400px*/

    @media (max-width: 1400px) {

        /*CENTERING DIV*/

            .center,
            .center-alt {
                width: 85%;
            }

        /*VERTICAL SLIDER*/

            .vertical-slider {
                position: relative;
                height: auto;
                overflow: visible;
            }

            .vertical-slide {
                position: relative;
                display: block;
                height: auto;
                overflow: visible;
            }

            .vertical-slide-content {
                width: 100%;
                padding: 40px 20px;
                transform: none !important;
                opacity: 1 !important;
            }

            .vertical-slide-image {
                position: relative;
                width: 100%;
                height: 300px;
                margin-top: 20px;
                transform: none !important;
            }

            .vertical-slider-progress-vertical {
                display: none;
            }

    }

/*MAX WIDTH: 1200px*/

    @media (max-width: 1200px) {

        /*CENTERING DIV*/

            .center,
            .center-alt {
                width: 95%;
            }

        /*SIDE SCROLL*/

            .side-scroll {
                height: auto;
                position: relative;
            }

            .side-scroll-holder {
                display: block;
                width: 100%;
                height: auto;
                transform: none !important;
            }

            .side-scroll-holder article {
                width: 100%;
                height: auto;
                min-height: auto;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                box-sizing: border-box;
                padding-top: 100px;
                padding-bottom: 100px;
            }

            .side-scroll-content-stack {
                display: none !important;
            }

            .mobile-slide-content {
                display: block;
                position: relative;
                z-index: 20;
                width: calc(100% - 50px);
                margin: 0 auto;
            }

            .mobile-slide-content p {
                color: #fff;
                opacity: 1;
                transform: none;
            }

            .side-scroll-nav {
                display: none;
            }

        /*STICKY IMAGE*/

            .sticky-images {
                flex-direction: column;
            }

            .sticky-images .images {
                position: relative;
                top: auto;
                width: 100%;
                height: auto;
                order: 1;
            }

            .sticky-images .images aside {
                position: relative;
                top: auto;
                left: auto;
                height: 75vh;
                opacity: 1;
                transition: none;
            }

            .sticky-images .images aside:not(:first-of-type) {
                display: none;
            }

            .sticky-images .articles {
                width: 100%;
                padding-top: 50px;
                padding-bottom: 50px;
                padding-left: 25px;
                padding-right: 25px;
                order: 2;
            }

            .sticky-images .articles article {
                height: auto;
                margin-bottom: 50px;
            }

            .sticky-images .articles article:last-of-type {
                margin-bottom: 0px;
            }

        /*HALF AND HALF*/

            .half-and-half .half {
                width: 100%;
                padding: 0px !important;
            }

            .half-and-half .half.padding-control-enabled {
                padding: 50px !important;
            }

            .half-and-half .half .background-image {
                position: relative;
                min-height: 400px;
            }

        /*COURSE SLIDER*/

            .course-slider {
                padding-left: 25px;
                padding-right: 25px;
            }

            .course-slider .slide .slide-media,
            .course-slider .slide .slide-content {
                width: 100%;
            }

            .course-slider .slide .background-image {
                border-top-left-radius: 25px;
                border-bottom-left-radius: 0px;
                border-top-right-radius: 25px;
            }

            .course-slider .slide .background-video {
                border-top-left-radius: 25px;
                border-bottom-left-radius: 0px;
                border-top-right-radius: 25px;
            }

        /*CENTERED GRID LIST*/

            .grid-centered-list {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: stretch;
            }

            .centered-list-item {
                width: 100%;
                margin-bottom: 25px;
            }

            .centered-list-item:last-of-type {
                margin-bottom: 0px;
            }

            .centered-list .grid-centered-list.list-items-2 .centered-list-item {
                width: 100%;
            }

            .centered-list .grid-centered-list.list-items-3 .centered-list-item {
                width: 100%;
                border-right: none;
                padding-bottom: 25px;
            }

            .centered-list .grid-centered-list.list-items-4 .centered-list-item {
                width: 100%;
            }

    }

/*MAX WIDTH: 800px*/

    @media (max-width: 800px) {

        /*CENTERING DIV*/

            .center,
            .center-alt {
                width: calc(100% - 50px);
            }

        /*BLOCKS*/

            .standard-block .background-image {
                background-attachment: scroll !important;
            }

        /*HALF AND HALF*/

            .half-and-half .half.padding-control-enabled {
                padding: 25px !important;
            }

        /*TYPOGRAPHY RESET*/

            .title,
            .subtitle,
            .heading,
            .subheading,
            .copy {
                max-width: none !important;
            }

    }