*	{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	}
html	{
		scroll-behavior: smooth;
		-webkit-tap-highlight-color: transparent;
		display: flex;
		justify-content:center;
		align-items:center;
}
body	{
		width: 80%;
		margin: 30px 5%;
		overflow-x: hidden;
}
.header	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 150px;
}
.imglogo	{
			display: flex;
			flex-direction: row;
			justify-content:center;
			align-items:center;
}
.fa-bars	{
			display:none;		
}	 
.imglogo h3	{
			font-size: 1.5rem;
			padding: 20px;
			cursor: pointer;
}
.imglogo h3:active	{
			opacity: 0.5;
			transform:scale(1.1);
			padding: 20px;			
}
.header img	{
			width: 80px;
			height: 80px;
			border-radius: 50%;
}
.header img:hover	{
					opacity: 0.5;
					transition: 1s ease;
}
.header button{
				width: 130px;
				height: 50px;
				font-size: 1.1rem;	
				border-radius: 20px;
				background-color: blue;	
				color: white;
				border: none;
}
.header button:hover	{
						transform:scale(1.1);
}
.nav ul	{
		display: flex;
		flex-direction: row;
}
.nav li	{
		list-style-type: none;
		font-size: 1.5rem;
		margin: 10px;
		font-weight: normal;
		text-align:center;
		cursor: pointer;
}

.nav li.service {
	color: black;
}

ul.underservice	{
					display: none;
}
.nav li.service:hover > ul.underservice	{
					position: absolute;
					display: flex;
					flex-direction:column;
					background: lightgray;
					margin-left: -90px;
					text-align:left;
					z-index:1;
					animation: heading 3s ease;
}
@keyframes heading {
	0%	{
		opacity: 0;
		top: 0;
		}
	100%	{
		opacity: 1;
		top: 120px;
		}
}
.nav li.service:hover > .service i	{
									transform: rotate(180deg);
}
.underservice li	{
					font-size: 1.1rem;
					text-align:center;
					border-bottom: 2px solid black;
					margin: 20px;
					padding: 10px;
}
.underservice li:hover	{
					transform: scale(1.2);
					font-weight: bold;
					transition: 1s;
}
.nav2 {
		display: none;
}
.center	{
}
.center img	{
			width: 100%;
			height: 700px;
			margin: 50px auto;
			opacity: 0.8;
			animation: fronts 4s linear;
}
@keyframes fronts {
	0%	{
		opacity: 0;
		}
	50%	{
		opacity: 0.5;
		}
	100%	{
		opacity: 1;
		}
}
.center img:hover	{
					opacity: 0.5;
}
.undercenter	{
				position: relative;
}
.withimg	{
				display: flex;
				flex-direction: column;
				position: absolute;
				top: 20%;
				font-weight: bold;
				padding: 50px;
}
.tracking	{
				display: flex;
				position: absolute;
				width: 100%;
				top: 60%;
				left: 30%;
				right: 0%;
				font-weight: bold;
				color: black;
				padding: 50px;
}
.tracking input {
				width: 450px;
				height: 50px;
				outline: none;
				border-top-left-radius: 10px;
				border-bottom-left-radius: 10px;
				padding: 5px;
				border: none;
}
.tracking button {
					width: 70px;
					font-size: 1.2rem;
					height: 50px;
					color: white;
					background:blue;
					border-top-right-radius: 10px;
					border-bottom-right-radius: 10px;
					border: 1px white;
}
.withimg h1	{
			font-size: 4.9rem;
			animation: fronts 6s linear 1s;
		
}
.withimg h3, .withimg p	{
						color: black;
						font-size: 2rem;
						animation: frontss 4s ease;
}
@keyframes frontss {
	0%	{
		opacity: 0;
		letter-spacing: 50px;
		}
	100%	{
		opacity: 1;
		}
}
a 	{
			text-decoration: none;
			color: black;
}
.about	{
		margin-top: 90px;
}
.services	{
			margin-top: 220px;
}
.about h2, .services h2	{
			font-size: 2.2rem;
			margin: 20px;
			text-transform: uppercase;
}
footer h2	{
			font-size: 2.2rem;
			margin: 40px;
			margin-top: 190px;
			text-transform: uppercase;
}
.about p	{
			font-size: 1.5rem;
			text-align:left;
			line-height: 150%;	
			text-wrap: no-wrap;
}
.about div, .theline	{
			width: 10%;
			height: 7px;
			background: black;
			border-radius: 20px;
			margin: -5px 20px 20px 20px;
}

