/* navbar section  */
header .top {
	background-color: var(--dark-color);
	color: var(--white-color);
	z-index: 100;
	position: fixed;
	width: 100%;
}
.top .top-wrapper {
	display: flex;
	align-items: center;
}
.top-wrapper .icon-wrapper {
	margin-right: auto;
	display: flex;
}
.icon-wrapper .icon {
	padding-left: var(--size-10);
	padding-right: var(--size-10);
	padding-top: var(--size-5);
	padding-bottom: var(--size-5);
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	font-size: var(--size-10);
}
.icon i span {
	margin-left: var(--size-10);
}
.top-wrapper .social {
	display: flex;
	gap: var(--size-15);
	align-items: center;
	padding-left: var(--size-10);
	padding-right: var(--size-10);
	padding-top: var(--size-10);
	padding-bottom: var(--size-10);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.social li a {
	display: flex;
	align-items: center;
	color: var(--white-color);
	font-size: var(--size-12);
}
.social li a:hover {
	color: var(--gold-color);
}
.top .navbar {
	width: 100%;
	background-color: var(--bg-color);
}
.navbar .navbar-wrapper {
	display: flex;
	align-items: center;
	padding-top: var(--size-5);
	padding-bottom: var(--size-5);
}
.navbar-wrapper .navbar-toggler {
	position: absolute;
	outline: none;
	right: var(--size-20);
	top: 45px;
	background-color: transparent;
	border: 1px solid transparent;
}
.navbar-toggler span {
	color: var(--dark-color);
	font-size: var(--size-20);
	cursor: pointer;
	pointer-events: none;
}
[aria-controls="navbarDropdown"] {
	display: none;
}
.navbar-wrapper .brand {
	margin-right: auto;
	width: var(--size-50);
	z-index: 1;
}
.navbar-wrapper .navbar-nav {
	display: flex;
	align-items: center;
	gap: var(--size-20);
}
.navbar-nav li a {
	/* text-transform: uppercase; */
	font-size: var(--size-14);
	font-weight: 500;
}
.navbar-nav li a:hover {
	color: var(--gold-color);
}
header .hero-section {
	width: 100%;
	height: 800px;
	background-image: url("../img/truck.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.hero-section .overlay {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.overlay .overlay-info {
	width: 60%;
	margin: 200px auto 0;
	text-align: center;
	color: var(--white-color);
	padding: 15px;
	position: absolute;
	top: 0;
	z-index: 15;
}
.overlay-info h3 {
	font-size: var(--size-12);
	color: var(--gold-color);
}
.overlay-info h1 {
	text-transform: uppercase;
	font-size: var(--size-45);
	margin-top: 0;
	margin-bottom: var(--size-5);
	letter-spacing: 0;
	line-height: 1.3;
}
.overlay-info span {
	margin: auto;
}
.overlay-info p {
	text-align: center;
	color: var(--white-color);
}
.overlay-info .overlay-info-btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--size-20);
	margin-top: var(--size-30);
}
.overlay-info-btn .transparent-btn {
	color: var(--gold-color);
	font-weight: 500;
}
.overlay-info-btn .transparent-btn:hover {
	background-color: var(--dark-color);
	transform: scale(1.1);
}
.overlay-info-btn .primary-btn:hover {
	background-color: var(--dark-color);
	color: var(--gold-color);
}
/* who are we section  */
main .who-are-we {
	padding-top: var(--size-150);
	padding-bottom: var(--size-150);
}
.who-are-we .who-are-we-wrapper.flex {
	gap: var(--size-20);
}
.who-are-we-wrapper > div {
	flex: 1;
}
.who-are-we-wrapper .image-wrapper {
	position: relative;
}
.image-wrapper .first-image {
	position: relative;
}
.image-wrapper .first-image,
.image-wrapper .second-image {
	border-radius: var(--size-50);
	max-width: 400px;
}
.first-image img,
.second-image img {
	border-radius: var(--size-50);
	width: 400px;
}
.first-image .overlay {
	background-image: linear-gradient(
		rgba(252, 190, 21, 0.7),
		rgba(252, 190, 21, 0.6)
	);
	border-radius: var(--size-50);
}
.image-wrapper .second-image {
	position: absolute;
	content: "";
	top: var(--size-50);
	left: var(--size-25);
}
.wrapper-info h4 {
	font-size: var(--size-14);
	color: var(--gold-color);
}
/* product section  */
main .product {
	padding-top: var(--size-100);
	padding-bottom: var(--size-100);
	padding-left: var(--size-50);
	padding-right: var(--size-50);
}
.product .product-wrapper {
	display: block;
}
.product-wrapper .product-header {
	text-align: center;
	margin-bottom: var(--size-100);
	margin-left: auto;
	margin-right: auto;
}
.product-header h4 {
	font-size: var(--size-14);
	color: var(--gold-color);
}
.product-header span {
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--size-5);
	margin-bottom: var(--size-5);
}
.product-wrapper .grid {
	gap: var(--size-20);
}
.product-wrapper .product-detail {
	border-radius: var(--size-30);
	border: 1px solid var(--gold-color);
	padding: var(--size-10);
	height: var(--size-200);
}
.product-wrapper .product-detail:hover {
	transform: scale(1.05);
}
.product-detail > div {
	flex: 1;
}
.product-detail .detail-image {
	max-width: 300px;
	margin: auto;
	padding: 5px;
}
.product-detail .detail-content div {
	margin-bottom: 20px;
}
.product-detail .detail-content a:hover {
	background-color: var(--gold-color);
}
.product-wrapper .product-get-quote {
	text-align: center;
	margin-top: 50px;
}
/* .product-wrapper .product-get-quote:hover {
	transform: scale(1.1);
} */
/* service section  */
main .service {
	padding-top: var(--size-100);
	padding-bottom: var(--size-100);
	padding-left: var(--size-50);
	padding-right: var(--size-50);
}
.service .service-wrapper {
	display: block;
}
.service-wrapper .service-header {
	text-align: center;
	margin-bottom: var(--size-100);
	margin-left: auto;
	margin-right: auto;
}
.service-header h4 {
	font-size: var(--size-14);
	color: var(--gold-color);
}
.service-header span {
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--size-5);
}
.service-wrapper .grid {
	gap: var(--size-20);
}
.service-wrapper .service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: auto;
	border-radius: var(--size-30);
	border: 1px solid var(--gold-color);
	height: 250px;
}
.service-card .card-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background-color: var(--gold-color);
	border-radius: 50%;

	font-size: 32px;
	margin-bottom: 10px;
}
.service-card .content {
	text-align: center;
}
/* Trusted section  */
.trusted .trusted-wrapper {
	background-color: #173e75;
	border-radius: 24px;
	padding: 50px 50px;
}
.trusted-wrapper h4 {
	text-align: center;
	color: var(--white-color);
}
.trusted-wrapper .grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.trusted-card .card {
	text-align: center;
	margin-top: 40px;
}
.trusted-card .card span {
	color: var(--gold-color);
	font-size: var(--size-50);
}
.trusted-card .card p {
	color: var(--white-color);
	font-size: var(--size-18px);
}
/* why us section */
main .why-us {
	padding-top: var(--size-100);
	padding-bottom: var(--size-100);
}
.why-us-wrapper .why-us-header {
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--size-100);
	margin-bottom: var(--size-100);
	text-align: center;
	padding: var(--size-5);
}
.why-us-header h4 {
	font-size: var(--size-14);
	color: var(--gold-color);
}
.why-us-header span {
	margin: auto;
}
.why-us-wrapper .why-us-grid {
	gap: var(--size-50);
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.why-us-grid .card {
	padding: var(--size-10);
	margin: auto;
}
.card h3 {
	font-size: var(--size-15);
}
/* partnership section  */
main .partnership {
	padding: var(--size-60) 0;
	white-space: nowrap;
	overflow: hidden;
	background-color: rgba(244, 244, 244, 255);
}
.partnership .slide {
	display: inline-block;
	animation: slideIn 10s linear infinite;
}

@keyframes slideIn {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
.slide img {
	margin: 0 var(--size-20);
	width: var(--size-200);
}
/* testimonial section  */
main .testimonials {
	padding-top: var(--size-100);
	padding-bottom: var(--size-100);
}
.testimonials .testimonial-header {
	text-align: center;
	margin: var(--size-80) 0;
}
.testimonial-header h4 {
	font-size: var(--size-14);
	color: var(--gold-color);
}
.testimonial-header h2 {
	font-size: var(--size-30);
	font-weight: 600;
	color: var(--blue-color);
}
.testimonial-header span {
	margin: auto;
}
.testimonials .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	column-gap: var(--size-20);
	row-gap: var(--size-10);
}
.testimonial-grid .testimonial-card {
	border: 1px solid #dedede;
	border-radius: 8px;
	padding: var(--size-30);
}
.testimonial-card .upper {
	display: flex;
	align-items: center;
	padding-bottom: var(--size-10);
}
.upper img {
	width: var(--size-70);
	height: var(--size-70);
	border-radius: 50%;
	margin-right: var(--size-20);
	background-image: linear-gradient(
		to right,
		rgba(253, 217, 54, 0.986),
		rgba(253, 217, 54, 0.986)
	);
}
.upper .upper-info {
	display: block;
}
.upper-info h4 {
	font-size: var(--size-14);
}
.upper-info span {
	color: var(--text-color);
	font-size: var(--size-14);
}
.testimonial-card .lower {
	display: block;
}
.lower p {
	line-height: 1.6;
	color: var(--text-color);
}
.lower .quote {
	width: var(--size-80);
	height: var(--size-80);
	float: right;
	margin-top: var(--size-16);
}
.testimonial-card.lg {
	grid-row: 1/3;
	grid-column: 1/2;
}
.testimonial-card.lg img {
	width: var(--size-80);
	height: var(--size-80);
}
@media screen and (min-width: 786px) {
	.testimonial-grid {
		max-width: 720px;
		margin: 0 auto;
	}
}
/* Request engineer section  */
main .request-engineer {
	background: url("../img/bg_1.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	padding-top: var(--size-150);
	padding-bottom: var(--size-150);
}
.flex .text {
	max-width: 450px;
	margin-right: auto;
	color: var(--white-color);
}
.text h2 {
	text-transform: capitalize;
	font-size: var(--size-20);
	font-weight: 600;
}
/* footer section  */
footer {
	background-color: var(--bg-color);
	color: black;
	padding-top: var(--size-50);
}
.company-info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: var(--size-50);
	padding-bottom: var(--size-50);
}
.company-info h4 {
	font-size: var(--size-16);
	text-transform: capitalize;
}
.company-info .address {
	display: block;
	max-width: 300px;
}
.address p {
	color: var(--dark-color);
}
.address ul li {
	margin-top: var(--size-5);
	margin-bottom: var(--size-5);
}
.address a {
	color: var(--dark-color);
	font-size: var(--size-14);
}
.address a i {
	color: var(--gold-color);
}
.address .social-link i {
	color: var(--dark-color);
	font-size: var(--size-14);
	margin-right: var(--size-20);
}
.address .social-link i:hover {
	color: var(--gold-color);
}
.company-info .products {
	display: block;
}
.products ul li a {
	color: var(--dark-color);
	font-size: var(--size-14);
}
.products ul li a:hover {
	color: var(--gold-color);
}
.company-info .links {
	display: block;
}
.links ul li a {
	display: block;
	font-size: var(--size-14);
	color: var(--dark-color);
}
.links ul li a:hover {
	color: var(--gold-color);
}
.shortcut-links li a i {
	margin-right: var(--size-10);
}
.company-info .news-letter {
	display: block;
	max-width: 300px;
}
.news-letter p {
	color: var(--dark-color);
}
.news-letter .subscribe {
	position: relative;
}
.subscribe input {
	width: 100%;
	height: 34px;
	padding: var(--size-5) var(--size-10);
	border: none;
	background-color: #e1e5e6;
}
.subscribe .send-btn {
	width: var(--size-60);
	height: 34px;
	padding: 0;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
	position: absolute;
	right: 0;
	background-color: var(--dark-color);
	border: none;
	border-radius: none;
}
.send-btn .alt-send-btn {
	width: 100%;
	height: 100%;
	transition: all 0.2s ease-in-out;
	padding-top: var(--size-5);
}
.alt-send-btn:hover {
	transform: translate3d(0px, -29px, 0px);
}
.alt-send-btn i {
	font-size: var(--size-20);
	color: var(--gold-color);
}
.alt-send-btn .send-text {
	display: block;
	margin-top: var(--size-10);
	font: 700 "Lato", sans-serif;
	letter-spacing: 2px;
	color: var(--gold-color);
}
.copyright {
	text-align: center;
	padding: var(--size-10);
	border-top: 1px solid var(--gold-color);
}
.copyright p {
	color: var(--dark-color);
}
#scrollUp {
	background-color: transparent;
	background-image: linear-gradient(
		rgba(252, 190, 21, 0.6),
		rgba(252, 190, 21, 0.6)
	);
	color: var(--white);
	font-size: var(--size-15);
	height: var(--size-40);
	width: var(--size-40);
	line-height: var(--size-40);
	position: fixed;
	bottom: var(--size-200);
	right: var(--size-10);
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	z-index: 100;
}
