body {
	font-family: "IBM Plex Sans", sans-serif;
	color: #333333;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
}

body p, h1, h2, h3 {
	margin: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.landing__section {
	margin-bottom: 92px;
}

.landing-promo {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.landing-promo__content {
	display: flex;
	flex-direction: column;
}

.landing-promo__title {
	font-weight: 600;
	font-size: 62px;
	line-height: 83px;
	margin-bottom: 16px;
}

.landing-promo__subtitle {
	font-weight: 400;
	font-size: 36px;
	line-height: 50px;
	margin-bottom: 32px;
}

.base-button {
	display: flex;
	padding: 16px 24px;
	border: none;
	border-radius: 8px;
	background-color: #219653;
	color: #ffffff;
	font-weight: 500;
	font-size: 16px;
	line-height: 22.5px;
	width: fit-content;
	transition: all 0.3s ease;
	text-decoration: none;
}

.base-button:hover {
	opacity: 0.7;
}

.landing-promo__image-wrap {
	width: 347px;
	height: 347px;
}

.landing-promo__image {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.landing-service {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-service__title {
	font-weight: 500;
	font-size: 40px;
	line-height: 56px;
}

.landing-service__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 540px) {
	.landing-service__list {
		grid-template-columns: 1fr;
	}
}

.landing-service__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.landing-service__item-image-wrap {
	height: 200px;
}

.landing-service__item-image {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
}

.landing-service__item-text {
	background-color: #F2F2F2;
	border: none;
	border-radius: 12px;
	padding: 16px 32px;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	height: 100%;
}

.landing-solutions {
	background-color: #F2F2F2;
	padding: 64px 0;
}

.landing-solutions__text {
	font-weight: 500;
	font-size: 24px;
	line-height: 33.5px;
	margin-bottom: 32px;
}

.landing-solutions__content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 64px;
}

.landing-solutions__content-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-solutions__content-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 50px;
}

.landing-solutions__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.landing-solutions__item {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 24px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 16px;
	padding: 24px 32px;
}

.landing-solutions__item-text {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}

.landing-technology {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-technology__title {
	font-weight: 500;
	font-size: 40px;
	line-height: 56px;
}

.landing-technology__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 24px;
}

.landing-technology__item {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 32px;
	border: 1px solid #E0E0E0;
	border-radius: 16px;
}

.landing-contacts {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-contacts__title {
	font-weight: 500;
	font-size: 40px;
	line-height: 56px;
}

.landing-contacts__contacts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (max-width: 1024px) {
	.landing-contacts__contacts {
		grid-template-columns: 1fr;
	}
}

.landing-contacts__contacts-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.landing-contacts__contacts-item {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	background-color: #F2F2F2;
	padding: 12px 16px;
	border: none;
	border-radius: 8px;
}

.landing-contacts__contacts-item-name {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	margin: 0;
}

.landing-contacts__contacts-item-link {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	color: #333333;
	text-decoration: underline;
	transition: all 0.3s ease;
	text-underline-offset: 5px;
}

.landing-contacts__contacts-item-link:hover {
	color: #219653;
}

.landing-callback {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-callback__title {
	font-weight: 500;
	font-size: 40px;
	line-height: 56px;
}

.landing-callback__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}

.landing-callback__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	border: 1px solid #D9D9D9;
	border-radius: 8px;
	padding: 24px;
	width: 500px;
}

.landing-callback__form-input-group {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.landing-callback__form-input-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.landing-callback__form-input-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.5px;
}

.landing-callback__form-input {
	background-color: transparent;
	border: 1px solid #D9D9D9;
	border-radius: 8px;
	padding: 12px 16px;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
}

.landing-callback__form-input::placeholder {
	color: #B3B3B3;
}

.landing-callback__form-input-error {
	color: #C41E3A;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

.landing-callback__image-wrap {
	width: 362px;
	height: 362px;
}

.landing-callback__image {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.header {
	overflow: hidden;
	padding: 26px 0;
	background: #ffffff;
	height: fit-content;
}

.header__wrap {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.header__company {
	font-weight: 500;
	font-size: 32px;
	line-height: 36px;
}

.header__col {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__phone {
	font-weight: 500;
	font-size: 16px;
	line-height: 22.5px;
	transition: all 0.3s ease;
	color: #333333;
	text-decoration: none;
}

.header__phone:hover {
	color: #219653;
}

.footer {
	overflow: hidden;
	padding: 48px 0;
	background-color: #333333;
	width: 100%;
}

.footer__wrap {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__company {
	font-weight: 500;
	font-size: 22px;
	line-height: 36px;
	color: #ffffff;
	margin: 0;
}

.footer__legal-info {
	color: white;
	display: flex;
	flex-direction: column;
	margin-top: -24px;
	font-weight: 200
}

.footer__copyright {
	color: #828282;
	font-size: 14px;
	line-height: 17px;
}

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

.footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer__menu-link {
	color: #828282;
	font-size: 14px;
	line-height: 17px;
	transition: all 0.3s ease;
}

.footer__menu-link:hover {
	color: #219653;
}

.footer__production {
	color: #828282;
	font-size: 14px;
	line-height: 17px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer__production:hover {
	color: #219653;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	white-space: nowrap;
	border: 0;
}

.landing-callback__success {
	align-self: flex-start;
}

.hidden {
	display: none !important;
}
