body {
	position: relative;
	background: no-repeat 50% url(../img/promo-bcg.webp);
	background-size: cover;
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	z-index: 0;
	font-family: "Raleway", "Arial", sans-serif;
	color: rgb(37, 36, 50);
}

body * {
	z-index: 2;
}

h1,
h2,
h3 {
	font-family: "Raleway", "Arial", sans-serif;
}

.container {
	margin-top: 30px;
	position: relative;
	flex: 1;
}

.content {
	position: relative;
	z-index: 2;
}
.logo img {
	max-width: 500px;
	margin-right: 50%;
	position: relative;
	bottom: -30px;
}
h1,
h2 {
	text-align: center;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.5rem;
}
.highlight {
	color: rgb(172, 0, 0);
	font-weight: bold;
	font-weight: 700;
	font-family: "Inter";
}
.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;

	border-radius: 10px;
	background-color: #000;
}

.video-container iframe,
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.arrow {
	position: fixed;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	background: linear-gradient(to right, #db136c 0%, #fc3d03 100%);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	animation: bounce 2s infinite;
	z-index: 10;
}
.arrow i {
	font-size: 20px;
	color: #fff;
}

@keyframes bounce {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, -15px);
	}
}

.results {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	color: black;
	font-family: "Inter";
	font-size: 22px;
	font-weight: 700;
	border: 0 solid transparent;
	cursor: pointer;
	text-align: center;
	z-index: 10;
}

.results::after {
	display: block;
	content: "";
	margin: 0.4em auto 0;
	width: 80px;
	height: 3px;
	background: #3b3b3b;
}
.white-result {
	width: 100%;
	height: 31px;
	background-color: white;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.form-container {
	background: #f5f8ff;
	padding: 20px;
	border-radius: 10px;
	color: rgba(94, 0, 0, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100%;
}
.form-title {
	color: rgb(37, 36, 50);
	text-align: center;
	font-weight: 700;
}
.dir {
	background: #f79e1b !important;
	color: #000 !important;
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#db136c', endColorstr='#fc3d03', GradientType=1);
	font-size: 20px;
}
.form-container .form-group {
	margin-bottom: 15px;
}
.form-container label {
	font-weight: bold;
}
.form-container input[type="text"],
.form-container input[type="email"] {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.row {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	padding-top: 20px;
	justify-content: space-around;
}

.row > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-around;
}

.sidebar {
	position: fixed;
	top: 95%;
	right: 20px;
	color: rgb(37, 36, 50);
	z-index: 99;
	white-space: nowrap;
}

.sidebar a {
	color: rgb(37, 36, 50);
	text-decoration: none;
	white-space: nowrap;
}

.sidebar a:hover {
	text-decoration: underline;
}

.circle-container {
	width: 32px;
	height: 32px;
	display: none;
	margin-top: 20px;
	margin-left: 20px;
}

.checkmark {
	display: none;
	width: 50px;
	margin-left: 5px;
	height: 50px;
}

.informations {
	display: none;
	align-items: center;
}

.success {
	display: none;
	align-items: center;
}

.text-container {
	font-size: 18px;
	margin-left: 10px;
}
.padng {
	z-index: 10;
}
.title {
	font-weight: 900;
	font-size: 1.875rem;
	line-height: 2.25rem;
}
@media (min-width: 1280px) {
	.title {
		font-size: 3rem;
		line-height: 1.25;
	}
}
.dot {
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #2981d5;
	border-radius: 50%;
	opacity: 0;
	animation: appear 0.3s ease-in-out 0.5s forwards,
		spread 0.5s ease-in-out 1.2s forwards, rotate 1s linear 1.5s infinite,
		gather 0.3s ease-in-out 2.5s forwards;
}

@keyframes appear {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes spread {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(var(--x), var(--y));
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg) translate(var(--x), var(--y)) rotate(0deg);
	}
	100% {
		transform: rotate(270deg) translate(var(--x), var(--y)) rotate(-270deg);
	}
}

@keyframes gather {
	0% {
		transform: translate(var(--x), var(--y));
		opacity: 1;
	}
	100% {
		transform: translate(0, 0);
		opacity: 0;
	}
}

#dot1 {
	--x: 0px;
	--y: -20px;
}
#dot2 {
	--x: 15px;
	--y: -15px;
}
#dot3 {
	--x: 20px;
	--y: 0px;
}
#dot4 {
	--x: 15px;
	--y: 15px;
}
#dot5 {
	--x: 0px;
	--y: 20px;
}
#dot6 {
	--x: -15px;
	--y: 15px;
}
#dot7 {
	--x: -20px;
	--y: 0px;
}
#dot8 {
	--x: -15px;
	--y: -15px;
}

