
/*interactive map on contact page*/
.map {
    display: flex;
    max-width: 570px;
    max-height: 100px;
    margin: 0 auto;
    border: 2px solid black;
    margin-top: 0px;
    margin-bottom: 250px;
    padding-bottom: 250px;
}
.map-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;

}


/*contact form*/
.wrapper {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 5%);
    max-width: 520px;
    padding: 30px;
    border-radius: 5px;
    background: rgba(0,0,0,0.7); 
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.wrapper .title h1 {
    color: #c5ecfd;
    text-align: center;
    margin-bottom: 25px;
}
.contact-form {
    display: flex;
    margin: 0 auto;
    
}
.input-fields {
    display: flex;
    flex-direction: column;
    margin-right: 10%;
}

.input-fields,
.msg {
    width: 48%;
}

.input-fields .input,
.msg textarea {
    margin: 10px 0;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #c5ecfd;
    padding: 10px;
    color: #c5ecfd;
    width: 100%;
    font-size: 16px;
}
button {
    width: 100%;
    background: rgb(168, 132, 33);
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
}

.msg textarea {
    height: 212px;
    font-size: 18px;
}

::-webkit-input-placeholder {
    color: #c5ecfd;
    font-size: 16px;
}

::-moz-placeholder {
    color: #c5ecfd;
}

:-ms-input-placeholder {
    color: #c5ecfd;
}

/* Footer */
.footer_index{
	position: absolute;
	bottom: -700px;
	width: 100%;
	height: 43%;
	background: rgb(168, 132, 33);
}

/*contact form on mobile view*/
@media screen and (max-width: 600px) {
	.wrapper {
		position: absolute;
		margin: 0 auto;
		top: 70%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		max-width: 250px;
		background: rgb(168, 132, 33);
		padding: 30px;
		border-radius: 5px;
		box-shadow: 0 0 10px rgb(168, 132, 33);
	}
	.contact-form {
		flex-direction: column;
	}

	.msg textarea {
		height: 80px;
	}

	.input-fields,
	.msg {
		width: 100%;
	}
	.wrapper .title h1 {
		color: #c5ecfd;
		text-align: center;
		font-size: 22px;
		margin-bottom: 25px;
	}

    .map-wrapper {
        position: absolute;
        top: 120%;
        width: 100%;
    
    }

    .footer_phone{
        position: absolute;
        top: 190%;
        width: 100%;
        height: 75%;
        background: #111;
    }
}