.landing-svg {
	fill: #e2f6fc;
}

.contact__form {
	padding-top: 3rem;
	animation-delay: 1.5s;
	animation-duration: 1.2s;
	position: relative;
}

.contact-octopus {
	position: relative;
	width: 5rem;
	top: 110%;
	left: 2rem;
	animation-delay: 1.5s;
	animation-duration: 1.2s;
}

.contact__form .section__title {
	color: black;
}

.contact__form-container {
	display: grid;
	border: 2px solid var(--first-color);
	border-radius: 4px;
}

.contact-us_form {
	padding-top: 2rem;
	padding-inline: 1rem;
	position: relative;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(24px);
	position: relative;
}

.contact-sea__horse {
	position: absolute;
	bottom: -0.5rem;
	width: 3rem;
	opacity: 0.5;
}

.contact-sea__horse.second {
	left: 3rem;
}
.contact-sea__horse.third {
	left: 4.5rem;
}

.contact-bubbles {
	position: absolute;
	width: 3rem;
	opacity: 0.5;
	bottom: 2rem;
	left: 4.8rem;
	transform: rotate(30deg);
}

.contact-us_form label {
	font-weight: var(--font-bold);
	margin-top: 1rem;
}

.contact-us_form input {
	border: 2px solid var(--first-color);
	border-radius: 6px;
	padding-left: 0.8rem;
	width: 100%;
}

.contact-us_form input,
.contact-us_form input::placeholder,
.contact-us_form textarea::placeholder {
	color: black;
}

.phone-cont {
	display: flex;
	column-gap: 1rem;
}

.phone-cont input:nth-child(1) {
	flex-basis: 30%;
}

.contact-us_form textarea {
	border: 2px solid var(--first-color);
	border-radius: 6px;
	padding-left: 0.8rem;
	color: black !important;
	height: 10rem;
}

.contact-us_form .btn {
	width: 70%;
	cursor: pointer;
	background-color: var(--first-color);
	color: white;
	margin-block: 2rem;
	transition: color 0.25s ease, background-color 0.25s ease;
}

.contact-us_form .btn:hover {
	color: black;
	background-color: white;
}

.contact__section-shark {
	position: absolute;
	top: 0;
	right: 0;
	width: 8rem;
	opacity: 0.5;
}
.contact__section-bubbles {
	position: absolute;
	bottom: 7rem;
	right: 1.2rem;
	width: 3rem;
	opacity: 0.5;
}

.contact__location {
	margin-inline: -1.5rem;
	padding: 5rem 1.5rem;
	margin-top: 3rem;
	display: grid;
	row-gap: 3rem;
	background-color: var(--first-color-alt-2);
	z-index: -2;
}

.contact__location-title {
	font-weight: var(--font-semi-bold);
	font-size: var(--large-font-size);
	margin-bottom: 1.5rem;
}

.contact__location-bd {
	border: 2px solid white;
	border-radius: 4px;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(24px);
}

.contact__location-bd div {
	display: flex;
	align-items: center;
	column-gap: 0.8rem;
	margin-top: 0.8rem;
}

.contact__location svg {
	width: 1.5rem;
	fill: var(--first-color-alt-2);
}

.contact__form a,
.contact__location p {
	color: black;
	font-weight: var(--font-semi-bold);
}

.contact__location p span {
	font-size: 1.5rem;
}

.contact__form a {
	position: relative;
}

.contact__form a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	width: 0%;
	background-color: black;
	transition: width 0.5s ease;
}

.contact__form a:hover::after {
	width: 100%;
}

.q-and-a {
	margin-block: 3rem 2rem;
	position: relative;
}

.contact-jelly__fish,
.contact-whale,
.contact-dolphin {
	position: absolute;
	opacity: 0.5;
}

.contact-whale {
	width: 4.5rem;
	top: 0;
	right: 3rem;
	transform: rotate(-30deg);
}

.contact-dolphin {
	width: 5rem;
	/* top: 64rem; */
	/* bottom: 10rem; */
	left: 10%;
	z-index: -2;
	/* opacity: 0.2; */
}
.contact-jelly__fish {
	width: 5rem;
	top: 20rem;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: -2;
	opacity: 0.2;
}

.q-and-a__grid {
	display: grid;
}

article {
	border: 2px solid var(--first-color);
	border-radius: 4px;
	padding: 1.5rem 1rem;
	margin-bottom: 2rem;
	overflow: hidden;
	box-shadow: 2px 8px 12px hsla(22, 100%, 8%, 0.1);
}

article p {
	font-size: var(--large-font-size);
}

article hr {
	margin-block: 1rem 0.25rem;
	height: 3px;
	background-color: white;
	width: 0;
	transition: width 0.5s ease;
}

article.read-answer hr {
	display: block;
	width: 100%;
}

.q-and-a__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 1.5rem;
}

.question-buttons {
	display: flex;
}

.question-buttons svg {
	width: 1.5rem;
	cursor: pointer;
}

.q-and-a__answer {
	max-height: 0;
	overflow: hidden;
	color: black;
	display: block;
	transition: max-height 0.5s ease;
}

.q-and-a__answer p {
	font-size: var(--normal-font-size);
}

.plus-icon,
.minus-icon {
	transition: transform 0.5s ease;
}

.plus-icon:hover,
.minus-icon:hover {
	transform: rotate(90deg);
}

.read-answer .plus-icon,
.minus-icon {
	display: none;
}

.read-answer .minus-icon {
	display: block;
}

.read-answer .q-and-a__answer {
	max-height: 1000px;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 728px) and (max-width: 1024px) {
	.contact__location {
		margin-inline: -3rem;
		padding-inline: 3rem;
	}

	.contact-octopus {
		width: 6rem;
		top: 110%;
		left: 8rem;
	}

	.contact-sea__horse.first {
		left: 1.3rem;
	}

	.contact-whale {
		width: 5.5rem;
		right: 10rem;
	}

	.contact-dolphin {
		width: 6rem;
	}
	/* .contact-jelly__fish {
		width: 5rem;
		top: 20rem;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		z-index: -2;
		opacity: 0.2;
	} */
}

/* For large devices */
@media screen and (min-width: 1024px) {
	.contact-octopus {
		width: 5rem;
		top: 110%;
		left: 23rem;
	}

	.contact-sea__horse.first {
		left: 1.3rem;
	}

	.contact-whale {
		width: 5.5rem;
		right: 20rem;
	}

	.contact-dolphin {
		width: 6rem;
	}

	.contact-bubbles {
		bottom: 0.6rem;
		z-index: 1;
	}

	.contact-sea__horse {
		bottom: -2rem;
	}

	.contact__form-container {
		grid-template-columns: 1fr 1fr;
	}

	.contact__form-container img {
		height: 100%;
		object-fit: cover;
	}

	.contact-us_form {
		padding-top: 0;
		row-gap: 0;
	}

	.form__title {
		margin-bottom: 0;
	}

	.contact-us_form textarea {
		height: 7rem;
	}

	.contact__section-shark {
		width: 6rem;
		right: 0.5rem;
		top: -1rem;
	}

	.contact__location {
		margin-inline: -5rem;
		padding-inline: 5rem;
		padding-block: 3rem;
		grid-template-columns: 1fr 1fr;
		column-gap: 2rem;
		margin-block: 8rem;
	}

	.q-and-a__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: 2rem;
	}
}
