* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
}

a {
	text-decoration: none;
	color: black;
}

li {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

body {
	background: #f0dcc9;
}

/*---------------------*/
.logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.logo img {
	max-width: 250px;
}

.header_contacts {
	margin-left: 25px;
	color: #d94e35;
}

.header_contacts a {
	color: #d94e35;
	font-weight: bold !important;
}

.contacts_social {
	font-size: 25px;
	margin-left: 5px;
}

.header_contacts_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.demo_button {
	margin: 30px 0;
}

.button {
	display: block;
	width: 220px;
	text-align: center;
	font-size: 18px;
	background: #d94e35;
	transition: .5s ease all;
	padding: 15px;
	color: white;
	border-radius: 20px;
	border: unset;
	box-shadow: 7px 10px 8px 0px rgba(34, 60, 80, 0.2);
}

.button:hover {
	background: brown;
	transform: scale(1.02);
	box-shadow: 7px 14px 8px 6px rgba(34, 60, 80, 0.2);
}

.button:active {
	transform: scale(0.9);
	box-shadow: 7px 10px 8px 0px rgba(34, 60, 80, 0.2);
}

.title_content {
	margin: 100px 0;
}

.title_content_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 22px;
}

.title_content_img {
	display: flex;
	justify-content: flex-end;
}

.title_content_text h1 {
	font-size: 50px;
}

.title_img {
	max-width: 80%;
}

.feedback {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}


/*description*/

.description {
	position: relative;
	background: #d94e35;
	color: white;
	border-image: url("wave.svg");
}

.border_wave {
	position: relative;
	top: 5px;
}
.wave_rotate{
	transform: rotate(180deg);
	top: -3px;
}

.border_wave svg path {
	fill: #d94e35;
}

.border_wave_transform {
	transform: rotate(180deg);
	top: -2px;
}

.description_text {
	font-size: 20px;
	text-align: justify;
}

.white_button {
	background: white;
	color: #d94e35;
}

.white_button:hover {
	background: #f0dcc9;
}

.feedback_description {
	align-items: flex-end;
}


/*footer*/
.footer_logo img{
	max-width: 150px;
}
/*footer*/


.submit_button{
	background: #d94e35;
	border: unset;
	color: white;
	border-radius: 10px;
	box-shadow: 7px 10px 8px 0px rgb(34 60 80 / 20%);
}
.submit_button:active{
	background: brown;
}
.submit_button:hover{
	background: brown;
	color: white;

}
/*Media screen*/
@media screen and (max-width: 1200px) {
	.container {
		width: 1140px;
	}
}

@media screen and (max-width: 1199px) {
	.container {
		width: 960px;
	}

}

@media screen and (max-width: 991px) {
	.container {
		width: 720px;
	}

	.header_contacts_list {
		justify-content: space-between;
	}

	.header_contacts {
		margin: 0;
	}

	.logo {
		justify-content: center;
	}

	.title_content_text {
		font-size: 16px;
	}

	.title_content_text h1 {
		font-size: 30px;
	}

	.header_contacts_list {
		flex-direction: column;
		align-items: end;
		justify-content: center;
	}

	.header_contacts {
		margin: 8px 0;
	}

	.contacts_social {
		font-size: 35px;
	}
}

@media screen and (max-width: 767px) {
	.container {
		width: 540px;
	}

	.header_contacts_list {
		align-items: center;
	}

	.title_content_text {
		text-align: center;
	}

	.title_content_img {
		justify-content: center;
	}

	.feedback {
		text-align: center;
		align-items: center;
	}

	.description_text {
		text-align: center;
	}
}


@media screen and (max-width: 575px) {

	.container {

		width: 100%;
		padding: 0 15px;
	}

}