body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.25;
}
.wrapper {
	max-width: 576px;
	padding: 0 12px;
	margin: 0 auto;
}
.header {
	padding: 8px 0;
	margin-bottom: 20px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Inter', sans-serif;
	img {
		flex: 0 0 80px;
		object-fit: contain; 
	}
}
.logo__text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	b {
		font-size: 24px;
	}
	span {
		font-size: 17px;
		color: #4e4e4e;
	}
}
.hero {
	margin-bottom: 20px;
}
.hero__text {
	font-size: 24px;
	font-weight: 500;

	letter-spacing: 1%;
	margin-bottom: 20px;
}
.hero__block {
	padding: 16px;
	gap: 10px;

	background: #ffffff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
	text-align: center;
}
.hero__block-title {
	font-weight: 700;
	font-size: 20px;
	span {
		color: #dc4442;
	}
}
.new {
	background: url('../img/bg.avif') center/cover no-repeat, #264566;
	margin-inline: -16px;
	padding: 40px 16px;
}
.new__list {
	list-style: none;
	counter-reset: my-awesome-counter;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 10px;
	li {
		counter-increment: my-awesome-counter;
		position: relative;
		padding-left: 25px;
		line-height: 1.5;
		font-weight: 700;
		font-size: 20px;
		line-height: 130%;
		color: #ffffff;

		&::before {
			position: absolute;
			top: 50%;
			translate: 0 -50%;
			left: 0;
			content: counter(my-awesome-counter);
			font-weight: 700;
			font-size: 32px;
			line-height: 100%;
			letter-spacing: 0.04em;
			color: #002237;
			text-shadow: 0px 0px 8px #ffffff, 0px 0px 8px #ffffff;
		}
	}
}
.new__items {
	display: grid;
	gap: 10px;
}
.new-item {
	display: flex;
	flex-direction: column;
	padding: 8px 12px;
	gap: 12px;
	background: #ffffff;
	border-radius: 12px;
	&:nth-child(2) {
		opacity: 0.8;
	}
	&:nth-child(3) {
		opacity: 0.6;
	}
}
.new-item__head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 8px;
}
.new-item__left {
	display: flex;
	align-items: center;
	gap: 3px;
}
.new-item__icon {
	width: 22px;
}
.new-item__title {
	font-weight: 600;
	font-size: 17px;
	opacity: 0.9;
}
.new-item__sm {
	font-size: 8px;

	color: #656565;

	opacity: 0.9;
}
.new-item__body {
}
.new-item__back {
	font-weight: 500;
	font-size: 15px;
	line-height: 132%;
	letter-spacing: 0.06em;

	color: #626262;

	opacity: 0.9;
	b {
		color: #000;
	}
}
.new-item__card {
	font-weight: 500;
	font-size: 15px;
	line-height: 132%;
	letter-spacing: 0.06em;

	color: #c0392b;
	opacity: 0.9;
	span {
		color: #626262;
	}
}
.how {
	padding: 16px 0;
	margin-bottom: 20px;
}
.how__title {
	text-align: center;
	font-weight: 500;
	font-size: 34px;
	line-height: 115%;
	margin-bottom: 18px;
}
.how__items {
	padding-left: 30px;
	display: grid;
	gap: 24px;
	list-style: none;
	counter-reset: my-awesome-counter;
}
.how-item {
	counter-increment: my-awesome-counter;
	display: flex;
	flex-direction: column;
	padding: 12px;
	gap: 12px;
	background: #ffffff;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25);
	position: relative;
	min-height: 98px;
	&::before {
		content: '0' counter(my-awesome-counter);
		position: absolute;
		top: 50%;
		left: -30px;
		translate: 0 -50%;
		font-family: 'Inter';
		font-size: 15px;
		height: 18px;
		line-height: 1;
	}
	&::after {
		width: 14px;
		height: 90px;
		content: '';
		position: absolute;
		left: -28px;
		mask: url('../img/arrow.svg') center/contain no-repeat;
		-webkit-mask: url('../img/arrow.svg') center/contain no-repeat;
		background-color: #10375c;
		top: calc(50% + 20px);
	}
	&:last-child {
		&::after {
			display: none;
		}
	}
}
.how-item__head {
	display: flex;
	align-items: center;
	gap: 8px;
}
.how-item__icon {
	width: 24px;
	flex: 0 0 auto;
}
.how-item__title {
	font-weight: 500;
	font-size: 19px;
	line-height: 121%;
}
.how-iem__body {
	color: #2d2d2d;
}
.slider {
	margin-bottom: 20px;
}
.slider__title {
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 34px;
	line-height: 115%;
	text-align: center;
	span {
		color: #10375c;
	}
}
.swiper {
}
.swiper-wrapper {
}
.swiper-slide {
}
.slider__bottom {
	margin-top: 10px;
	ul {
		padding-inline: 12px;
		margin-inline: auto;
		display: grid;
		gap: 10px;
		list-style: none;
		counter-reset: my-awesome-counter;
		li {
			counter-increment: my-awesome-counter;
			&::before {
				content: '🔹';
			}
		}
	}
}
.attention {
	margin-bottom: 20px;
}
.attention__title {
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 36px;
	line-height: 111%;
	text-align: center;
	text-transform: uppercase;
}
.attention__text {
	padding: 10px;

	background: linear-gradient(255.63deg, #ff5957 -13.01%, #911716 106.06%);

	font-weight: 500;
	font-size: 18px;
	line-height: 122%;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}
.form {
}
.form-head {
}
.form-text {
}
.field-group {
}
.phone-eror-mess {
}
.btn {
}
.form-checkbox {
}
.description {
	font-size: 18px;
	line-height: 106%;
	margin-bottom: 20px;
	color: #2d2d2d;
}
.footer {
	background-color: #00467f;
	padding: 8px 16px;
	margin-inline: -16px;
	color: #fff;

	font-family: 'Inter';
}
.footer__top {
	margin-bottom: 16px;
}
.footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
}
.footer__logo-img {
	aspect-ratio: 1;
	width: 80px;
	flex: 0 0 auto;
	background-color: #fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
}
.footer__logo-text {
	font-size: 17px;

	color: #ffffff;

	b {
		font-weight: 700;
		font-size: 24px;
		display: block;
	}
}
.footer__copy {
	text-align: center;
	font-size: 12px;
	line-height: 167%;
}


.ticker-wrap {
  background: #c0392b;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  margin-inline: -16px;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, #c0392b, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  #c0392b, transparent); }
.ticker-track {
  display: inline-block;
  animation: ticker 18s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ticker-item .highlight {
  background: #e74c3c;
  color: #fff;
  padding: 2px 10px;
}
.ticker-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
  opacity: 0.7;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}