@charset "utf-8";
/* CSS Document for the Slider */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')

 {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}

body {
	font-family: "Poppins", san-serif;
	margin: 0;
	background: #fff;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 1000;
	padding: 30px 100px;
	font-family: "Poppins", san-serif;
}

header .logo {
	position: relative;
	color: #fff;
	font-weight: 700;
	font-size: 2em;
	text-decoration: none;
	text-transform: uppercase;
}

header ul {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

header ul li {
	position: relative;
	list-style: none;
	margin-left: 40px;
}

header ul li a {
	color: #fff;
	text-decoration: none;
}
.banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	
}

.banner .imgBx {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: 0.5s ease;
	background-position: center;
}

.banner .imgBx img.active {
	opacity: 1;
}

.controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 80px;
}

.controls li {
	position: relative;
	height: 80px;
	width: 80px;
	background: #fff;
	list-style: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.controls li:hover {
	background: #ffeb3b; /*this is a yellow color*/
}

.controls li:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-left: 3px solid #111;
	border-bottom: 3px solid #111;
	transform: rotate(45deg);
	margin: 30px;
}

.controls li:nth-child(2):before {
	transform: rotate(225deg);
}

.contentBx {
	position: absolute;
	bottom: 0;
	max-width: 700px;
}
.contentBx div {
	display: none;
}

.contentBx div h2 {
	color: #fff;
	font-size: 2em;
	margin: 0;
}

.contentBx div p {
	color: #fff;
	font-size: 1.1em;
}

.contentBx div a {
	color: #111;
	font-size: 1.1em;
	display: inline-block;
	text-decoration: none;
	padding: 10px 30px;
	background: #fff;
	margin-top: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
}

.contentBx div.active {
	display: block;
	padding: 30px 30px 30px 100px;	
	background: rgba(0,0,0,0.2)
}


/* POPPINS GOOGLE WEB FONT BEGIN */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  background: #fff;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* POPPINS GOOGLE WEB FONT END */