@charset "utf-8";

@font-face {
	font-family: 'Fixel Text';
	src: url('../fonts/FixelText-Regular.woff') format('woff'), url('../fonts/FixelText-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--font: Inter, -apple-system, system-ui, "sans-serif";
	--font2: "Fixel Text", Inter, -apple-system, system-ui, "sans-serif";
	--white: #fff;
	--black: #000;
	--bg-black: #0D0D0E;
	--bg-blue: #1B2237;
	--text-black: #121724;
	--dark-gray: #5C5967;
	--light-gray: #EDEDED;
	--light-gray2: #B3B3B3;
	--blue: #1960C9;
	--green: #34C759;
	--yellow: #FFCC00;
	--red: #FF383C;
	--header: 3.75rem;
	--side: 1rem;
	--height: 0;
	font-size: 0.833333vw;
}

@media (min-width: 1920px) {
	:root {
		font-size: 16px;
	}
}

@media (max-width: 1279px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	:root {
		--side: 1.5rem;
	}
}

@media (min-width: 1024px) {
	:root {
		--header: 5rem;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	:root {
		--side: 2rem;
	}
}

@media (min-width: 1280px) and (max-width: 1599px) {
	:root {
		--side: 4rem;
	}
}

@media (min-width: 1600px) and (max-width: 1919px) {
	:root {
		--side: 7.5rem;
	}
}

@media (min-width: 1920px) {
	:root {
		--side: calc((100vw - 105rem)/2);
	}
}

html,
body {
	height: 100%;
	box-sizing: border-box;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
	font-optical-sizing: auto;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-black);
	color: var(--white);
	font: normal 1rem/1.2 var(--font);
	-webkit-text-size-adjust: none;
	display: flex;
	flex-direction: column;
}

@media (min-width: 1280px) {
	body {
		font-size: 1.125rem;
	}
}

*,
::after,
::before,
::backdrop,
::file-selector-button {
	margin: 0;
	padding: 0;
}

*,
::after,
::before,
::backdrop,
::file-selector-button {
	box-sizing: border-box;
	border: 0 solid;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

ol,
ul,
menu {
	list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


header,
nav,
section,
article,
aside,
footer,
menu,
time,
figure,
figcaption,
main {
	display: block;
}

img,
svg,
picture {
	border: 0;
	outline: none;
	vertical-align: top;
}

svg {
	fill: currentColor;
}

a {
	color: inherit;
	text-decoration: underline;
	outline: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

strong {
	font-weight: bold;
}

.h1,
.h2 {
	font: 600 1.625rem/1.1 var(--font);
}

.h3 {
	font: 600 1.25rem/1.1 var(--font);
}

.h4 {
	font: 600 1.125rem/1.1 var(--font);
}


@media (min-width: 1280px) {
	.h1 {
		font-weight: 500;
		font-size: 4rem;
	}

	.h2 {
		font-weight: 500;
		font-size: 3rem;
	}

	.h3 {
		font-size: 2rem;
	}

	.h4 {
		font-size: 1.5rem;
	}
}

.btn {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	position: relative;
	flex: 0 0 auto;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--white);
	border-style: solid;
	border-width: 1px;
	font: 500 1rem/1.2 var(--font);
	text-align: center;
	gap: 0.5rem;
	height: 3.1875rem;
	padding: 0 1rem;
	border-radius: 6.25rem;
	transition-property: color, background, border;
	transition-duration: 0.4s;
	transition-timing-function: ease;
}

.btn img,
.btn svg {
	flex: 0 0 auto;
	width: 0.875rem;
	height: 0.875rem;
}

@media (min-width: 1280px) {
	.btn-big {
		font-size: 1.125rem;
		height: 4.875rem;
		padding-left: 1.875rem;
		padding-right: 1.875rem;
	}

	.btn-big img,
	.btn-big svg {
		width: 1rem;
		height: 1rem;
	}

	.btn-medium {
		height: 3.75rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		font-size: 1.125rem;
	}

	.btn-small {
		height: 3.625rem;
		padding-left: 1.6875rem;
		padding-right: 1.6875rem;
		font-size: 1.125rem;
	}
}

.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
}

.btn-primary:hover {
	border-color: var(--white);
	background-color: var(--white);
	color: var(--blue);
}

.btn-secondary {
	border-color: var(--white);
	background-color: transparent;
	backdrop-filter: blur(1.25rem);
	-webkit-backdrop-filter: blur(1.25rem);
}

.btn-secondary:hover {
	border-color: var(--white);
	background-color: var(--white);
	color: var(--blue);
}

.form-grid {
	display: grid;
	grid-template-columns: 100%;
	gap: 1.25rem;
}

.main-input {
	position: relative;
}

.main-input input,
.main-input textarea,
.main-input select,
.main-input-label {
	font: normal 1rem/1.2 var(--font);
	padding: 0.6875rem 0.9375rem;
	border: 1px solid var(--dark-gray);
	color: var(--dark-gray);
	background-color: var(--white);
	display: block;
	width: 100%;
	outline: none;
	appearance: none;
	border-radius: 0.25rem;
}

.main-input *::placeholder {
	color: var(--dark-gray);
}

.main-input-dark input,
.main-input-dark textarea,
.main-input-dark select,
.main-input-dark .main-input-label {
	border-color: var(--light-gray2);
	background-color: var(--bg-blue);
	color: var(--light-gray);
}

.main-input-dark *::placeholder,
.main-input-dark .main-input-label {
	color: var(--light-gray2);
}

@media (min-width: 1280px) {

	.main-input input,
	.main-input textarea,
	.main-input select,
	.main-input-label {
		font-size: 1.125rem;
		padding: 0.9375rem 1.1875rem;
	}
}

.main-input textarea {
	resize: none;
	height: 10.8125rem;
}

.main-input-label {
	position: absolute;
	top: 0;
	left: 0;
	border-color: transparent;
	pointer-events: none;
	background-color: transparent;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 0;
}

input:not(:placeholder-shown)~.main-input-label,
textarea:not(:placeholder-shown)~.main-input-label {
	opacity: 0;
}

.checkbox {
	position: relative;
	width: 1rem;
	height: 1rem;
}

.checkbox input {
	display: block;
	appearance: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--dark-gray);
	background-color: var(--white);
	border-radius: 1px;
}

.checkbox:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: -1px;
	background: url(../img/icons/checkbox.svg) no-repeat 50% 50%/contain;
	opacity: 0;
}

.checkbox:has(input:checked)::after {
	opacity: 1;
}

.form-checks {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-weight: normal;
	font-size: 0.875rem;
}

.form-checks>* {
	position: relative;
	padding-left: 1.5rem;
}

.form-checks label {
	cursor: pointer;
}

.form-checks a {
	color: var(--blue);
	text-decoration: none;
}

.form-checks .checkbox {
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%);
}

.swiper {
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	flex: 0 0 auto;
	width: 100%;
}

.color-red {
	color: var(--red);
}

.color-green {
	color: var(--green);
}

.color-blue {
	color: var(--blue);
}

.color-white {
	color: var(--white);
}

.color-gray {
	color: var(--light-gray2);
}

.hr {
	height: 1px;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	background-color: var(--light-gray2);
}

@media (min-width: 1280px) {
	.hr {
		margin-top: 1.25rem;
		margin-bottom: 1.25rem;
		height: clamp(1px, 0.125rem, 2px);
	}
}

.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.anchor {
	display: block;
	height: 0;
	position: relative;
	top: calc((var(--header) + 1.25rem)*-1);
	pointer-events: none;
}

.mainwrap {
	flex: 0 0 auto;
	width: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

@media (max-width: 1023px) {
	.mainwrap {
		background: url(../img/bg-mobile.webp) no-repeat 50% 0/100% auto;
	}
}

@media (min-width: 1024px) {
	.mainwrap {
		background: url(../img/bg.webp) no-repeat 50% 0/max(120rem, 100%) auto;
	}
}

.content {
	flex: 1 0 auto;
}

.header,
.footer {
	flex: 0 0 auto;
}

.main-logo {
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0.3em
}

.main-logo,
.main-logo a {
	text-decoration: none;
	color: inherit;
	transition: color 0.4s ease;
}

a.main-logo:hover,
.main-logo a:hover {
	color: var(--blue);
}

.main-logo img {
	display: block;
	height: 1.5em;
	width: auto;
}

.main-close {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	position: relative;
	transition: color 0.4s ease;
	color: var(--dark-gray);
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
}

.main-close:hover {
	color: var(--blue);
}

.main-close:before,
.main-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: currentColor;
	width: 1.5rem;
	height: 0.21875rem;
	border-radius: 6.25rem;
}

.main-close:before {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.main-close:after {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header);
	padding: 0 var(--side);
	display: flex;
	align-items: center;
	gap: 2.5rem;

	transition: background 0.4s ease;
}

.header[data-scrolled] {
	background-color: color-mix(in srgb, var(--black) 20%, transparent);
}

.header:before {
	content: '';
	position: absolute;
	inset: 0;
	backdrop-filter: blur(1.25rem);
	-webkit-backdrop-filter: blur(1.25rem);
}

.header .main-logo {
	font-size: 1.125rem;
	position: relative;
}

@media (min-width: 1024px) {
	.header .main-logo {
		font-size: 1.75rem;
	}
}

.main-menu-trigger {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	position: relative;
	color: var(--white);
	transition: color 0.4s ease;
	margin-left: auto;
	margin-right: -0.375rem;
}

