@charset "UTF-8";
/* CSS Document */

#slider {
    position: relative;
    overflow: hidden;
    opacity: 0.5;
}
#slider::after {
    clear: both;
}

.dissolve {
    height: auto;
    overflow: hidden;
    
    -webkit-animation: dissolveAnimation 1s; /* Chrome, Safari, Opera */
    -moz-animation: dissolveAnimation 1s; /* Chrome, Safari, Opera */
    animation: dissolveAnimation 1s;
    transition-timing-function: ease-out;
}

.slideUp {
    height: auto;
    overflow: hidden;
    
    -webkit-animation: slideUpAnimation 1s; /* Chrome, Safari, Opera */
    -moz-animation: slideUpAnimation 1s; /* Chrome, Safari, Opera */
    animation: slideUpAnimation 1s;
    transition-timing-function: ease-in-out;
}

.slideDown {
    height: auto;
    overflow: hidden;
    
    -webkit-animation: slideDownAnimation 1s; /* Chrome, Safari, Opera */
    -moz-animation: slideDownAnimation 1s; /* Chrome, Safari, Opera */
    animation: slideDownAnimation 1s;
    transition-timing-function: ease-in-out;
}

.slideLeft {
    height: auto;
    overflow: hidden;
    
    -webkit-animation: slideLeftAnimation 1s; /* Chrome, Safari, Opera */
    -moz -animation: slideLeftAnimation 1s; /* Chrome, Safari, Opera */
    animation: slideLeftAnimation 1s;
    transition-timing-function: ease-in-out;
}

.slideRight {
    height: auto;
    overflow: hidden;
    
    -webkit-animation: slideRightAnimation 1s; /* Chrome, Safari, Opera */
    -moz -animation: slideRightAnimation 1s; /* Chrome, Safari, Opera */
    animation: slideRightAnimation 1s;
    transition-timing-function: ease-in-out;
}


.mosaicBlock {
    width: 100px;
    height: 100px;
    float: left;
    overflow: hidden;

    -webkit-animation: myfirst 1s; /* Chrome, Safari, Opera */
    -moz-animation: myfirst 1s; /* Chrome, Safari, Opera */
    animation: myfirst 1s;
    transition-timing-function: ease-in-out;
}


.windowBlock {
    width: 300px;
    height: auto;
    float: left;
    overflow: hidden;

    -webkit-animation: windowAnimation 1s; /* Chrome, Safari, Opera */
    -moz-animation: windowAnimation 1s; /* Chrome, Safari, Opera */
    animation: windowAnimation 1s;
    transition-timing-function: ease-in-out;
}

.imagePush {
    height: auto;
    float: left;
    overflow: hidden;

    -webkit-animation: imagePushAnimation 1s; /* Chrome, Safari, Opera */
    -moz-animation: imagePushAnimation 1s; /* Chrome, Safari, Opera */
    animation: imagePushAnimation 1s;
    transition-timing-function: ease-in-out;
}

.imagePush2 {
    height: auto;
    float: left;
    overflow: hidden;

    -webkit-animation: imagePush2Animation 1s; /* Chrome, Safari, Opera */
    -moz-animation: imagePush2Animation 1s; /* Chrome, Safari, Opera */
    animation: imagePush2Animation 1s;
    transition-timing-function: ease-in-out;

}

/* 
Animations
*/


/*Dissolve Animation */

