body,html {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	color: #464646;
}

nav ul {
	margin: 0px;
	background-color: #fff;
	text-align: center;
	border-bottom: 1px solid #ccc;
	position: fixed;
	box-sizing: border-box;
	width: 100%;
	z-index: 5;
	overflow: hidden;
	margin-top: -60px;
}

nav li {
	margin: 20px;
	display: inline-block;
	font-family: monserat;
	cursor: pointer;
}

nav li:hover {
	opacity: 0.7;
	transition: 0.3s;
}

header {
	padding: 15px;
	margin-top: -140px;
	background-color: #fff;
	position: fixed;
	width: 100%;
	box-sizing: border-box;
	z-index: 5;
}

.logo {
	text-align: center;
	font-family: rhes;
	font-size: 50px;
	margin: -10px 0px 0px 0px;
}
.backdrop {
	width: 100%;
	margin-bottom: -5px;
}



.img {
	transition: transform 0.3s, filter 0.3s ease-in-out;
}

.column:hover .img {
	transform: scale(1.4);
}

.column:hover .box {
	animation: spin 2s;
	animation-iteration-count: infinite;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.column {
	float: left;
	width: 50%;
}

.content {
	margin-top: 140px;
}

.inside {
	position: absolute;
	width: 50%;
	top: 140px;
}

.inside-plus {
	position: absolute;
	width: 50%;
	top: 40%;
	text-align: center;
	color: #fff;
	font-family: monserat;
}

.menu-bar {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: left;
	background-color: #fff;
	padding: 10px;
	margin-top: -60px;
	position: fixed;
	width: 100%;
	z-index: 5;
	box-sizing: border-box;
	display: none;
}

#trigger {
	cursor: pointer;
	margin-left: 15px;
	margin-top: 10px;
}

.slide {
	height: auto;
}

#compass {
	font-size: 18px;
	padding: 10px;
	color: #464646;
	float: right;
	margin: 0px;
}

.line {
	width: 50%;
}

.inside-plus > i {
	position: relative;
	z-index: 2;
	font-style: normal;
}

.inside-sec {
	width: 100%;
	z-index: 3;
	position: absolute;
	top: 0px;
	color: #fff;
}

.text-name {
	margin-bottom: 25px;
}

.text {
	width: 100%;
	z-index: 3;
	position: absolute;
	top: 30%;
	text-align: center;
	font-family: monserat;
	color: #fff;
}

.box {
	border: 2px solid #fff;
	width: 30px;
	margin: 0 auto;
	height: 30px;
	transform: rotate(45deg);
}

.last {
	position: relative;
	overflow: hidden;
}

.text p {
	margin-top: 30px;
}

.adjust {
	color: #464646;
}

.mar {
	top: 60%;
}

footer {
	margin-top: 100px;
	background-color: #593b43;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	font-family: monserat;
}

.footer-content {
	flex: 1 1 300px;
	flex: 0 1 300px;
	margin: 5px;
	padding: 40px;
	text-align: center;
	color: #fff;
	line-height: 28px;
}

.footer-name {
	text-align: center;
	margin-bottom: 10px;
	font-weight: bold;
	letter-spacing: 1.5px;
}

.bottom {
	padding: 10px;
	color: #fff;
	background-color: #3d292e;
	width: 100%;
	text-align: center;
}

@keyframes spin {
	0% { transform: rotate(40deg); }
  10% { transform: rotate(50deg); }
  20% { transform: rotate(60deg); }
  30% { transform: rotate(7deg); }
  40% { transform: rotate(80deg); }
  50% { transform: rotate(90deg); }
  60% { transform: rotate(100deg); }
  70% { transform: rotate(40deg); }
  80% { transform: rotate(30deg); }
  90% { transform: rotate(20deg); }
  100% { transform: rotate(10deg); }
}

@media only screen and (min-width: 1px) and (max-width: 800px) {

	nav ul {
		text-align: left;
		height: 0px;
	}

	nav li {
		width: 50%;
		margin: 10px;
		padding: 15px;
		margin-left: -20px;
	}

	.menu-bar {
		display: block;
	}

	.inside-plus {
		font-size: 12px;
	}

	.column {
		width: 100%;
	}

	.inside {
		width: 100%;
	}
	.inside-col {
		width: 50%;
	}

	.text {
		font-size: 14px;
	}

	.box {
		width: 15px;
		height: 15px;
	}

	footer {
		font-size: 14px;
	}
}

@font-face {
	src: url("../usable-fonts/monserat.ttf");
	font-family: monserat;
}

@font-face {
	src: url("../usable-fonts/rhes.otf");
	font-family: rhes;
}