@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container{
	max-width: 1170px;
	margin: auto;
	padding: 0 15px;
}

body{
	overflow-x: hidden;
	font-family: 'poppins', sans-serif;
}

/* header */
.header{
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
	z-index: 10;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo img{
	vertical-align: middle;
}
.header .menu .head{
	display: none;
}
.header .menu ul{
	list-style: none;
}
.header .menu > ul > li{
	display: inline-block;
}
.header .menu > ul > li:not(:last-child){
	margin-right: 40px;
}
.header .menu .dropdown{
	position: relative;
}
.header .menu a{
	text-decoration: none;
	text-transform: capitalize;
	font-size: 16px;
	color: hsl(0, 0%, 100%);
	line-height: 1.5;
	display: block;
}
.header .menu > ul > li > a{
	padding: 24px 0;
}
.header .menu > ul > .dropdown > a{
	padding-right: 15px;
}
.header .menu i{
	font-size: 10px;
	pointer-events: none;
	user-select: none;
	position: absolute;
	color: hsl(0, 0%, 100%);
	top: calc(50% - 5px);
}
.header .menu > ul > li > i{
	right: 0;
}
.header .menu .sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	width: 230px;
	padding: 15px 0;
	background-color: hsl(229, 54%, 51%);
	box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
	z-index: 1;
	transform-origin: top;
	transform: scaleY(0);
	visibility: hidden;
	opacity: 0;
}
.header .menu li:hover > .sub-menu{
	opacity: 1;
	transform: none;
	visibility: visible;
	transition: all 0.5s ease;
}
.header .menu .sub-menu a{
	padding: 6px 24px;
}
.header .menu .sub-menu .dropdown a{
	padding-right: 34px;
}
.header .menu .sub-menu span{
	background-image: linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.5s ease;
}
.header .menu .sub-menu li:hover > a > span{
	background-size: 100% 1px;
}
.header-right{
	display: flex;
}
.header-right > *{
	margin-left: 25px;
}
.header-right .login-btn{
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: hsl(0, 0%, 100%);
	font-size: 16px;
}
.header-right .open-menu-btn{
	display: none;
}
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 16px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}

@media(max-width:991px){
	.header{
		padding: 12px 0;
		position: fixed;
		background-color: hsl(198, 12%, 51%);
	}
	.header .menu{
		position: fixed;
		right: 0;
		top: 0;
		width: 320px;
		height: 100%;
		background-color: hsl(229, 54%, 51%);
		padding: 15px 30px 30px;
		overflow-y: auto;
		z-index: 1;
		transform: translateX(100%);
	}
	.header .menu.open{
		transform: none;
	}
	.header .menu .head{
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 25px;
	}
	.header .menu .close-menu-btn{
		height: 35px;
		width: 35px;
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background-color: transparent;
		cursor: pointer;
		border: none;
	}
	.header .menu .close-menu-btn::before,
	.header .menu .close-menu-btn::after{
		content: '';
		position: absolute;
		width: 80%;
		height: 2px;
		background-color: hsl(0, 0%, 100%);
	}
	.header .menu .close-menu-btn::before{
		transform: rotate(45deg);
	}
	.header .menu .close-menu-btn::after{
		transform: rotate(-45deg);
	}
	.header .menu > ul > li{
		display: block;
	}
	.header .menu > ul > li:not(:last-child){
		margin-right: 0;
	}
	.header .menu li{
		border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
	}
	.header .menu li:first-child{
		border-top: 1px solid hsla(0, 0%, 100%, 0.25);
	}
	.header .menu > ul > li > a{
		padding: 12px 0;
	}
	.header .menu > ul > .dropdown > a{
		padding-right: 34px;
	}
	.header .menu i{
		height: 34px;
		width: 34px;
		border: 1px solid hsla(0, 0%, 100%, 0.25);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		pointer-events: auto;
		cursor: pointer;
		top: 7px;
	}
	.header .menu .dropdown.active > i{
		background-color: hsla(0, 0%, 100%, 0.25);
		transform: rotate(180deg);
	}
	.header .menu .sub-menu{
		position: static;
		opacity: 1;
		transform: none;
		visibility: visible;
		padding: 0;
		transition: none;
		box-shadow: none;
		width: 100%;
		display: none;
	}
	.header .menu .dropdown.active > .sub-menu{
		display: block;
	}
	.header .menu .sub-menu li:last-child{
		border: none;
	}
	.header .menu .sub-menu a{
		padding: 12px 0 12px 15px;
	}
	.header .menu .sub-menu span{
		background-image: none;
	}
	.header .menu .sub-menu i{
		transform: none;
		right: 0;
	}
	.header-right .open-menu-btn{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 40px;
		width: 44px;
		cursor: pointer;
		position: relative;
		background-color: transparent;
		border: none;
	}
	.header-right .open-menu-btn .line{
		height: 2px;
		width: 30px;
		background-color: hsl(0, 0%, 100%);
		position: absolute;
	}
	.header-right .open-menu-btn .line-1{
		transform: translateY(-8px);
	}
	.header-right .open-menu-btn .line-3{
		transform: translateY(8px);
	}
	.text-box h1{
		font-size: 30px;
	}
	.row{
		flex-direction: column;
	}
}

/* section1 */
.section1{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('../img/banner-image.png');
	background-size: cover;
	background-position: center;
	position: relative;
}

/* services */
.services{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

h3{
	font-size: 30px;
	font-weight: 600;
}

.services p{
	color: #f44336;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.service-col{
	flex-basis: 31%;
	border-radius: 20px;
	margin-bottom: 5%;
	position: relative;
	overflow: hidden;
}
.service-col img{
	width: 100%;
	display: block;
}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 1s;
}
.layer:hover{
	background: rgba(229, 0, 0, 0.4);
}
.layer h4{
	width: 100%;
	font-weight: 500;
	font-size: 24px;
	color: #fff;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: 1s;
}
.layer:hover h4{
	opacity: 1;
	bottom: 49%;
}