.checkmark path {
	fill: #2981d5;
}

.dot-container {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.padng {
	padding-top: 100px;
}

.btn {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 25px;
	color: #fff;
	background-color: #0074ff;
	font-family: "Raleway", "Arial", sans-serif;
	font-weight: 700;
	font-size: 16px;
	border-radius: 10px;
	border: 0;
}
.btn:hover {
	background-color: #0455b6;
	color: #fff;
}
.btn:active {
	opacity: 0.8;
}
.btn:disabled {
	cursor: not-allowed;
}
.btn:disabled,
.btn:disabled:hover {
	color: #fff;
	background: #ddd;
}
.dir-btn {
	width: 100%;
}

.advantages {
	padding-bottom: 0;
	padding-top: 50px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.small-title {
	color: #ec0000;
	font-family: "Inter";
	text-align: center;
	font-size: 20px;
	font-weight: 400;
}

.advantages .title {
	text-align: center;
	margin-bottom: 80px;
}

.advantages .small-title {
	margin-bottom: 32px;
}

.advantages-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, auto);
}

.advantages-steps::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("/img/line.svg") no-repeat center / contain;
	background-position: 140px 40px;
	background-size: 70%;
	transform: rotate(0deg);
	z-index: -1;
}

.step img {
	position: relative;
	z-index: 1;
}

.step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 360px;
}

.step-text {
	padding: 16px;
}

.step-title {
	color: rgb(37, 36, 50);
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.step-desc {
	color: rgb(37, 36, 50);
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

@media (min-width: 1600px) {
	.row {
		padding-top: 20px;
		justify-content: space-around;
	}
}

@media (max-width: 991px) {
	.padng {
		padding-top: 0;
	}

	.logo img {
		max-width: 350px;
		margin-right: auto;
		position: relative;
		bottom: -12px;
	}

	.col-md-4,
	.col-md-8 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 67.333333%;
	}
	.video-container {
		padding-bottom: 75%;
	}
	.form-container {
		margin-top: 20px;
	}

	.row {
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		padding-top: 20px;
	}

	.overlay {
		top: 0;
		display: none;
	}

	.white-result {
		display: none;
		height: -99px;
	}

	.results {
		color: white;
		position: static;
	}

	.results::after {
		background: white;
	}

	.arrow {
		display: none;
	}
}
.title {
	text-transform: uppercase;
}

@media (max-width: 744px) {
	.step-desc {
		text-align: left;
	}
	.advantages {
		padding-bottom: 0;
	}

	.advantages-steps {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.advantages-steps::before {
		background: url("/img/line-horizontal.svg") no-repeat center / contain;
		background-position: 40px -110px;
	}
	.step {
		flex-direction: row;
		align-items: flex-start;
		max-width: unset;
		gap: 20px;
	}

	.step-title {
		text-align: left;
	}

	.step-desc {
		text-align: left;
	}

	.sidebar {
		position: static;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		margin-block: 8px;
	}
}

@media (max-width: 440px) {
	.advantages {
		padding-bottom: 0;
	}

	.advantages-steps::before {
		background-position: 20px -110px;
	}

	.advantages .title {
		margin-bottom: 40px;
	}

	.advantages .small-title {
		margin-bottom: 16px;
	}
	.step-desc {
		font-size: 12px;
	}
	.step img {
		width: 40px;
	}

	.step-title {
		font-size: 16px;
	}

	.devices {
		padding: 32px 20px;
	}
}