.img-slider	{
			display: flex;
			flex-direction:row;
			margin-top: 30px;
			width: 100%;
			overflow: hidden;
			transition: 2s;
}
.textimg	{
			position: relative;
			display: flex;
			flex-direction: column;	
			width: 50%;
			min-width: 50%;
			float: left;
			box-sizing:border-box;
			margin-left: 0;
			margin-bottom: 20px;
			padding-left: 10px;
			transition: 4s;
}
.textimg div	{
				background: blue;
				color: white;
				height: 30px;
				text-align: center;
				font-weight: bold;
				font-size: 1rem;
				border-bottom-left-radius: 20px;
				border-bottom-right-radius: 20px;
				padding-top: 5px;
				
}
.textimg img	{
				width: 100%;
				height: 450px;
				margin: auto 25px auto auto;
				border-top-left-radius: 20px;
				border-top-right-radius: 20px;
				opacity: 0.9;
}
.textimg img:hover	{
					opacity: 0.5;
}
.textimg h2	{
			position: absolute;
			top: 15%;
			left:0;
			right: 0;
			font-size: 2.41rem;
			font-weight: bold;
			text-align: center;
}
.textimg p	{
			position: absolute;
			top: 20%;
			margin-top: 70px;
			font-size: 1.5rem;
			font-weight: bold;
			text-align: center;
}
.textimg button	{
				position: absolute;
				top: 10px;
				left: 20px;
				background: blue;
				color: red;
				padding: 10px;
				border-radius: 10px;
				width: 160px;
				font-size: 1.2rem;
				outline: none;
				border: none;
}
.textimg button a {
					color: white;
}
.textimg button:hover	{
						transform:scale(0.9);
}
.beforeslider 	{
				position: relative;
}
.arrows		{
			position: absolute;
			top: 40%;
			right: 0;
			left: 0;
			display: flex;
			justify-content: space-between;
			align-items: space-between;
			font-size: 50px;
			font-weight: bold;
			cursor: pointer;
			z-index:1;
			color: blue;
}
.arrow-left 	{
							position: relative;
							left: 10px;
							padding: auto;
							margin: auto 10px;
							border: 2px dashed black;
							border-radius: 20px;
}
.arrow-right	{
							position: relative;
							padding: auto;
							margin: auto 10px;
							border: 2px dashed black;
							border-radius: 20px;
}
.arrow-left:hover, .arrow-right:hover	{
										background:black;
										border: 2px solid white;
										border-radius: 20px;
										transition: 1s;
}

.contactuspage 	{
				background: linear-gradient(blue,lightblue);
				width: 100%;
				height: 400px;
}
 .inputandbutton 	{
					display:flex;
					flex-direction:row;
					justify-content:center;
					align-items:center;
					margin-top:60px;
}

.inputandbutton input 	{
						width: 400px;
						height: 50px;
						padding: 20px;
						outline:none;
}
.inputandbutton button 	{
						width: 90px;
						height: 50px;
						background: blue;
						color: white;
						font-size: 1.2rem;
						border: none;
						transition: 1s;
}
.inputandbutton button:hover 	{
						background: white;
						color: black;
}
.atfooter	{
			display: flex;
			justify-content: space-around;
			align-items:space-around;
			width: 100%;
			margin: 20px;
			animation: opace 6s ease-in 0s reverse;
}
@keyframes opace {
             0%{
               display:none;
               opacity: 1;
             }
              100% {
                display: block;
                opacity: 0;
              }
}
.address	{
			flex: 2;
			animation: opace 3s ease-in 1s;
}
.contact	{
			flex: -1;
			margin-left: -10%;
			animation: opace 3s ease-in 2s;
}
.others	{
			flex: 1;
			margin-left: 15%;
			animation: opace 3s ease-in 3s;
}
.others a {
			color: white;
			text-decoration: underline;
}
			
