@import url("https://use.typekit.net/icm4wsi.css");
@import url("https://use.typekit.net/kav8miv.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --black: #000;
    --blacktp: rgba(0, 0, 0, 0.5);
    --white: rgba(255, 255, 255, 1);
    --whitetp: rgba(255, 255, 255, 0.5);
    --offwhite: rgba(242, 242, 242, 1);
    --grey: rgba(64, 64, 64, 1);
    --green: rgba(0, 93, 34, 1);
    --greentp: rgba(2, 100, 49, 0.4);
    --lightgreen: rgba(146, 200, 62, 1);
    --darkgreen: rgba(27, 117, 36);
    --darkergreen: rgba(1, 75, 28, 1);
    --orange: rgba(169, 125, 67, 1);
    --orangetp: rgba(169, 125, 67, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--grey);
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: montserrat, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    margin: 1rem 0;
}

p {
    font-size: 18px;
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--green);
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

    a:hover {
        text-decoration: none;
        color: var(--darkgreen);
    }

    a:visited {
        color: var(--green);
    }

        a:visited:hover {
            text-decoration: none;
            color: var(--darkgreen);
        }

.Normal {
    line-height: 1.7em;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

.bi {
    font-size: 1.5rem;
    margin: 10px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

ul, li {
    font-size: 18px;
}

hr.white {
    border-top: 1px solid var(--white);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/
.navbar {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    font-family: inter-variable, sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: var(--black);
    align-items: center;
    letter-spacing: 1px;
    padding: 1%;
    z-index: 10;
    -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;
}

.navbar-brand {
    padding: 0 !important;
}

a.btn-info, a.btn-info:visited, a.btn-primary, a.btn-primary:visited {
    color: #000;
    text-transform: uppercase;
}

#dnn_dnnLOGO_imgLogo {
    max-width: 100px !important;
    width: 100%;
    padding: 0.5% !important;
    -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-minimize #dnn_dnnLOGO_imgLogo {
    max-width: 100px !important;
    width: 100%;
}

.px-lg-4 {
    padding: 0.1rem !important;
    display: inline
}

.nav-link {
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--white) !important;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    -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(--lightgreen) !important;
    }

    .nav-link:visited {
        color: var(--white) !important;
    }

        .nav-link:visited:hover {
            color: var(--lightgreen) !important;
        }

.navbar-collapse h6 {
    font-size: 14px;
}

.navbar-toggler {
    margin: 2%;
}

.dropdown-menu {
    padding: 0;
    background-color: var(--blacktransp);
    min-width: 10rem;
}

    .dropdown-menu .px-lg-4 {
        padding: .2rem !important;
    }

    .dropdown-menu .nav-link {
        font-size: 14px;
        padding-left: 10px !important;
    }

@media screen and (min-width: 992px) {

    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .nav-link {
        font-size: clamp(10px, 1.25vw, 20px);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding: 10px;
        height: auto;
    }

    #dnn_dnnLOGO_imgLogo {
        max-width: 110px;
    }

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-width: 110px;
    }

    .navbar-dark .navbar-toggler {
        margin: 0;
        border: none;
        color: var(--white) !important;
    }

    .navbar-toggler-icon {
        color: var(--white) !important;
    }

    .nav-link {
        border: none;
        text-align: center;
    }

    .active .nav-link {
        border: none;
    }

    .nav-link:hover {
        border: none;
    }
}

@media screen and (max-width: 375px) {
    #dnn_dnnLOGO_imgLogo {
        max-width: 110px;
    }
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

/* video hero */

.video-container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

body:not(.Page-Home) .video-container {
    display: none;
}

#videoBG {
    object-fit: cover;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

.video-overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: center;
    position: relative;
    width: 100%;
    margin: auto;
}

    .video-overlay p,
    .video-overlay h1,
    .video-overlay h2,
    .video-overlay h3,
    .video-overlay h4,
    .video-overlay h5,
    .video-overlay h6 {
        margin: 0;
        color: #fff !important;
    }

/*.PageType_Home #HeroBG {
    display: none;
}*/

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

    .hero-text p,
    .hero-text h1,
    .hero-text h2,
    .hero-text h3,
    .hero-text h4 {
        font-family: montserrat, sans-serif;
        margin: 0;
    }

    .hero-text h1 {
        font-size: 4rem;
        text-transform: uppercase;
    }

/* photo hero */

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Portals/189/1000043432.png');
    object-fit: cover;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    left: 0;
    background-size: cover;
    background-position: 50% 70%;
    border-bottom: 2px solid var(--black);
}

/*.PageType_Home .hero-bg {
    display: none;
}*/

