*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:focus,
:active {
	outline: none;
}

:root {
	--primary-color: #f90;
	--secondary-color: #7ed1ff;
	--text-color: #fff;
	--background-color: #333;
  }

a:focus,
a:active {
	outline: none;
}

a {
	text-decoration: none;
}

body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #000;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	border: none;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

ul li {
	list-style: none;
}

dl,
ol,
ul {
	margin: 0;
	padding: 0;
}

label {
	margin: 0;
}

p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@font-face {
	font-family: "NeueMachina";
	src: url("NeueMachina-Bold.woff2") format("woff2");
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: "NeueMachina";
	src: url("NeueMachina-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "NeueMachina";
	src: url("NeueMachina-Regular.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
}
body {
	font-family: "NeueMachina", sans-serif;
	color: #fff;
	font-weight: 400;
}

.wrapper {
	overflow: hidden;
}

.container {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.btn {
	border-radius: 4px;
	background: #777;
	font-size: 18px;
	padding: 10px 20px;
	color: #fff;
	-webkit-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
@media (any-hover: hover) {
	.btn:hover {
		background: var(--secondary-color);
	}
}

.btn--arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

@media (max-width: 576px) {
	.btn {
		padding: 5px 15px;
		font-size: 15px;
	}
}

.btn--arrow::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23161616' d='M24.779 8.222V20.95a1 1 0 1 1-2.001 0V10.636L8.93 24.486a1 1 0 1 1-1.414-1.415l13.85-13.85-10.315.002a1 1 0 1 1 0-2.001h12.728a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	width: 32px;
	height: 32px;
}

.header {
	position: fixed;
	width: 100%;
	background: #000;
	z-index: 100;
	padding: 15px 0;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1010px;
}

.logo img {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	gap: 30px;
}
.nav ul a {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	position: relative;
}
@media (any-hover: hover) {
	.nav ul a:hover::before {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.nav ul a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #333;
	bottom: 0;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.hero {
	padding-top: 150px;
}
.hero .container {
	max-width: 1020px;
}

h1 {
	text-align: center;
	font-size: 115px;
	font-weight: 700;
	text-transform: uppercase;
}

.hero__top div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	max-width: 950px;
	margin: 0 auto 25px auto;
}

.anim-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	background: var(--primary-color);
	padding: 20px 0;
	gap: 10px;
}
.anim-row div {
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	-webkit-animation: scroll 20s linear infinite;
	animation: scroll 20s linear infinite;
	white-space: nowrap;
	font-size: 24px;
	text-transform: uppercase;
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
.hero {
	padding-top: 110px;
}

.hero__img {
	height: 530px;
	min-width: 1440px;
	margin: 0 auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.hero__img > img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hero__circle {
	position: absolute;
	top: 31%;
	left: 19%;
	width: 120px;
	height: 120px;
	-webkit-animation: rotate 8s linear infinite;
	animation: rotate 8s linear infinite;
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.list {
	margin-top: 80px;
}

.list__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.list__left {
	max-width: 590px;
}
.list__left h2 {
	font-size: 46px;
	text-transform: uppercase;
}
.list__left h2 span {
	font-weight: 700;
	background: var(--primary-color);
	padding: 10px;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

.list__right-wrap {
	position: relative;
}
.list__right-wrap::before {
	position: absolute;
	content: "";

	height: 136px;
	width: calc(100% + 60px);
	bottom: 0;
	z-index: 1;
}

.list__right {
	margin-top: -80px;
	max-height: 685px;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	border-left: 1px solid #b7b7b7;
	margin-right: -60px;
}
.list__right::-webkit-scrollbar {
	display: none;
}
.list__right li {
	padding: 45px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 140%;
	text-transform: uppercase;
	position: relative;
	white-space: nowrap;
}
.list__right li::before {
	position: absolute;
	content: "";
	background: #333;
	width: 100vw;
	height: 1px;
	left: 0;
	bottom: 0;
}

.advantages {
	background: #000;
	padding: 160px 0 180px;
	z-index: 1;
	position: relative;
}
.advantages::before {
	content: "";
	position: absolute;

	background-repeat: no-repeat;
	background-size: cover;
	width: 505px;
	height: 473px;
	left: 0;
	bottom: 0;
	pointer-events: none;
	z-index: -1;
}
.advantages .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.advantages-item {
	border-radius: 14px;
	 border: 2px solid #121212; /* Товщина, стиль і колір обведення */
    padding: 10px;          /* Відступ всередині елемента */
    margin: 20px;           /* Відступ зовні елемента */
    border-radius: 8px;     /* Закруглені кути */
	padding: 10px 20px 15px 30px;
	min-height: 182px;
}
.advantages-item.green {
	background: #777;
	color: #fff;
	padding-top: 10px;
}

.advantages-item__num {
	font-size: 46px;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 15px;
	color: fff;
}

.advantages-item__text {
	font-size: 24px;
	font-weight: 500;
	line-height: 140%;
	text-transform: uppercase;
	margin-top: 5px;
}

.advantages__title {
	font-size: 70px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	grid-column: span 2;
	text-align: right;
	line-height: 100%;
}
.advantages__title span {
	color: #777;
}

.advantages__circle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.advantages__circle img {
	-webkit-animation: rotate 8s linear infinite;
	animation: rotate 8s linear infinite;
}

.cols {
	border-bottom: 1px solid #b7b7b7;
}

.cols__wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.col {
	padding: 85px 30px 135px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	min-height: 300px;
	border-right: 1px solid #b7b7b7;
}
.col > div:last-child {
	position: relative;
}
.col:first-child .col__text {
	-webkit-transform: rotate(3deg);
	transform: rotate(3deg);
}
.col:nth-child(2) .col__text {
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
	width: 290px;
}
.col:last-child {
	border-right: none;
}
.col:last-child .col__text {
	-webkit-transform: rotate(3deg) translate(-50px, -7px);
	transform: rotate(3deg) translate(-50px, -7px);
	min-width: 355.72px;
	padding: 5px 10px;
}

.col__title {
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
}

.col__subtitle {
	font-size: 24px;
	font-weight: 500;
	line-height: 140%;
	text-transform: uppercase;
	margin-top: 15px;
}

.col__text {
	text-align: center;
	font-size: 25.142px;
	font-weight: 700;
	line-height: 140%;
	text-transform: uppercase;
	padding: 5px 10px;
	background: #777;
	margin-top: 20px;
	position: absolute;
	min-width: 272.209px;
}

.form-sec {
	padding-top: 140px;
	padding-bottom: 180px;
}

.form-sec__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-sec__left {
	max-width: 586px;
}
.form-sec__left h2 {
	font-size: 46px;
	text-transform: uppercase;
	line-height: 105%;
}

.form-sec__left-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}
.form-sec__left-btn::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23161616' d='M28.415 3.585a2 2 0 0 0-1.958-.51h-.018l-23.993 7.28a2 2 0 0 0-.311 3.725l10.615 5.17 5.162 10.609a1.982 1.982 0 0 0 1.978 1.133 1.986 1.986 0 0 0 1.75-1.438L28.915 5.56v-.019a2 2 0 0 0-.5-1.957Zm-8.686 25.396-.007.018v-.009l-5.007-10.287 6-6a1 1 0 0 0-1.414-1.414l-6 6L3.01 12.28H3h.018L26.999 5l-7.27 23.981Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	width: 32px;
	height: 32px;
}

.form-sec__right {
	width: 386px;
	max-width: 100%;
	margin-left: 120px;
	padding-top: 15px;
}

.form__input {
	margin-bottom: 16px;
	background-color: #333;
}
.form__input input {
	border: 1px solid #fff;
	font-size: 16px;
	font-weight: 400;
	width: 100%;
	height: 55px;
	padding: 0 17px;
	background-color: #333;
}

.form__btn {
	margin: 30px auto 0;
}

.footer {
	background: #000;
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.footer::before {
	content: "";
	position: absolute;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='502' height='375' fill='none'%3E%3Cg filter='url(%23a)'%3E%3Ccircle cx='439' cy='439' r='139' fill='%febf5b'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='a' width='878' height='878' x='0' y='0' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur result='effect1_foregroundBlur_1_224' stdDeviation='150'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	width: 502px;
	height: 375px;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.nav {
		display: none;
	}
	.hero__top div {
		margin-bottom: -10px;
		max-width: 611px;
	}
	.anim-row div {
		font-size: 18px;
	}
	h1 {
		font-size: 79px !important;
	}
	.container {
		max-width: 680px;
	}
	.hero .container {
		max-width: 680px;
	}
	.hero__img {
		height: 410px;
		min-width: 100%;
	}
	.list__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.list__left {
		margin-bottom: 30px;
	}
	.list__right {
		margin-top: 0;
		border-left: none;
		max-height: unset;
	}
	.advantages {
		padding: 100px 0;
	}
	.advantages .container {
		grid-template-columns: repeat(2, 1fr);
	}
	.cols__wrapper {
		grid-template-columns: 1fr;
		border-right: none;
		margin-bottom: 70px;
	}
	.col {
		border-right: none;
		min-height: 250px;
		padding: 60px 30px 78px;
	}
	.col > div:last-child {
		margin: 0 auto;
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
	}
	.form-sec {
		padding: 60px 0;
	}
	.form-sec__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.form-sec__left-btn {
		margin: 40px auto;
	}
	.form-sec__right {
		margin: 0 auto;
	}
	.list__right-wrap::before {
		display: none;
	}
}
@media (max-width: 720px) {
	.container {
		max-width: 100%;
	}
	h1 {
		font-size: 42px !important;
	}
	.hero__top div {
		font-size: 20px;
		margin-bottom: -4px;
	}
	.anim-row {
		padding: 10px 0;
	}
	.anim-row div {
		font-size: 14px;
	}
	.list__left h2 {
		font-size: 32px;
	}
	.list__right li {
		white-space: normal;
		padding: 20px 30px;
		font-size: 18px;
	}
	.list__right {
		width: 100%;
	}
	.advantages .container {
		grid-template-columns: 1fr;
	}
	.advantages__title {
		grid-column: span 1;
	}
	.advantages__title {
		font-size: 40px;
		grid-row: 1/2;
	}
	.advantages {
		padding: 60px 0;
	}
	.advantages-item {
		min-height: 140px;
	}
	.advantages-item__text {
		font-size: 20px;
	}
	.advantages-item__num {
		font-size: 38px;
	}
	.col {
		min-height: 224px;
		padding: 37px 30px 58px;
	}
	.col__subtitle {
		font-size: 20px;
	}
	.col__title {
		font-size: 24px;
	}
	.col__text {
		font-size: 18.142px;
	}
	.col > div:last-child {
		-webkit-transform: translateX(-127px);
		transform: translateX(-127px);
	}
	.form-sec__left h2 {
		font-size: 30px;
	}
} /*# sourceMappingURL=main.css.map */
