.clickable {
    cursor: pointer;
}

.page-padding {
    margin-top: 150px;
}

.yellow-text {
    color: yellow;
}

.slider-text-highlight {
    color: yellow;
    text-transform: uppercase;
}

.slide-wrapper {
    width: 100%;
    height: auto;
    background: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.mobile-slide-wrapper {
    width: 100%;
    height: auto;
    background: #fff;
}

.mobile-slide-wrapper img {
    width: 100%;
    height: auto;
}

.lead-text-wrapper {
    position: relative;
    margin-top: 490px;
    width: 100%;
    height: 75px;
}

.secondary-text-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 40px;
    padding: 0px 20px;
}

.slide-btn-wrapper {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 50px;
    padding: 0px 20px;
}

/** BRAND BAR */
.brand-bar {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 101;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 1) 47%,
        rgba(230, 230, 230, 1) 100%
    );
    background: -webkit-gradient(
        left top,
        left bottom,
        color-stop(0%, rgba(255, 255, 255, 1)),
        color-stop(47%, rgba(246, 246, 246, 1)),
        color-stop(100%, rgba(230, 230, 230, 1))
    );
    background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 1) 47%,
        rgba(230, 230, 230, 1) 100%
    );
    background: -o-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 1) 47%,
        rgba(230, 230, 230, 1) 100%
    );
    background: -ms-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 1) 47%,
        rgba(230, 230, 230, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 1) 47%,
        rgba(230, 230, 230, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0 );
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.07);
}

.logo {
    float: left;
    width: 254px !important;
    height: auto;
}

.subsidiary {
    width: 285px !important;
    height: auto;
    float: right;
}

.subsidiary-owner {
    width: 285px !important;
    height: auto;
    float: left;
}

/** SOCIAL BAR **/
.for-mobile {
    display: none !important;
}

.social-bar ul {
    margin: 10px;
    padding: 0;
    list-style: none;
    float: right;
}

.social-bar li {
    display: inline-block;
}

.social-bell,
.social-fb,
.social-instagram,
.social-yt,
.social-user {
    transition: all 0.25s ease;
}

.social-bell {
    color: rgba(17, 67, 73, 0.8);
}

.social-fb {
    color: rgba(59, 88, 152, 0.8);
}

.social-yt {
    color: rgb(255, 0, 0, 0.8);
}

.social-instagram {
    color: rgba(193, 53, 132, 0.8);
}

.social-user {
    color: rgba(30, 132, 103, 0.8);
}

.social-bell:hover {
    color: rgba(17, 67, 73, 1);
}

.social-fb:hover {
    color: rgba(59, 88, 152, 1);
}

.social-yt:hover {
    color: rgb(255, 0, 0, 1);
}

.social-instagram:hover {
    color: rgba(193, 53, 132, 1);
}

.social-user:hover {
    color: rgba(30, 132, 103, 1);
}

.social-bar i {
    font-size: 1.25em;
    padding: 10px;
}

.social-sub {
    position: absolute;
    z-index: 102;
    top: 70px;
    right: -60px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.social-bar li:hover > .social-sub {
    visibility: visible;
    top: 55px;
    opacity: 1;
}

.social-sub ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 200px;
}

.social-sub ul li {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.social-sub ul li:last-child {
    border-bottom: none;
}

/** NAV */
.menu-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.megamenu {
    position: fixed;
    width: 100%;
    height: 50px;
    /* cursor: pointer; */
    margin-top: 60px;
    /* position: relative; */
    z-index: 100;
    background: rgba(15, 52, 67, 1);
    /* background: -moz-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(38, 181, 124, 1) 25%,
        rgba(38, 181, 124, 1) 75%,
        rgba(15, 52, 67, 1) 100%
    );
    background: -webkit-gradient(
        left top,
        right top,
        color-stop(0%, rgba(15, 52, 67, 1)),
        color-stop(25%, rgba(38, 181, 124, 1)),
        color-stop(75%, rgba(38, 181, 124, 1)),
        color-stop(100%, rgba(15, 52, 67, 1))
    );
    background: -webkit-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(38, 181, 124, 1) 25%,
        rgba(38, 181, 124, 1) 75%,
        rgba(15, 52, 67, 1) 100%
    );
    background: -o-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(38, 181, 124, 1) 25%,
        rgba(38, 181, 124, 1) 75%,
        rgba(15, 52, 67, 1) 100%
    );
    background: -ms-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(38, 181, 124, 1) 25%,
        rgba(38, 181, 124, 1) 75%,
        rgba(15, 52, 67, 1) 100%
    );
    background: linear-gradient(
        to right,
        rgba(15, 52, 67, 1) 0%,
        rgba(38, 181, 124, 1) 25%,
        rgba(38, 181, 124, 1) 75%,
        rgba(15, 52, 67, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f3443', endColorstr='#0f3443', GradientType=1 ); */
    background-image: linear-gradient(
        to right,
        #0f3443,
        #005362,
        #007378,
        #009580,
        #26b57c
    );
    transition: all 0.25s ease;
}

.megamenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    text-align: center;
}

