*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
}

a{
	color: inherit;
	text-decoration: none;
}

ul{
	list-style: none;
}

h1{
	text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

h2{
	font-family: 'Jost', sans-serif;
	font-size: 45px;
	font-weight: 700;
	text-transform: capitalize;
}

.container {
	max-width: 1200px;
	width: 80%;	
	margin: 0 auto;
}

.popup-wrapper{
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.popup-content{
	background: #419197;
	padding: 25px 35px;
	max-width: 700px; 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.popup-content h3{
	font-size: 18px;
	color: white;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.btn-close i{
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

.banner{
	background-image: url(images/banner-bg.jpg);
	background-position: center;
	background-size: cover;
	min-height: 100vh;
	padding: 100px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.banner .container{
	width: 750px;
	color: white;
}

.banner h1{
	font-family: 'Work Sans', sans-serif;
	color: white;
	font-weight: 700;
	margin-bottom: 40px;
}

#btn-play{
	padding: 10px 30px;
	border: none;
	border-radius: 30px;
	background: #419197;
	color: white;
	font-family: 'Jost', sans-serif;
	font-size: 1.2rem;	
	cursor: pointer;
	box-shadow: 4px 6px 10px rgba(0, 0, 0, 20%);
	animation: 3s color linear infinite;
}

@keyframes color{
	0%{
		background-image: linear-gradient(150deg, #419197, #a6d6d6);
	}

	50%{
		background-image: linear-gradient(150deg, #a6d6d6, #7091F5);
	}

	100%{
		background-image: linear-gradient(150deg, #7091F5, #419197);
	}
}

.activity h4{
	font-size: 22px;
	font-weight: 600;
}

.card-img{
	position: relative;
}

.info-box{
	font-size: 14px;
	position: absolute;
	left: 15px;
	top: 100%;
	transform: translateY(-50%);
}

.agent{
	padding: 80px 0;
	background: white;
	font-family: 'Jost', sans-serif;
	text-align: center;
}

.agent-title {
	width: 500px;
	margin: 0 auto;
	margin-bottom: 40px;
}

.agent h2{
	margin-bottom: 20px;
}

.agent h4{
	font-size: 17px;
	font-weight: 400;
	color: #61677A;
}

.agent h3{
	font-size: 21px;
	font-weight: 500;
	text-transform: capitalize;
}

.agent p{
	font-size: 15px;
	font-weight: 400;
	color: #61677A;
	text-transform: capitalize;
}

.info-holder{
	text-align: center;
	background: white;
	padding: 30px 0 10px;
}

.agent-slider .img-holder{
	background-size: cover;
	background-position: center;
	height: 300px;
	position: relative;
}

.agent .img1{
	background-image: url(images/man1.jpg);
}

.agent .img2{
	background-image: url(images/man2.jpg);
}

.agent .img3{
	background-image: url(images/man3.jpg);
}

.agent .img4{
	background-image: url(images/man4.jpg);
}

.agent .img5{
	background-image: url(images/man5.jpg);
}

.agent .img6{
	background-image: url(images/man6.jpg);
}

.agent .slick-slide{
	margin: 0 10px;
}

.agent .slick-list{
	margin: 0 -10px;
}

.agent .slick-arrow{
	position: absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	font-size: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: .4s;
}

.agent .slick-arrow:hover{
	background: #282A3A;
	border-radius: 50%;
}

.agent .slick-arrow:before{
	content: url('images/arrow_right.png');  
	transform: translate(-50%, -50%) scale(0.04);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

.agent .slick-prev{
	right: calc(100% + 20px);
	transform: translateY(-50%) scaleX(-1);
}

.agent .slick-next{
	left: calc(100% + 20px);
}

/*.card-man{
	box-shadow: 0px 2px 6px 0px rgba(90,104,112,0.3);
}
*/
@media only screen and (max-width: 700px){
	h2{
		font-size: 35px;
	}

	.agent h2{
		margin-bottom: 15px;
	}

	.agent h4{
		font-size: 16px;
	}
}


