/* fonts */
@import url("https://use.typekit.net/dhw0uaj.css");
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

:root {
    --white: rgba(255, 255, 255, 1);
    --whitetrans: rgba(255, 255, 255, 0.73);
    --offwhite: #dadada;
    --black: #030303;
    --grey: rgba(125, 125, 125, 1);
    --lightgrey: rgba(229, 229, 229, 1);
    --lgtrans: rgba(229, 229, 229, 0.8);
    --darkgrey: rgba(60, 60, 60, 1);
    --dgtrans: rgba(60, 60, 60, 0.8);
    --blue: #005dc2;
    --mauve: #c36;
    --purple: #336;
    --lightpurple: rgba(146, 123, 227, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

hr {
    width: 100%;
    border-top: 3px solid var(--black);
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    color: var(--blue);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}

    h2 {
        font-size: 46px;
    }

.Normal {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: #7a7a7a;
}

p, ul, li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 21px;
}

    p {
        margin-bottom: 1rem;
    }

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--black);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    a:hover {
        color: var(--grey);
    }

    a:visited {
        color: var(--black);
    }

        a:visited:hover {
            color: var(--grey);
        }

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

@media screen and (max-width: 576px) {
    h1 {
        font-size: 3rem !important;
    }

    h2, h3 {
        font-size: 1.5rem !important;
    }
}

/*------------------------------------------------*/
/* TOP BANNER                                     */
/*------------------------------------------------*/

#TopBanner {
    padding: 0 10.5%;
    background-color: var(--blue);
}

    #TopBanner p,
    #TopBanner .bi {
        display: inline-block;
        margin-bottom: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: var(--white);
        letter-spacing: 1em;
    }

    #TopBanner p {
        padding: 1em 0.25em;
        font-size: 12px;
    }

    #TopBanner .bi {
        font-size: 14px;
    }

    #TopBanner a {
        color: var(--white);
        letter-spacing: normal;
    }

.banner-social-icon:hover {
    background-color: var(--black);
}

@media screen and (max-width: 991px) {
    #TopBanner {
        padding: 1%;
    }

    .banner-social-icon:hover {
        background-color: transparent;
    }
}

/*------------------------------------------------*/
/* NAVBAR                                         */
/*------------------------------------------------*/

.navbar {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 8.5%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.bg-dark {
    background-color: var(--black) !important;
}

#dnn_dnnLOGO_imgLogo {
    max-width: 88px;
    margin: 5px 0 5px 20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    #dnn_dnnLOGO_imgLogo .nav-minimize {
        max-width: 160px;
    }

.nav-link {
    display: inline-block;
    padding: 30px 20px !important;
    font-family: "Abel", Sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 20px;
    color: var(--white) !important;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .nav-link:hover {
        color: var(--offwhite) !important;
        text-decoration: none;
        border-color: var(--blue);
    }

    .nav-link:visited {
        color: var(--white);
    }

        .nav-link:visited:hover {
            color: var(--offwhite) !important;
            text-decoration: none;
            border-color: var(--blue);
        }

.nav-item.active a,
.nav-item.active a:visited {
    color: var(--blue) !important;
    border-color: var(--blue);
}

.navbar ul {
    margin-left: 0;
}

.dropdown-toggle::after,
.sub-arrow {
    display: none;
}

.dropdown-menu {
    background-color: var(--black);
    margin: 0;
    min-width: 12rem;
}

    .dropdown-menu .nav-link {
        width: 100%;
        padding: 20px 0 20px 13px !important;
        font-size: 20px;
        line-height: initial;
        text-transform: capitalize;
        border-bottom: none;
    }

        .dropdown-menu .nav-link:hover {
            background-color: #3a3f45;
            color: var(--white) !important;
        }

    .dropdown-menu .active {
        border-radius: 0px;
    }

@media screen and (max-width: 991px) {
    .navbar {
        padding: 1%;
    }

    #dnn_dnnLOGO_imgLogo {
        max-width: 70px;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    #navbarmain .navbar-brand {
        order: 1
    }

    #navbarmain #NavbarBook {
        order: 2;
    }

    #navbarmain .navbar-toggler {
        order: 3;
    }

    #navbarmain #navbarNav {
        order: 4;
    }
}

@media screen and (min-width: 992px) {
    .dropdown-menu {
        border-radius: 0;
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/*------------------------------------------------*/
/* HERO                                           */
/*------------------------------------------------*/

/* photo hero */

.hero-bg {
    background-size: cover;
    background-position: center;
    object-fit: cover;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

/* video hero */

.video-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--graphitegray);
}

    body:not(.PageType_Home) .video-container {
        display: none;
    }

#videoBG {
    object-fit: cover;
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 0;
    left: 0;
}

