/* fixed styles */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box !important;
}

a{
	text-decoration: none !important;
	color: inherit;
}

p{
	margin: 0;
	padding-top: 10px;
	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;
}

.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;
}

.menu2 ul li a{
	font-size: 25px;
}

.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_1.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: #eee;
	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 5px 20px #000;
	animation: movefromleft 2s ease-out alternate;
}

.inside h3{
	text-transform: uppercase;
	font-size: 2em;
	color: #fff;
	animation: movefromright 2s ease-out alternate;
}

.btn:link,
.btn:visited{
	display: inline-block;
	background: #fff;
	color: darkblue;
	padding: 10px 30px;
	margin: 20px 0;
	font-family: 'Lato';
	font-weight: bold;
	text-transform: uppercase;
	transition: all .2s;
	position: relative;
	outline: none;
}

.btn:hover{
	transform: translateY(3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn:active{
	transform: translateY(-1px);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.btn-white{
	background-color: #fff;
	color: darkblue;
}

.btn::after{
	content: "";
	display: inline-block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .4s;
}

.btn-white::after{
	background-color: #fff;
}

.btn:hover::after{
	transform: scaleX(1.4) scaleY(1.6);
	opacity: 0;
}

.btn-animated{
	animation: movefrombottom 1s ease-out 1.3s alternate;
	animation-fill-mode: backwards;
}

/* 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;
	}
}

/* About style */
.about{
	width: 100%;
	height: inherit;
	text-align: center;
	padding: 80px 0;
}

.about h1{
	font-size: 2em;
	text-transform: uppercase;
	padding-bottom: 15px;
}

.about h3{
	font-size: 1.1em;
	color: darkblue;
	text-transform: uppercase;
	padding-bottom: 10px;
	font-weight: 700;
}

.about p{
	width: 70%;
	margin: auto;
	font-size: 16px;
	line-height: 27px;
	color: #000;
}

/* Services style */
.services{
	width: 100%;
	height: inherit;
	background: ;
	padding: 15px 30px 50px;
	margin-bottom: 70px;
	display: block;
	align-items: center;
}

.services h3{
	font-size: 23px;
	text-transform: uppercase;
	padding: 50px 0 70px;
	text-align: center;
	color: darkblue;
}

.services section{
	width: 30%;
	height: 430px;
	margin: 0 20px 0;
	position: relative;
	overflow: hidden;
}

.services section .info{
	width: 100%;
	height: 0px;
	background: ;
	position: absolute;
	bottom: 0;
	transition: height linear 500ms;
}

section:hover .info{
	height: 40%;
}

section .info h2{
	font-size: 1.2em;
	font-weight: 700;
	padding: 0px 20px 5px;
	color: #fff;
}

section .info p{
	font-size: 16px;
	padding: 5px 20px 5px;
	color: #fff;
}

.read-more:link,
.read-more:visited{
	display: inline-block;
	background: #fff;
	color: darkblue;
	padding: 10px 20px;
	margin: 10px 20px 0px;
	border-radius: 30px;
	font-family: 'Lato';
	outline: none;
	text-transform: uppercase;
	font-size: 14px;
}

.sec1{
	background: url(../img/pic1.jpg) no-repeat;
	background-size: cover;
}

.sec1:hover{
	background: linear-gradient( to top, rgba(23,17,30,0.6), rgba(0,0,0,0.6)), url(../img/pic1.jpg) no-repeat;
	background-size: cover;
}

.sec2{
	background: url(../img/pic2.jpg) no-repeat;
	background-size: cover;
}

.sec2:hover{
	background: linear-gradient( to top, rgba(23,17,30,0.6), rgba(0,0,0,0.6)), url(../img/pic2.jpg) no-repeat;
	background-size: cover;
}

.sec3{
	background: url(../img/pic3.jpg) no-repeat;
	background-size: cover;
}

.sec3:hover{
	background: linear-gradient( to top, rgba(23,17,30,0.6), rgba(0,0,0,0.6)), url(../img/pic3.jpg) no-repeat;
	background-size: cover;
}



/* 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);
}


























