/*!
Theme Name: Arkada X
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arkada-x
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Arkada X is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:wght@500;600;700;800&display=swap');

:root {
	--container: 1720px;
	--gap: 20px;
	--admin-bar: 32px;

	--text-size: 16px;
	--text-size-lg: 18px;
	--text-size-sm: 14px;
	--h1-size: 54px;
	--h2-size: 42px;
	--h3-size: 32px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 20px;

	--black: #1C1C1F;
	--black-2: #252525;
	--red: #BC0000;
	--light: #EEEEF0;
	--white: #FFFFFF;
	--gradient: linear-gradient(270deg, var(--black) 0%, var(--red) 100%);
	--gradient-2: linear-gradient(90deg, var(--black) 0%, var(--red) 100%);
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--white);
}
a {
	color: var(--red);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat Alternates', sans-serif;
	font-weight: 800;
	margin: calc(var(--gap) * 1.5) 0 var(--gap);
	line-height: 1.21;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 var(--gap);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2);
	margin-bottom: var(--gap);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
::-webkit-input-placeholder {
	color: #8E8E8E;
}
::-moz-placeholder {
	color: #8E8E8E;
}
:-ms-input-placeholder {
	color: #8E8E8E;
}
:-moz-placeholder {
	color: #8E8E8E;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--light);
	border: none;
	color: var(--black);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: 12px 20px;
	height: 48px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 90px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.form-field-policy {
	font-size: 12px;
	line-height: 1.2;
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 32px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid var(--light);
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: calc(var(--gap) / 6);
	-webkit-border-radius: calc(var(--gap) / 6);
	border-radius: calc(var(--gap) / 6);
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .25s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
    width: 6px;
    height: 11px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(45deg);
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: var(--gap);
	font-size: var(--text-size-sm);
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 5);
	padding-bottom: calc(var(--gap) * 5);
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}
.w-100 {
	width: 100% !important;
}



.heading {
	margin-bottom: calc(var(--gap) * 3);
}
.heading.center {
	text-align: center;
}
.heading-label > span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 2.25);
	font-size: var(--text-size-sm);
	padding: calc(var(--gap) / 3.333) calc(var(--gap) / 1.4285);
	z-index: 1;
}
.heading-label > span span {
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 28px;
	background: url(images/logo-arkada.png) no-repeat center;
	background-size: contain;
}
.heading-label > span:before {
	content: '';
	background: linear-gradient(85.85deg, #BC0000 -0.49%, #140958 101.2%);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.heading-label > span:after {
	content: '';
	background: var(--white);
	position: absolute;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-border-radius: calc(var(--gap) - 1px);
	-webkit-border-radius: calc(var(--gap) - 1px);
	border-radius: calc(var(--gap) - 1px);
	z-index: -1;
}
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 800;
	margin-top: 0;
}
.heading h3 {
	font-size: var(--h3-size);
	font-weight: 800;
	margin-top: 0;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Montserrat Alternates', sans-serif;
	font-weight: 600;
	line-height: 1.25;
	border: 1px solid transparent;
	padding: 10px 24px;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	outline: none;
	min-height: 48px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: var(--red);
	border-color: var(--red);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black-2);
	border-color: var(--black-2);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--light);
	border-color: var(--light);
	color: var(--black);
}
.btn-secondary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-gradient {
	background: var(--gradient);
	border-color: var(--white);
	color: var(--white);
}
.btn-gradient:hover {
	background: var(--black-2);
	border-color: var(--white);
	color: var(--white);
}
/*.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--blue-dark);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 56px;
	max-width: 56px;
	width: 56px;
	height: 36px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--blue-dark);
}
.swiper-navigation button:disabled {
	background: var(--blue);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-down.svg);
    mask-image: url(images/expand-down.svg);
    background-color: var(--white);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation button.swiper-navigation-next:before {
	transform: rotate(-90deg);
}
*/

.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
}
.soc-links li.soc-mobile {
	display: none;
}
@media (max-width: 991px) {
	.soc-links li.soc-mobile {
		display: block;
	}
	.soc-links li.soc-desktop {
		display: none;
	}
}
.soc-links li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 2.5);
	text-decoration: none;
}
.soc-links.white li a {
	color: var(--white);
}
.soc-links li a:hover,
.soc-links.white li a:hover {
	color: var(--red);
}
.soc-links li a svg {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}
.soc-links li a path {
	fill: var(--black);
	transition: .5s;
}
.soc-links.white li a path {
	fill: var(--white);
}
.soc-links li a:hover path,
.soc-links.white li a:hover path {
	fill: var(--red);
}