.video-overlay {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 100%;
    gap: 1em;
    margin: auto;
    background: linear-gradient(0deg,rgba(84, 89, 95, 0.4) 0%, rgba(84, 89, 95, 0.4) 100%);
    text-align: center;
}

    .video-overlay p,
    .video-overlay h1,
    .video-overlay h2,
    .video-overlay h3,
    .video-overlay h4,
    .video-overlay h5,
    .video-overlay h6 {
        margin: 0;
    }

/* text */

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 98%;
    text-align: center;
}

    .hero-text h1,
    .hero-text h2,
    .hero-text h3,
    .hero-text h4,
    .hero-text h5,
    .hero-text h6 {
        margin: 0;
        color: #fff;
        letter-spacing: 1px;
    }

@media screen and (min-width: 992px) {
    .PageType_Home .hero-text {
        transform: translate(-50%, -130%);
    }
}

@media screen and (max-width: 991px) {
    .hero-bg {
        background-size: cover;
        background-position: center;
        object-fit: cover;
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }

    .PageType_Home .hero-bg {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

/*------------------------------------------------*/
/* MAIN CONTENT                                   */
/*------------------------------------------------*/

#MainContent ul li {
    list-style-type: disc;
}

.PageType_Normal #MainContent {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

#MainContentBottom .row > * {
    padding-left: 0;
    padding-right: 0;
}

#MapContent p {
    margin: 0;
    padding: 0;
    line-height: 0;
}

@media screen and (min-width: 992px) {
    #MainContent.container-fluid {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #MainContent .row {
        margin-right: 0;
        margin-left: 0;
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* HOME PAGE */

.PageType_Home .hero-bg {
    display: none;
}

.PageType_Home .video-container {
    display: flex;
}

.PageType_Home #TopContentTwo {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/Portals/33/about-us-bg.jpeg'), url('/Portals/185/about-us-bg.jpeg');
    background-position: top center;
    background-size: cover;
    overflow: hidden;
}

.PageType_Home #TopContentThree {
    padding: 5% 0;
}

.PageType_Home #TopContentFour {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/Portals/33/elevate-bg.jpeg'), url('/Portals/185/elevate-bg.jpeg');
    background-position: top center;
    background-size: cover;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    #HomeContent {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media screen and (max-width: 576px) {
    .PageType_Home .video-overlay {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .PageType_Home #TopContentFour {
        min-height: 100%;
        padding: 6rem 1rem;
    }
}

/* ABOUT US */

.Page-About_Us .hero-bg {
    display: none
}

.Page-About_Us #MainContent {
    padding-top: 0;
    padding-bottom: 0;
}

.Page-About_Us #TopContent {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    padding: 50px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Portals/33/about-us-bg.jpeg'), url('/Portals/185/about-us-bg.jpeg');
    background-position: top center;
    background-size: cover;
    overflow: hidden;
}

    .Page-About_Us #TopContent p {
        font-size: 16px;
        font-weight: 300;
    }

.Page-About_Us #TwoColumn {
    padding: 100px;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
}

    .Page-About_Us #TwoColumn p,
    .Page-About_Us #TwoColumn li {
        font-size: 16px;
        font-weight: 300;
    }

        .Page-About_Us #TwoColumn li {
            font-weight: 400;
        }

#HeadquartersCarousel {
    padding: 80px;
}

    #HeadquartersCarousel .carousel-item {
        width: 100%;
        height: 100%;
    }

        #HeadquartersCarousel .carousel-item img {
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

.Page-About_Us #TopContentTwo {
    margin: 100px 5%;
}

.Page-About_Us #TwoColumnTwo {
    padding: 100px;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
}

    .Page-About_Us #TwoColumnTwo p,
    .Page-About_Us #TwoColumnTwo li {
        font-size: 16px;
        font-weight: 300;
    }

    .Page-About_Us #TwoColumnTwo li {
        font-weight: 400;
    }

@media screen and (max-width: 991px) {
    .Page-About_Us #TopContent,
    .Page-About_Us #TwoColumn {
        padding: 50px 0;
    }
}

@media screen and (max-width: 576px) {
    .Page-About_Us #TopContentTwo {
        margin: 5% 0;
    }
}

/* OUR PHILOSOPHY */

.Page-Our_Philosophy .hero-bg {
    background-image: linear-gradient(rgba(0, 93, 194, 0.4), rgba(0, 93, 194, 0.4)), url('/Portals/33/philosophy-hero.jpeg'), url('/Portals/185/philosophy-hero.jpeg');
}

.Page-Our_Philosophy #MainContent {
    padding-top: 0;
}

.Page-Our_Philosophy #TwoColumn {
    background-color: var(--black);
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/Portals/33/eclipse-golf-academy-logo-white-no-background.png'), url('/Portals/185/eclipse-golf-academy-logo-white-no-background.png');
    background-size: 600px;
    background-position: 10% 50%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 200px;
}

@media screen and (max-width: 991px) {
    .Page-Our_Philosophy #TwoColumn {
        background-size: 385px;
        background-position: 0% 40%;
        padding: 10% 2%;
    }
}