.atfooter h3 	{
				color: white;
				font-size: 1.5rem;
				font-weight:bold;
				margin-top: 10px;
}

.address p, .contact p, .others p	{
									font-size: 1.2rem;
									margin-top: 20px;
									color: white;
}
.address p b 	{
				font-size: 1.2rem;
}
.contact ul 	{
				margin-top: 10px;
}
.contact ul li {
				list-style-type: none;
				font-size: 1.2rem;
				width: 50%;
				margin-top: 20px;
				color: white;
}
.contact ul li a {
					text-decoration:underline;
					color: white;
}
.theservice		{
				display: flex;
				flex-direction: row;
				justify-content: center;
				align-items:center;
				width: 100%;
				flex-wrap: wrap;
}
.service h1	{
			font-size: 3.5rem;
			margin-top: 40px;
}
.service h3	{
			font-size: 2rem;
}
.eachservice	{
				display: flex;
				flex-direction: column;
				width: 30%;
				height: 600px;
				margin: 20px;
				margin-top: 50px;
				text-align:center
}
.eachservice img {
				width: 100%;
				height: 300px;
				
}
.eachservice div {
				font-size: 40px;
				padding: 10px;
				color:blue;
				font-weight: bold;
}
.eachservice p {
				font-size: 1.5rem;
				color: #606060;
				margin-top: 15px;
				text-align:center;
}
.servicefront {
				text-align: center;
				color: white;
}
.serviceimg		{
				
}
button a 	{
			color: white;
}
button a:hover 	{
			color: black;
}
.form	{
		display: flex;
		flex-direction: column;
		justify-content:center;
		align-items:center;
		padding: 40px;
}
.form input, .form select	{
			width: 500px;
			height: 50px;
			outline: none;
			border:none;
			margin: 5px;
			padding: 5px;
}
.form textarea {
			width: 500px;
			height: 70px;
			outline: none;
			border:none;
			margin: 5px;
			padding: 5px;
			resize:none; 
}

.form select option {			
					font-size: 1rem;
}
.form button {
			width: 200px;
			color: white;
			background: blue;
			outline:none;
			border:none;
			padding: 20px;
			margin: 20px;
			font-size: 1.2rem;
}
.form p	{
			font-size: 3rem;
}
.form button:hover {
					transform: scale(1.1);
}
.strength 	{
			display: flex;
			flex-wrap:wrap;
			justify-content:center;
			align-items:center;
			margin-top: 40px;
}
.strength p	{
			width: 40%;
			height: 70px;
			text-align:center;
			background: linear-gradient(white,lightblue);
			font-size: 1.4rem;
			margin: 10px;
			padding: 10px;
			border-radius: 10px;
}
.strengthh {
			margin-top:15%;
			margin-bottom: 10px;
			font-size: 2.5rem;
			text-transform: uppercase;
}





@media only screen and (max-width:1024px)
 {
	.header button{
				width: 100px;
				height: 50px;
				font-size: 1rem;				
}
.nav ul	{
		margin-left: -15px;
}
.nav li	{
		list-style-type: none;
		font-size: 1.3rem;
		font-weight: bold;
		margin: 8px;
		font-weight: normal;
		text-align:center;
		cursor: pointer;
}
.contactuspage {
				background: linear-gradient(blue,lightblue);
				height: 100%;
}
.atfooter	{
			display: flex;
			flex-direction: column;
			height: 100%;
}
.address	{
			display: flex;
			height: 100%;
			gap: 3px;
			padding: 8px;
			align-items:center;
}
.contact	{
			display: flex;
			height: 100%;
			margin-left: 10px;
			margin-top: 30px;		
}
.contact ul {
			margin-left: 20px;
			margin-top: -10px;
}
.others 	{
			display: flex;
			height: 100%;
			margin-left: 0;
}
.uothers	{
			margin-left: 30px;
}
.tracking	{
				display: flex;
				position: absolute;
				width: 100%;
				top: 60%;
				left: 15%;
				right: 0%;
				font-weight: bold;
				color: black;
				padding: 50px;
}

 }