/*
.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--line);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size-md);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}
*/


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 480px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5) calc(var(--gap) * 1.5);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	font-family: 'Montserrat Alternates', sans-serif;
	color: var(--black);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-description {
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: calc(var(--gap) * 2);
	margin-bottom: var(--gap);
	max-width: calc(50% - var(--gap));
}
.alignright {
	float: right;
	margin-left: calc(var(--gap) * 2);
	margin-bottom: var(--gap);
	max-width: calc(50% - var(--gap));
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
	max-width: calc(50% - var(--gap));
}




.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	--header-height: 96px;
	position: sticky;
	top: 0;
	padding: var(--gap) 0;
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
.header-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.25);
	padding: 0 calc(var(--gap) * 1.6);
	height: var(--header-height);
	background: var(--white);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	box-shadow: 0px 10px 10px -10px rgba(188, 0, 0, .4);
}
.header-logo img {
	max-height: calc(var(--header-height) - var(--gap) * 2);
}
.main-menu {
	flex: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) * 2.25);
	font-size: var(--h6-size);
	font-weight: 700;
	font-family: 'Montserrat Alternates', sans-serif;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 5);
	text-decoration: none;
	color: var(--black);
	padding: calc(var(--gap) / 2) 0;
}
.main-menu li a:hover {
	color: var(--red);
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--red);
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.main-menu ul {
	position: absolute;
	margin: 0;
	padding: var(--gap);
	list-style: none;
	font-size: var(--text-size);
	font-weight: 600;
	width: max-content;
	max-width: 320px;
	min-width: 180px;
	top: 100%;
	left: 0;
	background: var(--white);
	border: 1px solid var(--red);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	transform: translateY(calc(var(--gap) / 2));
	opacity: 0;
	pointer-events: none;
	transition: .2s;
	z-index: -1;
}
.main-menu li:hover ul {
	transform: translateY(0);
	opacity: 1;
	pointer-events: visible;
	z-index: 1;
}
.main-menu ul li {
	border-bottom: 1px solid var(--light);
}
.main-menu ul li a {
	padding: calc(var(--gap) / 4) 0;
}
.header-phone {
	display: flex;
	align-items: center;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	font-family: 'Montserrat Alternates', sans-serif;
	height: 48px;
	z-index: 1;
}
.header-phone > li:before {
	content: '';
	background-color: var(--white);
	border: 1px solid var(--red);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: -1;
}
.header-phone > li:hover:before {
	height: calc(100% + 36px * 2);
}
.header-phone li a {
	height: 48px;
	padding: 0 calc(var(--gap) / 1.333);
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 5);
	color: var(--black);
	text-decoration: none;
}
.header-phone li a:hover {
	color: var(--red);
}
.header-phone li a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
	background-color: var(--red);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: background-color .5s;
}
.header-phone > li > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--red);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.header-phone > li:hover > a:after {
	transform: rotate(180deg);
}
.header-phone ul {
	position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	top: calc(100% - 6px);
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: .5s;
	z-index: 1;
}
.header-phone li:hover > ul {
	height: calc(36px * 2 + 6px);
}
.header-phone ul li a {
	height: 36px;
}
.hide-phone {
	display: none;
}
.account-button {
	display: flex;
}
.account-button a {
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	border: 1px solid var(--red);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	text-decoration: none;
}
.account-button a:hover {
	background: var(--red);
}
.account-button a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/user-round.svg);
	mask-image: url(images/user-round.svg);
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
}
.account-button a:hover:before {
	background-color: var(--white);
}



.main {
	position: relative;
	z-index: 1;
}



.footer {
	position: relative;
	background: var(--black);
	color: var(--white);
	box-shadow: 0px -6px 10px 0px rgba(188, 0, 0, 1);
	z-index: 1;
}
.footer a {
	text-decoration: none;
	color: var(--white);
}
.footer a:hover {
	color: var(--red);
}
.footer-bottom {
	border-top: 1px solid #7D7D7D;
	padding: calc(var(--gap) / 2) 0;
	text-align: center;
	font-size: var(--text-size-sm);
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 calc(var(--gap) * 1.25 / -2) calc(var(--gap) * -2);
}
.footer-widget {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 calc(var(--gap) * 1.25 / 2);
}
.footer-widget-title {
	font-size: var(--text-size-lg);
	font-weight: 500;
	font-family: 'Montserrat Alternates', sans-serif;
	margin-bottom: var(--gap);
}
.footer-widget-title span {
	display: inline-block;
	padding-bottom: calc(var(--gap) / 5);
	border-bottom: 2px solid var(--red);
}
.footer-logo {
	margin-bottom: var(--gap);
}
.footer-logo img {
	max-height: 62px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
}
.footer-menu li a {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 5);
}
.footer-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--red);
	transition: .5s;
}
.footer-menu li.menu-item-has-children.active > a:after {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.footer-menu ul {
	margin: 0;
	padding: 0 0 0 var(--gap);
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
	max-height: 0;
	overflow: hidden;
	transition: 0.3s ease;
}
.footer-menu li.active ul {
	margin-top: calc(var(--gap) / 1.667);
}
.footer-contacts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
}
.footer-contacts li > * {
	display: inline-flex;
	gap: calc(var(--gap) / 2.5);
}
.footer-contacts li > *:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.footer-contacts li > a:hover:before {
	background-color: var(--red);
}
.footer-contacts li.phone > *:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts li.e-mail > *:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.footer-contacts li.address > *:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}