@media screen and (min-width: 768px) {
    .system-left {
        border-right: 1px solid rgba(219, 1, 0, 0.10980392156862745);
    }
}

/* PROGRAMS - SHARED */

.Page-Junior_Camps__Ages_6_14_ #MainContent,
.Page-High_School_Program__Ages_14_17_ #MainContent,
.Page-Private_Coaching #MainContent,
.Page-Adult_Op36_Program__Ages_21__ #MainContent {
    padding-top: 0;
}

.Page-Junior_Camps__Ages_6_14_ #TwoColumn,
.Page-High_School_Program__Ages_14_17_ #TwoColumn,
.Page-Private_Coaching #TwoColumn,
.Page-Adult_Op36_Program__Ages_21__ #TwoColumn {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    padding: 100px;
}

    .Page-Junior_Camps__Ages_6_14_ #dnn_columnLeft h4,
    .Page-High_School_Program__Ages_14_17_ #dnn_columnLeft h4,
    .Page-Private_Coaching #dnn_columnLeft h4,
    .Page-Adult_Op36_Program__Ages_21__ #dnn_columnLeft h4 {
        color: #FFFFFF;
        font-size: 34px;
        font-weight: 400;
        text-transform: uppercase;
    }

.Page-PGA_Junior_League__Ages_6_13_ #TwoColumnTwo h3,
.Page-Adult_Op36_Program__Ages_21__ #TwoColumnTwo h3 {
    color: var(--black);
}

@media screen and (max-width: 991px) {
    .Page-Junior_Camps__Ages_6_14_ #TwoColumn,
    .Page-High_School_Program__Ages_14_17_ #TwoColumn,
    .Page-Private_Coaching #TwoColumn,
    .Page-Adult_Op36_Program__Ages_21__ #TwoColumn {
        padding: 10% 2%;
    }

    #ProgramAccordion,
    #ProgramTimeAccordion {
        margin-bottom: 1rem;
    }
}

/* PROGRAMS - AFTER-SCHOOL */

.Page-After_School_Op36_Program__Ages_6_18_ .hero-bg {
    background-image: linear-gradient(rgba(0, 25, 55, 0.6), rgba(0, 25, 55, 0.6)), url('/Portals/33/after-school-hero.jpg'), url('/Portals/185/after-school-hero.jpg');
    height: 100vh;
}

.Page-After_School_Op36_Program__Ages_6_18_ .hero-text {
    padding: 0 25%;
}

    .Page-After_School_Op36_Program__Ages_6_18_ .hero-text h2 {
        color: rgba(255, 255, 255, 0.73);
        font-family: "Poppins", Sans-serif;
        font-size: 25px;
        font-weight: 500;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

.Page-After_School_Op36_Program__Ages_6_18_ #MainContent {
    padding-top: 0;
}

.Page-After_School_Op36_Program__Ages_6_18_ #TwoColumn {
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    padding: 100px 200px;
}

    .Page-After_School_Op36_Program__Ages_6_18_ #dnn_columnLeft h2 {
        color: #FFFFFF;
        font-size: 34px;
        font-weight: 400;
        text-transform: uppercase;
        -webkit-text-stroke-color: #000;
        stroke: #000;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .Page-After_School_Op36_Program__Ages_6_18_ #dnn_columnLeft p {
        font-size: 20px !important;
    }

.Page-After_School_Op36_Program__Ages_6_18_ #TopContentTwo {
    padding-top: 1rem;
}

.Page-After_School_Op36_Program__Ages_6_18_ #ThreeColumn {
    display: none;
}

.step {
    padding: 0 0 50px 0;
}

    .step h2 {
        color: #000000;
        font-family: "Abel", Sans-serif;
        font-size: 34px;
    }

    .step h3 {
        color: #000000;
        font-family: "Abel", Sans-serif;
        font-size: 26px;
    }

    .step h5 {
        color: #000000;
        font-family: "Abel", Sans-serif;
        font-size: 20px;
    }

    .step p,
    .step li {
        color: #54595F;
        font-family: "Roboto", Sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

@media screen and (max-width: 767px) {
    .step {
        padding: 2% 0;
    }
}

@media screen and (min-width: 768px) {
    .step.bordered > div {
        padding: 3% 2%;
        border-right: 1px solid var(--lightgrey);
    }

        .step.bordered > div:last-child {
            border-right: none;
        }
}

.Page-After_School_Op36_Program__Ages_6_18_ #ThreeColumn {
    background-color: #000;
    padding-top: 50px;
    padding-bottom: 50px;
}

.program-overview {
    padding: 10px;
    max-width: 1001px;
    justify-self: center;
    justify-items: center;
}

    .program-overview h4,
    .program-overview p,
    .program-overview li {
        color: #54595F;
        font-family: "Roboto", Sans-serif;
        font-weight: bold;
        text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    }

        .program-overview h4 {
            font-size: 24px;
        }

        .program-overview p,
        .program-overview li {
            font-size: 16px;
        }