.megamenu li {
    display: inline-block;
    font-weight: 300;
}

.megamenu a,
.megamenu router-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.725em 1.75em;
    font-weight: 400;
}

.megamenu li:hover a,
.megamenu li:hover router-link {
    color: rgba(255, 255, 255, 1);
    /* text-decoration: none; */
    border-bottom: 4px solid #009580;
}

.megamenu-dropdown-icon {
    font-size: 0.8em;
}

.menu-sub,
.menu-sub-mega {
    position: absolute;
    z-index: 1;
    top: 75px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.07);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    text-align: left !important;
}

.menu-sub {
    min-width: 200px;
    padding: 20px 0;
    border-radius: 0 0 5px 5px;
}

.menu-sub-lg {
    width: 595px !important;
}

.menu-sub-mega {
    width: 100%;
    left: 0;
    padding: 50px 0;
}

.menu-sub a,
.menu-sub-mega a,
.menu-sub router-link,
.menu-sub-mega router-link {
    border: none !important;
    text-align: left !important;
}

.menu-sub li,
.menu-sub-mega li {
    display: block;
}

/* .menu-sub-mega ul li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 0.8em;
    float: right;
    margin-right: 10px;
    margin-top: 6px;
    padding-right: 20px;
    transition: all 0.25s ease;
} */

.menu-sub-mega li a {
    padding-top: 3px;
    padding-bottom: 3px;
}

.menu-sub li a,
.menu-sub-mega li a,
.menu-sub li router-link,
.menu-sub-mega li router-link {
    color: #1b1b1b !important;
    transition: all 0.25s ease;
}

.menu-sub li a:hover,
.menu-sub-mega li a:hover,
.menu-sub li router-link:hover,
.menu-sub-mega li router-link:hover,
.menu-sub-mega li:hover::before {
    color: #22ac71 !important;
}

.menu-sub-mega li a,
.menu-sub-mega li router-link {
    padding-left: 0 !important;
}

.menu-sub-mega i {
    font-size: 0.8em;
}