.page-header {
	background: url(images/shapes.svg) no-repeat center top;
	background-size: cover;
}
.page-title {
	text-align: center;
	margin-bottom: calc(var(--gap) / 1.25);
}
.page-breadcrumbs {
	text-align: center;
	font-size: var(--text-size-lg);
}
.page-breadcrumbs a {
	color: var(--black);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--red);
}
.breadcrumbs-sep {
	width: 20px;
	height: 20px;
	background: url(images/arrow-right.svg) no-repeat center;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	margin: -3px 4px 0;
}
.page-content:after {
	content: '';
	clear: both;
	display: block;
}
.page-content img {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}
.page-content ul,
.page-content ol {
	list-style: inside;
	padding-left: calc(var(--gap) / 2);
}
.page-content ul:not(:first-child),
.page-content ol:not(:first-child) {
	margin-top: calc(var(--gap) / -2);
}

.error-404-number {
	text-align: center;
	font-size: calc(var(--h1-size) * 5);
	font-family: 'Montserrat Alternates', sans-serif;
	font-weight: 800;
	line-height: 1;
	margin-bottom: calc(var(--gap) * 1.5);
	color: var(--light);
}
.error-404-button {
	text-align: center;
}




.hero-section.section {
	padding-top: calc(var(--gap) * 2.5);
	background: url(images/shapes.png) no-repeat center bottom;
	background-size: 100%;
}
.hero-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.hero-left,
.hero-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.hero-left {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
	padding: calc(var(--gap) * 3) 0;
}
.hero-content h1 {
	font-size: calc(var(--h1-size) * 1.1851);
}
.hero-buttons {
	display: flex;
	gap: var(--gap);
}
.hero-advantages {
	display: flex;
	flex-wrap: width;
	gap: var(--gap) calc(var(--gap) * 2);
}
.hero-advantages-item__value {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	font-size: var(--h6-size);
	font-weight: 800;
	color: var(--red);
	line-height: 1.2;
}
.hero-advantages-item__value span {
	font-size: var(--h3-size);
	line-height: 1.2;
}
.hero-advantages-item__value img {
	max-height: 40px;
}
.hero-advantages-item__description {
	font-size: var(--text-size-sm);
	max-width: 110px;
	text-align: center;
}
.hero-right {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.hero-image {
	flex: 0 0 calc(65% - var(--gap));
	max-width: calc(65% - var(--gap));
	overflow: hidden;
	-moz-border-radius: calc(var(--gap) * 1.5);
	-webkit-border-radius: calc(var(--gap) * 1.5);
	border-radius: calc(var(--gap) * 1.5);
	height: 726px;
}
.hero-image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(188, 0, 0, 0) 46%, #BC0000 100%);
	z-index: 1;
}
.hero-additional-image {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.hero-additional-image p {
	margin: 0;
	font-weight: 500;
	font-family: 'Montserrat Alternates', sans-serif;
	text-align: center;
}
.hero-additional-image span {
	height: 396px;
	overflow: hidden;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}



.tabs-nav {
	margin: 0 0 calc(var(--gap) * 1.75);
	padding: 0;
	list-style: none;
	display: flex;
	gap: var(--gap);
	font-size: var(--h5-size);
	font-weight: 500;
	font-family: 'Montserrat Alternates', sans-serif;
	text-align: center;
}
.tabs-nav li {
	flex: 1;
}
.tabs-nav li a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	background: var(--light);
	color: var(--black);
	text-decoration: none;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: calc(var(--gap) / 1.333);
}
.tabs-nav li:hover a,
.tabs-nav li.active a {
	background: var(--gradient);
	color: var(--white);
}
.tabs-block {
	display: none;
}
.tabs-block.active {
	display: block;
}



