@font-face {
  font-family: Renogare;
  src: url(../../Renogare-Regular.otf);
  font-weight: normal;
}

*{
  margin: 0;
  padding: 0;
  font-family: Renogare;
}

.banner{
  width: 100%;
  height: 300vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../../Imgs/Other/backgroundimg.png);
  background-size: cover;
  background-position: center;
}

.logo{
  width: 90px;
  cursor: pointer; 
}

.navbar{
  width: 85%;
  margin: auto; 
  padding: 35px 0;
  display: flex; 
  align-items: center;
  justify-content: space-between;
  
}

.navbar ul li{
  list-style: none;
  display: inline-block;
  margin: 0 20px; 
  position: relative; 
  
}

.navbar ul li a{
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}

.navbar ul li::after{
  content: '';
  height: 3px;
  width: 0;
  background: #009688;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s; 
}

.navbar ul li:hover::after{
  width: 100%;
}

.content{
  position: absolute;
  width: 100%;
  top: 90%;
  transform: translateY(-50%);
  text-align: center;
}

.content h2{
  font-size: 60px;
  margin: 20px;
  color: #009688;
  font-weight: 100;
}

.swiper{
  position: absolute;
  width: 80%;
  height: 65%;
  top: -70%;
}

.swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;

}

.slider {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 60%;
  height: 60%;
  justify-content: center;
  align-items: center;
	overflow: hidden;
}

.slider figure {
	position: relative;
	width: 500%;
	margin: 0;
	left: 0;
	animation: 20s slider infinite;
}

.slider figure img {
	float: left;
	width: 20%;
}

.content p{
  position: relative;
  color: white;
  top: 650px;
}

.content p h{
  font-size: 40px;
  color: #009688;
  font-style: oblique;

}

.content p a{
  position: relative;
  color: white;

}

.content p b{
  font-size: 30px;
  color: #009688;
  font-weight: 300;
  font-style: oblique;
  
}

@keyframes slider {
	0% {
		left: 0;
	}
	20% {
		left: 0;
	}
	25% {
		left: -100%;
	}
	45% {
		left: -100%;
	}
	50% {
		left: -200%;
	}
	70% {
		left: -200%;
	}
	75% {
		left: -300%;
	}
	95% {
		left: -300%;
	}
	100% {
		left: -400%;
	}
}

@media (orientation: portrait) {
  
  .logo{
    width: 25%;
  }

  .navbar{
    font-size: 29px;
  }
}