.toggle-holder {
    position: absolute;
    width: 100%;
    height: 50px;
    display: none;
    z-index: 100;
    top: 75px;
    background: rgba(15, 52, 67, 1);
    background: -moz-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(52, 232, 157, 1) 100%
    );
    background: -webkit-gradient(
        left top,
        right top,
        color-stop(0%, rgba(15, 52, 67, 1)),
        color-stop(100%, rgba(52, 232, 157, 1))
    );
    background: -webkit-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(52, 232, 157, 1) 100%
    );
    background: -o-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(52, 232, 157, 1) 100%
    );
    background: -ms-linear-gradient(
        left,
        rgba(15, 52, 67, 1) 0%,
        rgba(52, 232, 157, 1) 100%
    );
    background: linear-gradient(
        to right,
        rgba(15, 52, 67, 1) 0%,
        rgba(52, 232, 157, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f3443', endColorstr='#34e89d', GradientType=1 );
}

.menu-toggle {
    color: #fff;
    position: absolute;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    left: 18px;
	top: -5px;
}

/* .menu-toggle::before {
    content: "MENU";
    position: absolute;
    right: 55px;
    top: -1px;
    font-size: 0.8em;
} */

.megamenu li:hover > .menu-sub {
    /* display: block !important; */
    visibility: visible;
    top: 50px;
    opacity: 1;
}

.megamenu li:hover > .menu-sub-mega {
    /* display: block !important; */
    visibility: visible;
    top: 50px;
    opacity: 1;
}

.entertainment-card {
    box-shadow: none;
    transition: all 0.25s ease;
}

.entertainment-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.winners-enclosure-btn {
    font-size: 1.2em;
    height: 100px;
    border-radius: 5px;
    background-size: cover;
    background-repeat: none;
    background-position: center center;
    transition: all 0.25s ease;
}

.winners-enclosure-col {
    width: 20%;
    padding-right: 15px;
}

.winners-enclosure-btn:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.winners-enclosure-img {
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: all 0.25s ease;
}

.winners-enclosure-img:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.standings-badge {
    width: 35px;
    height: auto;
}

.standings-text {
    padding-top: 10px !important;
    font-size: 0.8em;
}

/** INFORMATION TICKER **/
.info-ticker {
    height: 30px;
    background: rgba(15, 52, 67, 1);
    text-transform: uppercase;
}

.info-ticker-margin-adjust {
    margin-top: 110px;
}

.info-ticker p {
    margin-top: 2px;
}

.announcement-ticker {
    height: 30px;
    background: #ccc;
    text-transform: uppercase;
}

.scroll-left {
    height: 25px;
    overflow: hidden;
    position: relative;
}

.scroll-left p {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    margin-top: 3px;
    text-align: center;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
}

/** INFORMATION TICKER **/
.popup-bar {
    margin-top: 0px;
    height: 60px;
    background: rgba(20, 80, 79);
}

.alert-dismissible .close {
    /* top: -10px !important; */
    outline: none;
}

.alert-body p {
    margin-bottom: 0;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-bold {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.13);
}

.shadow-none {
    box-shadow: none !important;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    height: 400px;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    line-height: 1;
}
/* 
.slide-item {
    height: 100vh;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -10000;
    position: relative;
    height: 650px;
} */

.page-title {
    font-weight: 300;
}

.page-min-height {
    min-height: 300px;
}

.page-side-nav-heaader {
    margin-top: 40px;
}

.page-side-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-side-nav li {
    padding: 15px 0px;
    border-bottom: 1px solid #e5e5e5;
}

.page-side-nav li a {
    text-decoration: none;
    color: #39ac6b;
    transition: all 0.25s ease;
}

.text-archive-nav {
    color: #0d47a1 !important;
}

.page-side-nav li a:hover {
    text-decoration: none;
    color: #096d38;
}

.racing-info-date-card {
    cursor: pointer;
    width: 105px;
    height: 105px;
    margin-left: 20px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    transition: all 0.25s ease;
}

.racing-info-date-card-header {
    padding: 10px;
    border-radius: 3px 3px 0 0;
    font-size: 0.85em;
}

.pp-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.racing-info-date-card:hover,
.pp-card:hover {
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.faq-btn {
    background: none;
    border: none;
    color: #39ac6b;
    font-weight: 500;
    padding: 5px 3px;
    font-size: 0.85em;
    transition: all 0.25s ease;
}

.faq-btn:hover {
    color: #39ac6b;
}

.faq-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.info-bar {
    height: 100px;
    background-image: linear-gradient(
        to right,
        #0f3443,
        #005362,
        #007378,
        #009580,
        #26b57c
    );
    margin-top: -7px;
}

.info-bar-inner {
    width: 1000px;
}

.info-bar-condition-title,
.info-bar-next-race-title {
    margin-top: 35px;
    line-height: 10px;
}

.text-svrel-brand-1 {
    color: #39ac6b;
}

.svrel-btn-brand-1 {
    background: #39ac6b !important;
}

.footer-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-nav li {
    padding: 5px;
}

.footer-nav li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-nav li a:hover {
    color: rgb(69, 205, 128);
}

.board-img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.board-card {
    margin-bottom: 40px;
    /* box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* transition: all 0.25s ease; */
}

.board-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    /* box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.13); */
}

.home-stream-img {
    width: 100%;
    height: auto;
}

.youtube-card {
    height: 445px;
}

.post-card {
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 475px;
    border-radius: 10px;
}

.post-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    /* box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.13); */
}

.post-title {
    font-weight: 500;
}

.post-footer {
    width: 97%;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    bottom: 0;
}

.post-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
    border-radius: 5px;
}

.post-card-image {
    border-radius: 10px 10px 0 0 !important;
}

.post-excpert {
    font-weight: 300 !important;
}
.post-arrow {
    color: inherit;
    font-size: 1.75em;
    transition: all 0.25s ease;
}

.post-arrow:hover {
    color: #39ac6b;
}

.post-video-card {
    height: 200px;
}

