@charset "UTF-8";
*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}
.container{
	width: 100%;
	min-height: 100vh;
	background-image:image(back-image);
	color: #FFFFFF;
	position: relative;
	overflow: hidden;

}
.navbar{
	width: 90%;
	height: 15vh;
	margin: auto;
	display: flex;
	align-items: center;
}
.logo{
	width: 80px;
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.menu-icon{
	width: 30px;
	cursor: pointer;
	margin-left: 80px;
	position: relative;
	z-index: 2;
}
nav{
	flex: 1;
	text-align: right;
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-left: 60px;
}
nav ul li a{
	text-decoration: none;
	color:#DBDBDB;
	font-size: 14px;
	padding: 5px 2px;
	position: relative;
	z-index: 2;
}
nav ul li a:hover{
	color: #000000;
}
.row{
	width: 90%;
	min-height: 85vh;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}
.col{
	margin: 20px 0;
	flex-basis: 50%;
	min-width: 400px;
	height: 100%;
	position: relative;	
}
.text-box{
	max-width: 400px;
	margin-top: 100px;
}
.text-box h5{
	color:#000000;
	padding: 10px;
	background-color: #FFFFFF;
}
.text-box h1{
	font-size: 60px;
	font-weight: 500;
	letter-spacing: 0px;
	line-height: 55px;
	color:#FFFFFF;
	padding: 10px;
	background-color: #000000;
}
.gallery-box{
    max-width: 362px;
    position: relative;
    margin-top: 100px;
}
.gallery-box img{
	width: 100%;
}
.back-image{
	position: absolute;
	z-index: -1;
	
}
@media (min-aspect-ratio: 16/9){
	.back-image{
		width: 100%;
		height: auto;
	}
}
@media (max-aspect-ratio: 16/9){
	.back-image{
		width: auto;
		height: 100%;
	}
}

/*-----cursor-------*/

body {
	cursor: grab;
	
}
#cursor{
	/*-----
	cursor: url("../images/Arrow.png"), auto;
	----*/
	height: 50px;
	width: 50px;
	background: #e7c82f;	
	border-radius: 50%;
	position: absolute;
	display: none;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
	
}
div:hover ~ #cursor{
	transform: scale(0.5);
}
