.carousel-control-prev-icon:before,
.carousel-control-next-icon:after {
    content: "\f1db";
    font-family: FontAwesome;
    font-size: inherit;
    color: inherit;
    font-weight: normal;
    font-style: normal;
    display: block;
}

video {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}
.backVideo iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}
.videoVolumnOnOffButton,
.videoPlayPause {
    position: absolute;
    right: 4rem;
    top: 8rem;
    z-index: 10;
    cursor: pointer;
    background: rgb(14,158,199);
    padding: 1em;
    width: 60px;
    color: rgb(255,255,255);
    border: none;
    -webkit-transition: background 300ms ease 0s;
    -moz-transition: background 300ms ease 0s;
    -o-transition: background 300ms ease 0s;
    transition: background 300ms ease 0s;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
}
.videoPlayPause {
    right: 9rem;
    top: 8rem;
}
.videoVolumnOnOffButton:hover,
.videoPlayPause:hover {
    background: rgb(252,176,64);
}
.videoVolumnOnOffButton i,
.videoPlayPause i {
    font-size: 1.5rem;
    font-weight: 100;
}
.videoPlayPause i {
    font-weight: 600;
}
.player .vp-player-layout {
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    position: fixed !important;
}
.fallbackImg {
    display: none;
}


.carousel-control-next, 
.carousel-control-prev {
    font-size: 3rem;
    color: rgb(255,255,255)!important;
    opacity: 1;
}
.carousel-control-next:visited, 
.carousel-control-prev:visited {
    color: rgb(255,255,255)!important;
}
.carousel-control-next:focus, 
.carousel-control-next:hover, 
.carousel-control-prev:focus, 
.carousel-control-prev:hover {
    color: rgb(252,176,64)!important;
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background: none;
    display: none;
}
.carousel-control-prev-icon:before {
    content:"\f104";
}
.carousel-control-next-icon:after {
    content:"\f105";
}

.carousel-indicators li {
    background: rgba(255,255,255,0.8);
}
.carousel-indicators .active {
    /*background: rgba(252,176,64,0.8);*/
    display: none;
}

.carousel-item {
    height: inherit;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
.carousel-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: none;
    padding: 1.8rem;
    /*text-shadow: 0 0 5px rgba(0,0,0,5);*/
    text-align: left;
    background: rgba(26,34,38, 0.75);
    width: 35%;
    border-left: 10px solid #e29a2f;
    /*padding: 44px;*/
}

.carousel-caption h2 {
	font: normal 400 1.7rem 'Open Sans', Arial, sans-serif;
	color: rgb(255,255,255);
	margin: 0px;
}
.carousel-caption h3 {
	font: bold 3rem 'Open Sans', Arial, sans-serif;
	color: rgb(255,255,255);
    margin: 0px;
}
.carousel-caption p {
	font: normal 300 1.2rem 'Open Sans', Arial, sans-serif;
	color: rgb(255,255,255);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.carousel-caption a,
.carousel-caption a:link {
    text-transform: uppercase;
    font: normal 1.3rem 'Open Sans', Arial, sans-serif;
    color:rgb(255,255,255);
}
.carousel-caption a::after {
    content: "\f138";
    font-family: "Font Awesome 5 Pro";
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    color:inherit;
    display: inline-block;
    margin-left: 1.5rem;
}
.carousel-caption a:visited{
	color:rgb(255,255,255);
}
.carousel-caption a:hover{
	color: rgb(252,176,64);
}
.carousel-caption a:active{
	color: rgb(255,255,255);
	/* background: rgb(252,176,64); */
}
.carousel-caption a:focus{
	color: rgb(255,255,255);
	/* background: rgb(252,176,64); */
}

.carousel-indicators{
    bottom: 4.8rem;
	margin-bottom: 0;
	display:none;
}

.carousel .btnScrollDown {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgb(227,83,13);
    display: block;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background 300ms ease 0s;
    -moz-transition: background 300ms ease 0s;
    -o-transition: background 300ms ease 0s;
    transition: background 300ms ease 0s;
    background: transparent; /*rgba(255,255,255,0.75);*/
    z-index: 1;
}
.btnScrollDown:hover {
    color: rgb(255,255,255);
    background: rgb(252,176,64);
}
.innerbtnScrollCont {
    position: relative;
    width: inherit;
    height: inherit;
}
.innerbtnScrollCont i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-size: 52px;
    color: #fff;
}