@media (min-width: 1024px) {
	.main-menu-trigger {
		display: none;
	}
}

.main-menu-trigger>* {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: currentColor;
	width: 1.4375rem;
	height: clamp(1px, 0.125rem, 2px);
	border-radius: clamp(1px, 0.125rem, 2px);
}

.main-menu-trigger>*:nth-child(1) {
	transform: translateX(-50%) translateY(calc(-50% - 0.40625rem));
}

.main-menu-trigger>*:nth-child(2) {
	transform: translateX(-50%) translateY(-50%);
}

.main-menu-trigger>*:nth-child(3) {
	transform: translateX(-50%) translateY(calc(-50% + 0.40625rem));
}

.main-menu ul a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
}



.main-menu ul a:hover {
	color: var(--blue);
}

@media (max-width: 1023px) {
	.main-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--white);
		color: var(--text-black);
		overflow-y: auto;
		padding-bottom: 2.5rem;
		transition: opacity 0.4s ease;

	}

	.main-menu:not([data-open]) {
		opacity: 0;
		pointer-events: none;
	}

	html:has(.main-menu[data-open]) {
		overflow: hidden;
	}

	.main-menu-head {
		display: flex;
		align-items: center;
		padding: 0 var(--side);
		height: var(--header);
		position: sticky;
		top: 0;
		z-index: 5;
		background-color: var(--white);
		margin-bottom: 2.5rem;
	}

	.main-menu-head .main-close {
		margin-left: auto;
		margin-right: -0.34375rem;
	}

	.main-menu ul {
		margin: 0 var(--side);
		font-size: 1rem;
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.main-menu ul+ul {
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--light-gray2);
	}
}

@media (min-width: 1024px) {
	.main-menu {
		position: relative;
		flex: 1 1 auto;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.25rem 2.5rem;
	}

	.main-menu-head {
		display: none;
	}

	.main-menu ul {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.25rem 2.5rem;
	}

	.main-menu .hide-desktop {
		display: none;
	}
}

.move-by-cursor {
	transition: transform 0.3s ease-out;
	transform-style: preserve-3d;
}

.hero {
	padding-top: var(--header);
}

.hero-slider .swiper-slide {
	height: auto !important;
	display: flex;
	flex-direction: column;
}

.hero-slider .swiper-slide:not(.swiper-slide-active) {
	pointer-events: none;
}

.hero-slider .hero-screen {
	flex: 1 0 auto;
}

.hero-screen {
	padding: 2rem var(--side) 0 var(--side);
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	min-height: calc(100vh - var(--header));
	min-height: calc(100svh - var(--header));
}

@media (min-width: 1024px) {
	.hero-screen {
		padding-top: 0;
		flex-direction: row;
		align-items: center;
		gap: 2.5rem;
	}
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

@media (min-width: 1280px) {
	.hero-text {
		gap: 2rem;
	}
}

.hero-price {
	margin-top: -0.75rem;
}


.hero-descr {
	max-width: 29em;

}


.hero-list {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 1.3125rem 0.5625rem;
	max-width: 32em;
}

.hero-list>* {
	flex: 0 0 auto;
	max-width: 100%;
	position: relative;
	padding-left: 1.5625rem;
}

.hero-list img,
.hero-list svg {
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	top: 0.5lh;
	left: 0;
	color: var(--green);
	transform: translateY(-50%);
}

@media (min-width: 1280px) {
	.hero-list {
		gap: 1.875rem 1.25rem;
		padding: 0.1875rem 0;
	}

	.hero-list>* {
		padding-left: 2.5rem;
	}

	.hero-list img,
	.hero-list svg {
		width: 1.875rem;
		height: 1.875rem;
	}
}

.hero-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem 1.875rem;
}

.hero-buttons>* {
	min-width: 16.875rem;
}

.hero-image {
	margin-top: 1.25rem;
	max-width: 30rem;
	width: 100%;
	flex: 0 0 auto;
	margin-left: auto;
	margin-right: auto;
	background: url(../img/hero-image-diagonal.svg) no-repeat 50% 50%/auto 87%;
}

@media (max-width: 1023px) {
	.hero-slider .hero-image {
		margin-top: 5.125rem;
	}
}

@media (min-width: 1024px) {
	.hero-image {
		flex: 0 0 auto;
		width: 46.13%;
		max-width: 48.4375rem;
		margin-right: 2.5rem;

	}
}

@media (min-width: 1280px) {
	.hero-image {
		margin-right: 5.625rem;
	}
}

.hero-image img {
	width: 100%;
	height: auto;
}

.hero-nav {
	position: absolute;
	z-index: 10;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1023px) {
	.hero-nav {
		left: var(--side);
		width: 13rem;
		bottom: calc(100vw - var(--side)*2 + 2rem);
	}

	@media (min-width: 512px) {
		.hero-nav {
			bottom: 32rem;
		}
	}
}

