: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)
	);
	 --content-width-m: 700px;
    --container-offset-m: 20px;
    --container-width-m: calc( var(--content-width-m) + (var(--container-offset-m) * 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;
	line-height: 22px;
}
img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
a {
	text-decoration: none;
}
.site-container {
	overflow: hidden;
}

.container-m {
    margin: 0 auto !important;
    padding: 0 var(--container-offset-m) !important;
    max-width: var(--container-width-m) !important;
}

.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);
}

.sub-menu .header_nav__item.active::after {
	content: none;
}

.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%;
}
.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: 0px;
		padding-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 {
		display: none;
		top: auto;
		left: 2px;
		bottom: -10px;
	}
}
.footer {
	padding-top: 60px;
}

.footer .container {
	position: relative;
}

.scroll-wrapper-top {
    position: absolute;
    top: -20px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #EB1F26;
}

@media screen and (max-width: 721px) {
	.scroll-wrapper-top {
		right: 20px;
		top: 0px;
	}
}

.footer__top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 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;
	}

	.footer__col__main a.logo-link {
		padding-bottom: 40px !important;
		display: block;
	}

	.footer__col-title {
		margin-top: 0;
	}

	.form_footer__wrapper {
		margin-top: 0;
	}

	.footer__bottom {
		margin-top: 24px;
	}
}
@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);
}

.btn--secondary:hover {
	background: #dcdcdc;
}

.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: 18px 16px;
}
.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;
		gap: 16px;
	}

	.choose-grid__item {
		padding: 16px 18px;
		gap: 24px;
	}
	.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;
		gap: 14px;
	}
	.message__wrapper .message__content h2 {
		font-size: 30px;
		margin-top: 0;
		margin-bottom: 14px;
	}
	.message__wrapper .message__content p {
		font-size: 14px;
		margin-bottom: 0;
	}
}
.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%;
	max-height: 250px;
	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: 32%;
	-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(/assets/aws/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(/assets/aws/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(/assets/aws/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;
	height: 72px;
}
.service-image {
	width: 100%;
	height: 240px !important;
	border-radius: 10px !important;
}
@media screen and (max-width: 541px) {
	.service .service__content p {
		font-size: 14px;
	}
	.service-image {
		height: 180px;
	}

	.slider-calculator-image-wrapper {
		margin: 10px auto 10px;
	}

	.van-slider {
		margin-top: 14px !important;
	}
}
.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: 40px;
	}
}

@media (max-width: 450px) {
	.services-swiper {
        padding-bottom: 24px;
    }
}

@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 {
		min-height: calc(100vh - 90px);
		height: auto;
	}
	.hero__secondary {
		height: auto;
		min-height: none;
	}
	.hero .hero__wrapper {
		height: auto;
		padding-top: 130px;
		padding-bottom: 90px;
	}
	.hero .hero__wrapper .hero-title {
		font-size: 34px;
	}
	.hero .hero__wrapper .hero__desc h3,
	.hero .hero__wrapper .hero__desc p {
		font-size: 16px;
	}
	.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__btns {
		flex-direction: column;
		gap: 16px;
	}

	.hero__btns a {
		width: 100%;
	}
}
.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 a:not(:last-child) span {
	margin-right: 34px;
	position: relative;
}
.hero__nav a:not(:last-child) span::after {
	position: absolute;
	right: -23px;
	top: 37%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content: url(/assets/aws/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;
}

.hero__nav a {
	color: #fff;
}

.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;
	min-height: 120px;
}

.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 !important;
	margin-bottom: 55px !important;
}
.text-with-image__wrapper .text-with-image__content .section-title::after {
	left: 20px !important;
}
.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 !important;
	}
}
.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;
	max-height: 250px !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;
	filter: contrast(110%) brightness(105%) saturate(120%);
	image-rendering: auto;
}
@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: 250px;
	-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 !important;
	font-family: Orbitron !important;
	font-size: 46px !important;
	font-weight: 700 !important;
	line-height: 120% !important;
	text-align: center  !important;
	margin-top: 0  !important;
	margin-bottom: 80px  !important;
}
.section-title::after {
	position: absolute;
	bottom: -5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	content: url(/assets/aws/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;
	}

	.hero__secondary {
		padding-top: 100px;
		padding-bottom: 0px;
	}
	.section-title {
		font-size: 30px !important;
		margin-bottom: 60px !important;
	}
	.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;
}

