@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --green: #7d9b76;
    --darkgreen: #3C5B36;
    --lightgrey: #959494;
    --grey: #272727;
    --darkgrey: #161616;
    --darkergrey: #030202;
    --black: #000;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background-color: var(--darkergrey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    margin: 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.bigger {
    font-size: 1.25em;
}

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(--white);
}

a:visited {
    color: var(--green);
}

a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

.Normal {
    line-height: 1.7em;
    font-size: 16px;
    color: var(--white);
}

.bi {
    font-size: 1.5rem;
    margin: 10px;
    color: var(--white);
    -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;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background-color: rgba(0,0,0,.8);
    letter-spacing: 1px;
    padding: 1% 3%;
    height: 150px;
    -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 {
    height: 110px;
    background-color: rgba(0,0,0,1);
}

.navbar-brand {
    padding: 0 !important;
}

a.btn-info, a.btn-info:visited, a.btn-primary, a.btn-primary:visited {
    color: var(--white);
}

#dnn_dnnLOGO_imgLogo {
    max-width: 110px;
    width: 100%;
    -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: 90px;
    width: 100%;
}

.px-lg-4 {
    padding: 0 .5rem !important;
}

.nav-link {
    color: var(--white) !important;
    font-size: 16px;
    -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(--green) !important;
}

.nav-link:visited {
    color: var(--white) !important;
}

.nav-link:visited:hover {
    color: var(--green) !important;
}

.navbar-toggler {
    margin: 2%;
}

.dropdown-menu {
    padding: 0;
    border: none;
    background-color: rgba(0,0,0,.8);
    min-width: 12rem;
}

.dropdown-menu .px-lg-4 {
    padding: .5rem !important;
}

.dropdown-menu .nav-link {
    font-size: 16px;
    text-transform: initial !important;
}

/*------------------------------------------------*/
/* ALERT BANNER */
/*------------------------------------------------*/

.alert-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

#dnn_AlertMessage .DnnModule {
    background-color: var(--green);
    padding: 10px 0;
}

.alert-message h1,
.alert-message h2,
.alert-message h3,
.alert-message h4,
.alert-message h5,
.alert-message h6,
.alert-message p {
    color: var(--white);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 10px 2%;
}

.alert-banner a {
    color: #FFC894;
    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;
}

.alert-banner a:hover {
    text-decoration: none;
    color: var(--white);
}

.alert-banner a:visited {
    color: #FFC894;
}

.alert-banner a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

/* video hero */

.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-container {
    margin-top: 150px;
}

#videoBG {
    object-fit: cover;
    position: absolute;
    height: 700px;
    width: 100%;
    top: 0;
    left: 0;
}

/*body:not(.Id3015):not(.Page-Home) */.video-container {
    display: none;
}

.video-overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 700px;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
}

/*.Page-Home .video-overlay {
    background-color: rgba(0, 0, 0, .5);
}*/

.video-overlay p,
.video-overlay h1,
.video-overlay h2,
.video-overlay h3,
.video-overlay h4,
.video-overlay h5,
.video-overlay h6 {
    margin: 0;
    color: var(--white) !important;
}

.video-overlay h1 {
    font-size: 4.5rem;
}

/* photo hero */

.hero-bg {
    object-fit: cover;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.Page-Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/Portals/157/TrackMan-and-SIM-2000.jpg');
    background-size: cover;
    background-position: 50% 20%;
    height: 85vh;
    height: 85dvh;
}

/*.Page-Home .hero-bg {
    display: none;
}*/

.Id3502 .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/Portals/157/sim-trackman-1600.jpg');
    background-size: cover;
    background-position: center;
}

.hero-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* contact  */

.Id3504 .hero-bg {
    background-color: #000;
    height: 300px;
}

.Id3504 .hero-text {
    top: 70%;
}

.hero-text p,
.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4 {
    margin: 0;
    color: var(--white) !important;
}

.hero-text h1 {
    font-size: 5rem;
    text-transform: uppercase;
}

