/* Обнулюючий стиль */

* {padding: 0; margin: 0; border: 0;}
*, *::before, *::after {box-sizing: border-box;}
html,body {height: 100%; width: 100%; line-height: 1;}
h1, h2, h3, h4, h5, h6 {font-weight: inherit; font-size: inherit;}
a, a:visited, a:hover {text-decoration: none;}
:focus,:active {outline: none;}
a:focus, a:active {outline: none;}
ul li {list-style: none;}
img {vertical-align: top;}
button {line-height: inherit; font-weight: inherit; font-size: inherit; cursor: pointer; 
	color: inherit;background-color: transparent;}
input, textarea {font-family: inherit;}

/*============================================================================*/

.wrapper {
	display: flex;
	flex-direction: column;
	overflow: clip;
	min-height: 100%;
}

/*============================================================================*/

/* Встановлюємо обмеження ширини для контейнерів */
[class*="__container"] {
	max-width: 871px;
	margin: 0 auto;
	padding: 0 15px;
}

/*============================================================================*/

body{
	background:#e8e8e8 url('../img/bg.png') 50% 130px no-repeat;
}

.content {
	padding: 168px 0 137px 0;
}

/* Стилі блока content-header */
.content-header {
	text-align: center;
}
.content-header:not(:last-child) {
	margin-bottom: 4.0625rem;
}

.content-header__category {
	color: #748187;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.content-header__category:not(:last-child) {
	margin-bottom: 1.0714em;
}

.content-header__title {
	color: #273d46;
	font-size: 2.25rem;
	line-height: 1.3889em;
	max-width: 725px;
	margin: 0px auto;
}


/* Стилі для фото */
.content__image {
	box-shadow: 0 15px 65px rgba(15, 16, 16, 0.15);
	background-color: #fff;
	padding: 10px;
}
.content__image:not(:last-child) {
	margin-bottom: 85px;
}
.content__image img{
	max-width: 100%;
}


.content-block-text {
	padding: 0px 45px;
}

.content-block-text__main-text {
	color: #53646b;
	font-size: 1.5rem;
	line-height: 1.6666em;
}
.content-block-text__main-text:not(:last-child) {
	margin-bottom: 2em;
}
.content-block-text__main-text p:not(:last-child) {
	margin-bottom: 1.6666em;
}


.content-block-text-info-list:not(:last-child) {
	margin-bottom: 3.6875rem;
}
.content-block-text-info-list li{
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1.25rem;
	background: url('../img/icons/check.png') left no-repeat;
	padding-left: 35px;
}
.content-block-text-info-list li:not(:last-child) {
	margin-bottom: 0.75em;
}

.content-block-text-info-list li:nth-child(1){
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
	color: #273d46;
}
.content-block-text-info-list li:nth-child(2){
	color: #80b7b3;
	font-style: italic;
}
.content-block-text-info-list li:nth-child(3){
	color: #273d46;
	font-weight: 700;
}
.content-block-text-info-list li:nth-child(4){
	color: #aeb5b7;
	text-decoration: line-through;
}


.content-block-text-info__button {
	display: inline-block;
	height: 3.142857em;
	padding: 0px 2.142857em;
	position: relative;

	border-radius: 24px;
	background-color:#80b7b3;
	box-shadow: 0px 5px 1px rgba(0, 0, 0,0.5);
	
	color: #fff;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 0.875rem;
	line-height: 3.14286;
	letter-spacing: 0.2em;
	text-transform: uppercase;

	transition: all 0.3s ease;
}
.content-block-text-info__button span{
	padding: 0px 30px 0px 0px;
	background: url('../img/icons/arrow.svg') right no-repeat;
}

.content-block-text-info__button:hover{
	background-color: #562226;
}
.content-block-text-info__button:active{
	top: 3px;
	box-shadow: 0px 2px 1px rgba(0, 0, 0,0.5);
}

@media (max-width: 991.98px) {
	.content {
		padding: 100px 0;
	}
}
@media (max-width: 767.98px) {
	.content {
		padding: 60px 0;
	}
	html {
		font-size: 0.7em;
	}
	body{
		background: #e8e8e8;
	}
	.content__image:not(:last-child) {
		margin-bottom: 40px;
	}
	.content-block-text {
		padding: 0px 15px;
	}
}