.sub-menu {
    position: absolute;
    top: 30px;
    left: -5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    list-style: none;
    max-width: 200px;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(0 0 0 / 90%);
}

.header_nav__item.has-submenu > .header-item-has-menu__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.submenu-toggle-arrow {
	display: inline-block;
	margin-left: 10px;
	margin-bottom: 2px;
	border: solid white;
	border-width: 0 2px 2px 0;
	padding: 4px;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.header_nav__item.open > .header-item-has-menu__wrapper .submenu-toggle-arrow {
	border-color: var(--main-color);
	transform: rotate(-135deg);
	margin-bottom: -4px;
}

.header_nav__item .sub-menu {
	display: none;
}

.header_nav__item.open .sub-menu {
	display: flex;
}

.blog-item {
  padding:10px 10px 24px;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  border-radius:10px;
  background:rgba(255,255,255,.05)
}
.blog-item .blog-item-img__wrapper {
  overflow:hidden;
  border-radius:10px
}
.blog-item .blog-item-img__wrapper>img {
  width:100%;
  height:230px;
  -o-object-fit:cover;
  object-fit:cover;
  border-radius:10px
}
.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;
  gap:14px;
  margin-top:20px;
  padding-left:14px;
  padding-right:14px
}
.blog-item .blog-item__content h3 {
  margin:0
}
.blog-item .blog-item__content h3 a {
  color:#fff;
  font-family:Saira;
  font-size:20px;
  font-weight:800;
  line-height:150%
}
.blog-item .blog-item__content p {
  color:rgba(255,255,255,.7);
  font-family:Saira;
  font-size:14px;
  font-weight:400;
  line-height:150%;
  margin:0
}
.blog-item .blog-item__content .blog-item__bottom {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  gap:14px;
  -ms-flex-line-pack:center;
  align-content:center;
  margin-top:6px
}
.blog-item .blog-item__content .blog-item__bottom a {
  color:#eb1f26;
  font-family:Saira;
  font-size:14px;
  font-weight:700;
  line-height:130%
}
.blog-item .blog-item__content .blog-item__bottom a::after {
  content:url(/wp-content/uploads/2025/07/arrow-right.svg);
  width:8.79px;
  height:11.66px;
  margin-left:13px;
  -webkit-box-align:center;
  bottom:45%
}
.blog-item .blog-item__content .blog-item__bottom span {
  position:relative;
  color:#fff;
  font-family:Saira;
  font-size:14px;
  font-weight:400;
  line-height:150%
}
.blog-item .blog-item__content .blog-item__bottom span::before {
  content:url(/assets/aws/img/svg/calendar.svg);
  position:absolute;
  width:16px;
  height:16px;
  top:2px;
  left:-28px
}
.blog-section__grid {
  display:-ms-grid !important;
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(364px,1fr)) !important;
  gap:24px !important;
  margin-top:20px !important;
  list-style:none !important;
  padding-left:0  !important;
}
.blog-content p {
  color:#fff;
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:180%;
  margin-top:24px
}
.blog-content h2 {
  color:#fff;
  font-family:Saira;
  font-size:30px;
  font-weight:700;
  line-height:140%;
  margin-top:32px;
  margin-bottom:16px
}
.blog-content h3 {
  color:#fff;
  font-family:Saira;
  font-size:22px;
  font-weight:700;
  line-height:120%
}
.blog-content a {
  color:#eb1f26;
  text-decoration:underline
}
.blog-content img {
  width:100%;
  height:auto;
  -o-object-fit:contain;
  object-fit:contain;
  border-radius:10px
}
.blog-content ul {
  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
}
.blog-content ul li {
  color:#fff;
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:170%
}
.blog-content ul li::marker {
  color:#eb1f26
}
@media screen and (max-width:461px) {
  .btn--primary {
    width:100%
  }
}