.hero-text h2 {
    font-family: 'Roboto Slab';
    font-size: 3.5rem;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

.Page-Home #MainContent {
    padding-top: 20px;
    padding-bottom: 20px;
}

#MainContent li,
#BottomContent li {
    list-style-type: disc;
}

.image-border {
    border-radius: 10px;
}

.book-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--green);
    color: var(--white) !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;
    text-decoration: none;
}

    .book-button:hover {
        background-color: var(--darkgreen);
        color: var(--white) !important;
        text-decoration: none;
    }

.book-button-transparent {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: rgba(245, 130, 22, .7);
    color: var(--white) !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;
    text-decoration: none;
}

    .book-button-transparent:hover {
        background-color: var(--green);
        color: var(--white) !important;
        text-decoration: none;
    }

.grey {
    background-color: #303030;
    padding: 2px 4%;
    border-radius: 0px;
    margin: 1%;
}

.grey h1,
.grey h2,
.grey h3,
.grey h4,
.grey h5,
.grey h6,
.grey p {
    color: var(--white);
    margin: 0.5rem 0 !important;
}

.grey ul {
    margin-bottom: 0.25rem !important;
}
    
.grey li {
    list-style-type: none !important;
}

/* home page buttons */

#NoGutterPhotos {
    display: none;
}

.Page-Home #NoGutterPhotos {
    display: block;
    padding-left: 0;
    padding-right: 0;
}

#NoGutterPhotos .row {
    margin-right: 0px;
    margin-left: 0px;
}

#leftSplitFullWidth,
#rightSplitFullWidth {
    background-color: var(--grey);
}

#NoGutterPhotos #dnn_lsfLeft,
#NoGutterPhotos #dnn_rsfLeft {
    padding-right: 0px;
    padding-left: 0px;
}

#NoGutterPhotos p {
    margin-bottom: 0;
}

#dnn_BottomFullWidth {
    padding-right: 0px;
    padding-left: 0px;
}

/* pricing */

.Id3502 #TwoColumnFW {
    background-color: var(--darkgrey);
}

.Id3502 #TwoColumnFW,
.Id3502 #dnn_columnLeftFW,
.Id3502 #dnn_columnRightFW {
    border: 4px solid var(--darkergrey);
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--black);
    padding: 3% !important;
}

    footer h1,
    footer h2,
    footer h3,
    footer h4 {
        color: var(--white);
    }

#Footer p {
    color: var(--white) !important;
    margin-top: 1rem;
}

#Footer p a {
    color: var(--green);
    text-decoration: none;
}

#Footer p a:hover {
    color: var(--white);
    text-decoration: none;
}

#Footer p a:visited {
    color: var(--green);
    text-decoration: none;
}

#Footer p a:visited:hover {
    color: var(--white);
    text-decoration: none;
}

.grecaptcha-badge {
    opacity: 0;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (max-width: 992px) {
    .navbar {
        background-color: rgba(0,0,0,.8);
        height: auto;
    }

    #dnn_dnnLOGO_imgLogo {
        max-width: 130px;
    }

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-width: 90px;
    }

    .navbar-dark .navbar-toggler {
        margin: 0;
        color: rgba(255,255,255,1) !important;
        border: none;
    }

    .nav-link {
        border: none;
        text-align: center;
    }

    .active .nav-link {
        border: none;
        background-color: #030303;
    }

    .nav-link:hover {
        border: none;
        background-color: #030303;
    }

    .px-lg-4 {
        padding: 0 !important;
    }

    #videoBG {
        object-fit: cover;
        width: 100%;
        object-position: left;
    }

    .hero-text {
        padding: 0 5%;
    }

    .video-overlay h1,
    .hero-text h1 {
        font-size: 2.5rem !important;
    }

    .video-overlay h1 {
        margin-top: 13%;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }

    #NoGutterPhotos #dnn_lsfRight,
    #NoGutterPhotos #dnn_rsfRight {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}