@media screen and (max-width: 991px) {
    .program-overview ul,
    .program-overview ol {
        padding-left: 0;
    }
}

.op36-box {
    position: relative;
    margin: 0 0  50px 0;
    padding: 85px 150px;
    justify-content: center;
    background-color: var(--blue);

}

    .op36-box::before {
        content: "";
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/portals/33/op36-logo.png'), url('/portals/185/op36-logo.png');
        background-position: center;
        background-repeat: no-repeat;
        filter: grayscale(100%) brightness(100%) opacity(50%);
        opacity: 0.8;
    }

    .op36-box-content {
        position: relative;
        z-index: 1;
    }

        .op36-box-content h2 {
            color: #fff;
            font-family: 'Roboto', sans-serif;
            font-size: 45px;
            font-weight: 600;
            line-height: 1.2em;
        }

        .op36-box-content li {
            color: #fff;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            font-weight: 700;
            line-height: 2em;
        }

@media screen and (max-width: 991px) {
    .op36-box {
        padding: 5% 2%;
    }

    .op36-box h2 {
        text-align: center;
    }
}

.Page-After_School_Op36_Program__Ages_6_18_ #MidContent {
    padding-left: 0;
    padding-right: 0;
}

    .Page-After_School_Op36_Program__Ages_6_18_ #MidContent .row {
        padding-left: 0;
        padding-right: 0;
    }

.op36-packages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}

    .op36-packages > div {
        width: 100%;
    }

    .op36-packages h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .op36-packages p {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
    }

.op36-packages-header {
    background-color: #54595F;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    align-content: center;
}

    .op36-packages-header h2 {
        color: #fff;
        font-size: 24px;
        line-height: 1.2;
    }

.op36-packages-body {
    background-color: #f9fafa;
}

    .op36-packages-body h2 {
        display: flex;
        justify-self: center;
        color: #555;
        font-size: 65px;
        line-height: 0.8;
        margin: 40px 0;
    }

        .op36-packages .currency {
            align-self: flex-start;
            line-height: 1;
            font-size: .3em;
            margin-right: 3px;
        }

    .op36-packages-body p {
        margin: 0;
    }

    .op36-packages-body hr {
        border-top-style: solid;
        border-top-color: #ddd;
        border-top-width: 2px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .op36-packages-body .book-button-blue {
        margin-top: 30px;
        margin-bottom: 30px;
    }

.op36-packages .ribbon-wrapper {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

    .op36-packages .ribbon-content {
        background-color: #d23d09;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        width: 200%;
        transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
        margin-top: 35px;
        font-size: 13px;
        line-height: 2;
    }

.Page-After_School_Op36_Program__Ages_6_18_ #MidContentNarrow {
    padding: 70px 0 50px 0;
}

@media screen and (max-width: 991px) {
    .Page-After_School_Op36_Program__Ages_6_18_ .hero-text {
        padding: 0;
    }

    .Page-After_School_Op36_Program__Ages_6_18_ #TwoColumn {
        padding: 10% 2%;
    }
}

@media screen and (max-width: 576px) {
    .Page-After_School_Op36_Program__Ages_6_18_ .hero-bg {
        height: 400px;
    }

    .op36-packages-body h2 {
        display: block;
    }

    .op36-packages .currency {
        align-self: revert;
        line-height: revert;
        font-size: revert;
        margin-right: revert;
    }
}

/* PROGRAMS - PGA JUNIOR LEAGUE */

.Page-PGA_Junior_League__Ages_6_13_ .hero-bg {
    background-image: linear-gradient(rgba(0, 93, 194, 0.4), rgba(0, 93, 194, 0.4)), url('/portals/33/programs-pga-junior-league.jpeg'), url('/portals/185/programs-pga-junior-league.jpeg');
}

.Page-PGA_Junior_League__Ages_6_13_ #MainContent {
    padding-top: 0;
}

.Page-PGA_Junior_League__Ages_6_13_ #TwoColumn {
    background-color: #E19221;
    padding: 100px 200px;
    align-items: center;
}

    .Page-PGA_Junior_League__Ages_6_13_ #dnn_columnLeft h3 {
        color: #FFFFFF;
        font-size: 34px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .Page-PGA_Junior_League__Ages_6_13_ #dnn_columnLeft h4 {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.2;
        color: #fff;
    }

.Page-PGA_Junior_League__Ages_6_13_ #TopContentTwo {
    padding-top: 2rem;
}

.Page-PGA_Junior_League__Ages_6_13_ .program-schedule {
    border: none;
}

.Page-PGA_Junior_League__Ages_6_13_ .header-faqs {
    padding-top: 50px;
}

.Page-PGA_Junior_League__Ages_6_13_ #ProgramLowerAccordion {
    padding-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .Page-PGA_Junior_League__Ages_6_13_ #TwoColumn {
        padding: 10% 2%;
    }
}

