:root {
    --background-color: rgb(255, 255, 255);
    --background-color-transperent: rgba(255, 255, 255, 0.5);
    --font-color: #000000;
    --hover-color: rgb(126, 0, 199);
    --design-color: rgb(109, 11, 200);
}

.contact-wrap {
	width: 90%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 50px 0px;
}

.contact-in {
	padding: 40px 30px;
}

.contact-in:nth-child(1) {
	flex: 30%;
	background-position: center;
	background-size: contain;
	color: var(--font-color);
}

.contact-in:nth-child(2) {
	flex: 30%;
}

.contact-in h1 {
	font-size: 2.5rem;
	color: #000000;
	padding-bottom: 40px;
	font-family: 'Lobster', cursive;
	text-align: center;
}

.contact-in h2 {
	font-family: 'Lato', sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	margin-bottom: 15px;
	text-align: center;
}

.contact-in h2 i {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	color: rgb(109, 11, 200);
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}

.contact-in p {
	font-family: 'Lato', sans-serif;
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 20px;
	text-align: center;
}

.contact-in ul {
	padding: 0;
	margin: 0;
	text-align: center;
}

.contact-in ul li {
	list-style: none;
	display: inline-block;
	margin: 5px 10px;
}

.contact-in ul li a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	color: red;
	border-radius: 50px;
}

.contact-in ul li a i {
	font-size: 35px;
	line-height: 35px;
	color: rgb(109, 11, 200);
}

.contact-in ul li a i:hover {
	color: red;
}

.contact-in p a:hover {
	color: var(--hover-color);
	font-weight: 600;
}

.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	border: 2px solid var(--font-color);
	outline: none;
	padding-left: 5px;
	background: transparent;
	color: var(--font-color);
	font-size: 12px;
	font-weight: 300;
	border-radius: 5px;
}

.contact-in-input::placeholder {
	color: var(--font-color);
	font-family: 'Lato', sans-serif;
}

.contact-in-textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: 2px solid var(--font-color);
	outline: none;
	padding-top: 5px;
	padding-left: 5px;
	background: transparent;
	color: var(--font-color);
	font-size: 12px;
	font-weight: 300;
	border-radius: 5px;
}

.contact-in-textarea::placeholder {
	color: var(--font-color);
	font-family: 'Lato', sans-serif;
}

.contact-in-btn {
	font-family: 'Lobster', cursive;
	width: 100%;
	height: 40px;
	border: 2px solid var(--font-color);
	outline: none;
	background: transparent;
	color: var(--font-color);
	font-size: 18px;
	font-weight: 300;
	cursor: pointer;
	border-radius: 5px;
}

.contact-in-btn:hover {
	background: var(--hover-color);
}

.maps iframe {
	width: 100%;
	height: 60vh;
	max-height: 800px;
}

@media only screen and (max-width:480px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}
}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}
}