/* INDEX
----------------------------------------------------------------------------------------
01. Contact Us Page Css

-------------------------------------------------------------------------------------- */


/************************************/
/***    01. Contact Us Page Css   ***/
/************************************/

.page-contact-us{
    padding: 100px 0 70px;
}

.contact-info-item{
	position: relative;
    border: 1px solid var(--divider-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.contact-info-item:before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    height: 100%;
    width: 100%;
    z-index: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover:before{
    top: 0;
	opacity: 1;
}

.contact-info-item .icon-box{
	position: relative;
    display: inline-block;
    margin-bottom: 20px;
	padding: 10px 10px 0 0;
	z-index: 1;
}

.contact-info-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	z-index: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
    background-color: var(--white-color);
}

.contact-info-item .icon-box img{
	position: relative;
	max-width: 45px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.contact-info-content{
	position: relative;
	z-index: 1;
}

.contact-info-content h3{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p{
	color: var(--white-color);
}

.contact-form-section{
    background: var(--secondary-color);
    padding: 100px 0;
}

.contact-form-content{
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.contact-form-content .section-title{
    margin-bottom: 0;
}

.contact-form .form-control{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 0px;
	padding: 18px 20px;
	box-shadow: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 550px;
    width: 100%;
}