.tariffs-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -1) calc(var(--gap) * -2);
}
.tariffs-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 var(--gap);
}
.tariffs-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	background: var(--light);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap);
	transition: .5s;
	z-index: 1;
}
.tariffs-item__wrap:hover {
	background: linear-gradient(340deg, var(--black) 25%, var(--red) 75%);
	color: var(--white);
}
.tariffs-item__label {
	position: absolute;
	top: -15px;
	left: 50%;
	font-size: var(--text-size-sm);
	background: var(--white);
	color: var(--black);
	border: 1px solid var(--black);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	width: max-content;
	max-width: 100%;
	text-align: center;
	transform: translateX(-50%);
	margin: 0;
	padding: 5px 12px;
	z-index: 1;
}
.tariffs-item__name {
	font-size: var(--h3-size);
	font-weight: 800;
	text-align: center;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; 
	color: transparent; 
	margin: 0 0 calc(var(--gap) * 2);
	transition: .5s;
}
.tariffs-item__wrap:hover .tariffs-item__name {
	background: var(--white);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; 
	color: transparent;
}
.tariffs-item__speed {
	margin: 0 0 calc(var(--gap) * 2);
}
.tariffs-item__speed sup {
	position: absolute;
	font-size: var(--text-size-lg);
	transform: translate(calc(-100% - 6px), -6px);
	z-index: 1;
}
.tariffs-item__speed-value {
	font-size: calc(var(--h1-size) * 1.1851);
	font-weight: 800;
	font-family: 'Montserrat Alternates', sans-serif;
	text-align: center;
	line-height: 1;
}
.tariffs-item__speed-value-after {
	display: block;
	font-size: var(--text-size-lg);
	text-align: center;
}
.tariffs-item__prices {
	width: 100%;
	display: flex;
	align-items: center;
	min-height: 48px;
	margin: 0 0 var(--gap);
}
.tariffs-item__price {
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 calc(var(--gap) / 2);
	text-align: center;
	z-index: 1;
}
.tariffs-item__price:after {
	content: '';
	position: absolute;
	top: 0;
	right: -1px;
	background: var(--white);
	width: 2px;
	height: 100%;
	z-index: 1;
}
.tariffs-item__price:last-child:after {
	display: none;
}
.tariffs-item__price sup {
	font-size: var(--text-size-lg);
	vertical-align: top;
}
.tariffs-item__price-value {
	font-size: var(--h3-size);
	font-weight: 800;
}
.tariffs-item__price sub {
	font-size: var(--text-size-lg);
	vertical-align: baseline;
}
.tariffs-item__button {
	width: 100%;
}
.tariffs-item__button button {
	width: 100%;
	background: var(--gradient);
	color: var(--white);
	border: none;
}
.tariffs-item__wrap:hover .tariffs-item__button button {
	background: var(--white);
	color: var(--black);
}
.tariffs-item__wrap:hover .tariffs-item__button button:hover {
	background: var(--black-2);
	color: var(--white);
}
.tariffs-item__additional-content {
	margin-top: calc(var(--gap) / 1.333);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2.5);
	font-size: var(--text-size-sm);
}
.tariffs-item__additional-content > * {
	margin: 0;
}




.promotions-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
}
.promotions-item__wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
	min-height: 360px;
}
.promotions-item:nth-child(2n) .promotions-item__wrap {
	flex-direction: row-reverse;
}
.promotions-item__left,
.promotions-item__right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
}
.promotions-item__image {
	position: relative;
	height: 100%;
	z-index: 1;
}
.promotions-item__left {
	position: relative;
	padding: var(--gap);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 1;
}
.promotions-item__left:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(images/promo-bg.jpg) no-repeat;
	background-size: cover;
	top: 0;
	left: 0;
	z-index: -2;
}
.promotions-item:nth-child(2n+1) .promotions-item__left:before {
	background-position: center 0%;
}
.promotions-item:nth-child(2n+2) .promotions-item__left:before {
	background-position: center 100%;
}
.promotions-item__left:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(51.24deg, #1C1C1F 30.73%, rgba(102, 102, 102, 0) 100.36%);
	top: 0;
	left: 0;
	z-index: -1
}
.promotions-item__label {
	position: relative;
	background: var(--white);
	padding: calc(var(--gap) / 2.5) var(--gap);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	text-align: center;
	z-index: 1;
}
.promotions-item__info {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.promotions-item__title {
	font-size: var(--h3-size);
	font-weight: 800;
	color: var(--white);
	position: relative;
	padding-bottom: calc(var(--gap) / 1.333);
	margin-bottom: calc(var(--gap) / 1.333);
	margin-top: 0;
	z-index: 1;
}
.promotions-item__title:after {
	content: '';
	position: absolute;
	width: 90%;
	height: 1px;
	background: var(--white);
	left: 0;
	bottom: 0;
	z-index: -1;
}
.promotions-item__description {
	font-size: var(--text-size-lg);
	color: var(--white);
	margin-bottom: calc(var(--gap) * 1.5);
}
.promotions-item__button {
	
}
.promotions-item__content {
	font-size: var(--text-size-lg);
	color: var(--white);
	max-height: 0;
	overflow: hidden;
	transition: 0.5s ease;
}
.promotions-item__content.active {
	margin-top: calc(var(--gap) * 1.5);
	max-height: 10000px;
}



.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	margin-top: calc(var(--gap) * -1);
	max-width: 1280px;
}
.faq-item {
	position: relative;
	transition: .5s;
	z-index: 1;
}
.faq-item.active {
	padding-bottom: var(--gap);
}
.faq-item:after {
	content: '';
	background: linear-gradient(90deg, #9C9CA1 0%, #39393B 100%);
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--gap) 0;
	gap: var(--gap);
	cursor: pointer;
	transition: .5s;
}
.faq-item__title {
	font-size: var(--h5-size);
	font-weight: 800;
	font-family: 'Montserrat Alternates', sans-serif;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; 
	color: transparent; 
}
.faq-item__logo {
	display: flex;
	align-items: center;
	height: 48px;
}
.faq-item__logo img {
	max-height: 48px;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--red);
	transition: .5s;
}
.active .faq-item__toggle {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
	background-color: var(--black);
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: 0.5s ease;
}
.faq-item.active .faq-item__body {
	max-height: 10000px;
}




