/* Обнулюючий стиль */

* {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;}

/*============================================================================*/

/* Стилі шрифтів за замовченням */
body {
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #9C9C9C;
	background-color: #0D0D11;
}

.wrapper {
	display: flex;
	flex-direction: column;
	overflow: clip;
	min-height: 100%;
}

/*============================================================================*/

/* Встановлюємо обмеження ширини для контейнерів */
[class*="__container"] {
	max-width: 1310px;
	margin: 0 auto;
	padding: 0 15px;
}

/*============================================================================*/

/* Стилі для бургера */
.header__burger {
	display: none;
}

@media (max-width: 767.98px) {
	.header__burger {
		position: relative;
		z-index: 5;
		width: 35px;
		height: 19px;
		display: block;
		cursor: pointer;
	}
	.header__burger span {
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #fff;
		border-radius: 3px;
		left: 0;
		transition: .25s ease-in-out;
	}

	.header__burger span:nth-child(1) {
		top: 0px;
	}
	.header__burger span:nth-child(2),
	.header__burger span:nth-child(3) {
		top: 8px;
	}
	.header__burger span:nth-child(4) {
		top: 16px;
	}

	.header__burger.active span:nth-child(1),
	.header__burger.active span:nth-child(4) {
		top: 8px;
		width: 0%;
		left: 50%;
	}
	.header__burger.active span:nth-child(2) {
		transform: rotate(45deg);
	}
	.header__burger.active span:nth-child(3) {
		transform: rotate(-45deg);
	}
	body.lock {
		overflow: hidden;
	}
}

/*============================================================================*/

/* Основні стилі */

/* Стилі для кнопок*/
.button {
	display: inline-block;
	width: 160px;
	padding: 19px 0px;
	border-radius: 50px;
	background-color: #3D96F4;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.143em;
	text-align: center;
	transition: background-color 0.3s ease 0s;
	cursor: pointer;
}
.button:hover {
	background-color: #7cb0e9;
}
.button_dark {
	background-color: rgba(129, 129, 139, 0.20);
}
.button_dark:hover {
	background-color: rgba(189, 189, 199, 0.2);
}

@media (max-width: 991.98px) {
	.button {
		padding: 14px 0px;
		width: 128px;
	}
}

/* Стилі для основних кнопок-посилань */
.link {
	color: #9C9C9C;
	font-size: 10.8px;
	font-weight: 300;
	line-height: 1.6; /* 160% */
	letter-spacing: 2px;
	text-transform: uppercase;

	border-radius: 12px;
	border: 1px solid rgba(129, 129, 139, 0.20);
	padding: 11px 19px;
	display: inline-block;
}

/* Стилі для основних заголовків */
.title-page {
	color: #FFF;
	font-size: 51.2px;
	font-weight: 500;
	line-height: 1.2;
}
@media (max-width: 991.98px) {
	.title-page {
		font-size: 41px;
	}
}
@media (max-width: 767.98px) {
	.title-page {
		font-size: 30px;
	}
}

/* Стилі для основного тексту */
.text-page {
	line-height: 1.5;
}
@media (max-width: 991.98px) {
	.text-page {
		font-size: 14px;
	}
}

/*============================================================================*/

/* Стилі для header */

.header {
	padding: 32px 0px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #0d0d11b1;
	z-index: 50;
}
.header__container {
	display: flex;
	align-items: center;
	column-gap: 35px;
}

/* Стилі для лога */
.header__logo {
	flex: 0 0 148px;
	position: relative;
	z-index: 2;	
}

/* Стилі для меню */
.header__menu {
	flex: 1 1 auto;
}

.menu__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	column-gap: 35.8px;
	row-gap: 3px;
}

.menu__link {
	color: #FFF;
	font-size: 16px;
	line-height: 1.62;
	display: block;;
}
.menu__link:hover {
	text-decoration: underline;
}