@media screen and (max-width: 991px) {
        .video-overlay h1,
        .hero-text h1 {
            font-size: 2.5em !important;
        }

    .video-overlay h1 {
        margin-top: 13%;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent li,
#FullContent li,
#MidContent li,
#BottomContent li {
    list-style-type: disc;
}

@media screen and (min-width: 768px) {
    #FullContent .row > * {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    #dnn_tcFullLeft,
    #dnn_tcFullRightTwo,
    #dnn_tcFullLeftThree,
    #dnn_tcFullRightFour,
    #dnn_tcFullLeftFive {
        padding-left: 0;
        padding-right: 0;
    }

    #dnn_tcFullLeftTwo,
    #dnn_tcFullLeftFour {
        order: 2;
    }

    #dnn_tcFullRightTwo,
    #dnn_tcFullRightFour {
        order: 1;
    }
}

/* home */

.PageType_Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Portals/189/1000043432.png');
    height: 80vh;
}

.PageType_Home #FullWidthOne {
    align-items: center;
    padding: 0 5rem;
}

.PageType_Home #OffsetLeft {
    background-color: var(--darkergreen);
    align-items: center;
}

.PageType_Home #OffsetLeft p,
.PageType_Home #OffsetLeft h1,
.PageType_Home #OffsetLeft h2,
.PageType_Home #OffsetLeft h3,
.PageType_Home #OffsetLeft h4,
.PageType_Home #OffsetLeft h5,
.PageType_Home #OffsetLeft h6 {
    color: var(--white);
}

.PageType_Home #OffsetLeft a {
    color: var(--lightgreen);
}

.PageType_Home #OffsetLeft a:hover {
    text-decoration: none;
    color: var(--white);
}

.PageType_Home #OffsetLeft a:visited {
    color: var(--lightgreen);
}

.PageType_Home #OffsetLeft a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

.PageType_Home #dnn_olRight {
    padding-left: 0;
    padding-right: 0;
    min-width: auto;
}

.PageType_Home #FullWidthTwo {
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.PageType_Home #TwoColumnTwo {
    background-color: #202020;
    align-items: center;
}

.PageType_Home #TwoColumnTwo p,
.PageType_Home #TwoColumnTwo h1,
.PageType_Home #TwoColumnTwo h2,
.PageType_Home #TwoColumnTwo h3,
.PageType_Home #TwoColumnTwo h4,
.PageType_Home #TwoColumnTwo h5,
.PageType_Home #TwoColumnTwo h6 {
    color: var(--white);
}

.PageType_Home #TwoColumnTwo a {
    color: var(--lightgreen);
}

.PageType_Home #TwoColumnTwo a:hover {
    text-decoration: none;
    color: var(--white);
}

.PageType_Home #TwoColumnTwo a:visited {
    color: var(--lightgreen);
}

.PageType_Home #TwoColumnTwo a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

    .PageType_Home #dnn_tcLeftTwo {
        padding-left: 0;
        padding-right: 0;
    }

    .PageType_Home #dnn_tcRightTwo {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.PageType_Home #ThreeColumnOne .content-box {
    height: 100%;
}

.PageType_Home #FullWidthFour {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(/Portals/_default/images/AdobeStock_250923456-2000-1000.jpg);
    object-fit: cover;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    align-items: center;
}

.PageType_Home footer {
    border-top: 1px solid var(--white);
}

@media screen and (max-width: 991px) {
    .PageType_Home #dnn_olLeft {
        order: 2;
    }

    .PageType_Home #dnn_olRight {
        order: 1;
    }
}

.homepage-features {
    background-color: var(--grey);
}

.feature-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--black), var(--grey));
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--whitetp);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-btn:hover {
    background-color: var(--green);
    border-color: var(--green);
    text-decoration: none;
    color: var(--white);
}

.feature-btn-white-bg {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
    border: 2px solid var(--black);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-btn-white-bg:hover {
    background-color: var(--green);
    border-color: var(--green);
    text-decoration: none;
    color: var(--white) !important;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Subtle dotted pattern overlay */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 1;
}

@media (max-width: 768px) {
    .card-content {
        padding: 30px 20px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    position: relative;
}

.coming-soon::after {
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--green);
    display: block;
    margin: 15px auto 0;
}

/* ABOUT US */

.Page-About #TwoColumn {
    align-items: center;
    background-color: var(--white);
}

    .Page-About #TwoColumn * {
        color: var(--black);
    }

    .Page-About #dnn_tcLeft {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .Page-About #dnn_tcRight {
        padding-left: 0;
        padding-right: 0;
    }