/*********************************************************
MEDIA QUERY
*********************************************************/
@media only screen and (max-width: 1600px) { 
    .carousel-caption {
        width:37%;
    }
}
@media only screen and (max-width: 1440px) { 
    /*.carousel-caption {
        width:540px;
    }*/
    .carousel-caption h2{
        font-size: 1.5rem;
    }
    .carousel-caption h3 {
        font-size: 2.4rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
    .carousel-caption {
        width:40%;
    }
}
@media only screen and (max-width: 1200px) {
    .carousel-caption {
        width:42%;
    }
    .carousel-caption h2{
        font-size: 1.9rem;
    }
    .carousel-caption h3 {
        font-size: 2.15rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption a, .carousel-caption a:link {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 1024px) { 
    .carousel-caption h2{
        font-size: 2rem;
    }
    .carousel-caption h3 {
        font-size: 2.3rem;
    }
    /*.carousel-caption {
        width:500px;
    }*/
    .carousel-indicators li {
        display: none;
    }
    .carousel-caption p {
        margin-bottom: .5rem;
    }
    .carousel-caption a, .carousel-caption a:link {
        font-size: 1.1rem;
    }
    .carousel-caption {
        width:40%;
        padding: 2rem;
    }
    .carousel .btnScrollDown {
       bottom: 3rem;
    }
}
@media only screen and (max-width:960px) {
    .carousel-caption {
        padding: 1rem 2rem;
    }
        .carousel-caption h2 {
            font-size: 1.5rem;
        }
        .carousel-caption h3 {
            font-size: 2rem;
            margin: 0;
        }
          .carousel-caption p {
            font-size: .9rem;
        }
	.videoVolumnOnOffButton,
	.videoPlayPause {
		top: 5rem;
	}
}
@media only screen and (max-width:850px) {
    .carousel-caption {
        padding: 1rem 2rem;
    }
        .carousel-caption h2 {
            font-size: 1.3rem;
        }
        .carousel-caption h3 {
            font-size: 1.7rem;
            margin: 0;
        }
          .carousel-caption p {
       font-size: .9rem;
    }
}
@media only screen and (max-width:768px) {
    .fallbackImg {
        display: inline-block;
    }
    .backVideo iframe, .carousel .btnScrollDown {
        display: none;
    }
    video {
        display: none;
    }
    .videoVolumnOnOffButton,
    .videoPlayPause {
        display: none;
    }
    .carousel-caption {
        /*position: absolute;
        bottom: 0px;
        left: 0px;*/
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: none;
        padding: 20px;
        text-shadow: 0 0 5px rgba(0,0,0,5);
        text-align: left;
        background:#1a2225;
        border: none;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        background: #1a2225;
        border: none;
    }    
    .carousel-caption .blkhsection {
        border-bottom: 1px solid #4f575a;
        position: relative;
        padding-bottom: .2rem;
		margin-bottom: 1rem;
    }
	.fa.fa-calendar {
   
    padding-top: .2rem;
    padding-right: .4rem;
}
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption a, .carousel-caption a:link {
        font-size: 1rem;
    }
    .carousel-caption a.hcalendar {
        display: block;
   
        text-transform: initial;
        font-size: 0.8rem;
    }
    .carousel-caption a.hcalendar:before {
        content: "";
        /*color: #89be4a;
        font-size: 2rem;
        position: absolute;
        left: 0px;
        font-family: fontawesome;
        top: 0px;*/
    }
}
/*@media only screen and (max-width: 1680px) {
    .carousel-caption {
        top: 62%;
    }
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    .carousel-caption h3 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1.3rem;
    }
    .carousel-caption a,
    .carousel-caption a:link {
        font-size: 0.9rem;
    }
    .btnScrollDown {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media all and (min-width: 1300px) and (max-width:1450px) {
    .carousel-caption h3{font-size:3rem;}
    .carousel-caption p{font-size: 1rem;}
    .carousel-caption{width: 530px;padding: 30px;}
}

@media only screen and (max-width: 1190px) {
    .carousel-caption {
        top: 58%;
    }
    .carousel-caption h2 {
        font-size: 1.3rem;
    }
    .carousel-caption h3 {
        font-size: 5rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
    .carousel-caption a,
    .carousel-caption a:link {
        font-size: 0.8rem;
    }
}


@media all and (min-width: 920px) and (max-width:1024px) {
    .carousel-caption h3{font-size:3rem;}
    .carousel-caption p{font-size: 1rem;}
    .carousel-caption{width: 530px;padding: 30px;}
}

@media only screen and (max-width:950px) {
    .carousel-caption {top: 55%;}
    .carousel-caption h2 { font-size: 1.2rem; }
    .carousel-caption h3 { font-size: 4rem; }
    .carousel-caption a, .carousel-caption a:link { font-size: 0.75rem;}
}

@media only screen and (max-width:785px) {
    #playPauseButton,
    #volumeButton,
    .btnScrollDown {
        display: none;
    }

    .carousel-indicators {
        bottom: 1rem;
    } 
    .carousel-indicators li {
        background: rgba(22,87,81,0.8);
    }
    .carousel-indicators .active {
        background: rgba(252,176,64,0.8);
    }

    .carousel-control-next, 
    .carousel-control-prev {
        font-size: 2rem;
        color: rgb(1,138,182)!important;
    }
    .carousel-control-next:visited, 
    .carousel-control-prev:visited {
        color: rgb(1,138,182)!important;
    }

    .carousel-item:after {
        content: normal;
    }
    .carousel-caption {
        position: relative;
        top: auto;
        left: auto;
        right: 0;
        bottom: auto;
        width: 100%;
        margin-left: 0;
        padding: 0 2rem 3rem;
        text-shadow: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
        background: rgb(255,255,255);
    }
    .carousel-caption:before {
        content: "";
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        height: 60px;
        display: block;
        z-index: 500;
        background: url(../images/bgSlider.png) left center repeat-x;
    }

    .carousel-caption h2 {
        font-size: 0.8rem;
        color: rgb(1,138,182);
    }
    .carousel-caption h3 {
        font-size: 2.5rem;
        color: rgb(252,176,64);
    }
    .carousel-caption p {
        font-size: 1rem;
        color:#fff;
    }
    .carousel-caption a,
    .carousel-caption a:link {
        font-size: 0.7rem;
    }
}*/

/*@media only screen and (min-width: 640px) and (max-width:750px) {
    .carousel-caption {
        position: absolute;
        bottom: 0px;
        left: 0px;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: none;
        padding: 1rem;
        text-shadow: 0 0 5px rgba(0,0,0,5);
        text-align: left;
        background:#1a2225;
        border: none;
        padding: 44px;
        widows: 100%;
    }

    .carousel-caption h2 {
        font: normal 100 2rem 'Open Sans', Arial, sans-serif;
        color: rgb(255,255,255);
        margin-bottom: 0;
    }

    .carousel-caption h3 {
        font: bold 4rem 'Open Sans', Arial, sans-serif;
        color: rgb(255,255,255);
        margin-bottom: 0;
    }

}*/


@media only screen and (min-width: 320px) and (max-width:600px) {
    
    .carousel-caption h2 {
        font-size: 1.7rem;
        color: rgb(255,255,255);
        margin-bottom: 0;
    }
    .carousel-caption h3 {
        font-size: 2rem;
        color: rgb(255,255,255);
    }
    .carousel-caption a, .carousel-caption a:link {
        font-size: 0.9rem;
    }
    .carousel-caption p {
        font-size: 0.8rem;
    }
    .fpost-block{width: 100%}

}