/*********************
START: HERO
*********************/
.hero {
    /* min-height: 100vh; */
    position: relative;
	overflow-x: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(52, 52, 54, 0.2);
}

.hero video {
    width: 100%;
    position: relative;
    z-index: 0;
    vertical-align: middle;
	min-height: 100vh;
}

.hero--content {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--baseLight-color);
    text-align: center;
    z-index: 2;
}

.hero--content>h1>span {
    background-color: var(--box-color-1);
    border-radius: var(--border-radius10);
    padding: 0.2rem 0.75rem;
    font-weight: 400;
    line-height: var(--line-height150);
	margin-inline-start: 0.25rem;
}

.hero--content>p {
    font-weight: 500;
    margin-block-start: 1rem;
    line-height: var(--line-height150);
}

.rch-search-listing-form{
	padding-block-end: 0 !important;
	margin-block-end: 0 !important;
}

.rch-search-submit-btn{
	border-radius: 0 !important;
    padding-block: 19px !important;
}
/*********************
END: HERO
*********************/

/*********************
START: TRENDING
*********************/
.trending{
	display: none;
}

.trending--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 3rem;
}

.trending .swiper {
    width: 100%;
    height: 100%;
	min-height: 20vh;
}

.trending .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

.trending .swiper-slide {
    display: flex;
    flex-direction: column;
}

.trending .swiper-slide picture{
	min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: var(--border-radius10);
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: rch-skeleton-loading 1.5s infinite;
}


@keyframes rch-skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.trending .swiper-slide picture img {
    width: 100%;
	min-height: 200px;
    height: auto;
    border-radius: var(--border-radius10);
    object-fit: cover;
	max-height: 350px;
}

.trending .swiper-slide > a{
	display: block;
	width: 100%;
	height: 100%;
}

.trending .swiper-slide picture.rch-fallback-logo-listing{
    display: block;
	width: 100%;
	height: 100%;
	padding-block: 10rem;
	padding-inline: 2rem;
	background: var(--baseDark-color);
	border-radius: var(--border-radius10);
}

.trending .swiper-slide h5, 
.trending .swiper-slide .properties > h3{
    font-weight: 600;
    margin-block: 1rem 0.5rem;
}

.trending .swiper-slide .properties--features{
	font-size: 14px;
}

.trending .swiper-slide .properties--price {
    margin-block-start: 1rem;
	font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.trending .swiper-slide .arrow--more{
	display: none;
}
/*********************
END: TRENDING
*********************/

/*********************
START: ABOUT US
*********************/
.about--content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about--img{
    width: 45%;
}

.about--img img{
    width: 100%;
	height: auto;
    border-radius: var(--border-radius10);
}

.about--text{
    width: 50%;
}

.about--text h3{
    margin-block: 1rem 1.25rem;
}

.about--text p{
    margin-block-end: 1.5rem;
}
/*********************
END: ABOUT US
*********************/


/*********************
START: NEIGHBORHOODS
*********************/
.neighborhoods--content{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.neighborhoods--content>p {
    margin-inline: auto;
    width: 70%;
    margin-block: 2rem 2.5rem;
}

.neighborhoods--content ul {
    display: flex;
    justify-content: center;
	margin-block-start: 2rem;
}

.neighborhoods--content ul li {
    margin: 18px;
    flex-basis: calc(33.33% - 36px);
}

.neighborhoods--content ul li img {
    width: 100%;
    height: auto;
    aspect-ratio: 426/600;
    object-fit: cover;
    border-radius: 250px 250px 30px 30px;
}

.neighborhoods--content ul li a >p {
    color: var(--baseDark-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-block-start: 1.25rem;
}

.neighborhoods--content a.btn {
    margin-inline: auto;
    margin-block-start: 3.75rem;
}

/*********************
END: NEIGHBORHOODS
*********************/


/*********************
START: CONVERSATION
*********************/
.conversation {
    position: relative;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 8rem;
    z-index: 1;
}

.conversation p {
    text-align: center;
    line-height: var(--line-height150);
    width: 50%;
    margin-inline: auto;
    margin-block: 2rem;
    font-family: var(--font-family-Outfit);
}

.conversation a {
    margin-inline: auto;
}

/*********************
END: CONVERSATION
*********************/
/*********************
START: OFFICE
*********************/
.office--video {
    position: relative;
    height: 500px;
    z-index: 1;
    border-radius: var(--border-radius30);
    background-color: var(--baseDark-color);
}

.office--video>video {
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius30);
}

.office--content {
    width: 45%;
    color: var(--baseLight-color);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 5;
    left: 100px;
}

.office--content p {
    margin-block: 1.5rem;
}

/*********************
END: OFFICE
*********************/

/*********************
START: EXPERIENCE
*********************/
.experience {
    position: relative;
}

.experience--content {
/*     height: 100vh; */
    position: relative;
}

.experience--content picture img {
    width: 1000px;
    height: 510px;
    object-fit: cover;
    margin-inline: auto;
    display: block;
    border-radius: 300px;
    transition: width 1.5s, height 1.5s, border-radius 1.5s;
}

.experience--content h2 {
    width: auto;
    margin-inline-start: auto;
    font-weight: 700;
    position: absolute;
    top: 100px;
    right: 100px;
    color: var(--baseLight-color);
    font-size: var(--text-7xl);
    opacity: 0;
    transition: opacity 1s;
	font-family: var(--font-family-Poppins);
}

.experience.active .experience--content h2 {
    opacity: 1;
}

.experience.active .experience-img {
    width: 100%;
    height: 100vh;
    border-radius: 0;
}

/*********************
END: EXPERIENCE
*********************/

/*********************
START: AGENTS
*********************/
.agents {
    overflow-x: hidden;
}

.agents--content .head,
.agents--content .title {
    font-weight: 500;
}

.agents--content .title {
    margin-block: 1rem;
}

.agents--content .text {
    width: 30%;
    margin-block-end: 1rem;
}

/* agents--images */
.agents--images {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
/*     margin-inline: -5%; */
    width: 100%;
    margin-block-start: 2rem;
}

.agents--images ul {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: center;
}

.agents--images ul li {
	margin: 12px;
    flex-basis: calc(25% - 24px);
    position: relative;
    border-radius: var(--border-radius10);
}

.agents--images ul li::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--border-radius10);
    background: linear-gradient(to top, rgba(229, 228, 223, 0.5), rgba(229, 228, 223, 0));
}