/* MEMBERSHIP */

.Page-Membership #WiderNarrowContent {
    margin-top: 5rem;
}

.Page-Membership #ThreeColumnOne {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.membership-pricing {
    background-color: var(--grey);
}

.membership-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
}

.membership-card.featured {
    border: 3px solid var(--green);
}

.card-header {
    background-color: var(--black);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.membership-card.featured .card-header {
    background-color: var(--green);
}

.membership-card.couple .card-header {
    background-color: #202020;
}

.card-body {
    padding: 25px;
    color: var(--black);
}

.pricing {
    text-align: center;
    margin-bottom: 25px;
}

.pre-opening, .post-opening {
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.period {
    font-size: 1rem;
    color: var(--grey);
}

.rate-label {
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 5px;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.benefits li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 1.1rem;
}

.initiation-info {
    background-color: var(--offwhite);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.initiation-info h5 {
    color: var(--black);
    margin-bottom: 15px;
}

.initiation-info p {
    color: var(--black);
    margin: 0;
}

@media (max-width: 768px) {
    .price {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 20px;
    }
}

/* INSTRUCTION */

.Page-Instruction #FullWidthOne {
    height: 40vh;
    background-color: var(--white);
}

    .Page-Instruction #FullWidthOne * {
        color: var(--black);
    }

/* EVENTS & LEAGUES */

.Page-Events___Leagues #FullWidthOne {
    height: 40vh;
    background-color: var(--white);
}

    .Page-Events___Leagues #FullWidthOne * {
        color: var(--black);
    }

/* CONTACT */

.Page-Contact #TwoColumn {
    align-items: center;
    background-color: var(--white);
}

    .Page-Contact #dnn_tcRight {
        padding-left: 0;
        padding-right: 0;
    }

.Page-Contact #NarrowContentTwo {
    padding-top: 3rem;
    padding-bottom: 2rem;
    background-color: var(--white);
}

.contact-info {
    text-align: center;
    color: var(--white);
}

.contact-section {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-section:last-child {
    border-bottom: none;
}

.contact-icon {
    margin-bottom: 10px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 10px 0;
    display: inline;
    margin-left: 10px;
}

.contact-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-top: 8px;
}

.contact-section a:hover {
    color: var(--lightgreen);
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.8rem;
}

.social-links a:hover {
    color: var(--lightgreen);
}

/*------------------------------------------------*/
/* COMPONENTS */
/*------------------------------------------------*/
    
/* buttons */

.green-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--darkgreen);
    color: var(--white) !important;
    text-align: center;
    border: 1px solid var(--black);
    -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;
    text-decoration: none;
}

    .green-button:hover {
        background-color: var(--darkergreen);
    }

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--white);
    color: var(--black) !important;
    text-align: center;
    border: 1px solid var(--black);
    -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;
    text-decoration: none;
}

    .white-button:hover {
        background-color: var(--black);
        color: var(--white) !important;
    }

.grey-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--grey);
    color: var(--white) !important;
    text-align: center;
    border: 1px solid var(--white);
    -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;
    text-decoration: none;
}

    .grey-button:hover {
        background-color: var(--black);
    }

.transparent-button-dark {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--white) !important;
    text-align: center;
    border: 1px solid var(--white);
    -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;
    text-decoration: none;
}

    .transparent-button-dark:hover {
        background-color: var(--white);
        color: var(--black) !important;
    }

.book-button-nav {
    display: inline-block;
    margin: 0;
    padding: 15px;
    background-color: var(--white);
    color: var(--green) !important;
    text-align: center;
    font-size: 14px;
    border-radius: 20px;
    -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;
    text-decoration: none;
}

    .book-button-nav:hover {
        background-color: var(--green);
        color: var(--white) !important;
    }

/* content boxes */

.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--white);
}

    .content-box ul li {
        text-align: left;
        list-style-type: disc;
    }

.cb-header {
    padding: 2px !important;
}

.cb-green {
    background-color: var(--green);
    border: 2px solid var(--black);
}

    .cb-green h2,
    .cb-green h3,
    .cb-green h4,
    .cb-green h5,
    .cb-green h6,
    .cb-green p,
    .cb-green ul {
        color: var(--white);
    }

.cb-orange {
    background-color: var(--orange);
    border: 2px solid var(--black);
}

    .cb-orange h2,
    .cb-orange h3,
    .cb-orange h4,
    .cb-orange h5,
    .cb-orange h6,
    .cb-orange p,
    .cb-orange ul {
        color: var(--black);
    }

.membership-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin: 1rem 0;
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 0 15px;
}

