@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Montserrat", sans-serif;
}
header .carousel-item {
	height: 600px;
	position: relative;
}

.carousel-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.navbar-brand {
	font-family: "Great Vibes", cursive;
	font-size: 35px;
	font-weight: 400;
}
.carousel-caption {
	z-index: 2;
}
header img {
	height: 600px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
header {
	position: relative;
}
nav {
	z-index: 100;
	position: fixed;
	top: 15px;
	background-color: hsl(180deg 100% 16.67%);
	border-radius: 10px;
	font-size: medium;
}
nav .dropdown-menu {
	font-size: small;
}
.dropdown-menu {
	display: block;
	opacity: 0;
	transform: translateY(-10px);
	transition: 0.3s;
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.navbar .nav-link:hover {
	color: black;
}
.navbar .nav-item {
	width: fit-content;
	margin: auto;
}
.navbar .hvr-underline-from-left:before {
	background-color: white;
}
.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}
.carousel-caption {
	top: 200px;
}
header .form-control {
	border-radius: 30px;
	font-size: small;
}
form button {
	border-radius: 30px;
	border: none;
	background-color: hsl(180deg 100% 16.67%);
	color: white;
}
.btn-view {
	background-color: hsl(180deg 100% 16.67%);
	color: white;
	border: none;
	padding: 15px 25px;
	border-radius: 30px;
	font-size: medium;
}
.card1 .card-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 22px;
	padding: 8px;
}
.slider {
	max-width: 1100px;
	padding: 20px 10px;
	margin: 30px 60px;
	overflow: hidden;
}
.slider .card1 {
	height: auto;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.24);
	transition: 0.5s;
}

.slider .card1:hover {
	transform: translateY(-10px);
}
.card1 .card-content {
	padding: 0px 30px;
}
.card1 .card-content .card-price {
	color: hsl(180deg 100% 16.67%);
	padding: 10px 0px;
	font-weight: 600;
}
.card1 .card-content .hvr-underline-from-left:before {
	background-color: hsl(180deg 100% 16.67%);
}
.card1 .card-image .card-tag {
	position: absolute;
	left: 25px;
	top: 25px;
	color: white;
	background-color: #005555;
	padding: 10px;
	border-radius: 30px;
	transition: 0.3s;
}
.card1 .card-image .card-tag:hover {
	color: #005555;
	background-color: white;
}
.card1 .card-footer button {
	border-radius: 30px;
	border: none;
	background-color: hsl(180deg 100% 16.67%);
	color: white;
	padding: 10px 20px;
}
.slider .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	overflow: hidden;
	opacity: 1;
	background-color: #005555a4;
}
.slider .swiper-pagination-bullet-active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #005555;
	transform: scaleX(0);
	transform-origin: left center;
	animation: autoplay-loading 4s linear forwards;
}
@keyframes autoplay-loading {
	100% {
		transform: scaleX(1);
	}
}
.swiper:hover .slider .swiper-pagination-bullet-active::before {
	animation-play-state: paused;
}
.slider :where(.swiper-button-prev, .swiper-button-next) {
	color: #005555;
	transition: 0.3s;
}
.slider :where(.swiper-button-prev, .swiper-button-next):hover {
	color: #0055555e;
}
@media (max-width: 768px) {
	.slider {
		margin: 0 10px 25px;
	}
	.slider :where(.swiper-button-prev, .swiper-button-next) {
		display: none;
	}
}
.sections {
	background-color: hsl(210deg 18.18% 95.69%);
	margin: 0;
}
.sec {
	width: 16rem;
	padding: 40px 25px;
	text-align: center;
}
.sec h6 {
	margin: 15px 0px;
	font-weight: 600;
}
.sec p {
	font-size: small;
}
.sec a {
	text-decoration: none;
	color: hsl(214.05deg 100% 14.51%);
	padding-bottom: 8px;
}
.sec .hvr-underline-from-center::before {
	background-color: hsl(214.05deg 100% 14.51%);
}
#slider2 .btn-prev,
#slider2 .btn-next {
	border: 0;
	padding: 5px 15px;
	background-color: hsl(217.5deg 18.18% 91.37%);
	color: hsl(214.05deg 100% 14.51%);
	border-radius: 30px;
	margin: 0 2px;
	transition: 0.3s;
	font-size: small;
}
#slider2 .btn-prev:hover {
	color: hsl(217.5deg 18.18% 91.37%);
	background-color: hsl(214.05deg 100% 14.51%);
}
#slider2 .btn-next:hover {
	color: hsl(217.5deg 18.18% 91.37%);
	background-color: hsl(214.05deg 100% 14.51%);
}
#slider2 .card1 {
	display: flex;
	height: auto;
	box-shadow: none;
	flex-direction: column;
}