.contact-section__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:16px;
  min-width:45%
}
.contact-section__list .choose-grid__item {
  height:103px
}
.contact-section__form {
  width:50%
}
.contact-section__list-title {
  color:#fff;
  font-family:Orbitron;
  font-size:20px;
  font-weight:700;
  line-height:120%;
  margin-top:16px;
  margin-bottom:4px
}
.contact-section__wrapper {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  gap:100px
}
.custom-contact-form {
  font-family:Orbitron,sans-serif;
  color:#fff;
  border-radius:10px;
  background:rgba(255,255,255,.05);
  padding:40px 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.custom-contact-form .custom-contact-title {
  color:#fff;
  font-family:Orbitron;
  font-size:26px;
  font-weight:700;
  line-height:150%;
  text-align:center;
  margin-top:0;
  margin-bottom:24px
}
.custom-contact-form .custom-contact-label {
  color:#fff;
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:25px
}
.custom-contact-form .custom-contact-input-wrapper {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:start;
  -ms-flex-align:start;
  align-items:start;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:40px;
  padding:.8rem 1.2rem;
  margin-bottom:1.2rem;
  margin-top:7px
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-icon {
  margin-right:1rem;
  font-size:1.2rem;
  color:#e53e3e;
  -ms-flex-negative:0;
  flex-shrink:0;
  margin-top:5px
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-icon-textarea {
  margin-top:8px
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input {
  -webkit-box-flex:1;
  -ms-flex:1;
  flex:1;
  background:0 0;
  border:none;
  outline:0;
  color:rgba(255,255,255,.7);
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:25px
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input::-webkit-input-placeholder {
  color:rgba(255,255,255,.7)
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input::-moz-placeholder {
  color:rgba(255,255,255,.7)
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input:-ms-input-placeholder {
  color:rgba(255,255,255,.7)
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input::-ms-input-placeholder {
  color:rgba(255,255,255,.7)
}
.custom-contact-form .custom-contact-input-wrapper .custom-contact-input::placeholder {
  color:rgba(255,255,255,.7)
}
.custom-contact-form .custom-contact-message {
  border-radius:30px
}
.custom-contact-form .custom-contact-message .custom-contact-textarea {
  -webkit-box-flex:1;
  -ms-flex:1;
  flex:1;
  background:0 0;
  border:none;
  outline:0;
  resize:vertical;
  color:rgba(255,255,255,.7);
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:25px;
  height:164px;
  padding-top:.4rem;
  resize:none
}
.custom-contact-form .custom-contact-message .custom-contact-textarea::-webkit-input-placeholder {
  color:#bbb
}
.custom-contact-form .custom-contact-message .custom-contact-textarea::-moz-placeholder {
  color:#bbb
}
.custom-contact-form .custom-contact-message .custom-contact-textarea:-ms-input-placeholder {
  color:#bbb
}
.custom-contact-form .custom-contact-message .custom-contact-textarea::-ms-input-placeholder {
  color:#bbb
}
.custom-contact-form .custom-contact-message .custom-contact-textarea::placeholder {
  color:#bbb
}
.custom-contact-form .custom-contact-captcha {
  margin:1rem 0
}
.custom-contact-form .custom-contact-submit {
  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;
  background:-webkit-gradient(linear,left top,right top,from(#d32e2e),to(#e6453d));
  background:linear-gradient(90deg,#d32e2e,#e6453d);
  border:none;
  border-radius:40px;
  padding:1rem 2rem;
  color:#fff;
  font-size:1.1rem;
  font-weight:700;
  cursor:pointer;
  width:100%;
  -webkit-transition:background .3s;
  transition:background .3s
}
.custom-contact-form .custom-contact-submit:hover {
  background:-webkit-gradient(linear,left top,right top,from(#b72121),to(#d63030));
  background:linear-gradient(90deg,#b72121,#d63030)
}
.custom-contact-form .custom-contact-submit .custom-contact-arrow {
  margin-left:.5rem;
  font-size:1.2rem
}
.custom-contact-form button {
  border:0;
  width:100%;
  margin-top:32px
}
@media screen and (max-width:921px) {
  .contact-section__wrapper {
    gap:50px
  }
  .custom-contact-form {
    padding:20px
  }
  .custom-contact-form .custom-contact-title {
    margin-bottom:16px;
    font-size:22px
  }
  .custom-contact-form .custom-contact-input-wrapper .custom-contact-input,
  .custom-contact-form .custom-contact-label {
    font-size:14px
  }
  .custom-contact-form .custom-contact-input-wrapper .custom-contact-icon {
    margin-right:16px
  }
}
@media screen and (max-width:721px) {
  .contact-section__wrapper {
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column
  }
  .contact-section__form,
  .custom-contact-form {
    width:100%
  }
  .contact-section__form {
    -webkit-box-ordinal-group:0;
    -ms-flex-order:-1;
    order:-1
  }
}

.slider-calculator__wrapper {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  gap:100px;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between
}
.slider-calculator__wrapper .slider-calculator__content {
  max-width:420px
}
.slider-calculator__wrapper .slider-calculator__content h3 {
  color:#fff;
  font-family:Orbitron;
  font-size:28px;
  font-weight:700;
  line-height:130%;
  margin:0
}
.slider-calculator__wrapper .slider-calculator__content p {
  max-width:320px;
  color:rgba(255,255,255,.7);
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:150%;
  margin-top:10px;
  margin-bottom:32px
}
.slider-calculator {
  max-width:570px;
  width:100%;
  text-align:center
}
.slider-calculator .slider-calculator-total-cost {
  color:#fff;
  font-family:Saira;
  font-size:18px;
  font-weight:400;
  line-height:150%;
  margin:0
}
.slider-calculator .slider-calculator-cost {
  color:#fff;
  font-family:Orbitron;
  font-size:38px;
  font-weight:700;
  line-height:120%;
  letter-spacing:0;
  text-align:center;
  text-transform:capitalize;
  margin-top:2px;
  margin-bottom:0
}
.slider-calculator-image-wrapper {
  position:relative;
  width:100%;
  height:335px;
  margin:30px auto 20px
}
.van-image {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:335px;
  -webkit-transition:opacity .3s;
  transition:opacity .3s
}
.van-image.base {
  position:relative;
  z-index:1
}
.van-image.layer {
  opacity:0;
  z-index:2
}
.van-slider {
  width:100%;
  height:10px;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  border-radius:10px;
  background:-webkit-gradient(linear,left top,right top,from(red),color-stop(0,red),color-stop(0,#111),to(#111));
  background:linear-gradient(to right,red 0,red 0,#111 0,#111 100%);
  outline:0;
  margin-top:50px;
  -webkit-transition:background .3s;
  transition:background .3s
}
.van-slider::-webkit-slider-thumb {
  -webkit-appearance:none;
  appearance:none;
  width:26px;
  height:26px;
  background:#fff;
  border:4px solid red;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
  position:relative
}
.van-slider::-moz-range-thumb {
  width:26px;
  height:26px;
  background:#fff;
  border:4px solid red;
  border-radius:50%;
  cursor:pointer
}
@media screen and (max-width:921px) {
  .slider-calculator__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;
    gap:40px
  }
  .slider-calculator__wrapper .slider-calculator__content {
    max-width:570px
  }
  .slider-calculator__wrapper .slider-calculator {
    -webkit-box-ordinal-group:0;
    -ms-flex-order:-1;
    order:-1
  }
  .slider-calculator-image-wrapper,
  .van-image {
    height:auto
  }
}
.main-calc {
  background-image:url(/wp-content/uploads/2025/07/bg-calc-1.png);
  background-position:left;
  background-repeat:no-repeat;
  background-size:contain
}
.wrap-wizard {
  overflow:hidden;
  margin-top:130px
}

.header-secondary {
    width: 100%;
    position: absolute
}

.header-secondary__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
}

.wrap-wizard__form {
  min-height:calc(100vh - 130px);
  position:relative
}
.wrap-step {
  height:calc(100vh - 130px);
  display:none;
  opacity:0;
  -webkit-transform:translateY(20px);
  -ms-transform:translateY(20px);
  transform:translateY(20px);
  -webkit-transition:opacity .5s,-webkit-transform .5s;
  transition:opacity .5s,transform .5s,-webkit-transform .5s;
  position:absolute;
  top:0;
  left:0;
  width:100%
}
.wrap-step.is-active {
  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;
  position:relative;
  opacity:1;
  -webkit-transform:translateY(0);
  -ms-transform:translateY(0);
  transform:translateY(0);
  gap: 20px;
}
.wrap-step.is-active h2 {
  max-width:440px;
  color:#fff;
  font-family:Orbitron;
  font-size:46px;
  font-weight:700;
  line-height:120%;
  margin-top: 8px;
}
.wrap-options {
  min-width: 290px;
  max-height:calc(100vh - 200px);
  overflow-x:hidden;
  overflow-y:auto;
  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;
  margin:0;
  padding-right:10px
}
.wrap-options::-webkit-scrollbar {
  width:8px
}
.wrap-options::-webkit-scrollbar-track {
  background:0 0
}
.wrap-options::-webkit-scrollbar-thumb {
  background-color:rgba(255,255,255,.4);
  border-radius:4px;
  -webkit-transition:background-color .3s;
  transition:background-color .3s
}
.wrap-options::-webkit-scrollbar-thumb:hover {
  background-color:rgba(255,255,255,.7)
}
.wrap-options label {
  width:460px;
  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;
  background:#fff;
  color:#000;
  font-family:Saira;
  font-size:18px;
  font-weight:700;
  line-height:160%;
  border-radius:12px;
  padding:15px 20px 20px;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  gap:2px;
  cursor:pointer;
  -webkit-transition:.3s;
  transition:.3s;
  margin:0;
  border:2px solid #fff
}
.wrap-options label:hover {
  color:#eb1f26;
  border:2px solid #eb1f26
}
.wrap-options label img {
  width:280px;
  height:120px;
  margin-bottom:4px;
  object-fit: contain;
}
.wrap-options label .mark-auto {
  width:120px;
  height:120px;
  -o-object-fit:contain;
  object-fit:contain
}
.wrap-options label p {
  max-width:312px;
  color:#797979;
  font-family:Saira;
  font-size:12px;
  font-weight:400;
  line-height:160%;
  letter-spacing:0;
  text-align:center;
  margin:0 auto
}
.wrap-options input[type=radio] {
  display:none
}
.wrap-back,
.wrap-next, {
  padding:10px 20px;
  font-size:16px;
  font-weight:700;
  border:none;
  border-radius:25px;
  cursor:pointer;
  margin:10px
}
.wrap-back {
  background:0 0;
  border:1px solid #fff;
  color:#fff
}
.wrap-next {
  background:red;
  color:#fff
}
h2 {
  font-size:2.4rem;
  line-height:1.2;
  margin-bottom:30px
}
.btn-calc {
  display:block;
  padding:14px 40px 16px;
  border:1px solid #fff;
  border-radius:40px;
  width:-webkit-fit-content;
  width:-moz-fit-content;
  width:fit-content;
  color:#fff;
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:150%;
  background:rgba(255,255,255,.05)
}
.wrap-step-header {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column
}
.wrap-step-header .btns {
  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
}

.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: 32%;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  border-radius:10px;
  background:rgba(255,255,255,.05);
  padding:0 24px 24px;
  -webkit-transition:.3s;
  transition:.3s
}
.price__item:hover {
  -webkit-box-shadow:0 2px 30px 0 rgba(235,31,38,.5);
  box-shadow:0 2px 30px 0 rgba(235,31,38,.5)
}
.price__item.most-popular-block {
  -webkit-box-shadow:0 4px 50px 0 rgba(235,31,38,.5);
  box-shadow:0 4px 50px 0 rgba(235,31,38,.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,.1);
  border-radius:10px;
  background:rgba(255,255,255,.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(/assets/aws/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
  }
}
.price-m {
  padding-bottom:0
}
.price-m .btn--transparent {
  width:100%;
  border-color:#eb1f26;
  background-color:transparent
}
.price-m .btn--transparent .price-image {
  margin-bottom:0
}
.price-m .price-price {
  color:#eb1f26;
  font-family:Saira;
  font-size:22px;
  font-weight:700;
  line-height:150%;
  margin-top:-20px
}
.price-m .price-price span {
  font-weight:400
}
.price-dark .price-title__wrapper {
  border-radius:10px;
  background:#252525;
  padding: 14px 0px;
}
.price-dark .price-title__wrapper .price-title {
  color:#fff;
  font-family:Orbitron;
  font-size:20px;
  font-weight:700;
  line-height:120%
}
.price-image {
  height:19px;
  margin-bottom:5px
}
.list-price-m {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  gap:32px;
  list-style:none;
  padding-left:35px;
  margin-top:24px;
  margin-bottom:32px
}
.list-price-m li {
  position:relative;
  color:#fff;
  font-family:Saira;
  font-size:16px;
  font-weight:400;
  line-height:150%
}
.list-price-m li:last-child::after {
  content:none
}
.list-price-m li::before {
  content: "";
  background-image: url(/wp-content/uploads/2025/07/1.png);
  position:absolute;
  left:-35px;
  top:2px;
  width:18px;
  height:18px;
  background-size: contain;
}
.list-price-m li::after {
  content:"";
  position:absolute;
  left:-35px;
  bottom:-16px;
  width:calc(100% + 35px);
  height:1px;
  border:1px solid rgba(255,255,255,.1)
}
@media screen and (max-width:460px) {
  .price__item {
    padding:0 12px 16px
  }
  .price__item .btn--transparent {
    padding:6px 6px 6px 32px
  }
  .price__item .list-price-m {
    gap:24px
  }
  .price__item .list-price-m li::after {
    bottom:-12px
  }
  .price-m .price-price {
    margin-bottom:-5px
  }
}

img.image.price-image {
	height: 19px;
}

.contact-section img.image {
	max-height: 34px;
	object-fit: contain;
}


.overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	pointer-events: none;
}

/* Показуємо overlay, коли бургер відкритий */
.burger.burger--active ~ #menuOverlay {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.logo-link {
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 982px) {
	li.header_nav__item.has-submenu {
		width: calc(100% - 20px);
	}

	.header_nav__item.open .sub-menu {
		display: flex;
		position: relative;
		top: 0;
		margin: 10px 0px 0px;
	}

	.blog-item .blog-item__content h3 {
		line-height: 120%;
	}
}

.hero_post_wrapper__image {
	max-width: 50%;
    min-width: 50%;
	max-height: 389px;
}

.hero_post_wrapper__content .hero-title {
	font-size: 50px;
}

.hero__wrapper.hero_post__wrapper {
    flex-direction: row;
	justify-content: space-between;
    align-items: center;
	gap: 50px;
}

.hero_post__info {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero_post__info span {
	position: relative;
	padding-left: 28px;
	color: rgb(255, 255, 255);
	font-family: 'Saira';
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}

span.hero_post__info-time-read::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 16px;
    height: 16px;
    background-image: url(/wp-content/uploads/2025/07/formkit_time.svg);
	background-size: contain;
}

.hero_post__info-date::before {
	 content: "";
    position: absolute;
    left: 0px;
    width: 16px;
    height: 16px;
    background-image: url(/wp-content/uploads/2025/07/post-calendar.svg);
	background-size: contain;
}

.hero__nav_mobile {
	display: none;
}

img.image.arrow-post {
    transform: rotateY(180deg);
}

.btn__arrow img.image {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 721px) {

	.hero__nav_pc {
		display: none;
	}

	.hero_post_wrapper__image {
		order: -1;
	}

	.hero__nav_mobile {
		width: 100%;
		display: block;
		order: -2;
	}

	.hero__wrapper.hero_post__wrapper {
		flex-direction: column;
	}

	.hero_post_wrapper__content .hero-title {
		font-size: 30px;
		margin-top: 14px;
	}
}

.without-title .section-title {
	display: none;
}

.how-works {
    color: #fff;
    text-align: center;
    position: relative
}

.how-works__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 84px 1fr;
    grid-template-columns: repeat(2,1fr);
    -ms-grid-rows: auto 84px auto;
    grid-template-areas: "step1 step2" "step4 step3";
    gap: 84px;
    margin-top: 60px;
    position: relative
}

.step {
    background: #111;
    padding: 10px 30px 10px 10px;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 23px;
    position: relative
}

.step-number {
    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: 10px;
    background: rgba(235,31,38,.06);
    color: #eb1f26;
    font-family: Orbitron;
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    width: 87px;
    height: 93px;
    text-align: center
}

.step-text {
    text-align: left;
    color: #fff;
    font-family: Orbitron;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%
}

.step-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: step1
}

.step-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: step2
}

.step-3 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    grid-area: step3
}

.step-4 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: step4
}

.how-works__grid::before {
    content: url(/wp-content/uploads/2025/07/arrow-how-works.svg);
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    -webkit-transform: translateX(-50%) rotate(0);
    -ms-transform: translateX(-50%) rotate(0);
    transform: translateX(-50%) rotate(0)
}

.step-2::after {
    content: url(/wp-content/uploads/2025/07/arrow-how-works.svg);
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.step-3::before {
    content: url(/wp-content/uploads/2025/07/arrow-how-works.svg);
    position: absolute;
    top: 60%;
    left: -54px;
    width: 40px;
    height: 2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (max-width: 721px) {
    .how-works__grid {
        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
    }

    .how-works__grid::before,.step-2::after,.step-3::before {
        content: none
    }

    .step-text {
        font-size: 16px
    }

    .step-number {
        width: 72px;
        height: 77px;
        font-size: 26px
    }
}

@media screen and (max-width: 541px) {
    .swiper-pagination {
        display:none
    }
}

.wrap-form-container {
    max-width: 600px;
	min-width: 50%;
    margin: auto;
    font-family: 'Arial', sans-serif;
	border-radius: 10px;
	background: rgb(255, 255, 255);
	padding: 30px 50px 40px;
}

.wrap-form-row {
    display: flex;
    gap: 32px;
    margin-bottom: 4px;
}

.wrap-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.wrap-form-group label {
	color: rgb(0, 0, 0);
	font-family: 'Saira';
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 7px;
}

.wrap-form-group input {
    border: none;
	border: 1px solid rgb(220, 220, 220);
	border-radius: 40px;
	background: rgb(245, 245, 245);
    padding: 14px 20px;
	color: rgb(121, 121, 121);
	font-family: 'Saira';
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
}

.wrap-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #e40000, #ff0000);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    padding: 14px 24px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.wrap-form-arrow {
    font-size: 20px;
}

.wrap-form-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.wrap-form-disclaimer a {
    color: #e00;
    text-decoration: none;
}

.wrap-form-container .btn--primary {
	width: 100%;
	margin-top: 4px;
}

.wrap-step-header p {
	max-width: 408px;
	color: rgb(255, 255, 255);
	font-family: 'Saira';
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	margin-top: 0;
}

.modal-trim h2 {
	color: rgb(0, 0, 0) !important;
	font-family: 'Saira' !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	line-height: 160% !important;
	letter-spacing: 0% !important;
	text-align: center !important;
}

.modal-trim p {
	color: rgb(121, 121, 121) !important;
	font-family: 'Saira' !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 160% !important;
	letter-spacing: 0% !important;
	text-align: center !important;
	margin-bottom: 24px !important;
}

.modal-btn {
    border-radius: 40px !important;
	background: linear-gradient(90.00deg, rgb(195, 0, 0),rgb(235, 31, 38) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 17px 48px !important;
    cursor: pointer !important;
	margin-top: 0 !important;
}

.modal-trim {
	border-radius: 10px !important;
}



@media screen and (max-width: 968px) {
	.wrap-options label {
		width: 100%;
	}
	.wrap-step-header {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.wrap-step {
		flex-direction: column;
		gap: 30px;
	}

	.wrap-step.is-active h2 {
		font-size: 28px;
		max-width: 100%;
		margin-bottom: 8px;
	}

	.wrap-options {
		width: 100%;
	}

	.btn-calc {
		width: 100%;
		text-align: center;
		margin-top: 20px;
	}

	.wrap-step-header .btns {
		gap: 0;
	}

	.wrap-options {
		gap: 12px;
	}

	.wrap-wizard {
		margin-top: 100px;
	}

	.modal-trim h2 {
		font-size: 20px !important;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.modal-trim p {
		font-size: 14px !important;
	}

	.modal-btn {
		width: 100% !important;
		padding: 16px !important;
		cursor: pointer !important;
	}

	.wrap-form-group input {
		padding: 10px 16px;
	}

	.wrap-form-group {
		margin-bottom: 10px;
	}

	p.wrap-form-disclaimer {
		margin-bottom: 5px !important;
	}
}

select#wrap_fleet_size {
	-webkit-appearance: none; /* Safari, Chrome */
    -moz-appearance: none;    /* Firefox */
    appearance: none;
    border: 1px solid rgb(220, 220, 220);
    border-radius: 40px;
    background: rgb(245, 245, 245);
    padding: 14px 20px;
    color: rgb(121, 121, 121);
    font-family: 'Saira';
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

#close-exit-modal {
	color: #ffffff;
    position: absolute;
    right: -20px;
    top: -45px;
    font-size: 40px;
}

.modal-phone {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    align-items: center;
    gap: 13px;
}

.modal-phone a {
    color: rgb(0, 0, 0);
    font-family: Saira;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.price-m .most-popular {
    top: -23px;
}

.elementor-widget-aws_price_list_mini_with_list .price-m .btn__arrow {
	width: 48px;
	height: 48px;
}

.center-form {
	margin: 0 auto;
}

@media screen and (max-width: 771px) {
	.wrap-form-container {
		width: 100%;
		padding: 16px 20px;
	}

	.wrap-step.wrap-final-form {
		height: auto !important;
	}

	.wrap-form-row {
		flex-direction: column;
		gap: 0;
	}
}

.title-secondary, .title-secondary h2 {
    color: #fff !important;
    font-family: Orbitron !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 120% !important;
    text-align: center  !important;
	margin-bottom: 16px !important;
}


.include__list {
    display: -webkit-box !important;
	flex-direction: row !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 50px !important;
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.include_list-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
	flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center  !important;
    align-items: center  !important;
    gap: 15px !important;
}

.include_list-item span {
    color: #eb1f26  !important;
    font-family: Orbitron  !important;
    font-size: 20px  !important;
    font-weight: 700  !important;
    line-height: 120%  !important;
}

.include_list-item h3 {
    color: #fff !important;
    font-family: Saira !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 150%  !important;
}

@media screen and (max-width: 921px) {
    .include__list {
        gap:40px  !important;
    }

	.footer__list li:first-child .link-with-icon img {
		margin-top: 5px;
	}

	.link-with-icon img {
		margin-top: 0;
		max-height: 20px;
		object-fit: contain;
	}

	.submenu-toggle-arrow__wrapper {
		flex: 1;
		text-align: right;
	}
}

@media screen and (max-width: 721px) {
    .include__list {
        -webkit-box-orient:vertical  !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        text-align: center !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        gap: 20px !important
    }

	.include_list-item {
		justify-content: center !important;
	}

    .include_list-item h3 {
        margin-top: 0;
        margin-bottom: 0
    }

	.review-card p {
		font-size: 14px;
	}

	.gallery__list li {
	border-radius: 10px;
        overflow: hidden;
        height: 200px;
	}

	.price__list {
		margin-top: 40px;
		padding-bottom: 20px;
	}

	.price__item.most-popular-block {
		box-shadow: 0 4px 17px 0 rgba(235, 31, 38, .5);
	}

	.gallery-image {
		height: 200px !important;
		border-radius: 10px;
	}

	.hero__nav span:not(:last-child) {
		margin-right: 28px;
	}

	.hero__nav span:not(:last-child)::after {
		right: -20px;
	}

	.gallery-carousel .swiper-wrapper {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 621px) {
	.tab-portfolio__grid {
		grid-template-columns: 1fr;
	}

	.blog__list .blog__item:last-child {
		display: none;
	}

	.blog-main h3 a {
		font-size: 16px;
	}

	.blog-section__main .blog__list .blog_item__content h3 {
		font-size: 16px;
	}
}

.modal-trim-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
	padding: 0px 20px;
}

.hero__secondary--mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}