.post-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.post-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-info {
    padding-top: 15px;
}

.form-card {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 10px 10px rgba(0, 0, 0, 0.05);
}

.discover-btn {
    cursor: pointer;
    transition: all 0.25s ease;
}

.discover-btn:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.map-wrapper {
    height: 500px;
}

.stream-bg {
    background-image: linear-gradient(
        to right,
        #0f3443,
        #005362,
        #007378,
        #009580,
        #26b57c
    );
    /* background: rgba(67, 67, 67, 1);
    background: -moz-linear-gradient(
        top,
        rgba(67, 67, 67, 1) 0%,
        rgba(26, 26, 26, 1) 100%
    );
    background: -webkit-gradient(
        left top,
        left bottom,
        color-stop(0%, rgba(67, 67, 67, 1)),
        color-stop(100%, rgba(26, 26, 26, 1))
    );
    background: -webkit-linear-gradient(
        top,
        rgba(67, 67, 67, 1) 0%,
        rgba(26, 26, 26, 1) 100%
    );
    background: -o-linear-gradient(
        top,
        rgba(67, 67, 67, 1) 0%,
        rgba(26, 26, 26, 1) 100%
    );
    background: -ms-linear-gradient(
        top,
        rgba(67, 67, 67, 1) 0%,
        rgba(26, 26, 26, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(67, 67, 67, 1) 0%,
        rgba(26, 26, 26, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#434343', endColorstr='#1a1a1a', GradientType=0 ); */

    -webkit-box-shadow: inset 0px 2px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 2px 8px 0px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 2px 8px 0px rgba(0, 0, 0, 0.75);
}

