* {
	padding: 0;
	margin: 0;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "Roboto", sans-serif;
}

:root {
	font-size: 16px;
	--primary-color: #183148;
	--secondary-color: #cde2f8;
	--gray-color: #b1b0b0;
	--white-color: #ffffff;
}

body {
	overflow-x: hidden;
	color: var(--white-color);
	background-color: var(--white-color);
}

a {
	text-decoration: none;
	text-transform: uppercase;
}

img {
	max-width: 100%;
	height: auto;
}

h3 {
	font-size: 1.4rem;
}

p {
	font-size: 1rem;
}

.section-container {
	padding-top: 6rem;
	padding-bottom: 4rem;
	width: 100%;
	min-height: 100vh;
	background-color: var(--secondary-color);
	display: flex;
	flex-direction: column;
	gap: 3rem;
	color: var(--primary-color);
}

.padding-x {
	padding-left: 4vw;
	padding-right: 4vw;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Section Titles******************************************* */

.section-title {
	width: 100%;
	background-color: var(--gray-color);
	color: var(--primary-color);
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.section-title h2 {
	font-weight: bold;
	font-size: 1.6rem;
	width: 100%;
	text-align: center;
	color: var(--primary-color);
	text-transform: uppercase;
}

/* Main Buttons *******************************************************/

.main-btn {
	background-color: var(--primary-color);
	border: solid 2px var(--white-color);
	padding: 0.5rem 3rem;
	font-size: 1rem;
	font-weight: bold;
	color: var(--white-color);
	transition: all 0.3s;
}

.main-btn:hover {
	background-color: var(--white-color);
	color: var(--primary-color);
}

/** Header ***************************************************************** */

header {
	gap: 1rem;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--primary-color);
	z-index: 210;
	padding-top: 0.4rem;
	padding-bottom: 0.2rem;
	height: min-content;
	border-bottom: solid 1px #b1b0b034;
}

header .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.3rem;
}

header .logo-img {
	height: 4rem;
}

header .logo-words {
	height: 0.9rem;
}

/* Desktop Menu *********************************************/

.desktop-navbar {
	display: none;
	gap: 1.6rem;
}

.desktop-navbar a {
	font-size: 1rem;
	color: var(--white-color);
	padding-bottom: 0.2rem;
	padding-top: 0.2rem;
	border-bottom: 2px solid transparent;
	transition: all 0.5s;
	text-transform: uppercase;
}

.desktop-navbar a:hover {
	border-bottom: 2px solid var(--white-color);
}

/* Mobile Menu *********************************************/
.mobile-menu {
	display: block;
}

.menu-icon {
	font-size: 2rem;
	cursor: pointer;
	display: block;
	margin-left: 2rem;
	color: var(--white-color);
}

.mobile-navbar {
	position: absolute;
	width: 100%;
	right: 0;
	top: 0;
	background-color: var(--primary-color);
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 8rem;
	min-height: 100vh;
	color: var(--white-color);
	border: solid 1px var(--gray-color);
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.5s linear;
}

.mobile-navbar nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4rem;
}

.mobile-navbar.opened-menu {
	transform: translateX(0);
}

.close-menu-icon {
	font-size: 2.5rem;
	text-align: right;
	width: 100%;
}

.close-menu-icon i {
	cursor: pointer;
}

.mobile-navbar a {
	color: var(--white-color);
	font-size: 1.2rem;
}

/** Sections *****************************/

/* Home ***************************************************************** */

.home-container {
	padding-top: 9rem;
	padding-bottom: 6rem;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 5rem;
	background-color: var(--primary-color);
}

.home-container img {
	width: 30rem;
}

.home-text {
	width: 100%;
	background-color: var(--gray-color);
	text-align: center;
	font-size: 1rem;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	color: var(--primary-color);
}

/* About Us ***************************************************************** */

.about-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.about-content p {
	text-align: justify;
}

.about-description {
	text-indent: 2rem;
}

.about-articles {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 100%;
	gap: 2rem;
}

.about-content article {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	border: solid 2px var(--white-color);
	padding: 2rem;
	width: 100%;
}

.about-articles article p {
	text-align: center;
}

.about-articles img {
	width: 15rem;
	border-radius: 50%;
}

/* Services ***************************************************************** */

.services-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.services-content article {
	background-color: #dfedfd;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.5rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.services-article-img {
	text-align: center;
}

.services-article-texts {
	text-align: center;
}

.services-article-texts h3 {
	margin-bottom: 0.5rem;
	text-align: left;
}

.services-article-texts p {
	text-align: justify;
}

/* Contact ***************************************************************** */

.contact-container {
	min-height: auto;
	background-color: var(--primary-color);
	color: var(--white-color);
}

.contact-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	gap: 4rem;
	position: relative;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.contact-address {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	gap: 2rem;
}

.contact-address img {
	width: 100%;
	min-width: 10rem;
	max-width: 20rem;
}

