:root {
	--font-family: 'Open Sans', sans-serif;
	--content-width: 1300px;
	--container-offset: 20px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--content-width-l: 1140px;
	--container-offset-l: 20px;
	--container-width-l: calc(
		var(--content-width-l) + (var(--container-offset-l) * 2)
	);
	--light-color: #fff;
	--main-color: #eb1f26;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
	opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
	opacity: 0.4;
	pointer-events: none;
}
*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	color: #fff;
	background-color: #000;
}
.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
.page__body {
	margin: 0;
	min-width: 360px;
	min-height: 100%;
	font-size: 16px;
}
img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
a {
	text-decoration: none;
}
.site-container {
	overflow: hidden;
}
.is-hidden {
	display: none !important;
}
.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.input-reset {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	background-color: #fff;
}

button {
	cursor: pointer;
	border: none;
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
	display: none;
}
.visually-hidden {
	position: absolute;
	overflow: hidden;
	margin: -1px;
	border: 0;
	padding: 0;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
}
.container {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width);
}
.container-l {
	margin: 0 auto;
	padding: 0 var(--container-offset-l);
	max-width: var(--container-width-l);
}
.centered {
	text-align: center;
}
.dis-scroll {
	position: fixed;
	left: 0;
	top: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
}
.page--ios .dis-scroll {
	position: relative;
}
.header {
	width: 100%;
	position: absolute;
	z-index: 100;
}
.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 0;
}
.header_nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	list-style: none;
}
.header_nav__item {
	position: relative;
}
.header_nav__item a {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header_nav__item a:hover,
.header_nav__item.active a {
	color: var(--main-color);
}
.header_nav__item.active::after {
	content: '';
	position: absolute;
	top: -45px;
	width: 130%;
	height: 4px;
	border-radius: 0 0 10px 10px;
	background-color: var(--main-color);
	left: -15%;
}
.header_nav__item-btn {
	margin-left: 40px;
}
.logo {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.logo:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
@media screen and (max-width: 1230px) {
	.header_nav__item-btn {
		margin-left: 0;
	}
	.header_nav__list {
		gap: 15px;
	}
	.logo {
		max-width: 144px;
	}
}
.burger {
	display: none;
	--burger-width: 22px;
	--burger-height: 16px;
	--burger-line-height: 2px;
	position: relative;
	border: none;
	padding: 0;
	width: var(--burger-width);
	height: var(--burger-height);
	color: #fff;
	background-color: transparent;
	cursor: pointer;
	border-radius: 3px;
}
.burger::after,
.burger::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	border-radius: 3px;
}
.burger::before {
	top: 0;
}
.burger::after {
	width: 13px;
	left: auto;
	right: 0;
	top: calc(100% - var(--burger-line-height));
}
.burger__line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
	color: rgba(255, 255, 255, 0.7);
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
	color: rgba(255, 255, 255, 0.7);
	width: 100%;
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 982px) {
	.burger {
		display: block;
	}
	.header__nav {
		display: none;
	}
	.logo {
		max-width: 122px;
	}
	nav.header__nav.menu--active {
		width: 100%;
		display: block;
		position: absolute;
		background: #000;
		top: 80px;
		left: 0;
	}
	nav.header__nav.menu--active .header_nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		text-align: start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		padding-left: 20px;
		gap: 20px;
	}
	nav.header__nav.menu--active .header_nav__list .btn--primary {
		width: 100%;
	}
	nav.header__nav.menu--active .header_nav__list .header_nav__item-btn {
		width: calc(100% - 20px);
	}
	nav.header__nav.menu--active
		.header_nav__list
		.header_nav__item.active::after {
		top: auto;
		left: 2px;
		bottom: -10px;
	}
}
.footer {
	padding-top: 60px;
}
.footer__top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2fr 1fr 1fr;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
}
.footer__col-title {
	color: #fff;
	font-family: Saira;
	font-size: 24px;
	font-weight: 700;
	line-height: 38px;
	margin-bottom: 12px;
}
.footer__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding-left: 0;
	list-style: none;
	margin-top: 0;
}
.footer__list a {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer__list a:hover {
	color: var(--main-color);
}
.form-mail__footer {
	max-width: 433px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 6px 6px 6px 24px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.form-mail__footer input {
	background: 0 0;
	border: 0;
	outline: 0;
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-left: 18.27px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.form-mail__footer input:focus {
	outline: 0;
}
.form_footer__wrapper {
	margin-top: 88px;
}
.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 70px;
}
.footer__bottom__links a {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 17px;
}
.link-with-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 14.5px;
}
.link-with-icon img {
	margin-top: 5px;
}
.contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 4px;
}
.contact {
	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;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	max-width: 42px;
	min-width: 42px;
	width: 42px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	padding-top: 3px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.contact:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 921px) {
	.footer__top {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.form_footer__wrapper {
		margin-top: 0;
	}
}
@media screen and (max-width: 721px) {
	.footer__top .btn--primary {
		width: auto !important;
		padding: 13px 20px !important;
	}
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		gap: 22px;
	}
	.footer__bottom > p {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.footer__bottom .footer__bottom__links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
	}
	.form-mail__footer > div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.form-mail__footer input {
		margin-left: 4px;
	}
}
.btn--primary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	border-radius: 40px;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#c30000),
		to(#eb1f26)
	);
	background: linear-gradient(90deg, #c30000, #eb1f26 100%);
	padding: 6px 6px 6px 42px;
	gap: 24px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.btn--primary span {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}
.btn--primary:hover {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#a30000),
		to(#c8161c)
	);
	background: linear-gradient(90deg, #a30000, #c8161c 100%);
}
.btn--transparent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	border-radius: 40px;
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 6px 6px 6px 42px;
	gap: 24px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.btn--transparent span {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}
.btn--transparent:hover {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#a30000),
		to(#c8161c)
	);
	background: linear-gradient(90deg, #a30000, #c8161c 100%);
}
.btn__arrow {
	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;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	width: 42px;
	height: 42px;
}
.btn--secondary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--main-color);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	border-radius: 40px;
	background: #fff;
	padding: 6px 6px 6px 42px;
	gap: 24px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.btn--secondary span {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
	text-wrap: nowrap;
}
.btn--secondary .btn__arrow {
	background: rgba(235, 31, 38, 0.1);
}
.choose__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}
.choose__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	list-style: none;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.choose__item {
	max-width: 528px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 28px 22px 28px 33px;
}
.choose__item .choose_item__content h3 {
	color: #fff;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 8px;
	margin-top: 0;
}
.choose__item .choose_item__content p {
	margin-top: 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 0;
}
.choose-image {
	max-width: 60% !important;
	border-radius: 20px !important;
	-o-object-fit: cover;
	object-fit: cover;
}
.section__btns {
	margin-top: 50px;
	width: 100%;
	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;
	gap: 20px;
}
.choose-grid__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.choose-grid__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 45px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	padding: 35px 22px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.choose-grid__item h3 {
	color: #fff;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	margin: 0;
}
.choose-grid__item p {
	margin-top: 8px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
@media screen and (max-width: 1220px) {
	.choose-image {
		max-width: 50%;
	}
}
@media screen and (max-width: 921px) {
	.choose__main {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.choose__item {
		max-width: 100%;
		width: 100%;
	}
	.choose__list {
		width: 100%;
	}
	.choose-image {
		margin: 0 auto;
		max-width: 90% !important;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
}
@media screen and (max-width: 741px) {
	.choose__item .choose_item__content h3,
	.choose__item .choose_item__content p {
		font-size: 14px;
	}
	.section__btns {
		margin-top: 24px;
	}
	.section__btns a {
		width: 100%;
	}
	.choose-grid__wrapper {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.choose-grid__item h3,
	.choose-grid__item p {
		font-size: 14px;
	}
}
.message__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	padding: 50px 100px;
}
.message__wrapper .message__content h2 {
	max-width: 546px;
	color: #fff;
	font-family: Orbitron;
	font-size: 46px;
	font-weight: 700;
	line-height: 120%;
	margin-top: 0;
	margin-bottom: 8px;
}
.message__wrapper .message__content p {
	margin-top: 0;
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	max-width: 364px;
}
@media screen and (max-width: 921px) {
	.message__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}
	.message__wrapper .btn--secondary,
	.message__wrapper .message__content {
		width: 100%;
	}
}
@media screen and (max-width: 721px) {
	.message__wrapper {
		padding: 32px 20px;
	}
	.message__wrapper .message__content h2 {
		font-size: 30px;
		margin-top: 0;
		margin-bottom: 24px;
	}
	.message__wrapper .message__content p {
		font-size: 14px;
	}
}
.gallery__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	list-style: none;
	padding-left: 0;
}
.gallery__list li {
	overflow: hidden;
	border-radius: 10px;
}
.gallery-image {
	height: 100%;
	border-radius: 10px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.gallery-image:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
@media screen and (max-width: 721px) {
	.gallery__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}
.price__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	list-style: none;
	padding-left: 0;
	margin-top: 80px;
	margin-bottom: 0;
	padding-bottom: 50px;
}
.price__item {
	position: relative;
	max-width: 364px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	padding: 0 24px 24px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.price__item:hover {
	-webkit-box-shadow: 0 2px 30px 0 rgba(235, 31, 38, 0.5);
	box-shadow: 0 2px 30px 0 rgba(235, 31, 38, 0.5);
}
.price__item.most-popular-block {
	-webkit-box-shadow: 0 4px 50px 0 rgba(235, 31, 38, 0.5);
	box-shadow: 0 4px 50px 0 rgba(235, 31, 38, 0.5);
}
.price__item .price-title__wrapper {
	border-radius: 10px;
	background: #fff;
	text-align: center;
	padding: 19px 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.price__item .price-title__wrapper .price-title {
	color: #eb1f26;
	font-family: Orbitron;
	font-size: 22px;
	font-weight: 700;
	line-height: 120%;
	margin: 0;
}
.price__item .price-price {
	color: #fff;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	margin-bottom: 22px;
	margin-top: 0;
}
.price__item .price__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	padding: 17px 24px 17px 40px;
	list-style: none;
}
.price__item .price__items li {
	position: relative;
	padding-left: 14px;
}
.price__item .price__items li::after {
	content: url(../img/svg/list-style.svg);
	position: absolute;
	left: -14px;
	top: 1px;
	width: 16px;
	height: 16px;
}
.price__item .btn--primary {
	width: 100%;
	margin-top: 24px;
}
.most-popular {
	position: absolute;
	border-radius: 10px;
	background: #eb1f26;
	padding: 7px 20px;
	z-index: 20;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -47px;
}
.most-popular p {
	color: #fff;
	font-family: Saira;
	font-size: 14px;
	font-weight: 700;
	line-height: 120%;
	margin: 0;
}
.price-help {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 24px;
	text-align: center;
	margin-top: 50px;
}
.price-help h3 {
	color: #fff;
	font-family: Orbitron;
	font-size: 22px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 0;
	margin-top: 0;
}
.price-help a {
	margin: 0 auto;
}
@media (max-width: 1180px) {
	.price__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 1180px) {
	.price-swiper__pagination {
		display: none !important;
	}
}
@media screen and (max-width: 921px) {
	.price__item {
		max-width: none;
	}
}
@media screen and (max-width: 741px) {
	.price__item .price-price,
	.price__item .price-title__wrapper .price-title {
		font-size: 18px;
	}
}
.blog-main {
	display: flex;
	flex-direction: column;
	max-width: 558px;
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 10px 24px;
}
.blog-main .blog-main-image {
	width: 100%;
	height: 245px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
}
.blog-main .blog-main__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 14px;
	margin-top: 16px;
	margin-left: 14px;
	margin-right: 14px;
	flex: 1;
}
.blog-main h3 {
	max-width: 430px;
	margin-top: 0;
	margin-bottom: 0;
}
.blog-main h3 a {
	color: #fff;
	font-family: Saira;
	font-size: 24px;
	font-weight: 800;
	line-height: 150%;
}
.blog-main__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 18px;
	margin-top: auto;
}
.blog-main__info .blog-read-more {
	position: relative;
	color: #eb1f26;
	font-family: Saira;
	font-size: 14px;
	font-weight: 700;
	line-height: 130%;
}
.blog-main__info .blog-read-more::after {
	position: absolute;
	content: url(../img/svg/ArrowLeftRed.svg);
	width: 8.79px;
	height: 11.66px;
	margin-left: 13px;
	-webkit-box-align: center;
	bottom: 45%;
}
.blog-main__info .blog-date {
	position: relative;
	color: #fff;
	font-family: Saira;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}
.blog-main__info .blog-date::before {
	content: url(../img/svg/calendar.svg);
	position: absolute;
	width: 16px;
	height: 16px;
	top: 2px;
	left: -32px;
}
.blog__list {
	margin-top: 0;
	margin-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	max-width: 558px;
	list-style: none;
	padding-left: 0;
}
.blog__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 22px;
	padding: 10px 24px 10px 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
}
.blog__item .blog_item__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.blog__item .blog_item__content h3 {
	max-width: 311px;
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 800;
	line-height: 150%;
	margin-top: 5px;
	margin-bottom: 25px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.blog__item .blog_item__content .blog-main__info {
	margin-bottom: 5px;
}

.blog__item > img {
	border-radius: 10px !important;
}

.blog-section__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: stretch;
	gap: 20px;
}
@media screen and (max-width: 982px) {
	.blog-section__main {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.blog-section__main .blog-main {
		width: 100%;
		max-width: none;
	}
	.blog-section__main .blog-main .blog-main-image {
		-o-object-fit: cover;
		object-fit: cover;
		height: 320px;
	}
	.blog-section__main .blog__list {
		width: 100%;
		max-width: none;
	}
	.blog-section__main .blog__list .blog_item__content h3 {
		max-width: none;
	}
}
.accordion_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.accordion_list .accordion_item {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	overflow: hidden;
}
.accordion_list .accordion_item .accordion-arrow {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.accordion_list .accordion_item.active .accordion_content {
	max-height: 500px;
	padding: 5px 25px;
}
.accordion_list .accordion_item.active .accordion_header {
	padding: 20px 25px 5px;
}
.accordion_list .accordion_item.active .accordion-arrow {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.accordion_list .accordion_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	background: 0 0;
	border: none;
	padding: 20px 25px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 30px;
}
.accordion_list .accordion_header .accordion_number {
	color: #eb1f26;
	font-family: Fredoka, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 140%;
}
.accordion_list .accordion_header .accordion_title {
	text-align: left;
	color: #fff;
	font-family: Saira;
	font-size: 22px;
	font-weight: 600;
	line-height: 140%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.accordion_list .accordion_content {
	max-height: 0;
	overflow: hidden;
	padding: 0 25px;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: #ccc;
}
.accordion_list .accordion_content p {
	margin-top: 0;
}
@media screen and (max-width: 741px) {
	.accordion_list .accordion_header {
		padding: 14px 20px 16px;
	}
	.accordion_list .accordion_header .accordion_number {
		font-size: 30px;
	}
	.accordion_list .accordion_header .accordion_title {
		font-size: 18px;
	}
	.accordion_list .accordion_content p {
		color: rgba(255, 255, 255, 0.7);
		font-family: Saira;
		font-size: 14px;
		font-weight: 400;
		line-height: 160%;
	}
}
.services__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style: none;
	margin: 0;
	-webkit-column-gap: 24px;
	-moz-column-gap: 24px;
	column-gap: 24px;
	row-gap: 50px;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0;
}
.service .service__content {
	max-width: 316px;
}
.service .service__content h3 {
	color: #fff;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	margin-top: 13px;
	margin-bottom: 10px;
}
@media screen and (max-width: 541px) {
	.service .service__content h3 {
		font-size: 18px;
	}
}
.service .service__content p {
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-top: 0;
}
.service-image {
	width: 100%;
	height: 240px;
	border-radius: 10px;
}
@media screen and (max-width: 541px) {
	.service .service__content p {
		font-size: 14px;
	}
	.service-image {
		height: 180px;
	}
}
.arrow-service__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 50px;
	min-width: 50px;
	max-height: 50px;
	min-height: 50px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: rgba(235, 31, 38, 0.2);
	transition: .3s;
}

.arrow-service__wrapper:hover {
	background: rgba(235, 31, 38, 0.3);
}

.arrow-service {
	height: 14.48px;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 920px) {
	.services__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
	}
	.services-swiper {
		padding-bottom: 80px;
	}
}
@media (min-width: 921px) {
	.services-swiper__pagination {
		display: none !important;
	}
}
.services-swiper__wrapper {
	margin-top: 50px;
}
.hero {
	position: relative;
	height: 880px;
	background-size: cover;
	background-position: bottom;
}
.hero__secondary {
	padding-top: 150px;
	padding-bottom: 100px;
	position: relative;
	height: auto;
	background-size: cover;
	background-position: bottom;
}
.hero__secondary .hero__wrapper {
	height: auto;
}
.hero__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 980px;
}
.hero-title {
	font-family: Orbitron;
	font-size: 66px;
	font-weight: 700;
	line-height: 120%;
	margin-top: 0;
	margin-bottom: 0;
}
.hero__desc {
	position: relative;
	max-width: 700px;
	backdrop-filter: blur(5px);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(235, 31, 38, 0.2)),
		color-stop(81.259%, rgba(235, 31, 38, 0.1)),
		to(rgba(235, 31, 38, 0))
	);
	background: linear-gradient(
		90deg,
		rgba(235, 31, 38, 0.2),
		rgba(235, 31, 38, 0.1) 81.259%,
		rgba(235, 31, 38, 0) 100%
	);
	padding: 15px 30px;
	margin: 24px 0;
}
.hero__desc :first-child {
	margin-top: 0;
}