.winners-card {
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.winners-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.projections {
    margin: 0;
    padding: 0;
    list-style: none;
}

.projections li {
    padding-bottom: 10px;
}

.projections li a {
    text-decoration: none;
    color: #39ac6b;
    transition: all 0.25s ease;
}

.projections li a:hover {
    text-decoration: none;
    color: #096d38;
}

.race-replay-btn {
    background: yellow;
    color: black;
    border: 1px solid gold;
}

.race-replay-btn:hover {
    background: gold;
    color: black;
    border: 1px solid gold;
}

.mobile-top-btn {
    width: 130px !important;
}

.blog-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar li {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    text-transform: uppercase;
}

.blog-sidebar-link {
    color: rgb(147, 146, 160);
    transition: all 0.25s ease;
}

.blog-sidebar-link:hover {
    text-decoration: none;
    color: #096d38;
}
.blog-sidebar-link-badge {
    position: absolute;
    right: 15px;
    opacity: 0.8;
}

.blog-card-light-text {
    color: rgb(147, 146, 160);
}

.race-replay-card {
    height: 550px;
    border: none;
}

.mobile-menu-icons {
    font-size: 1.2em;
    color: gold;
    display: none !important;
}

.championship-detail-table {
    font-size: 0.85em;
}

.championship-detail-table tr:first-child td {
    color: #39ac6b;
    font-weight: 500;
}

.championship-detail-header {
    font-size: 0.95em !important;
}

.workout-comments {
    font-size: 0.85em;
    text-align: left;
}

.card-header-brand {
    background-color: #007378 !important;
    /* background-image: linear-gradient(to right, #0f3443, #005362, #007378, #009580, #26b57c); */
}

/** --------------------------------------------------------- **/
/** ----------------------MEDIA QUERIES---------------------- **/
/** --------------------------------------------------------- **/
@media only screen and (max-width: 1600px) {
    .slide-wrapper {
        height: 500px;
        width: 100%;
    }
    .lead-text-wrapper {
        margin-top: 370px;
    }
}
@media only screen and (max-width: 1536px) {
    .slide-wrapper {
        height: 500px;
        width: 100%;
    }
    .lead-text-wrapper {
        margin-top: 300px;
    }
}
@media only screen and (max-width: 1496px) {
    .mobile-menu-icons {
        display: inline-block !important;
    }

    .social-bar {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

	.toggle-holder {
		display: none;
	}

    .menu-toggle {
        position: relative;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: none;
        border: none;
        outline: none !important;
        float: right;
    }

    .hamburger {
        position: absolute;
        width: 25px;
        height: 4px;
        top: 44%;
        right: 20px;
        background: #1D7076;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        -webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }


    .hamburger:before,
    .hamburger:after {
        content: "";
        position: absolute;
        width: 25px;
        height: 4px;
        left: 0;
        background: #1D7076;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        -webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }

    .hamburger:before {
        top: -8px;
        transform: rotate(0deg);
    }

    .hamburger:after {
        top: 8px;
        transform: rotate(0deg);
    }

    .menu-toggle.active .hamburger {
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
    }

    .menu-toggle.active .hamburger:before {
        top: 0;
        transform: rotate(405deg);
    }

    .menu-toggle.active .hamburger:after {
        top: 0;
        transform: rotate(495deg);
    }

    .megamenu {
        position: absolute;
        top: 30px;
        left: -100%;
        width: 100%;
        height: auto !important;
        background: rgba(15, 52, 67, 0.95);
        transition: all 0.5s ease;
        text-align: left !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        z-index: 99;
    }

    .megamenu.active {
        left: 0;
    }

    .megamenu li {
        display: block;
        padding: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* .megamenu ul li:before {
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-size: 0.8em;
        color: #fff;
        float: left;
        margin-left: 10px;
        margin-top: 15px;
        padding-right: 20px;
        transition: all 0.25s ease;
    }

    .megamenu ul li:hover::before {
        content: "\f078";
    } */

    .megamenu a,
    .megamenu router-link {
        color: #fff;
        text-align: left;
    }

    .megamenu-dropdown-icon {
        margin-left: 10px;
    }

    .menu-sub,
    .menu-sub-mega {
        position: relative;
        display: none;
        z-index: 1;
        width: 100%;
        top: 0px !important;
        margin-top: 0px;
        background: #fff;
        box-shadow: none;
        visibility: hidden;
        opacity: 0;
    }

    .menu-sub.active,
    .menu-sub-mega.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .megamenu li:hover > .menu-sub {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .megamenu li:hover > .menu-sub-mega {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .megamenu li:hover a,
    .megamenu li:hover router-link {
        border-bottom: none;
    }

    .slide-wrapper {
        height: 500px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 300px;
    }

	.tipster-horse,
	.tipster-pos,
	.horse-header,
	.race-header {
		font-size: 0.80em;
	}

	.info-ticker-margin-adjust {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 1280px) {
    .slide-wrapper {
        height: 425px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 225px;
    }
}

@media only screen and (max-width: 1024px) {
    .slide-wrapper {
        height: 350px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 180px;
    }
}

@media only screen and (max-width: 991px) {
    .for-mobile {
        display: block !important;
    }

    .visible-for-mobile {
        display: block !important;
        margin-bottom: 10px;
    }

    .slide-wrapper {
        height: 320px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 150px;
    }

    .info-bar {
        height: auto;
        padding: 20px 0 15px 0;
    }

    .info-bar-condition-title,
    .info-bar-next-race-title {
        margin-top: 0px;
    }

	.tipster-horse,
	.tipster-pos,
	.horse-header,
	.race-header {
		font-size: 1em;
	}
}

@media only screen and (max-width: 860px) {
    .slide-wrapper {
        height: 290px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 130px;
    }

    .carousel-caption p a img {
        width: 200px !important;
        height: auto;
    }

    .local-carryover-title {
        text-align: center;
    }

    /* .currentWeather .w-icon {
        width: 3em;
        height: 3em;
        margin-top: 15 px;
    } */

    /* footer h5,
    footer p {
        text-align: left !important;
    } */

    .winners-enclosure-col {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-side-nav-heaader {
        margin-top: 10px;
    }

    .subsidiary {
        width: 80% !important;
        float: none;
    }

    .subsidiary-owner {
        width: 80% !important;
        float: none;
    }

    .race-replay-card {
        height: 300px;
    }

    .championship-detail-table {
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 800px) {
    .slide-wrapper {
        height: 250px;
        width: 100%;
    }

    .lead-text-wrapper {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 640px) {
    .logo {
        width: 254px !important;
        height: auto;
    }

    .social-bar i {
        padding: 5px;
    }

    .social-bar i:last-child {
        padding-right: 0;
    }

    .slide-wrapper {
        height: 200px;
        width: 100%;
    }

    .youtube-card {
        height: 300px;
    }
}

@media only screen and (max-width: 480px) {
    .slide-wrapper {
        height: 140px;
        width: 100%;
    }
}

@media only screen and (max-width: 360px) {
    .slide-wrapper {
        height: 120px;
        width: 100%;
    }
}
