/*******************************************************************************************
                                 RESPONSIVE NAV BAR
********************************************************************************************/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
nav{
  background: #101010;
  height: 80px;
  width: 100%;
}
label.logo{
  color: #f2f2f2;
  font-size: 33px;
  line-height: 80px;
  padding: 0 140px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
nav ul{
  float: right;
  margin-right: 60px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 2px;
}
nav ul li a{
  color: #f2f2f2;
  font-weight: 500;
  font-size: 20px;
  padding: 7px 13px;
  border-radius: 3px;
  /* text-transform: uppercase; */
  font-family: 'Poppins', sans-serif;
}
a.active,a:hover{
  background: #505050;
  transition: .5s;
}
.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media (max-width: 952px){
  label.logo{
    font-size: 27px;
    padding-left: 25px;
  }
  nav ul li a{
    font-size: 16px;
  }
}
@media (max-width: 858px){
  .checkbtn{
    display: block;
    margin-right: 40px;
  }
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover,a.active{
    background: none;
    color: #101010;
  }
  #check:checked ~ ul{
    left: 0;
  }
}
section{
  background: url(bg1.jpg) no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}



/*******************************************************************************************
                                 HORIZONTAL CAROUSEL
********************************************************************************************/


body{    
    font-family: 'Roboto Condensed', sans-serif;
    overflow-x: hidden;
    background-color: #202020;
}
h1 {
  margin:150px auto 30px auto; 
  text-align:center; color:#fff;
}
   
.hi-slide { 
  position: relative; 
  width: 754px; 
  height: 250px; 
  margin: 15px auto 0; 
}
            
.hi-slide .hi-next,
.hi-slide .hi-prev 
{ 
  position: absolute;
  top: 50%; 
  width: 40px;
  height: 40px; 
  margin-top: -20px;     
  border-radius: 50px;  
  line-height: 40px;
  text-align: center; 
  cursor: pointer;
  background-color: #fff; 
  color: black;               
  /*transition: all 0.6s;*/
  font-size: 20px; 
  font-weight: bold;
}
.hi-slide .hi-next:hover, 
.hi-slide .hi-prev:hover 
{
opacity: 1; 
background-color: #fff;  
}

.hi-slide .hi-prev { 
  left: -60px; 
}
            
.hi-slide .hi-prev::before { 
  content: '<'; 
}
.hi-slide .hi-next { 
  right: -60px; 
}
.hi-slide .hi-next::before { 
  content: '>'; 
}
    
.hi-slide > ul
{ 
  list-style: none; 
  position: relative;
  width: 754px; 
  height: 250px; 
  margin: 0;
  padding: 0;
}
            
            
.hi-slide > ul > li 
{
  overflow: hidden; 
  position: absolute; 
  z-index: 0; 
  left: 377px;
  top: 146px; 
  width: 0; 
  height: 0; 
  margin: 0; 
  padding: 0;
  border: 3px solid #fff;              
  background-color: #333; 
  cursor: pointer; 
}
    
.hi-slide > ul > li > img { 
  width: 100%; 
  height: 100%; 
  background-position: center;
}