/* PROGRAMS - JUNIOR CAMPS */

.Page-Junior_Camps__Ages_6_14_ .hero-bg {
    background-image: linear-gradient(rgba(0, 93, 194, 0.4), rgba(0, 93, 194, 0.4)), url('/portals/33/programs-junior-camps.jpeg'), url('/portals/185/programs-junior-camps.jpeg');
}

.Page-Junior_Camps__Ages_6_14_ #dnn_columnLeft h2 {
    font-size: 5rem;
}

.Page-Junior_Camps__Ages_6_14_ #TopContentTwo {
    padding-top: 2rem;
}

/* PROGRAMS - HIGH SCHOOL PROGRAM */

.Page-High_School_Program__Ages_14_17_ .hero-bg {
    background-image: linear-gradient(rgba(7, 9, 30, 0.4), rgba(7, 9, 30, 0.4)), url('/portals/33/programs-high-school.jpg'), url('/portals/185/programs-high-school.jpg');
}

.Page-High_School_Program__Ages_14_17_ #dnn_columnLeft h2 {
    font-size: 4rem;
}

.Page-High_School_Program__Ages_14_17_ #TopContentTwo {
    padding-top: 2rem;
}

/* PROGRAMS - PRIVATE COACHING */

.Page-Private_Coaching .hero-bg {
    background-image: linear-gradient(rgba(0, 25, 55, 0.6), rgba(0, 25, 55, 0.6)), url('/portals/33/private-coaching-hero.jpg'), url('/portals/185/private-coaching-hero.jpg');
    background-position: 50% 15%;
}

.Page-Private_Coaching #TopContentTwo {
    padding-top: 2rem;
    background-color: #EFEFEF;
}

.Page-Private_Coaching #TopContentThree {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media screen and (max-width: 576px) {
    .Page-Private_Coaching #TopContentThree {
        padding: 5% 0;
    }
}

/* PROGRAMS - ADULT OP36 PROGRAM */

.Page-Adult_Op36_Program__Ages_21__ .hero-bg {
    background-image: linear-gradient(rgba(0, 25, 55, 0.6), rgba(0, 25, 55, 0.6)), url('/Portals/_default/images/AdobeStock_33909421.jpg');
}

.Page-Adult_Op36_Program__Ages_21__ #TopContentTwo {
    padding-top: 2rem;
}

.Page-Adult_Op36_Program__Ages_21__ #MidContent {
    padding-left: 0;
    padding-right: 0;
}

    .Page-Adult_Op36_Program__Ages_21__ #MidContent .row {
        padding-left: 0;
        padding-right: 0;
    }

.Page-Adult_Op36_Program__Ages_21__ .program-schedule {
    border: none;
}

.Page-Adult_Op36_Program__Ages_21__ .program-overview {
    margin-top: 75px;
}

/* CLUB FITTING */

.Page-Club_Fitting .hero-bg {
    background-image: linear-gradient(rgba(0, 93, 194, 0.4), rgba(0, 93, 194, 0.4)), url('/Portals/33/club-fitting-hero.jpg'), url('/Portals/185/club-fitting-hero.jpg');
    background-position: 50% 10%;
}

.Page-Club_Fitting #dnn_columnLeftThree p,
.Page-Club_Fitting #dnn_columnLeftThree ul,
.Page-Club_Fitting #dnn_columnLeftThree li {
    color: #54595F;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.Page-Club_Fitting #dnn_columnLeftThree p,
.Page-Club_Fitting #dnn_columnLeftThree ul {
    margin-bottom: 2rem;
}

.Page-Club_Fitting #dnn_columnLeftThree li {
    margin-bottom: 0.75rem;
}

.Page-Club_Fitting #dnn_columnRightThree p {
    text-align: center;
}

@media screen and (max-width: 991px) {
    .Page-Club_Fitting .hero-bg {
        height: 400px;
        background-position: 50% 30%;
    }
}

@media screen and (max-width: 768px) {
    .Page-Club_Fitting #dnn_columnLeftThree p,
    .Page-Club_Fitting #dnn_columnLeftThree ul {
        margin-bottom: 1rem;
    }

    .Page-Club_Fitting #dnn_columnLeftThree li {
        margin-bottom: 0;
    }
}

/* CONTACT */

.Page-Contact .hero-bg {
    display: none;
}

.Page-Contact #TwoColumnThree {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    background-image: linear-gradient(rgba(0, 93, 194, 0.4), rgba(0, 93, 194, 0.4)), url('/Portals/33/philosophy-hero.jpeg'), url('/Portals/185/philosophy-hero.jpeg');
    overflow: hidden;
    position: relative;
    padding-left: 12%;
    padding-right: 12%;
}

.Page-Contact #dnn_columnRightThree {
    padding-left: 0;
    padding-right: 0;
}

