/***** BASE *****/
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size-adjust: 100%;
}

html,
body {
	height: 100%;
}
a {
	text-decoration: none;
	color: white;
}
body {
	font: normal 500 1.4rem/1.86 "Gotham";
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
	overflow-y: auto;
	-ms-overflow-y: auto;
}

.section-header {
	color: #52938e;
	font-weight: bold;
	font-size: 2rem;
	position: relative;
}

.section-header::after {
	content: "";
	position: absolute;
	bottom: -1.5rem;
	left: -80%;
	width: 100%;
	height: 1.5rem;
	max-height: 1.5rem;
	background-image: url(../images/section-line.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

/***** HEADER *****/
.nav .nav-link {
	margin: 0 1.5rem;
	color: #002e5a;
	font-weight: 500;
}

/***** HERO *****/
.call-us-today {
	background-color: #52938e;
	width: 100%;
	height: 3.6rem;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.6rem;
	gap: 1rem;
}

.hero-banner {
	background: url(../images/hero-img.jpg);
	background-position: center;
	background-size: cover;
	height: 80rem;
	display: flex;
	align-items: center;
}

.hero-banner-header {
	font-size: 8rem;
	font-weight: 900;
	line-height: 8rem;
	color: #fff;
}

.hero-banner-sub-header {
	font-size: 5rem;
	font-weight: 500;
	color: #fff;
}

.hero-banner-text {
	font-size: 1.6rem;
	color: #fff;
}

/***** ABOUT *****/
.about {
	margin: 6rem 0;
}

.about .about-us-img {
	position: relative;
	right: -3rem;
}

.about .about-content {
	margin-top: 15rem;
}

/***** SERVICE *****/
.services {
	background-image: url(../images/services-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 6rem 0;
}

.services .service-content {
	font-size: 1.6rem;
}

.services .services-item {
	background-color: #fff;
	margin-bottom: 2rem;
	padding: 1.5rem;
	border-radius: 0.8rem;
	min-height: 46rem;
}

.services .services-item .service-item-header {
	font-size: 1.7rem;
	font-weight: bold;
	margin: 0.5rem 0;
}

/***** MIDDLE BANNER *****/
.middle-banner {
	width: 100%;
	height: 64rem;
	background-image: url(../images/company-img.jpg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

/***** FOOTER *****/
.footer {
	padding-top: 3rem;
}
.footer ul {
	list-style: none;
}
.footer .footer-links li {
	margin-bottom: 1rem;
}
.footer .footer-links a {
	color: #000;
}
.footer .social-list {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 5rem;
	padding: 0;
}

.footer .social-list li {
	border: 2px solid #002e5a;
	border-radius: 50%;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer .footer-info li {
	margin-bottom: 1rem;
	display: flex;
	gap: 2rem;
}
.footer .footer-info a {
	color: #000;
}

.footer .footer-img {
	position: absolute;
	right: -20%;
	width: 55rem;
}

/***** CUSTOM *****/
.go-top {
	width: 45px;
	height: 45px;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 9999;
	border-radius: 50%;
	background: linear-gradient(
		90deg,
		rgba(0, 146, 137, 1) 0%,
		rgba(9, 41, 81, 1) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
    border:none
}

.go-top img {
	position: relative;
	top: -0.2rem;
}