/* Chrome, Safari, Opera */
@-webkit-keyframes dissolveAnimation {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes dissolveAnimation {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/* Standard syntax */
@keyframes dissolveAnimation {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/*Slide Up Animation */

/* Chrome, Safari, Opera */
@-webkit-keyframes slideUpAnimation {
    from {
        -webkit-transform: translate(0,0);
    }
    to {
        -webkit-transform: translate(0,-500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes slideUpAnimation {
    from {
        -moz-transform: translate(0,0);
    }
    to {
        -moz-transform: translate(0,-500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/* Standard syntax */
@keyframes slideUpAnimation {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(0,-500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/*Slide Down Animation */

/* Chrome, Safari, Opera */
@-webkit-keyframes slideDownAnimation {
    from {
        -webkit-transform: translate(0,0);
    }
    to {
        -webkit-transform: translate(0,500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes slideDownAnimation {
    from {
        -moz-transform: translate(0,0);
    }
    to {
        -moz-transform: translate(0,500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/* Standard syntax */
@keyframes slideDownAnimation {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(0,500px);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/*Slide Left Animation */

/* Chrome, Safari, Opera */
@-webkit-keyframes slideLeftAnimation {
    from {
        -webkit-transform: translate(0,0);
    }
    to {
        -webkit-transform: translate(-500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes slideLeftAnimation {
    from {
        -moz-transform: translate(0,0);
    }
    to {
        -moz-transform: translate(-500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Standard syntax */
@keyframes slideLeftAnimation {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(-500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/*Slide Right Animation */

/* Chrome, Safari, Opera */
@-webkit-keyframes slideRightAnimation {
    from {
        -webkit-transform: translate(0,0);
    }
    to {
        -webkit-transform: translate(500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes slideRightAnimation {
    from {
        -moz-transform: translate(0,0);
    }
    to {
        -moz-transform: translate(500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Standard syntax */
@keyframes slideRightAnimation {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(500px,0);
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/*Mosaic */
/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    from {
        -webkit-transform: scale(1,1);
        display: block;
    }
    to {
        -webkit-transform: scale(0,0);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Mozilla */
@-moz-keyframes myfirst {
    from {
        -moz-transform: scale(1,1);
        display: block;
    }
    to {
        -moz-transform: scale(0,0);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Standard syntax */
@keyframes myfirst {
     from {
        transform: scale(1,1);
        display: block;
    }
    to {
        transform: scale(0,0);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


/*Windows */

@-webkit-keyframes windowAnimation {
    from {
        -ms-transform: rotateY(0deg); /* IE 9 */
        -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
        transform: rotateY(0deg);
        display: block;
    }
    to {
        -ms-transform: rotateY(90deg); /* IE 9 */
        -webkit-transform: rotateY(90deg); /* Chrome, Safari, Opera */
        transform: rotateY(90deg);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

@-moz-keyframes windowAnimation {
    from {
        -ms-transform: rotateY(0deg); /* IE 9 */
        -moz-transform: rotateY(0deg); /* Chrome, Safari, Opera */
        transform: rotateY(0deg);
        display: block;
    }
    to {
        -ms-transform: rotateY(90deg); /* IE 9 */
        -moz-transform: rotateY(90deg); /* Chrome, Safari, Opera */
        transform: rotateY(90deg);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

@keyframes windowAnimation {

    from {
        -ms-transform: rotateY(0deg); /* IE 9 */
        -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
        transform: rotateY(0deg);
        display: block;
    }
    to {
        -ms-transform: rotateY(90deg); /* IE 9 */
        -webkit-transform: rotateY(90deg); /* Chrome, Safari, Opera */
        transform: rotateY(90deg);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/*Push */

 @-webkit-keyframes imagePushAnimation {
    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -webkit-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
        -ms-transform: translate(100px,0px); /* IE 9 */
        -webkit-transform: translate(100px,0px); /* Chrome, Safari, Opera */
        transform: translate(100px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

 @-moz-keyframes imagePushAnimation {
    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -moz-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
        -ms-transform: translate(100px,0px); /* IE 9 */
        -moz-transform: translate(100px,0px); /* Chrome, Safari, Opera */
        transform: translate(100px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


@keyframes imagePushAnimation {

    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -webkit-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
        -ms-transform: translate(100px,0px); /* IE 9 */
        -webkit-transform: translate(100px,0px); /* Chrome, Safari, Opera */
        transform: translate(100px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}


@-webkit-keyframes imagePush2Animation {
    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -webkit-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
        -ms-transform: translate(-150px,0px); /* IE 9 */
        -webkit-transform: translate(-150px,0px); /* Chrome, Safari, Opera */
        transform: translate(-150px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

@-moz-keyframes imagePush2Animation {
    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -moz-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
        -ms-transform: translate(-150px,0px); /* IE 9 */
        -moz-transform: translate(-150px,0px); /* Chrome, Safari, Opera */
        transform: translate(-150px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

@keyframes imagePush2Animation {

    from {
        -ms-transform: translate(0px,0px); /* IE 9 */
        -webkit-transform: rotateY(0px,0px); /* Chrome, Safari, Opera */
        transform: translate(0px,0px);
        display: block;
    }
    to {
         -ms-transform: translate(-150px,0px); /* IE 9 */
        -webkit-transform: translate(-150px,0px); /* Chrome, Safari, Opera */
        transform: translate(-150px,0px);
        display: none;
        opacity: 0.0;
        filter: alpha(opacity=00); /* For IE8 and earlier */
    }
}

/* Sub Header Style */

.sub-header {
	background-color: #070707;
	height: 46px;
	line-height: 46px;
    display: inline-block;
    top: 0; /* Position the navbar at the top of the page */
    width: 100%;
}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}

.sub-header ul.left-info li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.sub-header ul.right-icons {
	float: right;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}



/* Header Style */
header {
	position: absolute;
	z-index: 99999;
	width: 104%;
	background-color: transparent!important;
	height: 80px;
	-webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header .navbar {
	padding: 5px 0px;
}
.background-header .navbar {
	padding: 10px 0px;
}
.background-header {
	top: 0;
	position: fixed;
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-brand h2 {
	color: #a4c639!important;
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #a4c639!important;
}
.navbar .navbar-brand {
	float: 	left;
	margin-top: 0px;
	outline: none;
}
.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.5s;
	margin-top: 0px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: #a4c639;
	border-bottom: 3px solid #a4c639;
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;	
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #a4c639;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}
/* Footer Style */

footer {
	background-color: #232323;
	padding: 80px 0px;
	color: #fff;
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
footer p {
	color: #fff;
}

footer ul.social-icons {
	margin-top: 25px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: #a4c639;
}

footer ul.menu-list li {
	margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #a4c639;
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #a4c639;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #a4c639;
}



/* Sub-footer Style */

.sub-footer {
	background-color: #343434;
	text-align: center;
	padding: 25px 0px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.sub-footer a {
	color: #fff;
}


.page-heading {
	text-align: center;
	background-image: url(../images/page-heading-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}

.page-heading h1 {
	text-transform: capitalize;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


.topbar {
	z-index: 999;
	position: fixed;
	background: #070707;
	width: 100%;
	height: 45px;
	line-height: 45px;
	color: #070707;
	bottom: 0px;
	opacity: 0.7;
  }
marquee {
	margin-top: 5px;
	width: 100%;
}

.runtext-container {
	background-color: #070707;    
	height: 46px;
	line-height: 46px;
background-repeat:repeat-x;
	border: 1px solid #070707;
	box-shadow:0 5px 20px rgba(0, 0, 0, 0.9);

width: 98%;
overflow-x: hidden;
overflow-y: visible;
margin: 0 83px 0 3px;
padding:0 3px 0 3px;
position:absolute;
}

.main-runtext {margin: 0 auto;
overflow: visible;
position: relative;
height: 40px;
}

.runtext-container .holder {
position: relative;
overflow: visible;
display:inline;
float:left;

}

.runtext-container .holder .text-container {
	display:inline;
}

.runtext-container .holder a{
	text-decoration: none;
	font-weight: bold;
	color:#F9DF04;
	text-shadow:0 -1px 0 rgba(0,0,0,0.25);
	line-height: -0.5em;
	font-size:18px;
}

.runtext-container .holder a:hover{
	text-decoration: none;
	color:#6600ff;
}

.waktu{
	width:100px;
	height:50px;
	}

	.jam-digital {
		width: 100%;
		margin: 3% 3%;
	 }
	 #jam span {
		float: left;
		text-align: center;
		font-size: 50px;
		margin: 0 2.5%;
		padding: 10px;
		width: 10%;
		border-radius: 5px;
		box-sizing: border-box;
	 }
	 #jam span:nth-child(1) {
		background: #a70c0c;
	 }
	 #jam span:nth-child(2) {
		background: #f6ab29;
	 }
	 #jam span:nth-child(3) {
		background: #298f19;
	 }
	 #jam::after {
		content: "";
		display: block;
		clear: both;
	 }
	 #unit span {
		float: left;
		width: 10%;
		margin-bottom: 0px;
		text-align: left;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-size: 14px;
		text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7)
	 }
	 span.turn {
		animation: turn 0.7s ease;
	 }
	 @keyframes turn {
		0% {transform: rotateX(0deg)}
		100% {transform: rotateX(360deg)}
	 }
	 @media screen and (max-width: 580px){
		#jam span {
		   float: left;
		   text-align: center;
		   font-size: 20px;
		   margin: 0 1.5%;
		   padding: 10px;
		   width: 5%;
		}
		h1 {
		   margin: 20px 5%;
		}
		.jam-digital {
		   width: 50%;
		   margin: 10% 20%;
		}
		#unit span {
		   width: 13%;
		   margin-bottom: 0px;
		}
	 }

	 .borderless table {
		border-top-style: none;
		border-left-style: none;
		border-right-style: none;
		border-bottom-style: none;
	}

    * Fun Facts */

.fun-facts {
	margin-top: 140px;
	background-image: url(../images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #a4c639;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 5px 5px 5px 5px;
	margin: 5px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #a4c639;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}
/* Fun Facts */

.fun-facts {
	margin-top: 140px;
	background-image: url(../images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #a4c639;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 5px 5px 5px 5px;
	margin: 5px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #a4c639;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.borderless table {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}


/* Banner Style */

.img-fill{
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    color: #080808;
    text-align: center
  }
  
  .img-fill img {
    min-height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
  }
  
  
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .Grid1k {
    padding: 0 15px;
    max-width: 1200px;
    margin: auto;
  }
  
  .blocks-box,
  .slick-slider {
    margin: 0;
    padding: 0!important;
  }
  
  .slick-slide {
    float: left;
    padding: 0;
  }
  
  
  .container {
      position: relative;
      max-width: 110%; /* Maximum width */
      margin: 0 auto; /* Center it */
    }
  
    
    
    .container .content {
      position: absolute; /* Position the background text */
      bottom: 0; /* At the bottom. Use top:0 to append it to the top */
      background: rgb(0, 0, 0); /* Fallback color */
      background: rgba(0, 0, 0, 0.8); /* Black background with 0.5 opacity */
      color: #f1f1f1; /* Grey text */
      width: 100%; /* Full width */
      height:100%;
      padding: 0px; /* Some padding */
    }
  
  .container-banner {
      position: relative;
      max-width: 110%; /* Maximum width */
      margin: 0 auto; /* Center it */
    }
    
    .container-banner .content {
      position: absolute; /* Position the background text */
      bottom: 0; /* At the bottom. Use top:0 to append it to the top */
      background: rgb(0, 0, 0); /* Fallback color */
      background: rgba(0, 0, 0, 0.8); /* Black background with 0.5 opacity */
      color: #f1f1f1; /* Grey text */
      width: 100%; /* Full width */
      height:100%;
      padding: 0px; /* Some padding */
    }
  
    .container-banner .left-content {
      margin-right: 45px;
  }
  