.Page-Contact #MainContent {
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 991px) {
    .Page-Contact #TwoColumnThree {
        height: 100%;
        padding: 5% 2%;
    }
}

/*------------------------------------------------*/
/* COMPONENTS                                     */
/*------------------------------------------------*/

/* boxes */

.content-box {
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    background-color: var(--lightgrey);
    border: 2px solid var(--black);
    border-radius: 12px;
}

    .content-box ul {
        list-style-position: inside;
        text-align: left;
        margin-left: -10px;
    }

    .content-box img {
        border-radius: 10px;
    }

@media screen and (min-width: 992px) {
    .content-box {
        width: 100%;
        padding: 1em;
    }

    .content-section {
        margin-top: auto;
    }
}

@media screen and (max-width: 991px) {
    .content-box {
        text-align: center;
    }
}

/* buttons */

.book-button-white {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #1a63b3 !important;
    text-align: center;
    border-radius: 3px;
    transition: all .3s;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .book-button-white:hover {
        color: #1a63b3 !important;
    }

.book-button-blue {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--white) !important;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all .3s;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .book-button-blue:hover {
        color: var(--white) !important;
    }

    .book-button-blue i {
        margin-left: -5px;
    }

.book-button-blue-alt {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--blue);
    font-family: 'Abel', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    color: var(--white) !important;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all .3s;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .book-button-blue-alt:hover {
        color: var(--white) !important;
    }

    .book-button-blue-alt i {
        margin-left: -5px;
    }

.book-button-orange {
    display: inline-block;
    padding: 12px 24px;
    background-color: #E19221;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    transition: all .3s;
}

    .book-button-orange:hover {
        color: #fff !important;
    }

/* zoom buttons */

.zoom-button {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 8;
    width: 100%;
    min-height: 260px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

    .zoom-button img {
        position: absolute;
        top: -10%;
        left: 0;
        width: 100%;
        height: 100%;
        align-self: center;
        object-fit: cover;
        transition: transform 1500ms ease;
    }

    .zoom-button:hover img {
        transform: scale(1.2);
    }

.text-overlay {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    justify-content: center;
    align-items: center;
    transform: translate(-50%,0);
    width: 100%;
    min-height: 60px;
    text-align: center;
    padding: 0px 0px 0px 0px;
    background-color: var(--blue);
}

    .text-overlay h2 {
        margin-bottom: 0;
        font-family: "Abel", Sans-serif;
        font-size: 25px;
        font-weight: bold;
        text-transform: capitalize;
        letter-spacing: 1px;
        color: var(--white);
    }

    .text-overlay a {
        color: #fff !important;
        text-decoration: none;
    }

/* team bio box */

.team-bio {
    margin-top: 20px;
    padding: 35px;
    border: 1px solid var(--black);
}

    .team-bio .row {
        align-items: center;
        padding: 0 !important;
    }

    .team-bio p {
        font-size: 16px;
        font-weight: 300;
        line-height: 2em;
        color: #54595F;
    }

@media screen and (max-width: 576px) {
    .team-bio {
        padding: 35px 1%;
    }
}

/* text classes */

.header-text {
    font-family: "Oswald", Sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 80px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

    .subhead-text {
        font-family: "Poppins", Sans-serif;
        font-weight: 400;
        font-size: 35px;
        color: var(--whitetrans);
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .subhead-text-alt {
        font-family: "Abel", Sans-serif;
        font-weight: 500;
        font-size: 30px;
        margin-top: -10px !important;
        color: var(--whitetrans);
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .subhead-text-alt-two {
        font-family: "Poppins", Sans-serif;
        color: rgba(255, 255, 255, 0.73) !important;
        font-size: 25px;
        font-weight: 500;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .subhead-text-alt-two {
        color: rgba(255, 255, 255, 0.73);
        font-family: "Poppins", Sans-serif;
        font-size: 25px;
        font-weight: 500;
    }

.header-about {
    font-family: "Abel", Sans-serif;
    font-size: 46px;
    color: var(--white);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

    .subhead-about {
        font-family: "Abel", Sans-serif;
        font-size: 25px;
        font-weight: 500;
        -webkit-text-stroke-width: 0px;
        stroke-width: 0px;
        -webkit-text-stroke-color: #000;
        stroke: #000;
        color: rgba(255, 255, 255, 0.73);
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .body-about {
        font-family: "Abel", Sans-serif;
        font-size: 21px;
        color: var(--white);
        line-height: 1.5;
    }

    .body-about-alt {
        font-size: 16px;
        font-weight: 300;
        color: var(--white);
        line-height: 1.5;
    }

    .body-about-list li {
        font-size: 16px;
        font-weight: 400;
        color: var(--white);
    }

.home-body-alt {
    font-family: "Helvetica", Sans-serif;
    font-size: 15px;
    font-weight: 200;
    font-style: oblique;
    line-height: 1.5em;
    color: var(--black);
    text-align: center;
}

    .home-body-alt a {
        color: var(--blue);
        font-weight: 500;
    }

        .home-body-alt a:hover {
            color: #217DE1;
        }

.header-programs {
    font-family: "Abel", Sans-serif;
    color: var(--black);
    text-transform: uppercase;
}

.header-elevate {
    font-size: 65px;
    font-weight: 900;
    margin-top: 20px;
    color: var(--white);
    line-height: 1.2em;
}

.header-footer-contact {
    font-family: "Abel", Sans-serif;
    font-size: 46px;
    color: var(--white);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

    .subhead-footer-contact {
        margin-bottom: 0;
        font-family: "Helvetica", Sans-serif;
        color: var(--white);
        font-size: 18px;
        font-weight: 300;
        text-transform: capitalize;
        font-style: oblique;
    }

.header-team {
    font-family: "Oswald", Sans-serif;
    font-size: 80px;
    color: var(--blue);
    text-transform: uppercase;
}

    .subhead-team {
        font-size: 16px;
        font-weight: 300;
        color: #7A7A7A;
        margin-bottom: 40px;
    }

.header-bio {
    color: var(--black);
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 0;
}

.subhead-system {
    color: #000000;
    font-family: "Abel", Sans-serif;
    font-size: 19px;
    text-transform: uppercase;
}

    .body-system {
        color: #54595F;
        font-family: "Roboto", Sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

.header-contact {
    color: #FFFFFF;
    font-family: "Abel", Sans-serif;
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2em;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.header-faqs {
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 39px;
    font-weight: 400;
    text-align: center;
}

.header-op36-faq {
    color: #000000;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 0;
    text-align: center;
}

    .subhead-op36-faq {
        color: #bfbfbf;
        font-size: 15px;
        font-weight: 300;
        text-align: center;
    }

.eyebrow-blue {
    font-family: "Helvetica", Sans-serif;
    margin-bottom: -0.5rem;
    color: var(--blue);
    font-size: 22px;
    font-weight: 300;
    text-transform: capitalize;
    font-style: oblique;
}

.eyebrow-white {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 12px;
}

.eyebrow-black {
    color: #7A7A7A;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 0.1em;
    letter-spacing: 5px;
}

.font-small {
    font-size: 0.8rem !important;
}

/* images */

.slide-logo {
    max-width: 500px;
    width: 100%;
    position: absolute;
    right: 12.5%;
    will-change: transform;
}

    .slide-logo img {
        opacity: 0.21;
    }

.slide-logo-two {
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 40%;
    right: 5%;
    will-change: transform;
}

    .slide-logo-two img {
        opacity: 0.21;
    }

.swirl-wrapper {
    display: flex;
    justify-content: center;
}

    .swirl-logo {
        max-width: 210px;
        width: 100%;
        height: auto;
        transform: rotate(-90deg);
        will-change: transform;
    }

@media screen and (max-width: 991px) {
    .slide-logo {
        max-width: 400px;
        top: 70%
    }

    .slide-logo-two {
        max-width: 400px;
        top: 60%;
        right: 0%;
    }
}

/* dividers */

.divider-blue {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 1px solid #217DE1;
}

/* sponsor carousel */

#carouselSponsors {
    display: inline-flex;
    width: 100%;
}

    #carouselSponsors .carousel-inner {
        margin-bottom: 1.5em;
    }

    #carouselSponsors .carousel-item {
        transition: transform 1s ease-in-out;
    }

        #carouselSponsors .carousel-item img {
            max-width: 205px;
            width: 100%;
            height: auto;
            margin-left: auto;
            margin-right: auto;
        }

    #carouselSponsors .carousel-indicators button {
        background-color: var(--black) !important;
    }

/* FAQ ACCORDIONS */

/* upper program faq */

#ProgramAccordion,
#ProgramTimeAccordion,
#StepAccordion {
    border: 1px solid #d5d8dc;
}

    #ProgramAccordion *,
    #ProgramTimeAccordion *,
    #StepAccordion * {
        background-color: transparent;
    }

    #ProgramAccordion .accordion-item,
    #ProgramTimeAccordion .accordion-item,
    #StepAccordion .accordion-item {
        border-radius: 0;
    }

    #ProgramAccordion .accordion-button,
    #ProgramTimeAccordion .accordion-button,
    #StepAccordion .accordion-button {
        border-bottom: 1px solid #d5d8dc;
        border-radius: 0;
    }

        #ProgramAccordion .accordion-button.first,
        #ProgramTimeAccordion .accordion-button.first {
            border-top: none;
        }

        #ProgramAccordion .accordion-button.last,
        #ProgramTimeAccordion .accordion-button.last {
            border-bottom: none;
        }

            #ProgramAccordion .accordion-button.last:not(.collapsed),
            #ProgramTimeAccordion .accordion-button.last:not(.collapsed) {
                border-bottom: 1px solid #d5d8dc;
            }

    #ProgramAccordion .accordion-collapse.show,
    #ProgramTimeAccordion .accordion-collapse.show {
        border-bottom: 1px solid #d5d8dc;
    }

        #ProgramAccordion .accordion-collapse.show.last,
        #ProgramTimeAccordion .accordion-collapse.show.last {
            border-bottom: none;
        }

    #ProgramAccordion .accordion-button,
    #ProgramAccordion .accordion-button .collapsed,
    #ProgramTimeAccordion .accordion-button,
    #ProgramTimeAccordion .accordion-button .collapsed,
    #StepAccordion .accordion-button,
    #StepAccordion .accordion-button .collapsed {
        color: var(--blue);
        font-weight: 700;
    }

    #ProgramAccordion p,
    #ProgramAccordion li,
    #ProgramTimeAccordion p,
    #ProgramTimeAccordion li,
    #StepAccordion p,
    #StepAccordion li {
        color: #7a7a7a;
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5rem;
    }