.hero__desc :last-child {
	margin-bottom: 0;
}

.hero__desc p {
	color: #fff;
	font-family: Saira;
	font-size: 18px;
	font-weight: 400;
	line-height: 160%;
	margin-bottom: 0;
}
.hero__desc h3 {
	font-family: Saira;
	font-size: 20px;
	font-weight: 700;
	line-height: 160%;
	margin-top: 6px;
}
.hero__desc::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 100%;
	border-radius: 0 10px 10px 0;
	background: #eb1f26;
	top: 0;
	left: 0;
}
.hero__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}
.hero__btns a {
	height: 60px;
}
.scroll-bottom {
	position: absolute;
	bottom: 50px;
}
@media screen and (max-width: 721px) {
	.hero {
		height: auto;
		min-height: 100vh;
	}
	.hero .hero__wrapper {
		height: auto;
		padding-top: 130px;
		padding-bottom: 90px;
	}
	.hero .hero__wrapper .hero-title {
		font-size: 30px;
	}
	.hero .hero__wrapper .hero__desc h3,
	.hero .hero__wrapper .hero__desc p {
		font-size: 14px;
	}
	.hero .hero__wrapper .hero__btns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.hero .hero__wrapper .hero__btns a {
		width: 100%;
	}
	.scroll-bottom {
		bottom: 20px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
.hero__nav {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 6px 20px;
	border-radius: 40px;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(195, 0, 0, 0.1)),
		to(rgba(235, 31, 38, 0.1))
	);
	background: linear-gradient(
		90deg,
		rgba(195, 0, 0, 0.1),
		rgba(235, 31, 38, 0.1) 100%
	);
	margin-bottom: 40px;
}
.hero__nav span:not(:last-child) {
	margin-right: 34px;
	position: relative;
}
.hero__nav span:not(:last-child)::after {
	position: absolute;
	right: -27px;
	top: 37%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content: url(../img/svg/tr.svg);
}
.hero__nav span {
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}
.hero__nav span.active {
	color: #fff;
	font-weight: 700;
}
.reviews__carousel {
	padding-bottom: 40px;
	overflow: visible;
}
.review-card {
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.review-card:hover {
	background: rgba(255, 255, 255, 0.075);
}
.review-card .quote {
	font-size: 32px;
	color: #ff3c3c;
	margin-bottom: 10px;
}
.review-card .stars {
	color: gold;
	margin-bottom: 10px;
}
.review-card p {
	color: #797979;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-top: 24px;
	margin-bottom: 24px;
}
.review-card .author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.review-card .author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}
.review-card .author span {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
}
.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.25);
	opacity: 0.5;
}
.swiper-pagination-bullet-active {
	background: #eb1f26;
	opacity: 1;
}
.slide_review__header {
	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;
	gap: 20px;
}
.text-with-image__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	gap: 60px;
}
.text-with-image__wrapper .text-with-image__content .section-title {
	text-align: left;
	margin-bottom: 55px;
}
.text-with-image__wrapper .text-with-image__content .section-title::after {
	left: 20px;
}
.text-with-image__wrapper .text-with-image__content p {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	margin-top: 0;
}
@media screen and (max-width: 921px) {
	.text-with-image__wrapper {
		gap: 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.text-with-image__wrapper .text-with-image__content .section-title {
		display: none;
	}
}
.include__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 87px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}
.include__list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}
.include__list li span {
	color: #eb1f26;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
}
.include__list li h3 {
	color: #fff;
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
@media screen and (max-width: 921px) {
	.include__list {
		gap: 40px;
	}
}
@media screen and (max-width: 721px) {
	.include__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 20px;
	}
	.include__list li h3 {
		margin-top: 0;
		margin-bottom: 0;
	}
}
.stats__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	list-style: none;
	text-align: center;
	margin: 0;
	padding-left: 0;
}
.stats__list li h3 {
	font-family: Orbitron;
	font-size: 40px;
	font-weight: 700;
	line-height: 120%;
	margin: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.stats__list li h3:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.stats__list li p {
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-top: 4px;
	margin-bottom: 0;
}
@media screen and (max-width: 721px) {
	.stats__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.stats__list li h3 {
		font-size: 28px;
	}
	.stats__list li p {
		font-size: 14px;
	}
}
.team__list {
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.team__list .team__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.team__list .team__item img {
	width: 344px;
	height: 230px;
	border-radius: 12px;
}
.team__list .team__item .team_item__content {
	text-align: center;
}
.team__list .team__item .team_item__content h3 {
	margin: 0;
	color: #fff;
	font-family: Orbitron;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
}
.team__list .team__item .team_item__content p {
	margin-top: 10px;
	color: #fff;
	font-family: Saira;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}
@media screen and (max-width: 721px) {
	.team__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 484px) {
	.team__list {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.team__list .team__item img {
		width: 100%;
	}
}
.tabs-portfolio .tabs-nav {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 5px;
	overflow-x: auto;
	position: relative;
	margin: 0 auto 50px;
}
.tabs-portfolio .tabs-nav .tab-btn {
	background: 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: Saira;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	padding: 10px 40px;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 1;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.tabs-portfolio .tabs-nav .tab-btn.active {
	color: #fff;
	font-weight: 700;
	line-height: 25px;
}
.tabs-portfolio .tabs-nav .tab-indicator {
	position: absolute;
	border-radius: 40px;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#c30000),
		to(#eb1f26)
	);
	background: linear-gradient(90deg, #c30000, #eb1f26 100%);
	-webkit-transition: left 0.3s, width 0.3s;
	transition: left 0.3s, width 0.3s;
	z-index: 0;
}
@media (min-width: 722px) {
	.tabs-portfolio .tabs-nav .tab-indicator {
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		height: 50px;
	}
}
@media (max-width: 721px) {
	.tabs-portfolio .tabs-nav .tab-indicator {
		left: 0;
		top: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		width: 100%;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
}
.tabs-portfolio .tabs-content {
	margin-top: 20px;
}
.tabs-portfolio .tabs-content .tab-pane {
	display: none;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.tabs-portfolio .tabs-content .tab-pane.active {
	display: block;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.tab-portfolio__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
}
@media (max-width: 721px) {
	.tab-portfolio__grid {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}
.tab-portfolio__grid .tab-portfolio-img__wrapper {
	overflow: hidden;
	border-radius: 10px;
}
.tab-portfolio__grid img {
	width: 100% !important;
	border-radius: 10px !important;
	-webkit-transition: 0.3s !important;
	transition: 0.3s !important;
	cursor: pointer !important;
}
.tab-portfolio__grid img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.image-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.image-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.image-modal__img {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
	-webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.image-modal.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.image-modal.active .image-modal__overlay {
	opacity: 1;
}
.image-modal.active .image-modal__img {
	min-width: 50% !important;
	border-radius: 10px !important;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
@media screen and (max-width: 941px) {
	.tabs-portfolio .tabs-nav .tab-btn {
		font-size: 14px;
		padding: 10px 20px;
	}
}
@media screen and (max-width: 721px) {
	.tabs-portfolio .tabs-nav {
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.gallery-carousel {
	position: relative;
}
.gallery-carousel .swiper-slide {
	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;
}
.gallery-carousel .swiper-slide img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	max-height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}
.gallery-carousel .swiper-button-next,
.gallery-carousel .swiper-button-prev {
	color: #fff;
	background: #d83a3a;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	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;
	font-size: 15px;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	top: 40%;
}

.gallery-carousel .swiper-button-next {
	right: 0;
}

.gallery-carousel .swiper-button-prev {
	left: 0;
}

.gallery-carousel .swiper-button-next::after,
.gallery-carousel .swiper-button-prev::after {
	font-size: 15px;
}
.gallery-carousel .swiper-button-next:hover,
.gallery-carousel .swiper-button-prev:hover {
	background: brown;
}
.gallery-carousel .swiper-pagination {
	margin-top: 20px;
}
.gallery-carousel .swiper-pagination .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.4;
}
.gallery-carousel .swiper-pagination .swiper-pagination-bullet-active {
	background: #d83a3a;
	opacity: 1;
}
.gallery-carousel .swiper-wrapper {
	padding-bottom: 60px;
}
@media screen and (max-width: 761px) {
	.gallery-carousel .swiper-button-next,
	.gallery-carousel .swiper-button-prev {
		display: none;
	}
	.gallery-carousel .swiper-slide img {
		height: 220px;
	}
}
html {
	scroll-behavior: smooth;
}
.site-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}
.main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.main-container {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
	gap: 100px !important;
}
.section-title {
	position: relative;
	font-family: Orbitron;
	font-size: 46px;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	margin-top: 0;
	margin-bottom: 80px;
}
.section-title::after {
	position: absolute;
	bottom: -5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	content: url(../img/svg/lines.svg);
	width: 33.83px;
	height: 18.95px;
}
.section-title.mobile {
	display: none;
}
span.red {
	color: var(--main-color);
}
.title-secondary {
	color: #fff;
	font-family: Orbitron;
	font-size: 26px;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
}
@media screen and (max-width: 941px) {
	.section-title.mobile {
		display: block;
	}
}
@media screen and (max-width: 721px) {
	.main-container {
		gap: 50px !important;
	}
	.section-title {
		font-size: 30px;
		margin-bottom: 60px;
	}
	.section-title::after {
		bottom: -15px;
	}
	
	.hero-title {
		font-size: 30px;
	}
	
	.hero__desc p {
		font-size: 14px;
	}
	
	.hero__btns a {
		width: 100%;
	}
	
	.blog-section__main .blog-main .blog-main-image {
		height: 200px;
	}
	
	.blog__item {
		flex-direction: column;
	}
	
	.blog__item > img {
		width: 100%;
		height: 200px !important;
	}
	
	.blog-section__main .blog__list .blog_item__content h3 {
		color: #fff;
		font-family: Saira;
		font-size: 24px;
		font-weight: 800;
		line-height: 150%;
		margin-bottom: 10px;
	}
	
	.blog__item .blog_item__content {
    margin-left: 14px;
	}
	
	.blog__item {
		padding: 10px 10px 24px;
	}
	
	.hero .hero__wrapper .hero__btns {
		gap: 16px;
	}
}

.hero-description_after {
	max-width: 600px;
    color: rgb(255, 255, 255);
    font-family: 'Saira';
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-top: -5px;
}