#slider2 .card1:hover {
	transform: none;
}
#slider2 .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	overflow: hidden;
	opacity: 1;
	background-color: hsla(214, 100%, 15%, 0.425);
}
#slider2 .swiper-pagination-bullet-active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: hsl(214.05deg 100% 14.51%);

	transform: scaleX(0);
	transform-origin: left center;
	animation: autoplay-loading 4s linear forwards;
}
.find-home {
	background-color: hsl(210deg 16.67% 97.65%);
}
.find-home h2 {
	color: hsl(214.05deg 100% 14.51%);
}
.find-home .icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: hsl(0deg 0% 93.73%);
	line-height: 90px;
	text-align: center;
	margin: 0px 20px;
	transition: 0.2s;
}
.find-home .icon:hover {
	line-height: 100px;
	border: 3px solid hsl(214, 100%, 15%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.find-home h5 {
	color: hsl(214.05deg 100% 14.51%);
}
.find-home .dots {
	position: absolute;
	top: 380px;
	right: -25px;
	z-index: 1;
}
.find-home h1 {
	color: hsl(214.05deg 100% 14.51%);
	font-weight: 700;
}
.agents {
	background-color: hsl(210deg 16.67% 97.65%);
}
.agents .per {
	background-color: white;
	position: relative;
}
.agents .per img {
	position: absolute;
	top: -45px;
	right: 150px;
}
.agents .per h5 {
	padding-top: 60px;
}
.agents .per span i {
	width: 25px;
	height: 25px;
}
.agents .per span {
	background-color: hsl(214.05deg 100% 14.51%);
	color: white;
	font-size: larger;
	padding: 10px;
	border-radius: 50%;
	margin: 0 5px;
	transition: 0.4s;
}
.agents .per span:hover {
	color: hsl(214.05deg 100% 14.51%);
	background-color: white;
	border: 1px solid hsl(214.05deg 100% 14.51%);
	transform: translateY(-10px);
}
footer {
	background-color: hsl(0deg 0% 93.73%);
}
footer h6 {
	color: hsl(214.05deg 100% 14.51%);
	font-weight: 800;
}
footer .brands span {
	background-color: rgba(128, 128, 128, 0.289);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	transition: 0.4s;
}

footer .brands span:hover {
	background-color: hsl(214.05deg 100% 14.51%);
	transform: translateY(-10px);
	color: white;
}
.contact .con {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	margin-right: 15px;
	background-color: hsl(214.05deg 100% 14.51%);
	color: white;
}
.forma input {
	margin: 20px 0px;
	text-align: center;
	padding: 10px;
}
.items .pro .card {
	border-radius: 20px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.185);
	transition: 0.5s;
}
.items .pro .card img {
	border-radius: 20px;
}
.items .pro .card:hover {
	transform: translateY(-10px);
}
.items .card .card-price {
	color: hsl(180deg 100% 16.67%);
	padding: 10px 0px;
	font-weight: 600;
}
.items .card .card-body .hvr-underline-from-left:before {
	background-color: hsl(180deg 100% 16.67%);
}