/* lower program faq */

#ProgramLowerAccordion * {
    background-color: transparent;
    border: none;
    border-color: #eee !important;
    box-shadow: none;
}

#ProgramLowerAccordion .accordion-button,
#ProgramLowerAccordion .accordion-button.collapsed {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.8em;
}

#ProgramLowerAccordion .accordion-button {
    color: var(--blue);
    border-bottom: none;
}

    #ProgramLowerAccordion .accordion-button.collapsed {
        color: #4c4c4c;
        border-bottom: 1px solid #eee;
    }

#ProgramLowerAccordion .accordion-collapse.show,
#ProgramLowerAccordion .accordion-collapse.collapsing {
    border-bottom: 1px solid #eee;
}

#ProgramLowerAccordion p,
#ProgramLowerAccordion li {
    color: #7a7a7a;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

/* op36 faq */

#Op36Accordion * {
    box-shadow: none;
}

    #Op36Accordion .accordion-item {
        margin: 55px 0px 0px 0px;
        padding: 45px;
        background-color: #fcfcfc;
        border: 1px solid #e2e2e2;
    }

    #Op36Accordion .accordion-button,
    #Op36Accordion .accordion-button.collapsed {
        font-size: 20px;
        font-weight: 900;
        text-transform: uppercase;
        background-color: transparent;
    }

        #Op36Accordion .accordion-button:not(.collapsed) {
            background-color: transparent;
        }

    #Op36Accordion p {
        color: #000000;
        font-size: 15px;
        font-weight: 300;
    }

