/*********************
START: HERO CONTACT
*********************/
.heroContact {
    padding-block: 10rem;
}

.heroContact--contact {
    display: flex;
    justify-content: space-between;
    margin-block-start: 5rem;
}

.heroContact--form {
    width: 38%;
	padding: 2rem 1.5rem;
    min-height: 300px;
    border-radius: var(--border-radius-4);
    background-color: var(--bg-light);
}

.heroContact--text {
    width: 60%;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    display: flex;
    flex-direction: column;
    row-gap: 6rem;
    color: var(--baseLight-color);
    padding: 3rem;
}

.heroContact--text::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2);
}

.heroContact--text ul li {
    padding-block: 1.5rem;
}

.heroContact--text ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.heroContact--text ul li p{
	margin-block-start: 0.5rem;
}


.rch-lead-capture-form > h2,
.form-group label{
	display: none;
}

.form-group{
	margin-block-end: 2rem;
}

.form-group input,
.form-group textarea{
	width: 100%;
	font-size: var(--text-base);
    padding-block: 0.75rem;
	border-top: 0 !important;
	border-left: 0 !important; 
	border-right: 0 !important;
	font-family: var(--font-family);
	border-bottom: 1px solid var(--border-color);
}

.form-group textarea{
	min-height: 150px;
	margin-block-end: 0.5rem;
}

.heroContact--form button{
	margin-inline-start: auto;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding-inline: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 400;
    padding-block: 0.75rem;
    column-gap: 0.5rem;
    border-radius: var(--border-radius-6);
    background-color: var(--bg-orange);
    color: var(--baseLight-color);
	border: 1px solid var(--bg-orange);
}

.heroContact--form button:hover{
	font-family: var(--font-family);
	background-color: var(--bg-orange-dark);
}

/*********************
END: HERO CONTACT
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1320px) and (max-width: 1439px) {}

@media screen and (max-width: 1319px) {}

@media screen and (max-width: 1200px) {
	.heroContact {
		padding-block: 8rem;
	}
}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
	.heroContact {
		padding-block: 6rem;
	}
	
    .heroContact--contact {
        row-gap: 2rem;
        flex-direction: column;
    }

    .heroContact--text,
    .heroContact--form {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 425px) {}

@media screen and (max-width: 375px) {}

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