.infoImage-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.infoImage-left,
.infoImage-right {
	flex: 0 0 calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.infoImage-image {
	position: relative;
	padding: calc(var(--gap) * 1.25) calc(var(--gap) * 1.25) 0 0;
	z-index: 1;
}
.infoImage-image img {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	border: 2px solid var(--white);
}
.infoImage-image:before {
	content: '';
	background: var(--gradient);
	position: absolute;
	width: calc(100% - var(--gap) * 1.25);
	height: calc(100% - var(--gap) * 1.25);
	top: 0;
	right: 0;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	z-index: -1;
}




.payments-blocks {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2.25);
	max-width: 1280px;
}
.payments-block-heading {
	font-size: var(--h3-size);
	margin-bottom: calc(var(--gap) / 2);
}
.payments-block-heading span {
	position: relative;
	padding: calc(var(--gap) / 2) calc(var(--gap) * 1.5);
	overflow: hidden;
	z-index: 1;
}
.payments-block-heading span:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(89.65deg, #FFFFFF -0.18%, #BC0000 100.22%);
	top: 0;
	left: 0;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	z-index: -2;
}
.payments-block-heading span:after {
	content: '';
	position: absolute;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: var(--light);
	top: 50%;
	left: 50%;
	-moz-border-radius: calc(var(--gap) - 2px);
	-webkit-border-radius: calc(var(--gap) - 2px);
	border-radius: calc(var(--gap) - 2px);
	transform: translate(-50%, -50%);
	z-index: -1;
}




.equipments-section {
	background: var(--light);
}
.equipments-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -1) calc(var(--gap) * -2);
}
.equipments-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 var(--gap);
}
.equipments-item__banner {
	position: relative;
	height: 100%;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
	z-index: 1;
}
.equipments-item__wrap {
	position: relative;
	height: 100%;
	background: var(--gradient);
	padding: var(--gap) var(--gap) calc(var(--gap) * 1.5);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.equipments-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 calc(((var(--container) - var(--gap) * 2 / 2) / 3 - var(--gap) * 2) / 1.5);
	max-height: calc(((var(--container) - var(--gap) * 2 / 2) / 3 - var(--gap) * 2) / 1.5);
	background: var(--white);
	margin-bottom: calc(var(--gap) * 1.5);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
}
.equipments-item__image img {
	max-height: calc(((var(--container) - var(--gap) * 2 / 2) / 3 - var(--gap) * 2) / 1.5);
}
.equipments-item__title {
	margin: 0 0 var(--gap);
	border-bottom: 1px solid var(--white);
	padding-bottom: var(--gap);
	text-align: center;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--white);
}
.equipments-item__description {
	color: var(--white);
}
.equipments-item__price {
	color: var(--white);
}
.equipments-item__price sup {
	font-size: var(--text-size-lg);
	vertical-align: top;
}
.equipments-item__price-value {
	font-size: var(--h3-size);
	font-weight: 800;
}
.equipments-item__price sub {
	font-size: var(--text-size-lg);
	vertical-align: baseline;
}




.documents-items {
	max-width: 840px;
}
.documents-item {
	border-bottom: 1px solid #BCBCC2;
}
.documents-item a {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.5);
	padding: calc(var(--gap) / 1.333) 0;
	text-decoration: none;
	color: var(--black);
}
.documents-item a:hover {
	color: var(--red);
}
.documents-item__icon {
	flex: 0 0 60px;
	max-width: 60px;
	width: 60px;
	height: 60px;
	background: url(images/pdf2.svg) no-repeat center;
	background-size: contain;
}
.documents-item__title {
	flex: auto;
	font-weight: 500;
}
.documents-item a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-dr.svg);
	mask-image: url(images/arrow-dr.svg);
	background-color: var(--red);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}




