.contact-maps_image {
	border-radius: 1rem;
	overflow: hidden;
}

.hero-contact {
	background-image: url("../../images/BG-HubungiKami.jpg");
	height: auto;
	min-height: 35rem;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	color: #fff;
}

.hero-contact {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* border: 1px solid magenta; */
}

.hero-contact-title,
.hero-contact-desc {
	text-align: center;
}

.hero-contact-title {
	font-size: 3rem;
	margin-bottom: 3rem;
}

.hero-contact-desc {
	line-height: 2.5rem;
	font-weight: 300;
}

/* Content */
.content-contact {
	display: flex;
	gap: 3rem;
}

@media only screen and (max-width: 425px) {
	.content-contact {
		display: flex;
		flex-direction: column;
	}
}

/* Company address and maps */
.contact-maps {
	flex: 1;
}

.contact-maps_details {
	margin-top: 2rem;
}

.contact-maps_details-company h1 {
	font-weight: 800;
	color: #002b6a;
}

.contact-maps_details-address {
	color: #002b6a;
	margin-bottom: 1rem;
}

.contact-maps_details-email {
	display: flex;
	flex-direction: column;	
	align-items: flex-start;
	color: #002b6a;
}

.contact-maps_details-email a {
	color: #002b6a;
}

/* Form */
.contact-form {
	border: 1px solid black;
	flex: 1;
	padding: 2rem;
	border: 1px solid #ccc;
	border-radius: 1rem;
	height: fit-content;
}

.form_input {
	padding: 1.5rem;
	margin: 1rem 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: .8rem;
	width: 100%;
	font-size: 1.6rem;
	font-family: "Lato", sans-serif;
}

.contact-form_double {
	display: flex;
	gap: 2rem;
}

.btn-send-message {
	background-color: var(--merah);
	padding: 1rem 3rem;
	font-weight: 700;
	border-radius: 0.8rem;
	/* border: 1px solid magenta; */
	/* transition: all .3s ease; */
	outline: none;
	border: none;
	color: white;
	cursor: pointer;
	margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
	.content-contact {
		flex-direction: column-reverse;
	}

	.hero-contact-desc p span {
		display: none;
	}
}

@media only screen and (max-width: 425px) {
	.contact-form_double {
		display: flex;
		flex-direction: column-reverse;
		gap: 0rem;
	}

	.hero-contact-title h2 {
		font-size: 3rem !important;
	}
}