.membership-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 0.25rem;
    text-align: center;
}

    .membership-box ul,
    .membership-box li {
        text-align: left;
        list-style-type: disc;
    }
    .mb-green {
        background-color: var(--green);
    }

    .mb-orange {
        background-color: var(--orange);
    }

@media screen and (min-width: 992px) {
    .content-footer {
        margin-top: auto;
    }

    .membership-box {
        border-right: 1px solid var(--black);
    }

        .membership-box:nth-last-child(1) {
            border-right: none;
        }
}

@media screen and (max-width: 991px) {
    .content-box-white,
    .content-box-black {
        margin: 10px 0;
        padding: 10px;
    }
}

/* highlight row - three */

.highlights-row-three {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

    .highlights-row-three > div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .highlights-row-three h2,
    .highlights-row-three h3,
    .highlights-row-three h4,
    .highlights-row-three h5,
    .highlights-row-three h6 {
        color: var(--darkgreen) !important;
    }

    .highlights-row-three p,
    .highlights-row-three li {
        color: var(--black) !important;
    }

    .highlights-row-three i {
        font-size: 2rem;
        color: var(--darkergreen) !important;
        -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;
    }

    .highlights-row-three a i:hover {
        color: var(--green);
    }

@media screen and (min-width: 992px) {
    .highlights-row-three > div {
        border-right: 1px solid var(--green);
    }

        .highlights-row-three > div:last-child {
            border-right: none;
        }
}

@media screen and (max-width: 991px) {
    .highlights-row-three > div {
        gap: 15px;
        width: 75%;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--lightgreen);
    }

        .highlights-row-three > div:last-child {
            border-bottom: none;
        }
}

/* highlights column - three */

.highlights-column-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .highlights-column-three > div {
        gap: 15px;
        width: 75%;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--darkgreen);
    }

        .highlights-column-three > div:last-child {
            border-bottom: none;
        }

    .highlights-column-three h2,
    .highlights-column-three h3,
    .highlights-column-three h4,
    .highlights-column-three h5,
    .highlights-column-three h6 {
        color: var(--green);
    }

    .highlights-column-three p,
    .highlights-column-three li {
        color: var(--black);
    }

    .highlights-column-three i {
        font-size: 2rem;
        color: var(--darkergreen);
        -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;
    }

    .highlights-column-three a i:hover {
        color: var(--green);
    }

/* image box */

.image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin: 10px 0;
    border-radius: 15px;
    text-align: center;
}

    .image-box ul li {
        text-align: left;
        list-style-type: disc;
    }

/* image modal */

.modal-img {
    cursor: pointer;
    transition: 0.3s;
}

    .modal-img:hover {
        opacity: 0.7;
    }

.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    width: 90%;
    padding: 0 1rem;
    border-bottom: none;
}

    .modal-header .close {
        color: #fff;
    }

.modal-title {
    display: none;
}

.modal-body {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0 !important;
}

@media screen and (max-width: 991px) {
    .modal-header {
        width: 100%;
    }

    .modal-body {
        margin: 0;
        overflow: auto;
    }
}

@media screen and (min-width: 576px) {
    .modal-dialog {
        max-width: 90vw;
    }
}

/* technology columns */

.tech-col {
    color: var(--black);
}

    .tech-col h1,
    .tech-col h2,
    .tech-col h3,
    .tech-col h4,
    .tech-col h5,
    .tech-col h6,
    .tech-col p,
    .tech-col ul,
    .tech-col li {
        color: var(--black);
    }

    .tech-col > div:nth-child(odd) {
        background-color: var(--greentp);
    }

    .tech-col > div:nth-child(even) {
        background-color: var(--orangetp);
    }

@media screen and (min-width: 768px) {
    .tech-col > div {
        border-right: 1px solid var(--black);
    }

        .tech-col > div:last-child {
            border-right: none;
        }
}

/* font & text */

.font-small {
    font-size: 0.75rem !important;
}

.font-largest {
    font-size: 3rem !important;
}

/* youtube */

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* color classes */

.green {
    color: var(--green);
}

.orange {
    color: var(--orange);
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--black);
    padding: 1% !important;
    border-top: 2px solid var(--grey);
}

    footer h1,
    footer h2,
    footer h3,
    footer h4,
    footer h5,
    footer h6,
    footer p {
        color: #fff;
    }

    footer a {
        color: var(--green);
    }

        footer a:hover {
            color:var(--white);
        }

        footer a:visited {
            color: var(--green);
        }

            footer a:visited:hover {
                color: var(--white);
            }

#Footer p {
    margin-top: 1rem;
    text-align: center;
}