/*
 @media only screen and (max-width:728px);
*/


@media only screen and (max-width:768px)
 {
   body	{
		width: 100%;
		margin: 30px 5%;
		overflow-x: hidden;
}
.header	{
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 150px;
}
.fa-bars	{
			position: fixed;
			right: 10px;
			display: block;
			font-size: 1.7rem;
			margin: auto 10px;
			cursor: pointer;
			color: black;
}
.nav2 a		{
			color: white;
}
.nav2 {
		display: none;
}
.nav2 li	{
		list-style-type: none;
		font-size: 2.3rem;
		margin: 40px;
		font-weight: normal;
		text-align:center;
		cursor: pointer;
}
.navtwo {
		display: flex;
		justify-content:center;
		align-items:center;
		position: fixed;
		top: -20%;
		left:0;
		height: 100vh;
		width: 100%;
		background: black;
		color: white;
		z-index: 1;
		transition:3s;
}
.underservice2	{
				display:none;
}
.service2:hover .underservice2 {
								display: flex;
								flex-direction: column;
								transition: .9s;
}
.underservice2 li	{
					margin: 4px;
					text-align: center;
					padding: 10px;
					font-size: 1.4rem;
					color: lightgray;
					transition: .9s;
}
.nav ul	{
		display: none;
}
.header img	{
			width: 80px;
			height: 80px;
			border-radius: 50%;
			margin-left: 70%;
}
.header button{
				display: none;
}

.header img	{
			width: 80px;
			height: 80px;
			margin-left:0;
			border-radius: 50%;
}
.img-slider	{
			display: flex;
			flex-direction:row;
			margin-top: 30px;
			width: 100%;
			overflow: hidden;
}
.textimg div	{
				height: 30px;
				text-align: center;
				font-weight: bold;
				font-size: 1rem;
				border-bottom-left-radius: 20px;
				border-bottom-right-radius: 20px;
				padding-top: 5px;		
}
.textimg	{
			display: flex;
			flex-direction: column;	
			width: 100%;
			min-width: 100%;
			float: left;
			box-sizing:border-box;
			margin-left: 0;
			position: relative;
			margin-bottom:40px;
}
.about div	{
			width: 20%;
}
.contactuspage {
				background: linear-gradient(blue,lightblue);
				height: 100%;
}
.atfooter	{
			display: flex;
			flex-direction: column;
}
.atfooter h3 {
              font-size: 1.3rem;
              margin-left: -20px;
}
.atfooter ul li {
  font-size: 1rem;
}
.atfooter p {
             font-size: 1rem;
}
.address	{
			display: flex;
			height: 100%;
			gap: 3px;
			padding: 6px;
			align-items:left;
}
.contact	{
			display: flex;
			height: 100%;
			padding-left: 1px;
}
.contact ul {
			margin-left: 30px;
			margin-top: -10px;
}
.others	{
			display: flex;
			height: 100%;
			gap: 10px;
			margin: 30px 0 auto;
			padding: 10px;
			align-items:center;
}
.uothers {
			display: block;
			width: 100%;
			height: 100%;
			margin-left:10px;
}
.inputandbutton {
				padding: 0 10px 20px 10px;
}
.tracking	{
				display: flex;
				position: absolute;
				width: 100%;
				top: 65%;
				left: 0%;
				right: 0%;
				margin: auto;
				transform: translate(100% - 5% / 2);
				font-weight: bold;
				color: black;
				padding: 50px;
}
.eachservice	{
				width: 100%;
}
.form input, .form select	{
			width: 400px;
			height: 50px;
			outline: none;
			border:none;
			margin: 5px;
			padding: 5px;
}
.form textarea {
			width: 400px;
			height: 70px;
			outline: none;
			border:none;
			margin: 5px;
			padding: 5px;
			resize:none; 
}
	 
 }
 
 
 