/* Стилі для кошика */
.cart-header {
	display: flex;
	align-items: center;
	gap: 4.8px;
	color: #FFF;
	position: relative;
	z-index: 2;	
}
.cart-header:hover .cart-header__text {
	text-decoration: underline;
}

.cart-header__text {
	font-size: 18px;
	line-height: 1.55; 
	letter-spacing: 0.96px;
}

.cart-header__quantity {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 30px;
	height: 30px;

	border-radius: 50%;
	background: rgba(129, 129, 139, 0.30);

	font-size: 14px;
	font-weight: 500;
}

.header__button {
	flex: 0 0 auto;
	position: relative;
	z-index: 2;	
}

@media (max-width: 991.98px) {
	.header__container,
	.menu__list {
		column-gap: 25px;
	}
}

@media (max-width: 767.98px) {
	.header {
		padding: 16px 0px;
	}
	.header__container,
	.menu__list {
		column-gap: 13px;
	}
	.menu__body {
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: #0D0D11;
		left: -100%;
		top: 0;
		padding: 100px 15px 30px 15px;
		overflow: auto;
		transition: left 0.3s ease 0s;
	}
	.menu__body::before {
		content: '';
		position: fixed;
		width: 100%;
		height: 70px;
		top: 0;
		left: -100%;
		background-color: #0D0D11 ;
		z-index: 2;
	}
	.menu__body.active,
	.menu__body.active::before {
		left: 0;
	}
	.menu__list {
		row-gap: 10px;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	.menu__link {
		font-size: 32px;
	}
}

@media (max-width: 486px) {
	.header {
		padding: 16px 0px;
	}
	.header__logo {
		flex: 0 0 32px;
		overflow: hidden;
	}
	.cart-header__text {
		display: none;		
	}
	.cart-header__quantity {
		width: 40px;
		height: 42px;
		border-radius: 0;
		padding-top: 4px;
		background: url('../img/bag.svg') center / 42px no-repeat;
	}
}

/*============================================================================*/

/* Стилі блока main*/

.page {
	flex: 1 1 auto;
	margin-top: 116px;
}
@media (max-width: 767.98px) {
	.page {
		margin-top: 74px;
	}
}

/* Ситилі секціі main */

.main {
	padding: 30px 0px;
}
.main__container {
	display: flex;
	gap: 32px;
}
.main__content {
	flex: 0 1 50%;
	align-self: center;
}

.main__title {
	max-width: 506px;
	position: relative;
}
.main__title:not(:last-child) {
	margin-bottom: 28px;
}

/* Стилі декоративної частини блока main__title*/
.main__title::before {
	content: '';
	width: 123px;
	height: 123px;
	background: url('../img/decor.svg') 0 0 / 100% no-repeat;
	position: absolute;
	top: -21px;
	left: -30px;
}

.main__text {
	max-width: 491px;
}
.main__text:not(:last-child) {
	margin-bottom: 33px;
}
.main__actions {
	display: flex;
	gap: 56px;
}

/* Стилі для блока images-main */
.main__images {
	flex: 0 1 50%;
}
.images-main {
	display: flex;
	gap: 9%;
	justify-content: center;
}
.images-main__column {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.images-main__item {
	overflow: hidden;
}
.images-main__item img {
	max-width: 100%;
}

/*  Радіуси для кожної картинки блока main__images */
.images-main__item_1,
.images-main__item_4 {
	border-radius: 50% / 29%;
}
.images-main__item_2 {
	border-radius: 50% 50% 0 50%;
}
.images-main__item_3 {
	border-radius: 50% 0 50% 50%;
}

/* Адаптивність для секції main */
@media (max-width: 767.98px) {
	.main__container {
		flex-direction: column;
		align-items: center;
	}
	.main__title {
		text-align: center;
	}
	.main__title:not(:last-child) {
		margin-bottom: 20px;
	}
	.main__title::before {
		display: none;
	}
	.main__actions {
		justify-content: center;
		gap: 25px;
	}
	.images-main {
		max-width: 380px;
	}
}

/*============================================================================*/

/* Ситилі секціі clients */

.clients {
	padding: 160px 0px;
}

.clients__title {
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}
.clients__title:not(:last-child) {
	margin-bottom: 25px;
}

.clients__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	column-gap: 20px;
	row-gap: 25px;
	background: linear-gradient(90deg, #0D0D11 8.00%, rgba(0, 0, 0, 0.00) 100%);
}

.clients_item img {
	max-width: 100%;
}

@media (max-width: 991.98px) {
	.clients {
		padding: 100px 0px;
	}
}

/*============================================================================*/

/* Ситилі секціі cervices */

.cervices__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cervices__content {
	flex: 0 1 48%;
	max-width: 512px;
}

.cervices__link:not(:last-child) {
	margin-bottom: 30px;
}
.cervices__title:not(:last-child) {
	margin-bottom: 12px;
}
.cervices__text:not(:last-child) {
	margin-bottom: 33px;
}

.cervices__cards {
	flex: 0 1 52%;
}
.cards-cervices {
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.cards-cervices__column {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.cards-cervices__column:nth-child(1) {
	justify-content: flex-end;
	padding-top: 48px;
}
.cards-cervices__column:nth-child(1) {
	justify-content: flex-start;
	padding-bottom: 48px;
}

.item-cards-cervices {
	border-radius: 30px;
	background: rgba(129, 129, 139, 0.10);
	max-width: 315px;
	padding: 55px 25px 57px 25px;
}

.item-cards-cervices__icon {
	width: 66px;
	height: 66px;
}
.item-cards-cervices__icon img {
	max-width: 100%;
}
.item-cards-cervices__icon:not(:last-child) {
	margin-bottom: 15px;
}

.item-cards-cervices__block-text {
	padding-right: 43px;
}

.item-cards-cervices__title {
	color: #FFF;
	font-size: 19.2px;
	font-weight: 400;
	line-height: 1.4; /* 140% */
	max-width: 220px;
}
.item-cards-cervices__title:not(:last-child) {
	margin-bottom: 10px;
}

.item-cards-cervices__text {
	color: #81818B;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	max-width: 220px;
}

@media (max-width: 991.98px) {
	.cervices__container {
		flex-direction: column;
	}
	.cervices__content {
		text-align: center;
		max-width: none;
	}

}

@media (max-width: 524px) {
	.cards-cervices {
		flex-direction: column;
		align-items: center;
	}
	.cards-cervices__column:nth-child(1),
	.cards-cervices__column:nth-child(2) {
		padding: 0;
	} 
	.item-cards-cervices__block-text {
		padding-right: 0;
	}
	.item-cards-cervices__title,
	.item-cards-cervices__text {
		max-width: none;
	}
	.item-cards-cervices {
		max-width: none;
	}
	.item-cards-cervices__title {
		font-size: 15px;
	}
	.item-cards-cervices__text {
		font-size: 12px;
	}
	.item-cards-cervices {
		padding: 30px 15px;
	}
	

}

/*============================================================================*/

/* Ситилі секціі why */

.why {
	padding: 163px 0px;
}
.why__container {
	display: flex;
	align-items: center;
	gap: 64px;
}

.why__images {
	flex: 0 1 50%;
}
.images-why {
	display: flex;
	position: relative;
}
/* Стилі декоративної частини блока images-why */
.images-why::before {
	content: '';
	width: 123px;
	height: 123px;
	background: url('../img/decor.svg') 0 0 / 100% no-repeat;
	position: absolute;
	bottom: 0;
	left: -15px;
}

.images-why__item {
	overflow: hidden;
}
.images-why__item img {
	max-width: 100%;
}
.images-why__item_1 {
	border-radius: 90% 0 50% 50% / 50% 0 30% 30% ;
}
.images-why__item_2 {
	align-self: flex-end;
	border-radius: 50% 50% 50% 0;
}

.help__content {
	flex: 0 1 50%;
}
.why__link:not(:last-child) {
	margin-bottom: 43px;
}

.why__title {
	max-width: 560px;
}
.why__title:not(:last-child) {
	margin-bottom: 40px;
}

.why__text {
	max-width: 491px;
}
.why__text:not(:last-child) {
	margin-bottom: 39px;
}

.why__list-item {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5; /* 150% */
	position: relative;
	padding: 4px 0px 0px 42px;
}
.why__list-item:not(:last-child) {
	margin-bottom: 16px;
}
.why__list-item::before {
	content: '';
	width: 32px;
	height: 32px;
	background: rgba(129, 129, 139, 0.10) url('../img/why/mark.svg') center no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 32px;
	padding: 7.75px 8px 8.25px 8px;
}


@media (max-width: 991.98px) {
	.why {
		padding: 120px 0px;
	}
}

@media (max-width: 767.98px) {
	.why {
		padding: 80px 0px;
	}
	.why__container {
		flex-direction: column-reverse;
		gap: 25px;
	}
	.images-why {
		max-width: 350px;
	}
	.why__title {
		max-width: none;
		text-align: center;
	}
	.why__title:not(:last-child) {
		margin-bottom: 25px;
	}
	.why__text {
		max-width: none;
		text-align: center;
	}
	.why__list-item {
		font-size: 13px;
		padding-top: 7px;
	}
}

/*============================================================================*/

/* Ситилі секціі advantages */

.advantages {
	padding: 28px 0;
}
.advantages__container {
	display: flex;
	align-items: center;
	gap: 32px;
}
.advantages__cards {
	flex: 0 1 61%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 32px;
}

.item-advantages {
	border-radius: 30px;
	background: rgba(129, 129, 139, 0.10);
	padding: 40px;
}
.item-advantages_text-block {
	max-width: 278px;
	padding-right: 31px;
}

.item-advantages__title:not(:last-child) {
	margin-bottom: 32px;
}

.advantages__images {
	flex: 0 1 39%;
}
.advantages__image {
	align-self: flex-end;
	overflow: hidden;
	border-radius: 0 68% 60% 60% / 0 68% 50% 50%;
}
.advantages__image  img {
	max-width: 100%;
	transform: scale(1.01);
}

@media (max-width: 991.98px) {
	.advantages {
		padding: 10px 0;
	}
	.advantages__cards {
		gap: 20px;
	}
	.item-advantages {
		padding: 25px;
	}
	.item-advantages_text-block {
		max-width: none;
		padding-right: 0px;
	}
	.item-advantages__title:not(:last-child) {
		margin-bottom: 22px;
	}
}
@media (max-width: 767.98px) {
	.advantages__container {
		flex-direction: column;
	}

}
@media (max-width: 520px) {
	.advantages__cards {
		grid-template-columns: auto;
	}
}

/*============================================================================*/

/* Ситилі секціі reviews */


.reviews {
	padding: 96px 0px;
}

.reviews__header:not(:last-child) {
	margin-bottom: 64px;
}
.header-reviews {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.header-reviews__content {
	max-width: 737px;
}

.header-reviews__link:not(:last-child) {
	margin-bottom: 30px;
}
.header-reviews__title:not(:last-child) {
	margin-bottom: 12px;
}

.header-reviews_block-button {
	align-self: flex-end;
}


.reviews__body {
	display: flex;
	gap: 48px;
}
.reviews-item {
	border-radius: 30px;
	background: rgba(129, 129, 139, 0.10);
	padding: 64px 40px;
}

.reviews-item__clients:not(:last-child) { 
	margin-bottom: 33px;
}
.clients-reviews {
	display: flex;
	gap: 16px;
	align-items: center;
}

.clients-reviews__avatar {
	overflow: hidden;
}
.clients-reviews__avatar img {
	max-width: 100%;
}


.clients-reviews__name {
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}
.reviews-item__title:not(:last-child) {
	margin-bottom: 7px;
}
.clients-reviews__job {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6; 
}

.reviews-item__title {
	color: #FFF;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.4;
}
.reviews-item__title:not(:last-child) {
	margin-bottom: 34px;
}

.reviews-item__text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5; 
}
.reviews-item__text:not(:last-child) {
	margin-bottom: 35px;
}

.reviews-item__rating {
	display: flex;
	gap: 5px;
}
.reviews-item__star {
	width: 20px;
	height: 18px;	
	background: url('../img/reviews/star.svg') center no-repeat;
}

@media (max-width: 1050px) {
	.reviews-item__title {
		font-size: 26px;
	}
}
@media (max-width: 991.98px) {
	.reviews__body {
		flex-direction: column;
		gap: 30px;
	}
	.reviews-item {
		padding: 40px 25px;
	}
	.reviews {
		padding: 40px 0px;
	}
	.reviews__header:not(:last-child) {
		margin-bottom: 35px;
	}
}
@media (max-width: 767.98px) {
	.header-reviews {
		flex-direction: column;
	}
	.reviews-item__clients:not(:last-child) { 
		margin-bottom: 23px;
	}
	.reviews-item__title:not(:last-child) {
		margin-bottom: 19px;
	}
	.reviews-item__text:not(:last-child) {
		margin-bottom: 20px;
	}
}

/*============================================================================*/

/* Ситилі секціі reviews */

.articles {
	padding: 96px 0px;
}


.articles__header:not(:last-child) {
	margin-bottom: 64px;
}

.header-articles {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.header-articles__link:not(:last-child) {
	margin-bottom: 19px;
}

.header-articles__title {
	max-width: 400px;
}
.header-articles__title:not(:last-child) {
	margin-bottom: 12px;
}

.header-articles__text {
	max-width: 737px;
}

.header-articles_block-button {
	align-self: flex-end;
}


.body-articles {
	display: flex;
	gap: 48px;
}

.articles-item {
	border-radius: 24px;
	background: rgba(129, 129, 139, 0.10);
	overflow: hidden;
}
.articles-item__header {
	position: relative;
}

.articles-item__image img {
	max-width: 100%;
}

.articles-item__category {
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6; 

	border-radius: 0px 10px 0px 0px;
	background: rgba(129, 129, 139, 0.50);
	overflow: hidden;
	padding: 9px 10px;

	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
}

.articles-item__content {
	padding: 36px 20px 40px 26px;
	max-width: 340px;
}

.articles-item__date {
	color: rgba(129, 129, 139, 0.90);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}
.articles-item__date:not(:last-child) {
	margin-bottom: 20px;
}

.articles-item__title {
	color: #FFF;
	font-size: 19.2px;
	font-weight: 400;
	line-height: 1.4;
}
.articles-item__title:not(:last-child) {
	margin-bottom: 30px;
}

.articles-item__text {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5; 
}
.articles-item__text:not(:last-child) {
	margin-bottom: 22px;
}

.articles-item__link {
	color: #3D96F4;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
}

@media (max-width: 991.98px) {
	.articles {
		padding: 60px 0px;
	}
	.articles-item__content {
		padding: 24px 15px 24px 15px;
	}
	.body-articles {
		gap: 30px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-around;
	}
	.articles-item__date:not(:last-child) {
		margin-bottom: 16px;
	}
	.articles-item__title:not(:last-child) {
		margin-bottom: 20px;
	}

}
@media (max-width: 767.98px) {
	.articles {
		padding: 20px 0px;
	}
	.body-articles {
		flex-direction: column;
	}
	.articles-item {
		max-width: 395px;
	}
	.header-articles {
		flex-direction: column;
	}
	.articles__header:not(:last-child) {
		margin-bottom: 25px;
	}
}

/*============================================================================*/

/* Ситилі секціі reviews */

.ready {
	padding: 80px 0px;
}
.ready__container {
	border-radius: 30px;
	background: rgba(129, 129, 139, 0.10);
	padding: 52px 40px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.ready__content {
	max-width: 350px;
}

.ready__title {
	color: #FFF;
	text-align: center;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.4; 
}
.ready__title:not(:last-child) {
	margin-bottom: 16px;
}

.ready__text {
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5; 
}
.ready__actions {
	display: flex;
	gap: 32px;
}

@media (max-width: 991.98px) {
	.ready {
		padding: 30px 0px;
	}
	.ready__container {
		padding: 30px 20px;
	}
	.ready__actions {
		gap: 20px;
	}
}
@media (max-width: 767.98px) {
	.ready__container {
		flex-direction: column;
		gap: 20px;
	}
	.ready__content {
		max-width: none;
	}
	.ready__title {
		font-size: 20px;
	}
}

/*============================================================================*/

/* Ситилі для footer */

.footer__body {
	padding: 150px 0px;
}
.body-footer {
	display: flex;
	gap: 64px;
	justify-content: space-between;
}

.body-footer__column:nth-child(2),
.body-footer__column:nth-child(3) {
	padding-right: 48px;
}

.body-footer__logo:not(:last-child) {
	margin-bottom: 32px;
}


.social {
	display: flex;
	gap: 16px;
}
.social__link {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 36px;
	border: 1px solid rgba(129, 129, 139, 0.90);
	transition: all 0.3s ease-in;	
}
.social__link:hover {
	border-color: #e8e8e9;
}
.social__link img {
	max-width: 100%;
}

.body-footer__label {
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2; 
	letter-spacing: 0.05em;
}
.body-footer__label:not(:last-child) {
	margin-bottom: 31px;
}

.body-footer__text {
	font-size: 16px;
	line-height: 1.5; 
	max-width: 346px;
}
.body-footer__text:not(:last-child) {
	margin-bottom: 33px;
}


.menu-footer__item:not(:last-child) {
	margin-bottom: 24px;
}

.menu-footer__link {
	color: #9C9C9C;
	font-size: 16px;
	line-height: 1.6;
	transition: all 0.3s ease-in;	
}
.menu-footer__link:hover {
	color: #3D96F4;
}


.form-footer {
	display: flex;
	gap: 18px;
}
.form-footer__input {
	background-color: inherit;
	border-radius: 50px;
	border: 1px solid rgba(129, 129, 139, 0.30);
	padding: 15px 33px;
	max-width: 225px;
	color: #999;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.2s ease-in;
}
.form-footer__input:focus {
	border-color: #3D96F4;
}


.bottom-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 113px;
}
.bottom-footer__copy {
	font-size: 14px;
	line-height: 1.6; 
}

@media (max-width: 1130px) {
	.footer__body {
		padding: 100px 0px;
	}
	.body-footer {
		flex-wrap: wrap;
		column-gap: 30px;
		justify-content: space-around;
	}
	.body-footer__text {
		max-width: none;
	}

	.body-footer__column:nth-child(1),
	.body-footer__column:nth-child(4) {
		flex: 1 1 100%;
	}
	.body-footer__column:nth-child(2),
	.body-footer__column:nth-child(3) {
		flex: 0 1 31.333%;
	}
	.body-footer__column:nth-child(4) {
		display: flex;
		align-items: center;
		flex-direction: column;
		text-align: center;
	}
	.form-footer {
		width: 100%;
		justify-content: center;
	}
	.form-footer__input {
		width: 100%;
		max-width: none;
	}
}
@media (max-width: 767.98px) {
	.footer__body {
		padding: 35px 0px;
	}
	.form-footer {
		flex-direction: column;
		align-items: center;
	}
	.bottom-footer {
		height: 30px;
	}
}