.contacts-wrap {
	position: relative;
	display: flex;
	gap: calc(var(--gap) * 2);
	background: var(--gradient-2);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap);
	z-index: 1;
}
.contacts-left {
	position: relative;
	flex: 0 0 calc(45% - var(--gap));
	max-width: calc(45% - var(--gap));
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: calc(var(--gap) * 1.5);
	padding-left: calc(var(--gap) * 2);
	z-index: 2;
}
.contacts-right {
	position: relative;
	flex: 0 0 calc(55% - var(--gap));
	max-width: calc(55% - var(--gap));
	z-index: 1;
}
.contacts-map {
	position: relative;
	height: 100%;
	z-index: 1;
}
.contacts-map:before {
	content: '';
	pointer-events: none;
	background: url(images/logo-arkada-contacts.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 405px;
	height: 372px;
	right: calc(100% - 74px);
	bottom: calc(var(--gap) * -1);
	z-index: -1;
}
.contacts-map iframe {
	width: 100%;
	height: 100%;
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	min-height: 565px;
}
.contacts-block-heading.heading {
	margin-bottom: var(--gap);
}
.contacts-block h3 {
	font-size: var(--h5-size);
	color: var(--white);
}
.contacts-info {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
	color: var(--white);
	font-weight: 600;
}
.contacts-info li > * {
	display: inline-flex;
	gap: calc(var(--gap) / 2.5);
}
.contacts-info li > *:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.contacts-info li > a:hover:before {
	background-color: var(--red);
}
.contacts-info li.phone > *:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.contacts-info li.e-mail > *:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.contacts-info li.address > *:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.contacts-info li a {
	color: var(--white);
	text-decoration: none;
}
.contacts-info li a:hover {
	color: var(--red);
}
.contacts-soc {
	font-weight: 600;
}



.page-body-wrap {
	display: flex;
	gap: calc(var(--gap) * 3);
}
.page-body-main {
	flex: 0 0 calc(75% - var(--gap) * 1.5);
	max-width: calc(75% - var(--gap) * 1.5);
}
.page-sidebar {
	flex: 0 0 calc(25% - var(--gap) * 1.5);
	max-width: calc(25% - var(--gap) * 1.5);
}


.news-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) * 1.5 / -2) calc(var(--gap) * -1.5);
}
.news-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 1.5);
	padding: 0 calc(var(--gap) * 1.5 / 2);
}
.news-item__wrap {
	position: relative;
	height: 100%;
	background: linear-gradient(269.6deg, #1C1C1F -0.41%, #BC0000 98.76%);
	color: var(--white);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.news-item__title {
	flex: auto;
	margin: 0;
	padding: var(--gap);
	font-size: var(--text-size-lg);
	font-weight: 600;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.news-item__title a {
	color: var(--white);
	text-decoration: none;
}
.news-item__title a:hover {
	color: var(--red);
}
.news-item__image {
	flex: 0 0 calc((((var(--container) - var(--gap) * 3) * .75) - var(--gap) * 1.5 * 2) / 3 / 1.111);
	max-height: calc((((var(--container) - var(--gap) * 3) * .75) - var(--gap) * 1.5 * 2) / 3 / 1.111);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	overflow: hidden;
}
.news-item__info {
	position: relative;
	background: var(--black);
	padding: var(--gap);
	margin-top: calc(var(--gap) * -1.5);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	z-index: 1;
}
.news-item__excerpt {
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.news-item__footer {
    margin-top: calc(var(--gap) / 1.333);
    padding-top: calc(var(--gap) / 1.333);
    border-top: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-item__date {
	font-size: var(--text-size-sm);
}
.news-item__button {
	color: var(--white);
	text-decoration: none;
}
.news-item__button:hover {
	color: var(--red);
}




.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 2);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 48px;
	height: 48px;
	border: 1px solid var(--light);
	color: var(--black);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}




.singleNews-image {
	margin-bottom: var(--gap);
}
.singleNews-image img {
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
}
.singleNews-date {
	font-size: var(--text-size-sm);
	padding-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid #BCBCC2;
}



.widget-area {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.widget {
	position: relative;
	border: 1px solid var(--red);
	-moz-border-radius: var(--gap);
	-webkit-border-radius: var(--gap);
	border-radius: var(--gap);
	padding: var(--gap);
	z-index: 1;
}
.widget-title {
	font-size: var(--text-size-lg);
	font-weight: 600;
	font-family: 'Montserrat Alternates', sans-serif;
	margin-bottom: var(--gap);
}
.widget_categories ul {
	margin: 0;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.widget_categories ul li {
	color: var(--red);
}
.widget_categories ul li a {
	color: var(--black);
	text-decoration: none;
}
.widget_categories ul li a:hover {
	color: var(--red);
}


/* Calendar Widget */
#wp-calendar {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 14px;
	background: #fff;
	overflow: hidden;
}
#wp-calendar caption {
	padding: 0 16px 16px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #111;
}
#wp-calendar thead {
	background: #111;
}
#wp-calendar thead th {
	padding: 12px 8px;
	color: #fff;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
}
#wp-calendar tbody td {
	padding: 10px;
	border: 1px solid #f1f1f1;
	color: #333;
	transition: 0.3s ease;
}
#wp-calendar tbody td:hover {
	background: #f8f8f8;
}
#wp-calendar tbody td a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0 auto;
	border-radius: 10px;
	background: #111;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}