.agents--images ul li img {
    width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--border-radius10);
}

.notFoundAgents{
	text-align: center;
	padding-block: 2rem;
	font-weight: 700;
	font-size: 24px;
	margin-inline: auto;
}

/*********************
END: AGENTS
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
    .hero--content>h1 {
        font-size: var(--text-6xl);
    }

    .hero--content>p{
        font-size: var(--text-4xl);
    }

    .trending .swiper-slide h5,
	.trending .swiper-slide .properties > h3{
        font-size: var(--text-2xl);
    }

    .conversation p {
        font-size: var(--text-2xl);
    }

    .experience--content h2 {
        font-size: var(--text-7xl);
    }

    .agents--content .head,
    .agents--content .text {
        font-size: var(--text-xl);
    }

	.neighborhoods--content ul li a>p {
        font-size: var(--text-3xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .hero--content>h1 {
        font-size: var(--text-5xl);
    }

    .hero--content>p{
        font-size: var(--text-3xl);
    }

    .trending .swiper-slide h5,
	.trending .swiper-slide .properties > h3{
        font-size: var(--text-2xl);
    }

    .conversation p {
        font-size: var(--text-xl);
    }

    .office--content {
        width: 45%;
    }

    .experience--content h2 {
        font-size: var(--text-6xl);
        top: 80px;
    }

    .agents--content .head,
    .agents--content .text {
        font-size: var(--text-xl);
    }
	
	.neighborhoods--content ul li a>p {
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 1319px) {
    .hero--content>h1{
        font-size: var(--text-5xl);
    }

    .hero--content>p{
        font-size: var(--text-2xl);
    }

    .trending .swiper-slide h5
	.trending .swiper-slide .properties > h3{
        font-size: var(--text-xl);
    }

    .conversation p {
        width: 60%;
    }

    .office--content {
        width: 45%;
    }

    .experience--content picture img {
        width: 900px;
        height: 500px;
    }

    .experience--content h2 {
        font-size: var(--text-6xl);
        top: 70px;
    }
	
	.neighborhoods--content ul li a>p {
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 1200px) {
    .hero--content>h1{
        font-size: var(--text-4xl);
    }

    .conversation p {
        width: 70%;
    }

    .office--content {
        width: 45%;
    }

    .experience--content picture img {
        width: 850px;
        height: 480px;
    }
	
	.experience.active .experience-img{
		height: 90vh;
	}

    .experience--content h2 {
        font-size: var(--text-5xl);
        top: 60px;
    }

    .agents--content .text {
        width: 50%;
    }
	
	.neighborhoods--content ul li {
        margin: 12px;
        flex-basis: calc(33.33% - 24px);
    }
	
	.neighborhoods--content>p {
        width: 75%;
    }
}

@media screen and (max-width: 992px) {
	.rch-search-listing-form{
		padding-block-start: 0.5rem !important;
		margin-block-start: 0 !important;
	}
	
	.hero--content{
		bottom: 10%;
	}
	
	.hero--content>p{
		margin-block-start: 0.5rem;
	}
    .conversation p {
        width: 80%;
        font-size: var(--text-lg);
    }

    .office--content {
        width: 50%;
        left: 150px;
    }

    .experience--content picture img {
        width: 800px;
        height: 450px;
    }
	
    .experience.active .experience-img{
		height: 80vh;
	}

    .experience--content h2 {
        top: 50px;
        font-size: var(--text-4xl);
    }

	.neighborhoods--content ul li {
        margin: 8px;
        flex-basis: calc(33.33% - 16px);
    }
	
	.neighborhoods--content>p{
        width: 95%;
    }
	
	.neighborhoods--content ul li a>p {
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 768px) {
    .hero--content {        
		bottom: 0;
		top: 50%;
		transform: translatey(-50%);
    }

    .hero--content>h1 {
        font-size: var(--text-3xl);
    }

    .hero--content>p {
        font-size: var(--text-xl);
    }
	
	.hero video{
		width: auto;
		height: 100vh;
	}

    .conversation p {
        width: 90%;
    }

    .office--content {
        width: 55%;
        left: 50px;
    }
	
	.agents--images ul li{
		flex-basis: calc(33.33% - 24px);
	}

    .experience--content picture img {
        width: 550px;
        height: 350px;
    }

	.experience.active .experience-img{
		height: 70vh;
	}
	
    .experience--content h2 {
        top: 40px;
        font-size: var(--text-3xl);
		left: 10%;
    	right: unset;
    }

    .about--content{
        flex-direction: column;
    }

    .about--text{
        width: 100%;
        margin-block-start: 2rem;
    }
	
	.about--img {
    	width: 100%;
	}
	
    .agents--content .text {
        width: 70%;
    }
	
	.neighborhoods--content>p {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {	
    .hero--content>h1 {
        font-size: var(--text-xl);
    }

    .hero--content>p {
        font-size: var(--text-lg);
		margin-block-start: 0;
    }

    .trending--title {
        flex-direction: column;
		margin-block-end: 1rem;
    }

    .trending--title .btn {
        margin-block-start: 1rem;
    }

    .office--content {
        width: 70%;
    }

    .agents--content .head,
    .agents--content .text {
        width: 100%;
        font-size: var(--text-lg);
    }
	
	.agents--images ul li{
		flex-basis: calc(50% - 24px);
	}

    .experience--content picture img {
        width: 400px;
        height: 250px;
    }
	
	.experience.active .experience-img{
		height: 60vh;
	}

	.neighborhoods--content ul li {
        flex-basis: calc(50% - 16px);
    }
	
	.neighborhoods--content ul {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 425px) {
    .hero--content>h1 {
        font-size: var(--text-lg);
    }

    .hero--content>p {
        font-size: var(--text-bae);
    }
	
	.trending .swiper-slide h5,
	.trending .swiper-slide .properties > h3{
        font-size: var(--text-lg);
    }

    .conversation p {
        width: 100%;
    }

    .office--content {
        width: 80%;
        left: 25px;
        right: 25px;
    }

    .agents--images {
        width: 100%;
        margin-block-start: 3rem;
        margin-inline: 0;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
    }
	
	.agents--images ul li{
		flex-basis: calc(100% - 24px);
	}

    .experience--content picture img {
        width: 300px;
        height: 200px;
    }
	
	.experience.active .experience-img{
		height: 50vh;
	}

    .experience--content h2 {
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 375px) {
	.neighborhoods--content ul li {
        flex-basis: calc(100% - 16px);
    }

    .experience--content h2 {
        font-size: var(--text-xl);
    }
	
	.experience.active .experience-img{
		height: 40vh;
	}
}

/*********************
END: MEDIA
*********************/