@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
	font-family: 'GothamPro';
	src: url('../fonts/gothampro_black.ttf') format('ttf');
	font-weight: 900;
	font-style: normal;
}

html,
body {
	font-family: 'Manrope', sans-serif;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

.container {
	max-width: 1210px;
	width: 100%;
	padding: 0px 15px;
	margin: 0px auto;
}
.intro__subtitle h2 {
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}
.intro__title h1 {
	font-size: 54px;
	line-height: 1.1;
	font-weight: 400;
	text-align: center;
}
.intro__title i {
	font-style: italic;
}
.intro__btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn {
	font-weight: 600;
	background-color: rgb(46, 205, 117);
	font-size: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #fff;
	text-align: center;
	max-width: 260px;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s linear;
	cursor: pointer;
}
.btn:hover {
	transform: scale(1.05);
}
.video {
	margin-top: 60px;
}
.video__title {
	color: rgb(228, 59, 44);
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	max-width: 600px;
	margin: 0px auto;
}
.video__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	gap: 40px;
}
.video__left {
	max-width: 320px;
	width: 100%;
}
.video__left video {
	width: 100%;
	height: 100%;
}
.video__right {
	max-width: 520px;
	width: 100%;
}
.video__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 12px;
}
.video__item:last-child {
	margin-bottom: 0px;
}
.video__item span:first-child {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.video__item span img {
	margin-right: 10px;
}
.video__subtitle {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 40px;
}
.video .btn {
	margin-top: 30px;
}
main {
	margin: 60px 0px;
}
.modal {
	display: none;
}
.modal__wrap {
	padding: 30px;
}
.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
}
.modal__close svg {
	cursor: pointer;
	transition: all 0.2s linear;
}
.modal__close:hover svg {
	transform: rotate(90deg);
}
.modal__title {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}
.modal__text {
	font-size: 14px;
	line-height: 1.5;
	color: #b8b8b8;
	text-align: center;
}
.modal__form {
	padding-top: 30px;
}
input {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
	padding: 12px 20px;
}
input:focus {
	outline: none;
	border: 1px solid rgba(0, 0, 0, 0.6);
}
.modal__form input {
	margin-bottom: 20px;
}
.modal__form p {
	position: relative;
}
input[type='submit'] {
	background: rgb(46, 205, 117);
	color: #fff;
	font-weight: 600;
	height: 60px;
	cursor: pointer;
	transition: all 0.2s linear;
	border: none;
}
input[type='submit']:hover {
	border: none;
	filter: brightness(112%);
}
.wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0px;
}
video::-webkit-media-controls {
	display: none;
}
video {
	pointer-events: none;
}
.footer {
	text-align: center;
	color: rgb(45, 45, 45);
	font-size: 13px;
	line-height: 1.5;
}
.footer a {
	color: #b8b8b8;
	text-decoration: none;
	margin: 0px 5px;
}
.footer p {
	margin: 15px 0px;
}
.footer p:first-child {
	font-size: 15px;
}
@media (max-width: 1080px) {
	.intro__title h1 {
		font-size: 28px;
	}
	.intro__subtitle h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.btn {
		font-size: 20px;
	}
}
@media (max-width: 680px) {
	.video__wrap {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.video__left {
		margin: 0px auto;
	}
	.video__subtitle {
		font-size: 28px;
	}
	.video__item {
		font-size: 18px;
	}
}