/* testimonial */

.testimonial{
	width: 100%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
	background-image: linear-gradient(rgba(4, 9, 30, 0.9),rgba(4, 9, 30, 0.9)),url('../img/banner-image.png');
}
.testimonial .row{
	width: 80%;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
.testimonial h4{
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	padding-bottom: 50px;
}
.testimonial-col{
	flex-basis: 32%;
	border-radius: 20px;
	margin-bottom: 5%;
	text-align: left;
	background: #fff3f3;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.testimonial-col p{
	padding: 0;
}
.testimonial-col h5{
	margin-top: 15px;
}
.testimonial-col .fa{
	color: #f44336;
}
.about-sbm{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
}
.about-col{
	flex-basis: 45%;
	padding: 30px 2px;
}
.about-col img{
	width: 100%;
}
.about-col h2{
	padding-top: 0;
}
.about-col p{
	padding: 15px 0 25px;
	text-align: justify;
}
.red-btn{
	border: 1px solid #f44336;
	background: transparent;
	color: #f44336;
}
.red-btn:hover{
	color: #fff;
}
.about-col h3{
	padding-top: 0;
	font-size: 20px;
}

/* location */
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe{
	width: 100%;
}

/* cost calculator */
.cost{
	width: 80%;
	margin: auto;
	text-align: center;
}
.cost h3{
	font-size: 30px;
	font-weight: 600;
}
.cost-col{
	flex-basis: 45%;
	margin-bottom: 30px;
}
.cost-col img{
	width: 100%;
	border-radius: 20px;
}
.cost-col input{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
}


/* About Us Page */


/* section2 */
.section2{
	min-height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('../img/about-us-banner.webp');
	background-size: cover;
	background-position: center;
	position: relative;
}
.fundamentals{
	width: 80%;
	margin: auto;
	text-align: center;
}
.fundamentals-col{
	flex-basis: 31%;
	background: #fff3f3;
	border-radius: 20px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
.fundamentals-col h3{
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}
.fundamentals-col:hover{
	box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.fundamentals-col p{
	text-align: justify;
	font-size: 14px;
}
.about-services{
	width: 80%;
	margin: auto;
	text-align: center;
}
.about-services-surface-col{
	flex-basis: 31%;
	background-image : linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('../img/surface-cargo.png');
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
.about-services-surface-col h3{
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}
.about-services-surface-col p{
	color: #fff;
	text-align: justify;
	font-size: 14px;
	line-height: 2;
	padding-bottom: 15px;
}
.about-services-train-col{
	flex-basis: 31%;
	background-image : linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('../img/train-cargo-300x300.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
.about-services-train-col h3{
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}
.about-services-train-col p{
	color: #fff;
	text-align: justify;
	font-size: 14px;
	line-height: 2;
	padding-bottom: 15px;
}
.about-services-air-col{
	flex-basis: 31%;
	background-image : linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url('../img/air-cargo-300x300.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
.about-services-air-col h3{
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}
.about-services-air-col p{
	color: #fff;
	text-align: justify;
	font-size: 14px;
	line-height: 2;
	padding-bottom: 15px;
}
.about-content1{
	width: 80%;
	margin: auto;
	text-align: justify;
}
.about-content1 h2{
	font-size: 30px;
	font-weight: 600;
	color: #777;
	padding-bottom: 10px;
}
.about-content1 h3{
	font-size: 24px;
	font-weight: 500;
}
.about-content1 p{
	text-align: justify;
	font-size: 14px;
	line-height: 2;
	padding-bottom: 15px;
}
.about-content2{
	width: 100%;
	margin: auto;
	padding-top: 100px;
	background-image: linear-gradient(rgba(4, 9, 30, 0.9),rgba(4, 9, 30, 0.9)),url('../img/team.webp');
}
.about-content2 .row1{
	width: 80%;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
.about-content2 h3{
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	padding-bottom: 20px;
}
.about-content2 h4{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	padding-bottom: 20px;
}
.about-content2 p{
	color: #fff;
	text-align: justify;
	font-size: 14px;
	line-height: 2;
	padding-bottom: 15px;
}


/* Contact Us Page */

.office-address{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
.office-address h2{
	font-size: 30px;
}
.office-address p{
	font-size: 14px;
}
.office-address-col{
	flex-basis: 45%;
	margin: auto;
}
.office-address-col h3{
	font-size: 24px;
	color: #f44336;
	padding-bottom: 10px;
}
.office-address-col p{
	font-size: 16px;
}

/* Footer Section */

.footer{
	width: 100%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
	background-image: linear-gradient(rgba(4, 9, 30, 0.9),rgba(4, 9, 30, 0.9)),url('../img/surface-cargo-1024x574.png');
}
.footer .row{
	width: 80%;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
.footer-col{
	flex-basis: 23%;
	padding-top: 50px;
	padding-bottom: 50px;
}
.footer-col h4{
	font-size: 20px;
	text-align: left;
	color: #fff;
	margin-top: 25px;
	margin-bottom: 20px;
}
.footer-col ul{
	list-style: none;
	text-align: left;
}
.footer-col >ul > li > a{
	color: #fff;
	text-decoration: none;
	line-height: 2;
	font-size: 14px;
}
.footer-col i{
	border: 1px solid #fff;
	border-radius: 50%;
	padding: 10px 10px;
}
.footer-col .fa{
	color: #fff;
	align-content: space-between;
	padding: 10px 10px;
}
.footer-col-1{
	flex-basis: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}
.footer-col-1 p{
	color: #fff;
	line-height: 2;
}