img {
	-webkit-user-select: none;
	/* Chrome all / Safari all */
	-moz-user-select: none;
	/* Firefox all */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	/* Likely future */
}

h1::selection,
h3::selection,
h5::selection,
p::selection,
button::selection {
	color: var(--primary-color);
}

ul li {
	list-style-type: none;
}

#header__menu li {
	margin-top: 7px;
	margin-bottom: 40px;
}

#map {
	border-top: 1px solid #f4f4f4;
}

#map .wrap-info {
	padding-top: 0;
	padding-right: 7vw;

}

.wrap-info h3 {
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: 30px;
}

.contact-section {
	text-align: center;
	margin: 5rem 0;
}

.contact-section__icon {
	width: 6vw;
	margin: 0 auto;
	padding-top: 0;
}

.contact-section__icon img {
	width: 100%;
}

.contact-section__title {
	margin: 2rem;
}

.contact-section__title h1 {
	font-size: 30px;
	letter-spacing: 2px;
	text-align: center;
	margin: 0 auto;
	color: var(--greyish-brown);
}

.contact-section__context {
	width: 500px;
	margin: 0 auto;
}

.contact-section__context p {
	font-family: var(--fmo);
	font-size: 12px;
	color: var(--greyish-brown);
	line-height: 2;
}

.form__context {
	font-family: var(--fmo);
	font-size: 12px;
	line-height: 1.5;
	color: var(--greyish-brown);
}

#map form input {
	border: none;
	border-bottom: 1px solid #ccc;

	margin: 15px 0;
	padding-bottom: 2px;
	width: 100%;

	outline: none;
	color: var(--dark-gray);
}

form textarea {
	border: none;
	border-bottom: 1px solid #ccc;

	outline: none;

	width: 100%;
	height: 7rem;

	margin: 15px 0;
	margin-bottom: 30px;
	color: var(--dark-gray);

}

:-ms-input-placeholder
/* Internet Explorer 10-11 */
,
::-webkit-input-placeholder

/* Edge */
	{
	font-family: var(--fmo);
	font-size: 12px;
	letter-spacing: 1px;
}

::placeholder {
	font-family: var(--fmo);
	font-size: 12px;
	letter-spacing: 1px;
}

.send-btn button {
	font-family: var(--fmo-b);
	font-size: 12px;
	letter-spacing: 1px;

	text-transform: uppercase;
	border: none;
	background-color: var(--primary-color);
	color: #fff;
	padding: 1rem 2rem;
	transition: .3s ease-in-out;
}

.send-btn button:hover {
	background-color: var(--color-hover-button);
}

input.error,
textarea.error {
	border-color: var(--primary-color) !important;
}

/* contact finish */
#contact-finish .modal-content {
	border-radius: 0 !important;
}

/* RESPONSIVE */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.contact-section__icon {
		width: 15vw;
		margin-bottom: 2rem;
	}

	.contact-section__title {
		font-size: 25px;
		width: 60vw;
		margin: 0 auto;
		margin-bottom: 1.5rem;
		line-height: 1.5;
	}

	.contact-section__context {
		width: 80vw;
		margin: 0 auto;
		font-size: 13px;
	}

	.contact-section__context p {
		width: 100%;
	}

	/* end offers responsive*/
	.map-img {
		width: 100%;
	}

	.wrap-info {
		padding-top: 2rem;
		width: 100%;
	}

	#map form input {
		width: 100% !important;
	}

	form textarea {
		width: 100% !important;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media (max-width: 1190px) and (min-width: 993px) {
	#map .map-img {
		width: 60%;
		align-self: stretch;
	}
	
	#map .map-img img {
		object-fit: cover;
		height: 100%;
	}

	#map .wrap-info {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	#map .wrap-info h3 {
		padding-bottom: 0 !important;
	}

	#map .wrap-info h3:before {
		visibility: hidden !important;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px) {
	.contact-frm-wrap {
		width: 70%;
		margin: 0 auto;
	}

	form input {
		width: 100% !important;
	}

	form textarea {
		width: 100% !important;
	}
}

