﻿.embed-container {
    --video--width: 1296;
    --video--height: 540;
    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: white;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.navbarbuynow {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    text-align: center;
    border-top: 2px solid #CCC;
}

    .navbarbuynow a {
        border-radius: 10px !important;
        display: block;
        color: white; /* #f2f2f2;*/
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        width: 250px;
        margin-right: auto;
        margin-left: auto;
        margin-top: 5px;
        margin-bottom: 5px;
        font-weight: bold;
    }

        .navbarbuynow a:hover {
            background: white;
            color: #4CAF50;
        }

        .navbarbuynow a.active {
            background-color: #4CAF50;
            color: white;
        }

.navbarbuynow_inline {
    width: 100%;
    text-align: center;
    padding: 30px;
}

    .navbarbuynow_inline a {
        border-radius: 10px !important;
        font-size: x-large !important;
        padding: 25px !important;
    }

.navbarbuynow_inline_nopadding {
    width: 100%;
    text-align: center;
}

    .navbarbuynow_inline_nopadding a {
        border-radius: 10px !important;
        font-size: x-large !important;
        padding: 25px !important;
    }



.header_hero_img {
    width: 100vw;
    height: 100vh;
    max-height: 500px;
    object-fit: cover;
    filter: brightness(.8);
    border-radius: 10px !important;
}

.hero-header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF !important;
}

    .hero-header-text h1, .hero-header-text h2, .hero-header-text small {
        color: #FFFFFF !important;
    }

    .hero-header-text h2 {
        font-size: 1.2em;
    }

    .hero-header-text a, a:hover {
        text-decoration: none;
    }

.header_hero_square {
    margin-top: 10px;
}

    .header_hero_square img {
        width: 100vw;
        height: 100vh;
        max-height: 350px;
        object-fit: cover;
        /*filter: brightness(0.9);*/
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }

.header_hero_square_footer {
    color: #555 !important;
    background-color: #EEEEEE;
    padding: 10px;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

    .header_hero_square_footer h1, .header_hero_square_footer h2, .header_hero_square_footer small {
        color: #555 !important;
    }

/* SHOW/HIDE intro panels based on size*/
.intro_panels_list {
    display: none;
}

.intro_panels_blocks {
    display: block;
}

@media(max-width:767px) {

    .intro_panels_list {
        display: block;
    }

    .intro_panels_blocks {
        display: none;
    }
}