section:nth-of-type(1) {
	display: flex;
	justify-content: center;
	padding: 80px 80px 20px 80px;
}
section:nth-of-type(1) > div > h2 {
	margin: 100px 0 30px 0;
	display: flex;
	justify-content: center;
	font-size: 3rem;
}
section:nth-of-type(1) > div > div {
	max-width: 800px;
}
/*------------ section two ----------------*/
section:nth-of-type(2) {
	display: flex;
	justify-content: center;
	padding: 0 0 80px 0;
}
section:nth-of-type(2) > figure:nth-of-type(1) {
	max-width: 500px;
	text-align: center;
	grid-column: 1; 
    grid-row: 1 / 3;
	z-index: 0;
}
.contact-form {
	max-width: 400px;
	flex: 1;
	margin: auto;
}
.contact-form label {
	display: block;
	margin-bottom: 10px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	transition: box-shadow .2s ease;
	outline: none;
	cursor: pointer;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:focus,
.contact-form input[type="email"]:hover,
.contact-form input[type="date"]:focus,
.contact-form input[type="date"]:hover,
.contact-form textarea:focus,
.contact-form textarea:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.contact-form textarea {
	min-height: 200px;
	max-height: 500px;
	resize: vertical;
	width: 100%;
}
.contact-form input[type="submit"] {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	padding: 5px 10px;
	min-width: 150px;
	align-items: center;
	align-content: center;
	cursor: pointer;
	display: block;
	margin: auto;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	outline: none;
	border: none;
    border-radius: 5px;
	transition: box-shadow .2s ease;
}
.contact-form input[type="submit"]:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
/*------------- section three ---------------*/
section:nth-of-type(3) {
	display: flex;
	justify-content: center;
	padding: 0 80px 80px;
}
section:nth-of-type(3) > div {
	max-width: 800px;
	width: 100%;
	height: 500px;
}
section:nth-of-type(3) > div > iframe {
	border: none;
	width: 100%;
	height: 100%;
}
/*------------------ section four ------------*/
section:nth-of-type(4) {
	display: flex;
	justify-content: center;
	padding: 0 80px 80px;
}
section:nth-of-type(4) > div {
	max-width: 800px;
	width: 100%;
}
section:nth-of-type(4) > div > h2 {
	font-size: 2rem;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
section:nth-of-type(4) > div > p {
	line-height: 2;
	margin-bottom: 30px;
}
section:nth-of-type(4) div > figure > h2 {
	text-align: center;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
/**/
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
	line-height: 2;
}
.contact-info ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-item img {
    width: 25px;
    height: auto;
}
.contact-item span {
    font-size: 1.25rem;
    color: #000;
}
