* {
	margin: 0;
	padding: 0;
}
.slider-area h2 {
	text-align: center;
	font-size: 70px;
	letter-spacing: 2px;
	color: #000;
}
.wrapper {
	display: flex;
	width: 800px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.item {
	animation: animate 25s alternate linear infinite;
}
.item a:hover{width:300px;}
.container .item:hover  {
	animation-play-state: paused;
	
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-2200px, 0, 0);
	}
}
@media (max-width:767px) {
	.slider-area h2 {
		font-size: 30px;
	}
	.wrapper {
		width: 95%;
		border-radius: 0;
		padding: 0;
	}
}
th{width:35%;}
td{ font-size: 12px;
    padding: 3px;
    border: solid 1px #ebebeb;}
	a.cont-link{font-size: 40px;
    font-family: impact;
    background: linear-gradient(to right, #f8436e, #fedc08, #43f77f);    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;}
	a.cont-link:hover{color:#dc3545;}
	
	
	
@import url(https://fonts.googleapis.com/css?family=Exo:100);
* {margin: 0; padding: 0; border: 0 none;}
.cont-slider {
    position: relative;
    height: 50vh;
    max-height: 100vh;
    width: auto;
    min-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
}
.slider {
    animation: sliding 25s ease-out 0s backwards infinite;
    position: absolute;
    left: 0;
    top: 0;
    width: 500%;
    height: 100%;
}

/* Pause slider on hover */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* MAIN SLIDER */
.cont-slider{
    position:relative;
    width:100%;
    height:50vh;
    min-height:400px;
    overflow:hidden;
}

/* SLIDER WRAPPER */
.slider{margin-top:60px;
    display:flex;
    width:100%;
    height:100%;
    transition:transform 0.8s ease-in-out;
}

/* INDIVIDUAL SLIDE */
.slide{
    min-width:100%;
    height:100%;
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* CAPTION */
.caption{
    position:absolute;
    left:50px;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
}

.caption h2{
    font-size:60px;
    margin-bottom:15px;
    font-family:impact;
}

.caption p{
    font-size:22px;
    max-width:500px;
}

/* OVERLAY */
.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

/* SLIDE BACKGROUNDS */
.one{
   background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

.two{
  background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

.three{
   background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

.four{
    background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

.five{
    background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

/* ARROWS */
.slider-arrow{ display:none;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.6);
    color:#fff;
    cursor:pointer;
    font-size:30px;
    transition:0.3s;
}

.slider-arrow:hover{
    background:#dc3545;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* DOTS */
.slider-dots{
    position:absolute;
    bottom:20px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:10px;
    z-index:20;
}

.slider-dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    opacity:0.5;
    cursor:pointer;
    transition:0.3s;
}

.slider-dots span.active{
    opacity:1;
    background:#dc3545;
}

/* MOBILE */
@media(max-width:768px){

    .cont-slider{
        height:60vh;
    }

    .caption{
        left:20px;
        right:20px;
    }

    .caption h2{
        font-size:35px;
    }

    .caption p{
        font-size:18px;
    }

    .slider-arrow{
        width:40px;
        height:40px;
        font-size:24px;
    }
}

/************* Vertical Slider*******************************/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

/* MAIN SLIDER */
.vertical-slider{
    width:100%;
    max-width:1000px;
    height:500px;
    margin:40px auto;
    overflow:hidden;
    position:relative;
    border-radius:20px;
    background:#111;
}

/* TRACK */
.slider-track{
    height:100%;
    transition:transform 0.8s ease;
}

/* SLIDE */
.slide{
    display:flex;
   background-image:url('https://glenthatoursandsafaris.co.za/sphakhumalo/img/slide/slide4.jpg');
}

/* IMAGE SIDE */
.slide-image{
    width:50%;
    height:100%;
}

.slide-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT SIDE */
.slide-content{
    width:50%;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#181818;
    color:#fff;
}

.slide-content h2{
    font-size:45px;
    margin-bottom:20px;
}

.slide-content p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:25px;
}

/* BUTTON */
.slide-btn{
    display:inline-block;
    width:max-content;
    padding:14px 28px;
    background:#dc3545;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.slide-btn:hover{
    background:#fff;
    color:#000;
}

/* DOTS */
.slider-dots{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:20;
}

.slider-dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    opacity:0.4;
    cursor:pointer;
    transition:0.3s;
}

.slider-dots span.active{
    opacity:1;
    background:#dc3545;
    transform:scale(1.2);
}

/* MOBILE */
@media(max-width:768px){

    .vertical-slider{
        height:auto;
    }

    .slide{
        flex-direction:column;
        height:auto;
    }

    .slide-image,
    .slide-content{
        width:100%;
    }

    .slide-image{
        height:300px;
    }

    .slide-content{
        padding:30px;
    }

    .slide-content h2{
        font-size:30px;
    }

}


.main-slider-dots{
    text-align: center;
    margin-top: 20px;
}

.main-slider-dots .dot{
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.main-slider-dots .dot.active{
    background: #fff;
}















/****************Menu Navigator*********************/
.socbtn{width: auto;
    text-align: right;
    padding-top: 10px;}
    .sr-32px a {
    width: 20px!important;
    height: 20px!important;}
.nav{background: #333333;
position: fixed;
    width: 100%;
    z-index: 99;
    top:10px;
}
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #dc3545;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
#HCB_comment_box{height:auto!important;}	
.scl{float:left;width:100%;}	
small{float:right!important;}
	
	
/*********************POPUP*********************/

	
	
	
	
	