/* fixed styles */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none !important;
	color: inherit;
}

p{
	margin: 0;
	font-family: 'Lato';
}

h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-family: 'Lato';
}

/* editable styles */
/* Modal box */
.modal{
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 1);
	padding: 0;
	position: fixed;
	top: 0;
	display: none;
	z-index: 1;
	animation: modalOpen 600ms linear alternate;
}

@keyframes modalOpen{
	from{
		height: 0px;
	}
	to{
		height: 100vh;
	}
}

.head{
	width: 100%;
	height: fit-content;
	background: ;
	padding: 30px 0;
}

.head .name{
	float: left;
}

.head img{
	width: auto;
	height: 70px;
}

.head .name h1{
	color: #fff;
	font-size: 2.3em;
	font-family: 'Lato';
}

.head .closeBtn{
	float: right;
	cursor: pointer;
	border: none;
	background: none;
	outline: none;
	color: #fff;
	font-size: 40px;
}

.menu2{
	display: block;
	text-align: left;
	padding: 0;
	flex: none;
}

.menu2 ul{
	display: block;
	list-style-type: none;
	margin: 30px 0;
	padding: 0;
}

.menu2 ul li{
	display: block;
	margin-top: 20px;
}

.hamburgar{
	display: none;
	font-size: 40px;
	float: right;
	color: #fff;
	cursor: pointer;
	position: relative;
	bottom: 10px;
	right: 5px;
}

.hamburgar:hover{
	color: darkblue;
}
/* End of Modal */

/* Header style */
.header{
	width: 100%;
	height: 90vh;
	background: url(../img/shipping_3.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	animation: push 1300ms ease-in-out alternate;
	backface-visibility: hidden;
}

.container{
	max-width: 1400px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}

.navbar{
	width: auto;
	height: 70px;
	background: ;
	display: flex;
	align-items: center;
	padding: 20px;
}

.logo img{
	width: auto;
	height: 50px;
}

nav{
	flex: 1;
	text-align: right;
}

nav ul{
	display: inline-block;
	list-style-type: none;
}

nav ul li{
	display: inline-block;
	margin-right: 20px;
	margin-top: 15px;
}

nav ul li a{
	color: darkblue;
	font-family: 'Lato';
	font-size: 18px;
}

nav ul li a:hover{
	color: darkblue;
}

.inside{
	width: auto;
	padding: 20px;
	position: absolute;
	bottom: 10%;
	backface-visibility: hidden;
}

.inside h1{
	text-transform: uppercase;
	font-size: 3em;
	color: #fff;
	font-weight: bolder;
	text-shadow: 2px 3px 10px #000;
	animation: movefromleft 2s ease-out alternate;
}

.inside .black{
	width: fit-content;
	height: inherit;
	display: block;
	background: #fff;
	padding: 5px 20px;
	text-transform: uppercase;
	font-size: 2em;
	color: darkblue;
	animation: movefromright 2s ease-out alternate;
}

/* Keyframes */
@keyframes movefromleft {
	0%{
		opacity: 0;
		transform: translateX(-100px);
	}

	80%{
		transform: translateX(10px);
	}

	100%{
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes movefromright {
	0%{
		opacity: 0;
		transform: translateX(100px);
	}

	80%{
		transform: translateX(-10px);
	}

	100%{
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes movefrombottom {
	0%{
		opacity: 0;
		transform: translateY(40px);
	}

	100%{
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes push {
	0%{
		opacity: 0;
		height: 0px;
	}

	100%{
		opacity: 1;
		height: 90vh;
	}
}

/* Contact style */
.contact{
	width: 100%;
	height: 600px;
	padding: 120px 0;
	text-align: center;
}

.contact h1{
	font-size: 3em;
	font-weight: bolder;
	color: darkblue;
	letter-spacing: -1px;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.contact h4{
	font-size: 2em;
	font-weight: 400;
	text-transform: capitalize;
	padding-top: 25px;
}

.contact p{
	padding-top: 10px;
	font-size: 19px;
	color: #000;
}

/* Footer style */
footer{
	width: 100%;
	height: fit-content;
	padding: 100px 0;
	background: darkblue;
	box-sizing: border-box;
}

.foot{
	width: 75%;
	height: fit-content;
	margin: auto;
	box-sizing: border-box;
}

.foot1, .foot2{
	display: inline-block;

}

.foot1{
	width: 70%;
	height: 100%;
	background: ;
}

.foot1 h4{
	font-size: 20px;
	font-weight: bolder;
	color: #fff;
}

.foot1 p{
	color: #fff;
}

.foot2{
	width: fit-content;
	height: 100%;
}

.foot2 p{
	text-transform: uppercase;
	color: #fff;
	font-size: 11px;
	padding-top: 7px;
}

.foot2 h3{
	font-weight: bolder;
	font-size: 15px;
	color: #fff;
}

footer .to-top{
	width: 45px;
	height: 45px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	color: #fff !important;
	background: darkblue;
	border-radius: 100%;
	display: flex;
	flex-basis: 50%;
	justify-content: space-around;
	align-items: center;
	transform: rotate(-90deg);
	box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
}


