/* program schedule */

.program-schedule {
    padding: 10px;
    border: 1px solid #d5d8dc;
}

    .program-schedule h5 {
        display: flex;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

        .program-schedule h5::after {
            content: "";
            flex-grow: 1;
            align-self: center;
            margin-left: 12px;
            border-bottom: 2px dotted #7a7a7a;
        }

    .program-schedule p,
    .program-schedule li {
        font-size: 14px;
        color: #7a7a7a;
    }

@media screen and (max-width: 767px) {
    .program-schedule h3 {
        text-align: center;
    }
}

/* videos */

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* quick forms */

.qf_step {
    justify-self: center;
}

/* recaptcha */

.grecaptcha-badge {
    opacity: 0;
}

/*------------------------------------------------*/
/* FOOTER                                         */
/*------------------------------------------------*/

footer {
    background-color: var(--lightgrey);
}

#FooterUpper {
    padding: 100px;
    background-color: #efefef;
}

#footerUpperSplit {
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: var(--blue);
}

#FooterLower {
    background-color: var(--black);
}

#dnn_footerLowerLeft {
    margin-top: 15px;
    align-items: center;
    justify-content: center;
}

    #dnn_footerLowerLeft p,
    #dnn_footerLowerLeft a {
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-align: center;
        line-height: 1.5rem;
    }

        #dnn_footerLowerLeft p {
            color: var(--white);
        }

        #dnn_footerLowerLeft a,
        #dnn_footerLowerLeft a:visited {
            color: var(--mauve);
        }

            #dnn_footerLowerLeft a:hover,
            #dnn_footerLowerLeft a:visited:hover {
                color: var(--purple);
            }

#dnn_footerLowerRight {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

    #dnn_footerLowerRight div {
        align-items: center;
    }

    #dnn_footerLowerRight p {
        margin-bottom: 0;
        font-family: "Abel", Sans-serif;
        font-size: 15px;
        font-weight: 900;
        color: var(--white);
        text-transform: uppercase;
    }

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    list-style: none;
    padding: 0;
}

    .footer-nav li {
        margin: 0.5em 1em;
    }

    .footer-nav img {
        max-width: 35px;
    }

@media screen and (max-width: 991px) {
    #FooterUpper {
        padding: 20% 2% 5% 2%;
    }
}

@media screen and (max-width: 767px) {
    #dnn_footerLowerLeft {
        order: 2;
    }

    #dnn_footerLowerRight {
        order: 1;
        justify-content: center;
    }
}