@media (min-width: 1024px) {
	.hero-nav {
		right: var(--side);
		top: 50%;
		transform: translateY(-50%);
		flex-direction: column-reverse;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.hero-nav {
		height: 13rem;
	}
}

@media (min-width: 1280px) {
	.hero-nav {
		height: 24.75rem;
	}
}

.hero-prev,
.hero-next {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	width: 1.875rem;
	height: 1.875rem;
	overflow: hidden;
	border: 1px solid currentColor;
	transition: color 0.4s ease;
	color: var(--dark-gray);
	border-radius: 50%;
}

@media (min-width: 1280px) {

	.hero-prev,
	.hero-next {
		width: 3.75rem;
		height: 3.75rem;
		border-width: clamp(1px, 0.125rem, 2px);
	}
}

.hero-prev:hover,
.hero-next:hover {
	color: var(--white);
}

.hero-prev svg,
.hero-next svg {
	width: 100%;
	height: 100%;
}

.hero-pagination .swiper-pagination-bullet {
	border-radius: 6.25rem !important;
	flex: 0 0 auto;
	opacity: 1 !important;
	background-color: var(--dark-gray) !important;
	margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
	flex: 1 0 auto;
	background-color: var(--white) !important;
}

.hero-pagination {
	position: absolute;
	width: auto;
	height: auto;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin: 0;
}

@media (max-width: 1023px) {
	.hero-pagination {
		top: 0.875rem !important;
		left: 2.625rem !important;
		right: 2.625rem !important;
		bottom: auto !important;
		width: auto !important;
	}

	.hero-pagination .swiper-pagination-bullet {
		width: 1.25rem !important;
		height: clamp(1px, 0.125rem, 2px) !important;
		min-width: 1.25rem !important;
	}

	.hero-pagination .swiper-pagination-bullet-active {
		width: auto !important;
	}
}

@media (min-width: 1024px) {
	.hero-pagination {
		flex-direction: column;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.hero-pagination {
		left: 0.875rem !important;
		top: 2.625rem !important;
		bottom: 2.625rem !important;
		right: auto !important;
		width: clamp(1px, 0.125rem, 2px) !important;
	}

	.hero-pagination .swiper-pagination-bullet {
		height: 1.25rem !important;
		width: clamp(1px, 0.125rem, 2px) !important;
		min-height: 1.25rem !important;
	}

	.hero-pagination .swiper-pagination-bullet-active {
		height: auto !important;
	}
}

@media (min-width: 1280px) {
	.hero-pagination {
		left: 1.75rem !important;
		top: 5rem !important;
		bottom: 5rem !important;
		right: auto !important;
		width: 0.25rem !important;
	}

	.hero-pagination .swiper-pagination-bullet {
		height: 2.5rem !important;
		width: 0.25rem !important;
		min-height: 2.5rem !important;
	}

	.hero-pagination .swiper-pagination-bullet-active {
		height: auto !important;
	}
}

.section {
	position: relative;
	padding: 3.75rem var(--side) 0 var(--side);
}

.content>.section:first-child {
	padding-top: calc(var(--header) + 2rem);
}

@media (min-width: 1280px) {
	.section {
		padding-top: 7.5rem;
	}

	.content>.section:first-child {
		padding-top: calc(var(--header) + 7.5rem);
	}
}

.top-title {
	margin: 0 0 2.5rem 0;
	max-width: 51.25rem;
	text-wrap: balance;
}

@media (max-width: 1023px) {
	.top-title.to-center-mobile {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1024px) {

	.top-title.to-center {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1280px) {
	.top-title {
		margin-bottom: 3.75rem;
	}
}

.top-title p {
	margin-top: 1rem;
	max-width: 41.666em;
}

@media (max-width: 1023px) {
	.top-title.to-center-mobile p {

		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1024px) {
	.top-title.to-center p {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1280px) {
	.top-title p {
		margin-top: 1.25rem;
	}

}

.servers-list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.25rem;
}

@media (min-width: 1024px) {
	.servers-list {

		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1280px) {
	.servers-list {
		gap: 2.5rem;
	}
}

.servers-list>* {
	width: 100%;
	background-color: var(--white);
	color: var(--text-black);
	padding: 1rem;
	border-radius: 1.25rem;
	display: flex;
	flex-direction: column;
}

@media (min-width: 1280px) {
	.servers-list>* {
		padding: 2rem 2.5rem;
	}
}

.servers-list-title {
	margin-bottom: 0.5rem;
}

@media (min-width: 1280px) {
	.servers-list-title {
		margin-bottom: 1rem;
		margin-right: -1.25rem;
	}
}

.servers-list .hr {
	background-color: var(--light-gray);
}

@media (max-width: 1279px) {
	.servers-list .hr {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
}

.servers-list .hr.dark {
	background-color: var(--light-gray2);
}

.servers-list-country {
	position: relative;
	color: var(--white);
	background-color: var(--blue);
	font-weight: 600;
	padding: 0.75rem;
	border-top-left-radius: 0.625rem;
	border-top-right-radius: 0.625rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 1280px) {
	.servers-list-country {
		padding: 1rem;
		font-weight: 500;
	}
}

.servers-list-select {
	display: inline-flex;
	vertical-align: top;
	position: relative;
	align-items: center;
	gap: 0.5rem;
}

.servers-list-select select {
	appearance: none;
	display: inline-block;
	vertical-align: top;
	font: inherit;
	outline: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

.servers-list-select .arrow {
	flex: 0 0 auto;
	border-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
	border-width: 0.46875rem 0.375rem 0 0.375rem;
	opacity: 0.8;
	pointer-events: none;
}

.servers-list-checklist {
	background-color: var(--light-gray);
	border-bottom-left-radius: 0.625rem;
	border-bottom-right-radius: 0.625rem;
	font-size: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	padding: 0.8125rem 0.75rem;
}

.servers-list-checklist[hidden] {
	display: none;
}

.servers-list-checklist>* {
	position: relative;
	padding-left: 1.75rem;
}

.servers-list-checklist>*:before {
	content: '';
	position: absolute;
	top: 0.5lh;
	left: 0;
	width: 1.25rem;
	height: 1.25rem;
	background: url(../img/icons/check-rounded-darkgray.svg) no-repeat 50% 50%/contain;
	transform: translateY(-50%);
}


@media (min-width: 1280px) {
	.servers-list-checklist {
		font-family: var(--font2);
		font-size: 1rem;
		padding-top: 0.9375rem;
		padding-bottom: 0.9375rem;
		gap: 1.4375rem;
	}

	.servers-list-checklist>* {
		padding-left: 2.375rem;
	}

	.servers-list-checklist>*:before {
		width: 1.625rem;
		height: 1.625rem;
	}
}

.servers-list-title2 {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.1;
}

.servers-list-ul {
	font-size: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

@media (min-width: 1280px) {
	.servers-list-ul {
		font-size: 1rem;
		font-family: var(--font2);
	}
}

.servers-list-ul>* {
	position: relative;
	padding-left: 1em;
}

.servers-list-ul>*:before {
	content: '•';
	position: absolute;
	top: 0;
	left: 0;
}

.servers-list-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: auto;
	position: relative;
	width: 100%;
	color: var(--dark-gray);
}

.servers-list-price>*:not(.btn) {
	min-width: 13.75rem;
}

.servers-list .btn:hover {
	border-color: var(--blue);
}

.why-us-list {

	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.why-us-list {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 1fr;
	}
}

@media (max-width: 1279px) {
	.why-us-list {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.why-us-list {
		margin-right: 18rem;
		gap: 2.5rem;
	}
}


.why-us-list>* {
	border: 1px solid var(--light-gray2);
	background-color: color-mix(in srgb, var(--white) 10%, transparent);
	padding: 1.25rem;
	color: var(--light-gray2);
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

@media (min-width: 1280px) {
	.why-us-list>* {
		padding: 2.5rem;
		border-radius: 1.25rem;
		gap: 1.25rem;
	}

	.why-us-list>*:nth-child(4n),
	.why-us-list>*:nth-child(4n-1) {
		transform: translateX(18rem);
	}
}

.why-us-title {
	color: var(--white);
	position: relative;
	padding-left: 1.5rem;
}

.why-us-title svg {
	color: var(--green);
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
}

@media (min-width: 1280px) {
	.why-us-title {
		padding-left: 2.875rem;
	}

	.why-us-title svg {
		width: 2.4375rem;
		height: 2.4375rem;
	}
}

.cta-bg {
	border-radius: 1.25rem;
	padding: 2.5rem 1rem;
	text-align: center;
	background: radial-gradient(131.92% 77.56% at 72.85% 73.17%, #0B0430 0%, #030405 100%);
	justify-content: space-between;
}

@media (min-width: 1024px) {
	.cta-bg {
		text-align: left;
		display: flex;
		align-items: center;
		gap: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.cta-bg {
		padding: 0 6.25rem;
	}
}

@media (min-width: 1280px) {
	.cta-text {
		padding-top: 3.125rem;
		padding-bottom: 3.125rem;
	}
}

@media (min-width: 1280px) {
	.cta-title {
		margin-bottom: 2rem;
	}
}

.cta-bg p {
	margin-top: 1rem;
}

.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
}

@media (min-width: 1024px) {
	.cta-buttons {
		justify-content: flex-start;
	}
}

@media (min-width: 1280px) {
	.cta-buttons {
		margin-top: 2rem;
		gap: 1.875rem;

	}
}

.cta-buttons>* {
	min-width: 16.875rem;
}

.cta-image {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 30rem;
	flex: 0 0 auto;
}

@media (min-width: 1024px) {
	.cta-image {

		width: 50%;
		margin-left: -6.25rem;
	}
}

@media (min-width: 1280px) {
	.cta-image {
		max-width: none;
	}
}

.cta-image img {
	width: 100%;
	height: auto;
	display: block;
}

.how-it-works-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.how-it-works-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1280px) {
	.how-it-works-grid {
		gap: 2.5rem;
	}
}

.how-it-works-block {
	border-radius: 0.625rem;
	padding: 1rem;
}

@media (max-width: 1279px) {
	.how-it-works-block {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.how-it-works-block {
		border-radius: 1.25rem;
		padding: 2.5rem;
	}
}

.how-it-works-light {
	background-color: var(--white);
	color: var(--text-black);
}

.how-it-works-dark {
	background-color: var(--bg-blue);
}

.how-it-works-light .btn:hover {
	border-color: var(--blue);
}

.how-it-works .how-it-works-dark .hr {
	background-color: var(--dark-gray);
}

.how-it-works .how-it-works-light .color-gray {
	color: var(--dark-gray);
}

.how-it-works .accent {
	font-weight: 600;
}

@media (min-width: 1280px) {
	.how-it-works .accent {
		font-weight: 500;
	}
}

.how-it-works .small {
	font-weight: 0.875rem;
}

@media (min-width: 1280px) {
	.how-it-works .small {
		font-size: 1rem;
		font-family: var(--font2);
	}
}

.how-it-works-title {
	margin-bottom: 0.5rem;
}

@media (min-width: 1280px) {
	.how-it-works-title {
		margin-bottom: 1rem;
	}
}

.how-it-works p {
	margin-top: 0.5rem;
}

@media (min-width: 1280px) {

	.how-it-works p {
		margin-top: 1rem;
	}
}

.how-it-works-list {

	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (max-width: 1279px) {
	.how-it-works-list {
		font-size: 0.875rem;
	}
}

.how-it-works-list>* {
	position: relative;
	padding-left: 0.875rem;
}

.how-it-works-list img,
.how-it-works-list svg {
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%) translateX(-25%);
}

@media (min-width: 1280px) {
	.how-it-works-list {
		gap: 1.25rem;
	}

	.how-it-works-list>* {
		padding-left: 1.6875rem;
	}

	.how-it-works-list img,
	.how-it-works-list svg {
		width: 1.75rem;
		height: 1.75rem;
	}
}

.scenarios-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
}

@media (min-width: 1280px) {
	.scenarios-grid {
		gap: 2.5rem;
	}
}

.scenarios-block {
	flex: 0 0 auto;
	width: 100%;
	background-color: var(--white);
	padding: 1rem;
	border-radius: 0.625rem;
	color: var(--text-black);
}

@media (max-width: 1279px) {
	.scenarios-block {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) {
	.scenarios-block {
		width: calc((100% - 1.25rem)/2);
	}
}

@media (min-width: 1280px) {
	.scenarios-block {
		padding: 2rem 2.5rem;
		border-radius: 1.25rem;
		width: calc((100% - 5rem)/3 - 0.5px);
	}
}


.scenarios-block .btn:hover {
	border-color: var(--blue);
}

.scenarios-block-title {
	margin-bottom: 0.625rem;
}

@media (min-width: 1280px) {
	.scenarios-block-title {
		margin-bottom: 1rem;
		line-height: 1.2;
	}
}

.scenarios-block p {
	margin-top: 0.625rem;
}

@media (min-width: 1280px) {
	.scenarios-block p {
		margin-top: 1rem;
	}
}

.scenarios-block .color-gray {
	color: var(--dark-gray);
}

@media (min-width: 1280px) {
	.scenarios-block .small {
		font-size: 1rem;
		font-family: var(--font2);
	}
}

.scenarios-block-title2 {
	position: relative;
	font-weight: 600;
	padding-left: 1rem;
}

.scenarios-block-title2 img,
.scenarios-block-title2 svg {
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%) translateX(-25%);
	width: 1rem;
	height: 1rem;
}

@media (min-width: 1280px) {
	.scenarios-block-title2 {
		font-weight: 500;
		padding-left: 1.6875rem;
	}

	.scenarios-block-title2 img,
	.scenarios-block-title2 svg {
		width: 1.625rem;
		height: 1.625rem;
	}
}

.business .top-title p {
	max-width: 36em;
}


.business-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
}

@media (min-width: 1280px) {
	.business-list {
		gap: 2.5rem;
	}
}

.business-list>* {
	flex: 0 0 auto;
	width: 100%;
	border: 1px solid var(--light-gray2);
	background-color: color-mix(in srgb, var(--white) 10%, transparent);
	padding: 1rem;
	border-radius: 0.625rem;
}

@media (min-width: 768px) {
	.business-list>* {
		width: calc((100% - 1.25rem)/2);
	}
}

@media (min-width: 1280px) {
	.business-list>* {
		border-radius: 1.25rem;
		padding: 2.5rem;
		width: calc((100% - 5rem)/3 - 0.5px);
	}
}

.business-list-title {
	margin-bottom: 0.75rem;
}

@media (min-width: 1280px) {

	.business-list-title {
		margin-bottom: 1.25rem;
	}
}

.business-list p {
	margin-top: 0.75rem;
}

.testimonials .top-title p {
	max-width: 36em;
}

.testimonials-clients {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 87.125rem;
}



.testimonials-clients>* {
	flex: 0 0 auto;
	position: relative;
}

@media (min-width: 1024px) {

	.testimonials-clients>*:not(:last-child) {
		padding-right: 1.3125rem;
	}

	.testimonials-clients>*:not(:last-child):after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 1px;
		background-color: var(--dark-gray);
	}
}

.testimonials-clients img {
	width: 9.375rem;
	height: 3.125rem;
	object-fit: scale-down;
	object-position: center;
	display: block;
}

@media (min-width: 1024px) {
	.testimonials-clients img {
		width: 15rem;
		height: 5rem;
	}
}

.testimonials-list {
	margin-top: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 87.125rem;
	display: grid;
	grid-template-columns: repeat(1, 100%);
	gap: 1.25rem;
}

@media (min-width: 1280px) {

	.testimonials-list {
		margin-top: 3.75rem;
		gap: 3.75rem;
	}
}

.testimonials-case {
	background-color: var(--bg-blue);
	border-radius: 1.25rem;
	padding: 1rem;
	display: block;
	font-size: 0.875rem;
}

@media (min-width: 1024px) {
	.testimonials-case {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1280px) {
	.testimonials-case {
		padding: 2rem 2.5rem;
		font-size: 1rem;
	}
}

.testimonials-case:nth-child(odd) {
	background-color: var(--white);
	color: var(--text-black);
}

.testimonials-case:nth-child(odd) .color-gray {
	color: var(--dark-gray);
}

.testimonials-case:nth-child(odd) .btn:hover {
	border-color: var(--blue);
}

.testimonials-case p {
	margin-top: 0.75rem;
}

.testimonials-case-head {
	align-self: center;
}

@media (min-width: 1024px) {
	.testimonials-case-head {

		padding-right: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.testimonials-case-head {
		padding-right: 2rem;
		font-size: 1.125rem;
	}
}

.testimonials-case-title {
	margin-bottom: 1rem;
}

@media (min-width: 1280px) {

	.testimonials-case-title {
		margin-bottom: 2rem;
	}
}

.testimonials-case-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media (min-width: 1280px) {
	.testimonials-case-author {
		gap: 1.25rem;
	}
}

.testimonials-case-photo {
	flex: 0 0 auto;
	width: 4.3125rem;
	height: 4.3125rem;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

@media (min-width: 1280px) {
	.testimonials-case-photo {
		width: 7.5rem;
		height: 7.5rem;
	}
}

.testimonials-case-name {
	margin-top: 0 !important;
	margin-bottom: 0.75rem;
}


.testimonials-case-body {
	padding-top: 1.25rem;
	margin-top: 1.25rem;
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: var(--light-gray);
}

@media (min-width: 1024px) {
	.testimonials-case-body {
		border-width: 0 0 0 1px;
		margin-top: 0;
		padding-top: 0;
		padding-left: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.testimonials-case-body {
		padding-left: 2rem;
		font-family: var(--font2);
	}
}

.testimonials-case:nth-child(odd) .testimonials-case-body {
	border-color: var(--light-gray2);
}

.testimonials-case-body-title {
	margin-bottom: 0.75rem;
	font-family: var(--font);
}

@media (max-width: 1279px) {
	.testimonials-case-body-title {
		font-size: 1rem;
	}
}

@media (min-width: 1280px) {
	.testimonials-case-body-title {
		margin-bottom: 1.25rem;
	}
}

.benefits-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

@media (min-width: 1280px) {
	.benefits-list {
		gap: 2.5rem;
	}
}

.benefits-block {
	flex: 0 0 auto;
	width: 100%;
	border: 1px solid var(--light-gray2);
	background-color: color-mix(in srgb, var(--white) 10%, transparent);
	border-radius: 1.25rem;
	padding: 1rem;
}

@media (min-width: 768px) {
	.benefits-block {
		width: calc((100% - 1.25rem)/2);
	}
}

@media (max-width: 1279px) {
	.benefits-block {
		font-family: var(--font2);
	}
}

@media (min-width: 1280px) {
	.benefits-block {
		padding: 2.5rem;
		width: calc((100% - 2.5rem)/2);
	}
}

.benefits-block .hr {
	background-color: var(--dark-gray);
}

.benefits-block p {
	margin-top: 0.75rem;
}

@media (min-width: 1280px) {

	.benefits-block p {
		margin-top: 1.25rem;
	}
}

.benefits-block .accent {
	font-weight: 600;
	font-family: var(--font);
}

@media (max-width: 1279px) {
	.benefits-block .accent {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.benefits-block .accent {
		font-weight: 500;
	}
}

.benefits-block-title {
	margin-bottom: 0.75rem;
	font-family: var(--font);
}

@media (min-width: 1280px) {
	.benefits-block-title {
		margin-bottom: 1.25rem;
	}
}

.benefits-block-list {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.benefits-block-list>* {
	position: relative;
	padding-left: 1em;
}

.benefits-block-list>*:before {
	content: '•';
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 1280px) {
	.benefits-block-list {
		margin-top: 1.25rem;
		gap: 1.25rem;
	}
}

.faq-max {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 69.125rem;
}

.faq-title {
	margin-bottom: 1rem;
	margin-top: 2.5rem;
}

@media (min-width: 1280px) {

	.faq-title {
		margin-bottom: 1.25rem;
		margin-top: 3.75rem;
	}
}

.faq-list {
	font-size: 0.875rem;
}

@media (min-width: 1280px) {
	.faq-list {
		font-size: 1rem;
	}
}

.faq-list>* {
	margin-top: 1rem;
	border-radius: 1.25rem;
	background-color: var(--white);
	color: var(--text-black);
}

@media (min-width: 1280px) {
	.faq-list>* {
		margin-top: 1.25rem;
	}
}

.faq-list-title {
	cursor: pointer;
	position: relative;
	font-weight: 600;
	padding: 1rem 3.3125rem 1rem 1rem;
}

@media (min-width: 1280px) {
	.faq-list-title {
		font-size: 1.25rem;
		padding: 2rem 5.4375rem 2rem 2.5rem;
	}
}

@media (min-width: 1440px) {
	.faq-list-title {
		font-size: 1.5rem;
	}
}

.faq-list-title:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1rem;
	background: url(../img/icons/chevron-down-dark.svg) no-repeat 50% 50%/contain;
	aspect-ratio: 30/18;
	width: 1.25rem;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.4s ease;
}

@media (max-width: 1023px) {
	.faq-list-title:after {
		background-image: url(../img/icons/chevron-down-dark-mobile.svg);
	}
}

@media (min-width: 1280px) {
	.faq-list-title:after {
		right: 2.5rem;
		width: 1.5rem;
	}
}

@media (min-width: 1440px) {
	.faq-list-title:after {

		width: 1.875rem;
	}
}

[data-open]>.faq-list-title:after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-list-text {
	position: relative;
	overflow: hidden;
	height: 0;
	transition-property: height, opacity;
	transition-duration: 0.4s;
	transition-timing-function: ease;

	opacity: 0;
}

[data-open]>.faq-list-text {
	height: var(--height);
	opacity: 1;
}

@media (min-width: 1280px) {
	.faq-list-text {
		top: -0.75rem;
		font-family: var(--font2);
	}
}

.faq-list-text>* {
	margin-left: 1rem;
	margin-right: 1rem;
	border-top: 1px solid var(--light-gray2);
	padding-top: 1rem;
	padding-bottom: 1rem;
}

@media (min-width: 1280px) {
	.faq-list-text>* {
		margin-left: 2.5rem;
		margin-right: 2.5rem;
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}
}

.faq-list-text>*>*:not(:first-child) {
	margin-top: 1rem;
}

@media (min-width: 1280px) {

	.faq-list-text>*>*:not(:first-child) {
		margin-top: 1.25rem;
	}
}


.faq-list .btn:hover {
	border-color: var(--blue);
}

.faq-help {
	background-color: var(--bg-blue);
	border-radius: 1.25rem;
	padding: 1rem;
	margin-top: 3.75rem;
}

@media (min-width: 1024px) {
	.faq-help {
		display: flex;
		align-items: center;
	}
}

@media (min-width: 1280px) {
	.faq-help {
		padding: 2.5rem 3.75rem;
		margin-top: 7.5rem;
	}
}

.faq-help>.hr {
	background-color: var(--dark-gray);
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.faq-help>.hr {
		align-self: stretch;
		margin: 0 1.25rem;
		height: auto;
		width: 1px;
		min-height: 14.25rem;
	}
}

@media (min-width: 1280px) {
	.faq-help>.hr {
		margin: 0 2.5rem;
	}
}

.faq-help p {
	margin-top: 0.75rem;
}

.faq-help-title {
	margin-bottom: 0.75rem;
}

@media (min-width: 1280px) {

	.faq-help-title {
		margin-bottom: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.faq-help-head {
		flex: 1 1 auto;
	}
}

@media (min-width: 1024px) {
	.faq-help-body {
		flex: 0 0 auto;
		width: 20.625rem;
	}
}

@media (min-width: 1280px) {
	.faq-help-body {
		width: 21.5rem;
	}
}

.faq-help-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.faq-help-list>* {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.faq-help-list-icon {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
}

@media (min-width: 1280px) {
	.faq-help-list-icon {
		width: 3.75rem;
		height: 3.75rem;
	}
}

.faq-help-list-icon img,
.faq-help-list-icon svg {
	width: 100%;
	height: 100%;
}

.faq-help-list .accent {
	margin-top: 0.5rem;
}

.faq-help-list .accent a {
	text-decoration: none;
}

.faq-help-list .accent a:not([href^="mailto:"]) {
	font-weight: 600;
	color: var(--blue);
}

@media (min-width: 1280px) {
	.faq-help-list .accent a:not([href^="mailto:"]) {
		font-weight: 500;
	}
}

.footer {
	margin-top: 3.75rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: 100%;
	font-size: 0.875rem;
	padding: 2.5rem var(--side);
	background-color: var(--text-black);
}

@media (min-width: 1024px) {
	.footer {
		grid-template-columns: 25% 1fr auto;
		grid-template-rows: auto 1fr;
	}
}

@media (min-width: 1280px) {
	.footer {
		margin-top: 7.5rem;
		font-size: 1rem;
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.footer a {
	text-decoration: none;
	transition: color 0.4s ease;
	color: var(--white);
}

.footer a:hover {
	color: var(--blue);
}

.footer .main-logo {
	margin-right: auto;
	margin-bottom: -1.25rem;
	font-size: 2.25rem;
	margin-left: -7px;
	transform: translateY(-20px);
}

@media (min-width: 1024px) {
	.footer .main-logo {
		order: 1;
	}
}

@media (min-width: 1280px) {
	.footer .main-logo {
		font-size: 2.625rem;
	}
}

.footer-text {
	text-wrap: balance;
}

@media (min-width: 1024px) {
	.footer-text {
		order: 4;
		margin-top: auto;
	}
}

.footer-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.footer-menu {
		grid-row: span 2;
		order: 2;
	}
}

.footer-menu ul {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
}

@media (min-width: 1024px) {
	.footer-contacts {
		grid-row: span 2;
		order: 3;
		margin-left: auto;
		margin-right: auto;
	}
}

.footer-contacts ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-contacts ul>* {
	position: relative;
}

.footer-contacts li:has(img),
.footer-contacts li:has(svg) {
	padding-top: calc((1.5rem - 1lh)/2);
	padding-bottom: calc((1.5rem - 1lh)/2);
	padding-left: 2rem;
}

.footer-contacts li img,
.footer-contacts li svg {
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	top: 0;
	left: 0;
}

.modal-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	border: 0;
	background: none;
	outline: none;
	display: flex;
}

.modal-wrap:not([data-open]),
.modal-wrap:not([data-open]) * {
	pointer-events: none !important;
}

html:has(.modal-wrap[data-open]) {
	overflow: hidden;
}

.modal-fader {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(1.25rem);
	-webkit-backdrop-filter: blur(1.25rem);
	transition: opacity 0.4s ease;
	opacity: 0;
}

.modal-wrap[data-open] .modal-fader {
	opacity: 1;
}

.modal {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	width: calc(100% - var(--side)*2);
	max-width: 23.0625rem;
	background-color: var(--white);
	color: var(--dark-gray);
	padding: 1.25rem 1rem;
	margin: auto;
	border-radius: 1.25rem;
	transition-property: transform, opacity;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	opacity: 0;
	transform: translateY(-0.625rem);
}

@media (min-width: 1280px) {
	.modal {
		max-width: 33.3125rem;
		padding: 2.5rem;
	}
}

.modal-wrap[data-open] .modal {
	opacity: 1;
	transform: translateY(0);
}

.modal .main-close {
	position: absolute;
	top: 0.875rem;
	right: 0.625rem;
}

@media (min-width: 1280px) {
	.modal .main-close {
		top: 2.125rem;
		right: 2.125rem;
	}
}

@media (min-width: 1440px) {
	.modal .main-close {
		top: 2.375rem;
	}
}

.modal-title {
	margin-bottom: 1.25rem;
	color: var(--bg-black);
}

@media (max-width: 1279px) {

	.modal-title.h4 {
		font-size: 1.25rem;
	}
}


.modal .btn:hover {
	border-color: var(--blue);
}

@media (min-width: 1280px) {
	.about-proxy .top-title {
		margin-bottom: 2.5rem;
	}
}

.about-proxy-list {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 100%;
	max-width: 60.25rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1280px) {
	.about-proxy-list {
		gap: 2rem;
	}
}

.about-proxy-block {
	border: 1px solid var(--light-gray2);
	background-color: color-mix(in srgb, var(--white) 10%, transparent);
	border-radius: 1.25rem;
	padding: 1rem;
	color: var(--light-gray);
}

@media (max-width: 1279px) {
	.about-proxy-block {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.about-proxy-block {
		padding: 2.5rem;
	}
}

.about-proxy-block p {
	margin-top: 0.75rem;
}

@media (min-width: 1280px) {
	.about-proxy-block p {
		margin-top: 1.25rem;
	}
}

.about-proxy-block-title {
	color: var(--white);
	margin-bottom: 0.75rem;
}

@media (min-width: 1280px) {
	.about-proxy-block-title {
		margin-bottom: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.tarifes .top-title {
		margin-bottom: 2.5rem;
	}
}

.tarifes-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 100%;
}

@media (min-width: 1280px) {
	.tarifes-grid {
		gap: 2.5rem;
		grid-template-columns: 2fr 1fr;
	}
}

.tarifes-table {
	background-color: var(--white);
	border-radius: 1.25rem;
	padding: 1rem;
	color: var(--text-black);
}

@media (min-width: 1280px) {
	.tarifes-table {
		padding: 2.5rem 3.75rem;
	}
}

.tarifes-table strong {
	font-weight: 600;
}

.tarifes-table table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.tarifes-table th {
	text-align: center;
	height: 2.125rem;
	color: var(--blue);
	border-style: solid;
	border-color: var(--light-gray2);
	border-width: 0 0 0 1px;
	padding: 0 0.625rem;
}

.tarifes-table th:first-child {
	border-left-width: 0;
	padding-left: 0;
}

.tarifes-table td {
	text-align: center;
	height: 2.125rem;
	border-style: solid;
	border-color: var(--light-gray2);
	border-width: 0 0 0 1px;
	padding: 0 0.625rem;
}

.tarifes-table td:first-child {
	border-left-width: 0;
	padding-left: 0;
}

.tarifes-table .spacer td {
	height: 2.0625rem;
	padding: 0;
}

.tarifes-table .spacer td:before {
	content: '';
	display: block;
	height: 1px;
	background-color: var(--light-gray2);
}

.tarifes-table a:not(.btn) {
	text-decoration: underline;
	color: var(--blue);
}

.tarifes-table a:not(.btn):hover {
	text-decoration: none;
}

@media (max-width: 767px) {

	.tarifes-table table,
	.tarifes-table tbody {
		display: block;
	}

	.tarifes-table thead,
	.tarifes-table tr:has(th),
	.tarifes-table th,
	.tarifes-table .spacer {
		display: none !important;
	}

	.tarifes-table tr {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		margin-top: 1.25rem;
		padding-top: 1.25rem;
		border-top: 1px solid var(--light-gray);
	}

	.tarifes-table .spacer:first-child+tr {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;

	}

	.tarifes-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: 0;
		padding: 0;
		height: auto;
		font-size: 0.875rem;
		text-align: right;
	}

	.tarifes-table td:first-child {
		color: var(--blue);
		font-weight: 600;
		font-size: 1.125rem;
		line-height: 1.1;
	}

	.tarifes-table td:before {
		content: attr(data-title);
		text-align: left;
		max-width: 50%;
		flex: 0 0 auto;
		font-weight: 600;
		font-size: 1.125rem;
		line-height: 1.1;
		color: var(--text-black);
	}
}

.tarifes-info {
	background-color: var(--bg-blue);
	border-radius: 1.25rem;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 1280px) {
	.tarifes-info {
		padding: 2.5rem;
	}
}

.tarifes-info-title {
	margin-bottom: 0.75rem;
}

@media (min-width: 1280px) {
	.tarifes-info-title {
		margin-bottom: 1.25rem;
	}
}

.tarifes-info-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 1280px) {
	.tarifes-info-list {
		gap: 1.25rem;
	}
}

.tarifes-info-list>* {
	position: relative;
	padding-left: 1em;
}

.tarifes-info-list>*:before {
	content: '•';
	position: absolute;
	top: 0;
	left: 0;
}

.tarifes-buttons {
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (min-width: 1280px) {
	.tarifes-buttons {
		justify-content: flex-start;
		gap: 1.25rem 1.875rem;
	}
}

.tarifes-buttons>* {
	min-width: 16.875rem;
}

@media (min-width: 1280px) {
	.why-unlimited .top-title {
		margin-bottom: 2.5rem;
	}
}

.why-unlimited-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 100%;
}

@media (min-width: 768px) and (max-width: 1439px) {
	.why-unlimited-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1280px) {
	.why-unlimited-grid {
		gap: 2.5rem;

	}
}

@media (min-width: 1440px) {
	.why-unlimited-grid {

		grid-template-columns: repeat(3, 1fr);
	}
}

.why-unlimited-block {
	border-radius: 1.25rem;
	background-color: var(--bg-blue);
	padding: 1rem;
}

@media (max-width: 1279px) {
	.why-unlimited-block {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) and (max-width: 1439px) {
	.why-unlimited-block:first-child {
		grid-column: 1/-1;
	}
}

@media (min-width: 1280px) {
	.why-unlimited-block {
		padding: 2rem 2.5rem;
	}
}

.why-unlimited-block-white {
	background-color: var(--white);
	color: var(--text-black);
}

.why-unlimited-block-white .btn:hover {
	border-color: var(--blue);
}

.why-unlimited-block-title {
	border-style: solid;
	border-width: 0 0 clamp(1px, 0.125rem, 2px) 0;
	border-color: var(--dark-gray);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.why-unlimited-block-white .why-unlimited-block-title {
	border-color: var(--light-gray2);
}

@media (max-width: 1279px) {
	.why-unlimited-block-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.why-unlimited-block-title {
		padding-bottom: 1.25rem;
		margin-bottom: 1.25rem;
	}
}

.why-unlimited-block-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 1280px) {
	.why-unlimited-block-list {
		gap: 1.25rem;
	}
}

.why-unlimited-block-list>* {
	position: relative;
	padding-left: 1.6875rem;
}

.why-unlimited-block-white .why-unlimited-block-list>* {
	padding-left: 2.375rem;
}

.why-unlimited-block-list>*:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateX(-25%) translateY(-50%);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	background-image: url('../img/icons/cross-red.svg');
	width: 1.625rem;
	height: 1.625rem;
}

.why-unlimited-block-white .why-unlimited-block-list>*:before {
	background-image: url('../img/icons/check-rounded-green.svg');
	transform: translateY(-50%);
}

.for-who .top-title {
	margin-bottom: 1rem;
}

@media (min-width: 1280px) {

	.for-who .top-title {
		margin-bottom: 2.5rem;
	}
}

.for-who-tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
	.for-who-tabs {
		justify-content: center;
		max-width: 69.125rem;
		margin-left: auto;
		margin-right: auto;
		gap: 1.25rem;
	}
}

.for-who-tabs-link {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	flex: 0 0 auto;
	max-width: 100%;
	text-decoration: none;
	text-align: center;
	border: 1px solid var(--light-gray2);
	background-color: var(--bg-blue);
	border-radius: 6.25rem;
	font: normal 0.875rem/1.2 var(--font);
	color: var(--light-gray);
	transition-property: color, background, border;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	padding: 0.6875rem 1.0625rem;
}

@media (min-width: 1280px) {
	.for-who-tabs-link {
		font-size: 1.125rem;
	}
}

.for-who-tabs-link:hover {
	color: var(--white);
}

.for-who-tabs-link[data-active] {
	cursor: default;
	color: var(--text-black);
	background-color: var(--white);
	border-color: var(--white);
}

.for-who-block {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 69.125rem;
	border: 1px solid var(--light-gray2);
	background-color: color-mix(in srgb, var(--white) 10%, transparent);
	padding: 1rem;
	border-radius: 1.25rem;
	color: var(--light-gray);
}

@media (max-width: 1279px) {
	.for-who-block {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.for-who-block {
		padding: 2.5rem;
	}
}

.for-who-tab-content:not([data-active]) {
	display: none;
}

.for-who-block-title {
	color: var(--white);
	margin-bottom: 1rem;
}

@media (min-width: 1280px) {
	.for-who-block-title {
		margin-bottom: 2rem;
	}
}

.for-who-block p {
	margin-top: 1rem;
}

@media (min-width: 1280px) {

	.for-who-block p {
		margin-top: 2rem;
	}
}

.for-who-block-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 1rem;
	gap: 0.75rem;
}

@media (min-width: 1280px) {
	.for-who-block-list {
		margin-top: 2rem;
	}
}

.for-who-block-list>* {
	flex: 0 0 auto;
	max-width: 100%;
	text-decoration: none;
	text-align: center;
	border: 1px solid var(--light-gray2);
	background-color: var(--bg-blue);
	border-radius: 6.25rem;
	font: normal 0.875rem/1.2 var(--font);
	color: var(--light-gray);
	padding: 0.6875rem 1.0625rem;
}

@media (min-width: 1280px) {
	.for-who-block-list>* {
		font-size: 1.125rem;
	}
}

.for-who-block-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

@media (min-width: 1280px) {
	.for-who-block-buttons {
		gap: 1.25rem 1.875rem;
		margin-top: 2rem;
	}
}

@media (min-width: 1280px) {
	.comparison .top-title {
		margin-bottom: 2.5rem;
	}
}

.comparison-table-wrap {
	background-color: var(--white);
	border-radius: 1.25rem;
	padding: 1rem;
	color: var(--text-black);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 90rem;
}

@media (max-width: 767px) {
	.comparison-table-wrap {
		display: none;
	}
}

@media (min-width: 1280px) {
	.comparison-table-wrap {
		padding: 2.5rem 3.75rem;
	}
}

.comparison-table strong {
	font-weight: 600;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.comparison-table th {
	text-align: center;
	height: 2.125rem;
	color: var(--blue);
	border-style: solid;
	border-color: var(--light-gray2);
	border-width: 0 0 0 1px;
	padding: 0 0.625rem;
}

.comparison-table th:first-child {
	border-left-width: 0;
	padding-left: 0;
}

.comparison-table td {
	text-align: center;
	height: 2.125rem;
	border-style: solid;
	border-color: var(--light-gray2);
	border-width: 0 0 0 1px;
	padding: 0 0.625rem;
}

.comparison-table td:first-child {
	border-left-width: 0;
	padding-left: 0;
	font-weight: 500;
}

.comparison-table .spacer td {
	height: 2.0625rem;
	padding: 0;
}

.comparison-table .spacer td:before {
	content: '';
	display: block;
	height: 1px;
	background-color: var(--light-gray2);
}

.comparison-table .spacer-mini td {
	height: 1.0625rem;
}

.comparison-table .spacer-mini td:before {
	display: none;
}

.comparison-table a:not(.btn) {
	text-decoration: underline;
	color: var(--blue);
}

.comparison-table a:not(.btn):hover {
	text-decoration: none;
}

/*
@media (max-width: 767px) {

	.comparison-table table,
	.comparison-table tbody {
		display: block;
	}

	.comparison-table thead,
	.comparison-table tr:has(th),
	.comparison-table th,
	.comparison-table .spacer {
		display: none !important;
	}

	.comparison-table tr {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		margin-top: 1.25rem;
		padding-top: 1.25rem;
		border-top: 1px solid var(--light-gray);
	}

	.comparison-table .spacer:first-child+tr {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;

	}

	.comparison-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border: 0;
		padding: 0;
		height: auto;
		font-size: 0.875rem;
		text-align: right;
	}

	.comparison-table td:first-child {
		color: var(--blue);
		font-weight: 600;
		font-size: 1.125rem;
		line-height: 1.1;
		display: block;
		text-align: left;
	}

	.comparison-table td:nth-child(2) {
		color: var(--green);
	}

	.comparison-table td:not(:first-child):before {
		content: attr(data-title);
		text-align: left;
		max-width: 50%;
		flex: 0 0 auto;
		font-weight: 600;
	}

	.comparison-table .hide-from-this,
	.comparison-table .hide-from-this~* {
		display: none !important;
	}
}
*/


@media (max-width: 767px) {

	.comparison-table table,
	.comparison-table tbody {
		display: block;
	}

	.comparison-table thead,
	.comparison-table tr:has(th),
	.comparison-table th,
	.comparison-table .spacer {
		display: none !important;
	}

	.comparison-table tr {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-top: 0.75rem;
	}

	.comparison-table td {
		display: block;
		border: 0;
		padding: 0;
		height: auto;
		font-size: 0.875rem;
		text-align: right;
	}

	.comparison-table td:first-child {

		font-weight: 600;
		text-align: left;
	}

}

.comparison-slider {
	width: auto !important;
	margin: 0 calc(var(--side)*-1) !important;
	padding: 0 calc(var(--side) - 10px) !important;
}

@media (min-width: 768px) {
	.comparison-slider {
		display: none !important;
	}
}

.comparison-slider .swiper-slide {
	width: 100%;
	max-width: 320px;
	padding: 0 10px;
	height: auto !important;
	display: flex;
	flex-direction: column;
}

.comparison-mobile-block {
	flex: 1 0 auto;
	width: 100%;
	background-color: var(--white);
	border-radius: 1.25rem;
	padding: 2rem 1rem 1rem 1rem;
	color: var(--text-black);
}

.comparison-mobile-block-title {
	color: var(--blue);
	margin-bottom: 1rem;
	text-align: center;
}

.proxy-status .top-title {
	font-size: 1.125rem;
}

@media (min-width: 1280px) {
	.proxy-status .top-title {
		margin-bottom: 5rem;
	}
}

.proxy-status-list {
	background-color: var(--bg-blue);
	border-radius: 1.25rem;
	padding: 2rem 1rem;
	width: 100%;
	max-width: 87.125rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1280px) {
	.proxy-status-list {
		padding: 5rem;
	}
}

.proxy-status-el {
	border-bottom: 1px solid var(--dark-gray);
	padding-bottom: 1.25rem;

}

.proxy-status-el:not(:first-child) {
	margin-top: 1.25rem;
}

@media (min-width: 1280px) {

	.proxy-status-el {

		padding-bottom: 2.5rem;

	}

	.proxy-status-el:not(:first-child) {
		margin-top: 2.5rem;
	}

	.proxy-status-el:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}
}

.proxy-status-head {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

@media (max-width: 1279px) {
	.proxy-status-head {
		font-size: 1rem;
	}
}

@media (min-width: 1280px) {
	.proxy-status-head {
		margin-bottom: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.proxy-status-head {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
}

.proxy-status-title {
	position: relative;
	padding-left: 2rem;
}

@media (min-width: 1280px) {
	.proxy-status-title {
		padding-left: 2.75rem;
	}
}

.proxy-status-title img,
.proxy-status-title svg {
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%);
}

@media (min-width: 1280px) {

	.proxy-status-title img,
	.proxy-status-title svg {
		width: 2rem;
		height: 2rem;
	}
}

.proxy-status-blocks {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(60, 1fr);
}

@media (max-width: 1023px) {
	.proxy-status-blocks {
		gap: 0.125rem;
	}
}

@media (max-width: 768px) {
	.proxy-status-blocks {
		gap: 2px;
	}
}

@media (max-width: 639px) {

	.proxy-status-blocks {
		grid-template-columns: repeat(30, 1fr);
	}

}

.proxy-status-blocks>* {
	height: 2.5rem;
	position: relative;
}

@media (min-width: 1280px) {

	.proxy-status-blocks>* {
		height: 2.6875rem;
	}
}

@media (max-width: 639px) {
	.proxy-status-blocks>*:nth-child(-n+30) {
		display: none;
	}
}

.proxy-status-blocks>*[aria-describedby] {
	opacity: 0.6;
}

.proxy-status-blocks .bg-green {
	background-color: var(--green);
}

.proxy-status-blocks .bg-yellow {
	background-color: var(--yellow);
}

.proxy-status-blocks .bg-red {
	background-color: var(--red);
}

.proxy-status-blocks>*:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 -0.25rem;
}

@media (max-width: 1023px) {
	.proxy-status-blocks>*:before {
		margin: 0 -0.0625rem;
	}
}

@media (max-width: 768px) {
	.proxy-status-blocks>*:before {
		margin: 0 -1px;
	}
}

.proxy-status-blocks-popup {

	border: 1px solid var(--dark-gray);
	background-color: var(--bg-black);
	padding: 1.25rem;
	color: var(--light-gray2);
	border-radius: 0.625rem;
	z-index: 100;
	width: 18em;
	font-size: 1rem;
}

@media (max-width: 1279px) {
	.proxy-status-blocks-popup {
		font-size: 0.75rem;
		padding: 0.75rem;
	}
}

.proxy-status-blocks-popup .hr {
	height: 1px;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	background-color: var(--dark-gray);
}

.proxy-status-blocks-popup-title {
	color: var(--white);
	position: relative;
	padding-left: 2rem;
	font-weight: 600;
	font-size: 120%;
	margin-bottom: 1.25rem;
}

@media (max-width: 1279px) {
	.proxy-status-blocks-popup-title {
		margin-bottom: 0.75rem;
		padding-left: 1.25rem;
	}
}

.proxy-status-blocks-popup-title img,
.proxy-status-blocks-popup-title svg {
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%);
}

@media (max-width: 1279px) {

	.proxy-status-blocks-popup-title img,
	.proxy-status-blocks-popup-title svg {
		width: 1rem;
		height: 1rem;
	}
}

.tippy-box[data-theme~='darkProxy'] {
	background-color: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}

.tippy-box[data-theme~='darkProxy'] .tippy-content {
	padding: 0;
}


.proxy-status-blocks>* .proxy-status-blocks-popup {
	display: none;
}


.tippy-box .proxy-status-blocks-popup {
	display: block;
}

.proxy-status-info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: var(--light-gray2);
	margin-top: 1rem;
}

@media (max-width: 1279px) {
	.proxy-status-info {
		font-family: var(--font2);
	}
}

.proxy-status-info .text-mobile {
	display: none;
	;
}

@media (max-width: 639px) {
	.proxy-status-info .text-mobile {
		display: inline;
	}

	.proxy-status-info .text-main {
		display: none;
	}
}

.content-search {
	width: 100%;
	margin-bottom: 2rem;
	position: relative;
	padding-right: 3rem;
}

@media (min-width: 1024px) {
	.content-search {
		max-width: 24.3125rem;
	}
}

.content-search input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding: 0.4375rem 0.6875rem;
}

@media (min-width: 1280px) {}

.content-search .btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3rem;
	border-radius: 0 0.25rem 0.25rem 0;
	padding: 0;
}

.content-search .btn img,
.content-search .btn svg {
	width: 1.5rem;
	height: 1.5rem;
}

.sort-tabs {
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}


.sort-tabs-link {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	flex: 0 0 auto;
	max-width: 100%;
	text-decoration: none;
	text-align: center;
	border: 1px solid var(--light-gray2);
	background-color: var(--bg-blue);
	border-radius: 6.25rem;
	font: normal 0.875rem/1.2 var(--font);
	color: var(--light-gray);
	transition-property: color, background, border;
	transition-duration: 0.4s;
	transition-timing-function: ease;
	padding: 0.6875rem 1.0625rem;
	position: relative;
}

@media (min-width: 1280px) {
	.sort-tabs-link {
		font-size: 1.125rem;
	}
}

.sort-tabs-link input {
	position: absolute;
	top: 0;
	left: 0;
	appearance: none;
	width: 100%;
	height: 100%;
	border-radius: 6.25rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}

.sort-tabs-link:hover {
	color: var(--white);
}

.sort-tabs-link:has(input:checked) {

	color: var(--text-black);
	background-color: var(--white);
	border-color: var(--white);
}

@media (max-width: 1279px) {
	.blog .top-title:has(.h2:last-child) {
		margin-bottom: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.blog .top-title {
		margin-bottom: 5rem;
	}
}

.blog-grid {
	display: grid;
	grid-template-columns: 100%;
	gap: 1.25rem;
}

@media (min-width: 768px) and (max-width: 1279px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-grid.single-row>*:nth-child(n + 3) {
		display: none !important;
	}
}

@media (min-width: 1280px) {
	.blog-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}

	.blog-grid.single-row>*:nth-child(n + 4) {
		display: none !important;
	}
}

.blog-card {
	border-radius: 1.25rem;
	background-color: var(--white);
	padding: 1rem;
	color: var(--text-black);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 1280px) {
	.blog-card {
		gap: 1.25rem;
		padding: 2rem 2.5rem;
	}
}

.blog-card .btn:hover {
	border-color: var(--blue);
}

.blog-card-photo {
	position: relative;
	height: 15rem;
	border-radius: 0.625rem;
	background-color: var(--dark-gray);
	display: block;
}

.blog-card-photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0.625rem;
	object-fit: cover;
	object-position: center;
}

.blog-card-info {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2rem;
}

@media (max-width: 1279px) {
	.blog-card-info {
		font-size: 0.875rem;
	}
}

.blog-card-info>* {
	position: relative;
}

.blog-card-info>*:not(:first-child):before {
	content: '';
	position: absolute;
	top: 0;
	left: -1.03125rem;
	width: 1px;
	background-color: var(--dark-gray);
	height: 1lh;
}

@media (max-width: 1279px) {
	.blog-card-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 1280px) {
	.blog-card-title {
		margin-bottom: -0.25rem;
	}
}

.blog-card-title a {
	text-decoration: none;
	transition: color 0.4s ease;
	color: inherit;
}

.blog-card-title a:hover {
	color: var(--blue);
}

.blog-card-text {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card .btn {
	align-self: flex-start;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-top: auto;
}

@media (min-width: 1280px) {
	.blog-card .btn {
		padding-left: 1.375rem;
		padding-right: 1.375rem;
	}
}

.pagination {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (min-width: 1280px) {
	.pagination {
		margin-top: 2.5rem;
		gap: 1.25rem;
	}
}

.pagination-nav {
	flex: 0 0 auto;
	max-width: 100%;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 1280px) {
	.pagination-nav {
		gap: 0.75rem;
	}
}

.pagination-prev,
.pagination-next {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	width: 1.875rem;
	height: 1.875rem;
	overflow: hidden;
	border: 1px solid currentColor;
	transition: color 0.4s ease;
	color: var(--dark-gray);
	border-radius: 50%;
}

.pagination-prev {
	margin-right: 0.25rem;
}

.pagination-next {
	margin-left: 0.25rem;
}

@media (min-width: 1280px) {

	.pagination-prev,
	.pagination-next {
		width: 3.75rem;
		height: 3.75rem;
		border-width: clamp(1px, 0.125rem, 2px);
	}

	.pagination-prev {
		margin-right: 0.5rem;
	}

	.pagination-next {
		margin-left: 0.5rem;
	}
}

.pagination-prev:hover,
.pagination-next:hover {
	color: var(--white);
}

.pagination-prev svg,
.pagination-next svg {
	width: 100%;
	height: 100%;
}

.pagination-line {
	flex: 0 0 auto;
	width: 1.25rem;
	height: clamp(1px, 0.125rem, 2px);
	border-radius: clamp(1px, 0.125rem, 2px);
	background-color: var(--dark-gray);
}

.pagination-line[data-active] {
	background-color: var(--white);
	width: 2.5rem;
}

@media (min-width: 1280px) {
	.pagination-line {
		width: 2.5rem;
		height: 0.25rem;
	}

	.pagination-line[data-active] {
		width: 5rem;
	}
}

@media (min-width: 1024px) {
	.pagination-load-more {
		display: none;
	}
}

@media (max-width: 1023px) {
	.pagination-nav {
		display: none;
	}
}

.nav-back {
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
}

.section>.nav-back:first-child {
	margin-top: -1.75rem;
}

@media (min-width: 1280px) {
	.nav-back {
		margin-bottom: 5rem;
	}

	.section>.nav-back:first-child {
		margin-top: -4.5rem;
	}
}

.nav-back>* {
	appearance: none;
	outline: none;
	border: 0;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.4s ease;
	text-decoration: none;
	color: var(--light-gray2);
}

@media (max-width: 1279px) {
	.nav-back>* {
		font-size: 0.75rem;
	}
}

.nav-back>*:hover {
	color: var(--blue);
}

.nav-back svg {
	flex: 0 0 auto;
	height: 0.9375rem;
	width: auto;
}

@media (max-width: 1279px) {
	.nav-back svg {
		height: 0.5rem;
	}
}

.main-article-body {
	background-color: var(--white);
	border-radius: 1.25rem;
	display: grid;
	grid-template-columns: 100%;
	color: var(--text-black);
	padding: 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.main-article-body {
		display: block;
	}

	.main-article-body:after {
		content: ' ';
		clear: both;
		display: block;
		width: 0;
		height: 0;
		overflow: hidden;
		font-size: 0;
	}

	.main-article-body:has(.main-article-sidebar):before {
		content: '';
		position: absolute;
		top: 1rem;
		bottom: 1rem;
		right: calc((100% - 2rem)*0.4 + 1rem);
		width: 1px;
		background-color: var(--light-gray2);
	}
}

@media (min-width: 1280px) {
	.main-article-body {
		padding: 2.5rem;
	}

	.main-article-body:has(.main-article-sidebar):before {
		top: 2.5rem;
		bottom: 2.5rem;
		right: calc((100% - 5rem)*0.4 + 2.5rem);
	}
}

.main-article-header {
	order: 1;
}

@media (min-width: 1024px) {
	.main-article-body:has(.main-article-sidebar) .main-article-header {
		float: left;
		width: 60%;
		padding-right: 1rem;
	}
}

@media (min-width: 1280px) {
	.main-article-body:has(.main-article-sidebar) .main-article-header {

		padding-right: 2.5rem;
	}
}


.main-article-sidebar {
	order: 2;
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.main-article-body:has(.main-article-sidebar) .main-article-sidebar {
		float: right;
		width: 40%;
		padding-left: 1rem;
		margin-bottom: 0;
		position: sticky;
		top: calc(var(--header) + 1.25rem);
	}
}

@media (min-width: 1280px) {
	.main-article-body:has(.main-article-sidebar) .main-article-sidebar {

		padding-left: 2.5rem;
	}
}

.main-article-content {
	order: 3;
}

@media (min-width: 1024px) {
	.main-article-body:has(.main-article-sidebar) .main-article-content {
		clear: left;
		float: left;
		width: 60%;
		padding-right: 1rem;
	}
}

@media (min-width: 1280px) {
	.main-article-body:has(.main-article-sidebar) .main-article-content {

		padding-right: 2.5rem;
	}
}

.main-article-content>*:first-child {
	margin-top: 0 !important;
}

.main-article-content>*:last-child {
	margin-bottom: 0 !important;
}

.main-article-info {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2rem;
	margin-bottom: 0.75rem;
}

@media (max-width: 1279px) {
	.main-article-info {
		font-size: 0.875rem;
	}
}

@media (min-width: 1280px) {
	.main-article-info {
		margin-bottom: 2.5rem;
	}
}

.main-article-info>* {
	position: relative;
}

.main-article-info>*:not(:first-child):before {
	content: '';
	position: absolute;
	top: 0;
	left: -1.03125rem;
	width: 1px;
	background-color: var(--dark-gray);
	height: 1lh;
}

.main-article-author {
	display: flex;
	align-items: center;

	gap: 0.75rem;
	color: var(--dark-gray);
	margin-bottom: 2rem;
}

@media (max-width: 1279px) {
	.main-article-author {
		font-size: 0.875rem;
		min-height: 5.375rem;
	}
}

@media (min-width: 1280px) {
	.main-article-author {
		gap: 1.25rem;
		margin-bottom: 2.5rem;
	}
}

.main-article-author-photo {
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	width: 4.3125rem;
	height: 4.3125rem;
}

@media (min-width: 1280px) {
	.main-article-author-photo {
		width: 4.625rem;
		height: 4.625rem;
	}
}

.main-article-author-name {
	color: var(--text-black);
	margin-bottom: 0.75rem;
}


.main-article-sidebar-title {
	margin-bottom: 1rem;
}

@media (max-width: 1023px) {
	.main-article-sidebar-title {
		cursor: pointer;
		position: relative;
		margin-top: -0.75rem;
		margin-bottom: 0;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid var(--light-gray2);
	}

	.main-article-sidebar-title:after {
		content: '';
		position: absolute;
		top: 50%;
		right: 1rem;
		background: url(../img/icons/chevron-down-dark-mobile.svg) no-repeat 50% 50%/contain;
		aspect-ratio: 30/18;
		width: 1.25rem;
		transform: translateY(-50%) rotate(0deg);
		transition: transform 0.4s ease;
	}

	.main-article-sidebar-title[data-open]:after {
		transform: translateY(-50%) rotate(180deg);
	}

	.main-article-sidebar-title+* {
		overflow: hidden;
		transition-property: height, opacity;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		overflow: hidden;
		height: 0;
		opacity: 0;
	}

	.main-article-sidebar-title[data-open]+* {
		height: var(--height);
		opacity: 1;
	}

	.main-article-sidebar-title+*>* {

		padding-top: 0.75rem;
	}

}

.main-article-sidebar-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 1280px) {
	.main-article-sidebar-list {
		gap: 1rem;
	}
}

.main-article-sidebar-list .style1 {
	font-weight: 500;
}

@media (max-width: 1279px) {
	.main-article-sidebar-list .style1 {
		font-size: 0.875rem;
		font-weight: 600;
	}
}

.main-article-sidebar-list .style2 {
	margin-left: 1rem;
}

@media (max-width: 1279px) {
	.main-article-sidebar-list .style2 {
		font-family: var(--font2);
	}
}

@media (min-width: 1280px) {
	.main-article-sidebar-list .style2 {
		margin-left: 2rem;
	}
}

.main-article-sidebar-list a {
	text-decoration: none;
	transition: color 0.4s ease;
	color: inherit;
}

.main-article-sidebar-list a:hover {
	color: var(--blue);
}

.main-article-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	border-radius: 0.625rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 1280px) {
	.main-article-image {
		margin-top: 2.5rem;
		margin-bottom: 2.5rem;
	}
}

.main-article-h1 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.1;
}

@media (min-width: 1280px) {
	.main-article-h1 {
		margin-top: 2.5rem;
		font-size: 2rem;
		margin-bottom: 1.25rem;
	}
}

.main-article-h2 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.1;
}

@media (min-width: 1280px) {
	.main-article-h2 {
		margin-top: 2.5rem;
		margin-bottom: 1.25rem;
		font-size: 1.5rem;
	}
}

.main-article-h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.1;
}

@media (min-width: 1280px) {
	.main-article-h3 {
		margin-top: 2.5rem;
		margin-bottom: 1.25rem;
	}
}

.main-article-code {
	white-space: pre-wrap;
	word-break: break-word;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font: inherit;
	color: var(--white);
	padding: 0.75rem;
	border-radius: 0.625rem;
	background-color: var(--bg-blue);
	display: block;
}

@media (max-width: 1279px) {
	.main-article-code {
		font-family: var(--font2);
	}
}

@media (min-width: 1280px) {
	.main-article-code {
		margin-top: 2.5rem;
		margin-bottom: 2.5rem;
		padding: 1.25rem;
	}
}

.main-article-body .btn:hover {
	border-color: var(--blue);
}

.main-article-content p {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

@media (min-width: 1280px) {
	.main-article-content p {
		margin-top: 1.25rem;
		margin-bottom: 1.25rem;
	}
}

.main-article-content ul,
.main-article-content ol {
	list-style: none;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

@media (min-width: 1280px) {

	.main-article-content ul,
	.main-article-content ol {
		margin-top: 1.25rem;
		margin-bottom: 1.25rem;
	}
}

.main-article-content li ul,
.main-article-content li ol {
	margin-top: 0;
	margin-bottom: 0;
}

.main-article-content li {
	position: relative;
	padding-left: 1em;
}

.main-article-content ul>li:before {
	content: '•';
	position: absolute;
	top: 0;
	left: 0;
}

.main-article-content ol {
	counter-reset: ol;
}

.main-article-content ol>li {
	padding-left: 1.5em;
}

.main-article-content ol>li:before {
	content: counter(ol)'.';
	counter-increment: ol;
	display: inline-block;
	vertical-align: top;
	margin-left: -1.5em;
	min-width: 1.5em;
	text-align: center;
	padding-right: 0.25em;
}

.main-article-content a:not(.btn) {
	color: inherit;
	text-decoration: indianred;
}

.main-article-content a:not(.btn):hover {
	text-decoration: none;
}

.main-article-content strong {
	font-weight: 600;
}