html, body { height: 100% }


.page-div-break {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sec1-page-div {
    width: 100%;
    height: 60px;
}

/*--Homepage Image Jumbotron Slider CSS--*/


/*.image-slideshow {
  max-width: 100%;
  height: auto;
  position: relative;
  margin: auto;
  object-fit: cover;
  overflow: hidden;
}*/

.homepage-jumbo-carousel {
    height: 94%;
}

.slideshow-jt-container {
    overflow: hidden;
    position: relative;
    object-fit: cover;
    height: 100%;
}

#image-slideshow-js {
    margin: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: cover;
    position: relative;
    background-position: center;
    background-image: url("/resources/images/showcase-photos/lounge-media-unit-new.jpg");
    background-blend-mode: darken;
    transition: 2s;
    animation: image-slideshow-js-fade 6000ms ease-in-out 0ms infinite alternate none running, image-slideshow-js-firstpic-fade 6000ms ease-in-out 0ms 1 normal none running;
    height: 100%;
    width: 100%;
}

/*#image-slideshow-js {
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;   
    display: block;
    overflow: hidden;
    background-image: url("/resources/images/showcase-photos/live-oak-bespoke-table.jpeg");
    animation: image-slideshow-js-fade 6000ms ease-in-out 0ms infinite normal none running,;
    background-size: cover;
    background-position: center;
}*/


@keyframes image-slideshow-js-fade {
    0% {transform: scale(1.0);}
    100% {transform: scale(1.05);}
}


@keyframes image-slideshow-js-firstpic-fade {
    0% {opacity: 0.3;}
    20% {opacity: 1;}
    100% {opacity: 1;}
}


/*.hpj-fade {
  animation: jumbotron-kenburns 6000ms ease-in-out;
} */


/*@keyframes jumbotron-kenburns {
  0%   {transform: scale(1.0);
        opacity: 0.4;}
  10%   {opacity: 1;}
  95%  {opacity: 1;}
  100% {transform: scale(1.1);
        opacity: 0.4;}
} */




/*--JUMBOTRON IMAGE TEXT OVERLAY CSS--*/

.jumbotron-img-text {
    color: white;
    font-family: Poppins;
    font-weight: 500;
    font-size: 34px;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    width: 80%;
    padding: 0px;
    transform: translate(-50%, -50%);
    /*background-color: rgb(0, 0, 0);*/
    /*background-color: rgba(0, 0, 0, 0.4);*/
    border-radius: 5px;
    border: 0px;
    /*box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.4);*/
    text-shadow: 0px 0px 30px black;
    animation: image-slideshow-text-fade 6000ms ease-in-out 0ms infinite normal none running;
}

@keyframes image-slideshow-text-fade {
    0% {opacity: 0;
        transform: translate(-50%, -30%);
    }
    20% {opacity: 1;
        transform: translate(-50%, -50%);
    }
    80% {transform: translate(-50%, -50%);}
    90% {opacity: 1;}
    100% {opacity: 0;
        transform: translate(-50%, -80%);
    }
}

@media (min-width: 768px) {
    .jumbotron-img-text {
        font-size: 40px;
        width: 60%;
    }
}

/*--PAGE TEXT, STYLES & FONTS for SECTION 2--*/

.text-titles-padding-sec2 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
    width: 100%;
}

/*--H1--*/
.h1-heading-sec2 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 40px;
    text-align: center
}

@media (min-width: 768px) {
    .h1-heading-sec2 {
        font-size: 50px;
    }
}


/*--H2--*/
.h2-subhead-sec2 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    text-align: center
}

@media (min-width: 768px) {
    .h2-subhead-sec2 {
        font-size: 20px;
    }
}




/*---SEC2-SHOWCASE---*/

.services-showcase-sec2-parent {
    width: 100%;
    background-color: #EFEFEF;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    padding-top: 5px;
    padding-bottom: 15px;
}


.services-showcase-sec2-child {
    box-sizing: border-box;
    width: 400px;
    max-width: 550px;
    height: 600px;
    background-color: white;
    float: left;
    border: 2px solid #918181;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    position: relative;
}

.services-showcase-sec2-child-child-content:hover {
    animation-name: services-showcase-hover-fadein;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes services-showcase-hover-fadein {
    0% {background-color: white;}
    100% {background-color: #E7F4E8;}
}

.services-showcase-sec2-child-child-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    cursor: pointer;
    animation-name: services-showcase-hover-fadeout;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes services-showcase-hover-fadeout {
    0% {background-color: #E7F4E8;}
    100% {background-color: white;}
}

/*--Showcase Images CSS --*/
.services-showcase-sec2-image-container {
    width: 90%;
    height: 400px;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: darken;
}

.services-showcase-sec2-text-container {
    position: absolute;
    top: 420px;
    padding-left: 17px;
    padding-right: 17px;
}

.services-showcase-div-href-fill {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.services-showcase-h2 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    user-select: none;
}

.services-showcase-h3 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    user-select: none;
}

.services-showcase-readmore-btn {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 15px;
}

.services-showcase-parent-title-h2-container {
    width: 100%;
}

.services-showcase-parent-title-h2 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}