#wp-calendar tbody td a:hover {
	background: #444;
}
#wp-calendar #today {
	background: #f3f3f3;
	font-weight: 700;
}
#wp-calendar #today a {
	background: var(--red);
	color: #fff;
}
#wp-calendar .pad {
	background: #fafafa;
}
.wp-calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
}
.wp-calendar-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 10px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: 0.3s ease;
}
.wp-calendar-nav a:hover {
	background: #333;
}
/* Mobile */
@media (max-width: 575px) {
	#wp-calendar {
		font-size: 12px;
	}
	#wp-calendar thead th,
	#wp-calendar tbody td {
		padding: 6px;
	}
	#wp-calendar tbody td a {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
}






@media (max-width: 1799px) {
	:root {
		--container: 1520px;
		--gap: 20px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--h1-size: 50px;
		--h2-size: 40px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.header {
		--header-height: 86px;
	}
	.main-menu {
		font-size: var(--text-size-lg);
		gap: calc(var(--gap) * 1.5);
	}
	.hero-image {
		height: 660px;
	}
	.hero-additional-image span {
		height: 320px;
	}
	.contacts-map:before {
		width: 300px;
		height: 275px;
	}
}






@media (max-width: 1599px) {
	:root {
		--container: 1320px;
		--gap: 20px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--h1-size: 44px;
		--h2-size: 36px;
		--h3-size: 30px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header {
		--header-height: 80px;
	}
	.header-wrap {
		gap: var(--gap);
		padding: 0 var(--gap);
	}
	.main-menu {
		font-size: var(--text-size);
		gap: var(--gap);
	}
	.hero-image {
		height: 600px;
	}
	.hero-additional-image span {
		height: 280px;
	}
	.footer-logo img {
		max-height: 54px;
	}
	.footer-info br {
		display: none;
	}
	.payments-block-heading {
		font-size: var(--h4-size);
	}
	.faq-item__logo {
		height: 40px;
	}
	.faq-item__logo img {
		max-height: 40px;
	}
	.contacts-left {
		padding-left: var(--gap);
	}
}






@media (max-width: 1399px) {
	:root {
		--container: 1120px;
		--gap: 12px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--h1-size: 40px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: calc(var(--gap) * 6);
		padding-bottom: calc(var(--gap) * 6);
	}
	.header {
		--header-height: 68px;
	}
	.header-phone > li > a {
		font-size: 0;
		width: 48px;
		height: 48px;
		justify-content: center;
		border: 1px solid var(--red);
		-moz-border-radius: var(--gap);
		-webkit-border-radius: var(--gap);
		border-radius: var(--gap);
		cursor: pointer;
	}
	.header-phone > li > a:before {
		background-color: var(--black);
	}
	.hide-phone {
		display: block;
	}
	.header-phone > li > a:after {
		display: none;
	}
	.header-phone > li:before {
		display: none;
	}
	.header-phone > li:hover > ul {
		height: 0;
	}
	.header-phone ul {
		top: calc(100% + 6px);
		height: 0;
		overflow: hidden;
		transition: 0.25s ease;
		width: 226px;
		-moz-border-radius: var(--gap);
		-webkit-border-radius: var(--gap);
		border-radius: var(--gap);
		display: flex;
		flex-direction: column;
		gap: calc(var(--gap) / 3);
	}
	.header-phone > li.active ul {
		overflow: hidden;
		background: var(--white);
		border: 1px solid var(--red);
	}
	.header-phone ul li {
		padding: calc(var(--gap) / 4) calc(var(--gap) / 2);
	}
	.header-phone ul li:first-child {
		margin-top: calc(var(--gap) / 1.5);
	}
	.header-phone ul li:last-child {
		margin-bottom: calc(var(--gap) / 2);
	}
	.header-phone ul li a {
		height: auto;
		gap: calc(var(--gap) / 2);
	}
	.header-phone > li.active > a {
		background: var(--red);
	}
	.header-phone > li.active > a:before {
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-image: url(images/close.svg);
		mask-image: url(images/close.svg);
		background-color: var(--white);
		flex: 0 0 24px;
		max-width: 24px;
		width: 24px;
		height: 24px;
	}
	.main-menu {
		gap: calc(var(--gap) * 1.5);
	}
	.hero-image {
		height: 520px;
	}
	.hero-additional-image span {
		height: 240px;
	}
	.tabs-nav {
		font-size: var(--text-size-lg);
	}
	.tariffs-item__wrap {
		padding: calc(var(--gap) * 2) var(--gap) var(--gap);
	}
	.tariffs-item__name,
	.tariffs-item__price-value,
	.equipments-item__price-value {
		font-size: var(--h4-size);
	}
	.tariffs-item__speed-value {
		font-size: var(--h1-size);
	}
	.tariffs-item__speed sup,
	.tariffs-item__speed-value-after,
	.tariffs-item__price sup,
	.tariffs-item__price sub,
	.equipments-item__price sup,
	.equipments-item__price sub {
		font-size: var(--text-size-sm);
	}
	.tariffs-item__price {
		padding: 0;
	}
	.modal-content {
		padding: calc(var(--gap) * 3.5) calc(var(--gap) * 2) calc(var(--gap) * 2);
	}
	.modal-title {
		font-size: var(--h4-size);
	}
	.footer-info {
		font-size: var(--text-size-sm);
	}
	.promotions-item__title {
		font-size: var(--h4-size);
	}
	.promotions-item__left {
		padding: calc(var(--gap) * 1.333);
	}
	.promotions-item__description,
	.promotions-item__content {
		font-size: var(--text-size);
	}
	.promotions-item__label {
		font-size: var(--text-size-sm);
	}
	.page-breadcrumbs {
		font-size: var(--text-size);
	}
	.faq-item__toggle {
		flex: 0 0 28px;
		max-width: 28px;
		width: 28px;
		height: 28px;
	}
	.faq-item__title {
		font-size: var(--h6-size);
	}
	.payments-block-heading {
        font-size: var(--h6-size);
    }
    .faq-item__logo {
    	height: 36px;
    }
    .faq-item__logo img {
    	max-height: 36px;
    }
    .faq-item.active {
    	padding-bottom: calc(var(--gap) * 1.333);
    }
    .equipments-item__wrap {
    	padding: calc(var(--gap) * 1.333) calc(var(--gap) * 1.333) calc(var(--gap) * 1.667);
    }
    .equipments-item__title {
    	font-size: var(--h6-size);
    }
    .equipments-item__description {
    	font-size: var(--text-size-sm);
    }
    .news-item__title {
    	font-size: var(--text-size);
    }
    .news-item__excerpt {
    	font-size: var(--text-size-sm);
    }
    #wp-calendar tbody td {
    	padding: 0;
    }
    #wp-calendar tbody td a {
    	width: 30px;
    	height: 30px;
    }
    .documents-item__icon {
    	flex: 0 0 48px;
    	max-width: 48px;
    	width: 48px;
    	height: 48px;
    }
    .documents-item a:after {
    	flex: 0 0 16px;
    	max-width: 16px;
    	width: 16px;
    	height: 16px;
    }
    .contacts-left {
    	gap: calc(var(--gap) * 2);
    }
    .contacts-map iframe {
    	min-height: 480px;
    }
    .contacts-map:before {
        width: 240px;
        height: 220px;
    }
}