.address-items {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.address-item {
	width: 100%;
}

.address-item h3,
p {
	width: 100%;
	text-align: center;
	margin-bottom: 0.3rem;
}

.address-item i {
	margin-right: 0.6rem;
}

.social-media {
	display: flex;
	gap: 1rem;
	font-size: 2rem;
}

.social-media-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	border-radius: 50%;
	padding: 0.2rem;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

.social-media-icon:hover {
	background-color: var(--white-color);
	color: var(--primary-color);
}

.contact-form {
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	border: solid 1px var(--white-color);
	padding: 1.5rem;
	position: relative;
}

.contact-form input,
textarea {
	width: 100%;
	padding: 0.6rem;
	font-size: 1rem;
	margin-top: 0.4rem;
	border: none;
	background-color: var(--gray-color);
	color: var(--white-color);
	outline: none;
	resize: none;
	margin-bottom: 1.4rem;
}

.contact-form input[type="submit"] {
	border: solid 2px transparent;
	padding: 0.5rem 3rem;
	font-weight: bold;
	transition: all 0.3s;
	width: fit-content;
}

.contact-form input[type="submit"]:hover {
	border: solid 2px var(--white-color);
}

.hidden {
	display: none;
}

.form-loader {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 30%;
	text-align: center;
}

.form-response {
	position: absolute;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--primary-color);
	padding: 2rem 20%;
	width: 100%;
	bottom: 40%;
	left: 0;
}

.form-response p {
	text-align: center;
	border: 1px solid var(--primary-color);
	font-size: 1.2rem;
	padding: 2rem;
	background-color: var(--white-color);
}

.form-error {
	margin-top: -1.4rem;
	font-size: 80%;
	text-align: center;
	width: 100%;
	padding: 0.2rem;
	background-color: red;
	border: solid 1px var(--gray-color);
	color: var(--white-color);
	transition: all 0.5s linear;
}

.form-error.is-active {
	display: block;
	animation: show-message 1s 1 normal 0s easy-out both;
}

@keyframes show-message {
	0% {
		visibility: hidden;
		opacity: 0;
	}

	100% {
		visibility: visible;
		opacity: 1;
	}
}

/* Footer ***************************************************************** */
footer {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	width: 100%;
	align-items: center;
	background-color: var(--primary-color);
	border-top: solid 1px rgba(255, 255, 255, 0.3);
}

footer p {
	font-size: 14px;
	color: var(--gray-color);
	opacity: 0.5;
	line-height: 10px;
}

/* Whatsapp Button ************************************************************* */
.whatsapp-btn {
	position: fixed;
	top: 6rem;
	right: 1rem;
	color: var(--white-color);
	border: none;
	border-radius: 50%;
	background-color: rgb(25, 148, 25);
	z-index: 150;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.5rem;
	height: 3.5rem;
	font-size: 2rem;
}

.whatsapp-btn:hover {
	transform: scale(1.2);
}

.hidden-btn {
	visibility: hidden;
	opacity: 0;
}

/* Top Button ************************************************************* */
.top-btn {
	position: fixed;
	bottom: 2rem;
	right: 1rem;
	border: 2px solid transparent;
	color: var(--white-color);
	padding: 0.5rem 0.2rem;
	font-size: 1.5rem;
	background-color: var(--primary-color);
	border: solid 2px var(--white-color);
	z-index: 110;
	cursor: pointer;
	transition: all 0.2s ease;
}

.top-btn:hover {
	transform: scale(1.2);
	border: 2px solid var(--white-color);
}

.hidden-btn {
	visibility: hidden;
	opacity: 0;
}

/** Media Queries *************************/

@media screen and (min-width: 450px) {
	.contact-address {
		flex-direction: row;
		justify-content: space-around;
	}
}

@media screen and (min-width: 768px) {
	:root {
		font-size: 18px;
	}

	.mobile-menu {
		display: none;
	}

	.desktop-navbar {
		display: flex;
	}

	.about-articles {
		flex-direction: row;
		justify-content: space-around;
	}

	.services-content {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 2rem;
	}

	.services-content article {
		align-items: center;
		width: calc(50% - 1rem);
		min-height: 470px;
		gap: 0.5rem;
	}

	.contact-content {
		flex-direction: row;
	}

	.contact-address {
		width: 40%;
		height: 35rem;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.address-item h3,
	p {
		margin-bottom: 0.8rem;
	}

	.contact-form {
		width: 60%;
	}
}

@media screen and (min-width: 900px) {
	.services-content article {
		min-height: 440px;
	}
}

@media screen and (min-width: 1000px) {
	.services-content article {
		min-height: 420px;
	}
}

@media screen and (min-width: 1100px) {
	.services-content article {
		min-height: 400px;
	}
}

@media screen and (min-width: 1200px) {
	.services-content article {
		min-height: 370px;
	}

	.contact-address {
		width: 50%;
	}

	.contact-form {
		width: 50%;
	}
}

@media screen and (min-width: 1400px) {
	.services-content article {
		min-height: 350px;
	}
}