@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 12px;
		--admin-bar: 32px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 26px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header {
		--header-height: 66px;
		padding: calc(var(--gap) / 1.5) 0;
	}
	.header-logo img {
		max-height: 28px;
	}
	.main-menu {
		font-size: var(--text-size-sm);
		gap: var(--gap);
	}
	.main-menu ul {
		font-size: var(--text-size-sm);
	}
	.header-button .btn {
		font-size: var(--text-size-sm);
		min-height: 40px;
		padding: 10px 16px;
	}
	.header-phone > li > a {
		width: 40px;
		height: 40px;
	}
	.account-button a {
		flex: 0 0 40px;
		max-width: 40px;
		width: 40px;
		height: 40px;
	}
	.account-button a:before {
		flex: 0 0 20px;
		max-width: 20px;
		height: 20px;
	}
	.hero-image {
		height: 460px;
	}
	.hero-additional-image span {
		height: 200px;
	}
	.hero-additional-image p {
		font-size: var(--text-size-sm);
	}
	.tariffs-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% /  3);
	}
	.footer-widget {
		flex: auto;
		max-width: 260px;
	}
	.promotions-item__title {
		font-size: var(--h5-size);
	}
	.page-body-wrap {
		gap: calc(var(--gap) * 2);
	}
	.page-body-main {
		flex: 0 0 calc(100% / 3 * 2 - var(--gap));
		max-width: calc(100% / 3 * 2 - var(--gap));
	}
	.page-sidebar {
		flex: 0 0 calc(100% / 3 - var(--gap));
		max-width: calc(100% / 3 - var(--gap));
	}
	.news-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
}