/*!
Theme Name: KA-DATA
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
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: ka-data
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.

KA-DATA 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/
*/


:root {
	--container: 1420px;
	--container-sm: 1180px;

	--text-size: 18px;
	--text-size-sm: 16px;
	--text-size-esm: 14px;
	--h1-size: 45px;
	--h2-size: 36px;
	--h3-size: 30px;
	--h4-size: 26px;
	--h5-size: 22px;
	--h6-size: 20px;

	--blue: #4D7FFE;
	--blue-light: #F1F4FF;
	--black: #222222;
	--grey: #707A8A;
	--grey-border: #DFE2E5;
	--white: #FFFFFF;
	--orange: #FFA51F;
	--bg-gradient: linear-gradient(270deg, #F5FCFF 0%, #F1F4FF 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: 300;
	font-family: 'Inter', sans-serif;
	line-height: 1.66667;
	color: var(--grey);
	background: var(--white);
}
a {
	color: var(--blue);
	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;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
.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: 'Inter', serif;
	font-weight: 500;
	margin: 0 0 24px;
	line-height: 1.145;
	color: var(--black);
}
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 24px;
}
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 -10px -20px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--blue-light);
	color: var(--black);
	border: none;
	color: var(--black);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	padding: 12px 24px 10px;
	min-height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 150px;
	resize: vertical;
}
select {
	cursor: pointer;
}
input[type="submit"] {
	-webkit-appearance: none;
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-esm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 20px;
	font-size: var(--text-size-esm);
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-sm {
	width: 100%;
	max-width: var(--container-sm);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 140px;
	padding-bottom: 140px;
	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: 1080px) {
	.hide-lg {
		display: none !important;
	}
}
.w-100 {
	width: 100% !important;
}
.bg-gradient {
	background: var(--bg-gradient);
}


.heading {
	position: relative;
	font-size: var(--h6-size);
	line-height: 1.5;
	margin-bottom: 60px;
}
.heading.center {
	text-align: center;
}
.heading h2 {
	font-size: var(--h1-size);
	font-family: 'Inter', serif;
	line-height: 1.333;
	margin-bottom: 6px;
}
.heading h3 {
	font-size: var(--h1-size);
	font-family: 'Inter', serif;
	line-height: 1.222;
	margin-bottom: 4px;
}
.heading h2:last-child,
.heading h3:last-child {
	margin-bottom: 0;
}


.subheading {
	margin-bottom: 40px;
}
.subheading.center {
	text-align: center;
}
.subheading h3 {
	font-size: var(--h2-size);
	font-weight: 500;
}
.subheading h3 img {
	max-width: 105px;
	max-height: 44px;
	margin: 0 10px;
}



.page-content.text-sm {
	font-size: var(--text-size-sm);
}
.page-content ul,
.page-content ol {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.page-content.text-sm ul,
.page-content.text-sm ol {
	gap: 20px;
	line-height: 1.5;
}
.page-content ul li,
.page-content ol li {
	position: relative;
	padding-left: 60px;
	z-index: 1;
}
.page-content ul li:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	background: url(images/list-ul-check.svg) no-repeat center;
	background-size: contain;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-content ol {
	counter-reset: my-awesome-counter;
}
.page-content ol li {
	counter-increment: my-awesome-counter;
}
.page-content ol li:before {
	content: counter(my-awesome-counter);
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 500;
	color: var(--white);
	z-index: 1;
}
.page-content ul li span:first-child strong:first-child,
.page-content ol li span:first-child strong:first-child {
	font-size: calc(var(--h5-size) * 1.090909);
	margin-bottom: 4px;
	display: inline-block;
}
.page-content.text-sm ul li span:first-child strong:first-child,
.page-content.text-sm ol li span:first-child strong:first-child {
	font-size: var(--h6-size);
}
.page-content code {
	display: block;
	padding: 16px 24px;
	background: #EEEEEE;
}
.page-content strong {
	font-weight: 500;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size-sm);
	font-family: 'Inter', serif;
	font-weight: 500;
	line-height: 1.5;
	background: transparent;
	border: 2px solid transparent;
	padding: 10px 38px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	outline: none;
	min-height: 50px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn.btn-lg {
	font-size: var(--h6-size);
	min-height: 70px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}
.btn-primary.shadow {
	box-shadow: 0px 10px 25px 0px #ADCCF6;
}
.btn-primary.shadow:hover {
	box-shadow: 0px 10px 25px 0px #ffbc59;
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary.shadow {
	box-shadow: 0px 10px 25px 0px #3A63CA;
}
.btn-secondary.shadow:hover {
	box-shadow: 0px 10px 25px 0px #777777;
}
.btn-outline-primary {
	border-color: var(--blue);
	color: var(--blue);
}
.btn-outline-primary:hover {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 5px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 5px !important;
	background: #D9DDEA !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 2px !important;
	-webkit-border-radius: 2px !important;
	border-radius: 2px !important;
}
.swiper-pagination-bullet-active {
	background: #4D7FFE !important;
}

.swiper-navigation {
	position: absolute;
	width: 100%;
	max-width: calc(var(--container) + 188px);
	top: calc(50% - 25px);
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: .5s;
	z-index: 9;
}
.swiper-navigation.sm {
	max-width: calc(var(--container-sm) + 188px);
}
.swiper-navigation.style-2 {
	max-width: calc(var(--container) + 280px);
}
.swiper-initialized:hover .swiper-navigation {
	opacity: 1;
}
.swiper-navigation button {
	position: absolute;
	width: 50px;
	height: 50px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid var(--grey-border);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.swiper-navigation.style-2 button {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	background: transparent !important;
	border: none !important;
}
.swiper-navigation button:hover {
	background: var(--blue);
	border-color: var(--blue);
}
.swiper-navigation button:disabled {
	background: var(--white);
	border-color: var(--grey-border);
	cursor: no-drop;
	opacity: .35;
}
.swiper-navigation button.swiper-navigation-prev {
	left: 0;
}
.swiper-navigation button.swiper-navigation-next {
	right: 0;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/chevron-right.svg);
    mask-image: url(images/chevron-right.svg);
    background-color: var(--blue);
    flex: 0 0 14px;
    max-width: 14px;
    width: 14px;
    height: 14px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation.style-2 button:before {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	background-color: #D9DDEA;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(-180deg);
}
.swiper-navigation button:hover:before {
	background-color: var(--white);
}
.swiper-navigation.style-2 button:hover:before {
	background-color: var(--blue);
}
.swiper-navigation button:disabled:before {
	background-color: var(--blue);
}
.swiper-navigation.style-2 button:disabled:before {
	background-color: #D9DDEA;
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 14px;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--blue);
	width: 44px;
	height: 44px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.soc-links li a:hover {
	background: var(--blue);
}
.soc-links li a svg {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.soc-links li a path {
	fill: var(--blue);
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--white);
}


.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-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	transform: translateY(-100%);
	display: flex;
	flex-direction: column;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	padding: 12px 0;
	background: var(--blue-light);
	z-index: 1;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	height: 50px;
	gap: 20px;
}
.modal-mobile-logo {
	flex: auto;
	order: 1;
}
.modal-mobile-logo img {
	width: 90px;
	height: 50px;
}
.modal-mobile-close {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	order: 4;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: var(--blue);
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--black);
}
.modal-mobile-close:before {
	content: '';
	flex: 0 0 27px;
	max-width: 27px;
	height: 27px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: 36px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	transition: .5s;
}
.modal-mobile-body {
	flex: auto;
	padding: 24px 0;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--grey-border);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	padding: 13px 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-chevrone {
	order: 2;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-webkit-mask-size: 14px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: var(--blue);
	cursor: pointer;
	margin-top: -2px;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-chevrone {
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 16px;
	padding: 0 0 0 20px;
	list-style: none;
	z-index: 9;
}
.mobile-menu ul li a {
	padding: 10px 0;
}
.modal-mobile-footer {
	position: relative;
	background: #08264E;
	padding: 35px 0;
	z-index: 1;
}
.modal-mobile-footer-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}


.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: 520px;
	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);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	background-clip: padding-box;
	outline: 0;
	padding: 40px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	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(--h4-size);
	font-weight: 500;
	color: var(--black);
	line-height: 1.25;
	margin-bottom: 24px;
	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: var(--grey);
	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: 26px -12px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -24px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item * {
	height: 100%;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 50px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 50px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}



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

.header {
	position: sticky;
	top: 0;
	padding: 20px 0;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	transition: .5s;
	z-index: 92;
}
.home .header:not(.fixed) {
	background: transparent;
	box-shadow: none;
}
.header-wrap {
	display: flex;
	align-items: center;
	gap: 38px;
	height: 76px;
}
.header-logo img {
	max-height: 76px;
	width: 130px;
}
.main-menu {
	flex: auto;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 48px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	color: var(--black);
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 0;
	text-decoration: none;
}
.main-menu li > a:hover,
.main-menu li.current-menu-item > a {
	color: var(--blue);
}
.main-menu > li > a:before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--blue);
	bottom: 3px;
	left: 0;
	transition: .5s;
	z-index: 1;
}
.main-menu li.menu-item-has-children > a:hover:before,
.main-menu li.current-menu-item.menu-item-has-children > a:before {
	width: calc(100% - 14px - 10px);
}
.main-menu > li > a:hover:before,
.main-menu > li.current-menu-item > a:before {
	width: 100%;
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: var(--blue);
	margin-top: -2px;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: -20px;
	margin: 0;
	padding: 16px 0;
	list-style: none;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: 280px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li {
	margin: 0 0 10px;
	padding: 0 24px;
}
.main-menu ul li:last-child {
	margin-bottom: 0;
}
.main-menu ul li a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-menu ul li.menu-item-has-children > a:after,
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.main-menu ul ul {
	top: 8px;
	left: 100%;
}
.header-phone {
	flex: 0 0 auto;
	font-size: var(--h5-size);
	font-weight: 600;
}
.header-phone a {
	color: var(--black);
	text-decoration: none;
}
.header-phone a:hover {
	color: var(--blue);
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 400;
}
.lang-menu > li {
	position: relative;
}
.lang-menu > li > a {
	position: relative;
	color: var(--blue);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	text-decoration: none;
	z-index: 1;
}
.lang-menu > li > a:hover {
	color: var(--black);
}
.lang-menu > li.menu-item-has-children > a:after{
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: var(--blue);
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	margin-top: -4px;
	transition: .5s;
}
.lang-menu > li.active > a:after {
	transform: rotate(180deg);
}
.lang-menu > li > a:hover:after {
	background-color: var(--black);
}
.lang-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	width: 100%;
	min-width: 50px;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 9;
}
.lang-menu ul li {
	text-align: center;
}
.lang-menu ul li a {
	text-transform: uppercase;
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	text-decoration: none;
}
.lang-menu ul li a:hover {
	color: var(--blue);
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	border: none;
	padding: 0;
	outline: none;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background: var(--black);
}
.header-toggle button:before {
	content: '';
	flex: 0 0 27px;
	max-width: 27px;
	height: 27px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--white);
	transition: .5s;
}



.main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
body.home .main {
	margin-top: -116px;
}
body.woocommerce-checkout .main {
	overflow: inherit;
}



.footer {
	position: relative;
	background: #08264E;
	z-index: 1;
}
.subscribe-section {
	position: relative;
	padding: 90px 0 70px;
	border-bottom: 1px solid #203E65;
	z-index: 1;
}
.subscribe-wrap {
	display: flex;
	gap: 60px;
}
.subscribe-text {
	flex: 0 0 36%;
	max-width: 36%;
	margin-bottom: 0;
	color: var(--white);
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 400;
	line-height: 1.2;
}
.subscribe-form {
	flex: auto;
	color: var(--white);
}
.subscribeForm-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}
.subscribeForm-col-field {
	flex: auto;
	max-width: calc(100% - 220px - 18px);
}
.subscribeForm-col-field input {
	background: #203E65 url(images/email.svg) no-repeat 24px center;
	background-size: 24px;
	border: none;
	padding-left: 68px;
	color: var(--white);
}
.subscribeForm-col-field input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .6);
}
.subscribeForm-col-field input::-moz-placeholder {
	color: rgba(255, 255, 255, .6);
}
.subscribeForm-col-field input:-ms-input-placeholder {
	color: rgba(255, 255, 255, .6);
}
.subscribeForm-col-field input:-moz-placeholder {
	color: rgba(255, 255, 255, .6);
}
.subscribeForm-col-button {
	flex: 0 0 220px;
	max-width: 220px;
}
.subscribeForm-col-policy {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: 13px;
	font-weight: 400;
	color: var(--grey);
}
.subscribeForm-col-policy a {
	color: var(--blue);
	text-decoration: none;
}
.subscribeForm-col-policy a:hover {
	color: var(--white);
}

.footer-main {
	position: relative;
	padding: 50px 0 65px;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	gap: 24px;
}
.footer-widget {
	flex: auto;
	max-width: 230px;
	padding-top: 36px;
}
.footer-widget:first-child {
	max-width: 100%;
	padding-top: 0;
}
.footer-widget-title {
	color: var(--grey);
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 28px;
}
.footer-logo {
	max-width: 130px;
	margin-bottom: 28px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: var(--text-size-sm);
	font-weight: 400;
}
.footer-menu li a {
	color: var(--white);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--blue);
}
.footer-menu ul {
	display: none;
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer-contacts p {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: var(--text-size-sm);
	font-weight: 400;
}
.footer-contacts p span {
	font-size: var(--text-size-esm);
	color: var(--grey);
	line-height: 1.25;
}
.footer-contacts p a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts p a:hover {
	color: var(--blue);
}
.footer-bottom {
	position: relative;
	padding: 35px 0;
	border-top: 1px solid #203E65;
	z-index: 1;
}
.footer-bottom-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.copyright {
	margin: 0;
	font-size: var(--text-size-sm);
	font-weight: 400;
	color: var(--grey);
}




.page-breadcrumbs {
	position: relative;
	padding: 20px 0;
	background: var(--blue-light);
	text-align: center;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.2;
	color: var(--grey);
	z-index: 1;
}
.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumbs ol > * {
	display: inline;
}
.breadcrumbs-sep {
	margin: 0 4px;
}
.page-breadcrumbs a {
	color: var(--grey);
	text-decoration: none;
}
.page-breadcrumbs a:hover,
.breadcrumbs ol li:last-child {
	color: var(--blue);
}
.page-body.section {
	padding-top: 36px;
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 500;
	line-height: 1.111;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 6);
	font-weight: 900;
	color: var(--blue-light);
	line-height: 1;
	margin-bottom: 30px;
	text-align: center;
}
.error-404-button {
	text-align: center;
}




.hero-section {
	position: relative;
	/*height: 100vh;
	min-height: 900px;*/
	height: 900px;
	z-index: 1;
}
.hero-item {
	position: relative;
	/*height: 100vh;
	min-height: 900px;*/
	height: 900px;
	padding: 150px 0 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}
.hero-item__wrap {
	display: flex;
	align-items: center;
}
.hero-item__left {
	flex: 0 0 40%;
	max-width: 40%;
}
.hero-item__right {
	flex: 0 0 60%;
	max-width: 60%;
}
.hero-item__before-heading {
	font-size: var(--h4-size);
	font-weight: 400;
	color: #8893A5;
	margin-bottom: 15px;
	line-height: 1.2;
}
.hero-item__heading {
	font-size: calc(var(--h1-size) * 1.11111);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}
.hero-item__description {
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.5;
	margin-bottom: 24px;
}
.hero-item__percent {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 600;
	line-height: 1.25;
	color: var(--orange);
	margin-bottom: 24px;
}
.hero-item__percent span {
	flex: 0 0 auto;
	font-size: calc(var(--h1-size) * 1.5556);
	line-height: 1;
}
.hero-item__bottom {
	display: flex;
	align-items: center;
	gap: 16px;
}
.hero-item__button {
	flex: 0 0 auto;
}
.hero-item__button .btn {
	padding-left: 30px;
	padding-right: 30px;
}
.hero-item__button-text {
	flex: auto;
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.5;
}
.hero-item__button-text strong {
	font-weight: 500;
}
.hero-item__image {
	position: relative;
	width: calc(100% + 134px);
	margin-top: 30px;
	z-index: 1;
}
.hero-item__image img {
	width: 100%;
	max-height: 620px;
}
.hero-item__label {
	position: absolute;
    background: var(--orange);
    color: var(--white);
    font-size: var(--h3-size);
    width: 4000px;
    height: 44px;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    padding: 5px 0;
    bottom: -870px;
    right: -1800px;
    transform: rotate(-24deg);
    transform-origin: left bottom;
    z-index: 2;
}
.hero-pagination {
	position: absolute !important;
	margin: 0;
	bottom: 65px !important;
	top: auto !important;
}




.servers-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -20px;
}
.servers-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 20px;
	padding: 0 10px;
}
.servers-item__wrap {
	position: relative;
	height: 100%;
	background: var(--blue-light);
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	padding: 0 25px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 1;
}
.servers-item.primary .servers-item__wrap {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0px 10px 25px 0px #ADCCF6;
}
.servers-item__icon {
	flex: 0 0 130px;
	max-height: 130px;
	width: 134px;
	background: var(--blue);
	-moz-border-radius: 0 0 80px 80px;
	-webkit-border-radius: 0 0 80px 80px;
	border-radius: 0 0 80px 80px;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 30px 30px;
}
.servers-item.primary .servers-item__icon {
	background: #416DDC;
}
.servers-item__icon img {
	max-height: 75px;
}
.servers-item__title {
	margin-bottom: 16px;
	font-size: var(--h4-size);
	line-height: 1.1538;
	min-height: 90px;
}
.servers-item.primary .servers-item__title {
	color: var(--white);
}
.servers-item__description {
	text-align: var(--text-size-sm);
	line-height: 1.5;
	flex: auto;
	margin-bottom: 28px;
}
.servers-item__price {
	margin-bottom: 20px;
	color: var(--black);
	font-weight: 400;
}
.servers-item.primary .servers-item__price {
	color: var(--white);
}
.servers-item__price span {
	font-size: calc(var(--h1-size) / 1.125);
	font-weight: 700;
	line-height: 1;
}
.servers-item__button .btn {
	padding-left: 16px;
	padding-right: 16px;
	min-width: 206px;
}



.benefits-heading.heading {
	margin-bottom: 74px;
}
.benefits-items {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.benefits-item__wrap {
	display: flex;
	align-items: center;
	gap: 40px;
}
.benefits-item:nth-child(2n) .benefits-item__wrap {
	flex-direction: row-reverse;
}
.benefits-item__left,
.benefits-item__right {
	flex: 1;
}
.benefits-item__image {
	padding-left: 20px;
}
.benefits-item:nth-child(2n) .benefits-item__image {
	text-align: right;
	padding-left: 0;
	padding-right: 20px;
}
.benefits-item__title {
	font-size: var(--h2-size);
	line-height: 1.25;
}




.advantages-heading.heading {
	margin-bottom: 30px;
}
.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.advantages-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 30px;
	padding: 0 15px;
}
.advantages-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 40px 20px 40px 40px;
	z-index: 1;
}
.advantages-item__head {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 16px;
}
.advantages-item__icon {
	flex: 0 0 75px;
	max-width: 75px;
}
.advantages-item__title {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--black);
	line-height: 1.36;
}
.advantages-item__description {
	font-size: var(--text-size-sm);
	line-height: 1.5;
}



.relatedBlog-section.section {
	z-index: 2;
}



.cta-wrap {
	display: flex;
	align-items: center;
	gap: 105px;
}
.cta-section.cta-style-2 .cta-wrap:before {
	content: '';
	filter: blur(120px);
	background: rgba(255, 165, 31, 0.1);
	position: absolute;
	width: 100%;
	height: calc(100% + 80px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.cta-left {
	flex: 0 0 34%;
	max-width: 34%;
}
.cta-right {
	flex: auto;
	max-width: calc(66% - 105px);
}
.cta-heading.heading {
	margin-bottom: 24px;
}
.cta-description {
	margin-bottom: 40px;
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 400;
	line-height: 1.5;
}
.cta-button .btn {
	min-width: 360px;
}




.reviews-wrap {
	position: relative;
	z-index: 1;
}
.reviews-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -9px -18px;
}
.reviews-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 18px;
	padding: 0 9px;
}
.reviews-block {
	position: relative;
	z-index: 1;
}
.reviews-block:before {
	content: '';
	filter: blur(120px);
	background: rgba(255, 165, 31, 0.1);
	position: absolute;
	width: 100%;
	height: calc(100% + 130px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.reviews-swiper {
	position: relative;
	z-index: 1;
}
.reviews-block:hover .swiper-navigation {
	opacity: 1;
}
.reviews-swiper .swiper-slide {
	opacity: 0;
	z-index: -999;
	pointer-events: none;
	transition: .5s;
}
.reviews-swiper .swiper-slide.swiper-slide-active,
.reviews-swiper .swiper-slide.swiper-slide-next,
.reviews-swiper .swiper-slide.swiper-slide-next + .swiper-slide {
	opacity: 1;
	z-index: 1;
	pointer-events: inherit;
}
.swiper-slide .reviews-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.reviews-item__wrap {
	position: relative;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	padding: 25px 15px 40px 35px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.reviews-item__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	min-height: 30px;
}
.reviews-item__stars {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 0 0 123px;
	max-width: 123px;
}
.reviews-item__stars span {
	flex: 0 0 23px;
	max-width: 23px;
	height: 23px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/star.svg);
	mask-image: url(images/star.svg);
	background-color: var(--grey-border);
}
.reviews-item__stars span.active {
	background-color: #FFA700;
}
.reviews-item__logo {
	height: 30px;
	display: flex;
	align-items: center;
}
.reviews-item__logo img {
	max-height: 30px;
}
.reviews-item__content {
	margin-bottom: 25px;
	flex: auto;
}
.reviews-item__bottom {
	display: flex;
	align-items: center;
	gap: 15px;
}
.reviews-item__image {
	flex: 0 0 50px;
	max-width: 50px;
	height: 50px;
	overflow: hidden;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.reviews-item__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.reviews-item__name {
	font-size: var(--h6-size);
	font-weight: 600;
	color: var(--black);
	line-height: 1.5;
	margin-bottom: 0px;
}
.reviews-item__date {
	font-size: 13px;
	font-weight: 400;
}
.reviews-button {
	position: relative;
	text-align: center;
	margin-top: 44px;
}



.faq-heading.heading {
	margin-bottom: 40px;
}
.faq-item {
	position: relative;
	border-bottom: 1px solid #E4E4E4;
	z-index: 1;
}
.faq-item:first-child {
	border-top: 1px solid #E4E4E4;
}
.faq-item__head {
	position: relative;
	padding: 24px 0;
	min-height: 120px;
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 400;
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	cursor: pointer;
	transition: .5s;
	z-index: 1;
}
.faq-item__head:hover {
	color: var(--blue);
}
.faq-item__toggle {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/chevron-right.svg);
    mask-image: url(images/chevron-right.svg);
    background-color: var(--blue);
    transform: rotate(90deg);
    flex: 0 0 14px;
    max-width: 14px;
    width: 14px;
    height: 14px;
    transition: .5s;
}
.active .faq-item__toggle {
	transform: rotate(270deg);
}
.faq-item__body {
	margin-bottom: 45px;
}




.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: 40px;
	z-index: 2;
}
ul.page-numbers,
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	min-width: 50px;
	height: 50px;
	font-weight: 500;
	color: var(--black);
	border: 1px solid var(--grey-border);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	text-decoration: none;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}





.archiveBlog-header {
	position: relative;
	max-width: 940px;
	margin: 0 auto 24px;
	text-align: center;
	z-index: 1;
}
.archiveBlog-header .page-title {
	margin-bottom: 10px;
}
.archive-description {
	font-size: var(--h6-size);
	line-height: 1.5;
	font-weight: 400;
}

.archiveBlogСategory-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 36px;
	padding: 0;
	list-style: none;
	gap: 16px;
}
.archiveBlogСategory-list li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	padding: 8px 16px 8px 8px;
	background: var(--blue-light);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	line-height: 1.5;
	font-size: var(--text-size-esm);
	font-weight: 500;
	text-decoration: none;
}
.archiveBlogСategory-list li a:hover,
.archiveBlogСategory-list li.active a {
	background: var(--orange);
	color: var(--white);
}
.archiveBlogСategory-list li a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/check.svg);
	mask-image: url(images/check.svg);
	background-color: var(--blue);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
}
.archiveBlogСategory-list li a:hover:before,
.archiveBlogСategory-list li.active a:before {
	background-color: var(--white);
}


.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -45px;
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 45px;
	padding: 0 15px;
}
.blog-item__wrap {
	position: relative;
	z-index: 1;
}
.blog-item__image {
	position: relative;
	height: calc((var(--container) - 30px * 2) / 3 / 1.6);
	margin-bottom: 20px;
	z-index: 1;
}
.blog-item__image-inner {
	height: calc((var(--container) - 30px * 2) / 3 / 1.6);
	overflow: hidden;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.blog-item__button {
	position: absolute;
	bottom: 0px;
	right: 0px;
	display: flex;
	padding: 16px 1px 1px 16px;
	background: var(--white);
	border-radius: 40px 0 0 0;
	z-index: 2;
}
.blog-item__button:before,
.blog-item__button:after {
	content: '';
	background: url(images/blog-angle-mask.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 33px;
	height: 33px;
	z-index: -1;
}
.blog-item__button:before {
	bottom: -1px;
	left: -32px;
}
.blog-item__button:after {
	top: -32px;
	right: -1px;
}
.blog-item__button .btn {
	padding: 0;
	flex: 0 0 50px;
	max-width: 50px;
}
.blog-item__button .btn:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-top-right.svg);
	mask-image: url(images/arrow-top-right.svg);
	background-color: var(--white);
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
}
.blog-item__category {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 6px;
}
.blog-item__category a {
	color: var(--orange);
	text-decoration: none;
}
.blog-item__category a:hover {
	color: var(--black);
}
.blog-item__title {
	font-size: var(--h4-size);
	font-weight: 500;
	line-height: 1.15;
	margin-bottom: 4px;
}
.blog-item__title a {
	color: var(--black);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--blue);
}
.blog-item__date {
	color: #BEBEBE;
	font-size: var(--text-size-esm);
	margin-bottom: 4px;
}
.blog-item__excerpt {
	font-size: var(--text-size);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.singleBlog-body.section {
	z-index: 2;
}
.singleBlog-top {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}
.singleBlog-image {
	position: relative;
	overflow: hidden;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	height: calc(var(--container-sm) / 2.8);
	min-height: 240px;
	z-index: 1;
}
.singleBlog-meta {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--white);
	-moz-border-radius: 0 0 40px 0;
	-webkit-border-radius: 0 0 40px 0;
	border-radius: 0 0 40px 0;
	padding: 10px 16px 16px 0;
	z-index: 2;
}
.singleBlog-meta:before,
.singleBlog-meta:after {
	content: '';
	background: url(images/blog-angle-mask.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 33px;
	height: 33px;
	z-index: -1;
}
.singleBlog-meta:before {
	bottom: -32px;
	left: -1px;
	transform: scale(-1, -1);
}
.singleBlog-meta:after {
	top: -1px;
	right: -32px;
	transform: scale(-1, -1);
}
.singleBlog-author {
	display: flex;
	align-items: center;
	gap: 16px;
}
.singleBlog-author-avatar {
	flex: 0 0 45px;
	max-width: 45px;
	height: 45px;
	width: 45px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.singleBlog-author-name {
	flex: 0 0 auto;
	max-width: calc(100% - 45px - 16px);
	font-size: var(--text-size-esm);
	font-weight: 600;
	color: var(--black);
}
.singleBlog-date {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--text-size-esm);
}
.singleBlog-date:before {
	content: '|';
}
.singleBlog-excerpt {
	margin-bottom: 40px;
	font-size: var(--h6-size);
	font-weight: 500;
}

.singleBlog-items {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.singleBlog-item__iconContent {
	position: relative;
	padding: 45px 80px 45px 45px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	z-index: 1;
}
.singleBlog-item__iconContent-icon {
	flex: 0 0 73px;
	max-width: 73px;
}

.singleBlog-item__imageContent-before {
	margin-bottom: 40px;
}
.singleBlog-item__imageContent-before:last-child {
	margin-bottom: 0;
}
.singleBlog-item__imageContent-items {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.singleBlog-item__imageContent-item {
	display: flex;
	gap: 70px;
}
.singleBlog-item__imageContent-item:nth-child(2n) {
	flex-direction: row-reverse;
}
.singleBlog-item__imageContent-item__image {
	flex: 0 0 29%;
	max-width: 29%;
}
.singleBlog-item__imageContent-item:nth-child(2n) .singleBlog-item__imageContent-item__image {
	text-align: right;
}
.singleBlog-item__imageContent-item__image img {
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.singleBlog-item__imageContent-item__content {
	flex: auto;
}

.singleBlog-bottom {
	position: relative;
	margin-top: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	z-index: 1;
}
.singleBlog-bottom-return .btn {
	gap: 12px;
}
.singleBlog-bottom-return .btn:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-right.svg);
	mask-image: url(images/chevron-right.svg);
	background-color: var(--blue);
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	transform: scale(-1, 1);
	margin-top: -2px;
	transition: .5s;
	z-index: 1;
}
.singleBlog-bottom-return .btn:hover:before {
	background-color: var(--white);
}
.singleBlog-bottom-share {
	display: flex;	
	align-items: center;
	gap: 14px;
}
.singleBlog-bottom-share p {
	margin: 0;
	font-size: var(--text-size-sm);
}





.pServersHero-section {
	position: relative;
	min-height: 680px;
	padding: 100px 0 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}
.pServersHero-wrap {
	display: flex;
	align-items: center;
}
.pServersHero-left {
	flex: 0 0 40%;
	max-width: 40%;
}
.pServersHero-right {
	flex: 0 0 60%;
	max-width: 60%;
}
.pServersHero-before-heading {
	font-size: var(--h4-size);
	font-weight: 400;
	color: #8893A5;
	margin-bottom: 15px;
	line-height: 1.2;
}
.pServersHero-heading {
	font-size: calc(var(--h1-size) * 1.11111);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}
.pServersHero-description {
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.5;
	margin-bottom: 24px;
}
.pServersHero-percent {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: calc(var(--h5-size) * 1.090909);
	font-weight: 600;
	line-height: 1.25;
	color: var(--orange);
	margin-bottom: 24px;
}
.pServersHero-percent span {
	flex: 0 0 auto;
	font-size: calc(var(--h1-size) * 1.5556);
	line-height: 1;
}
.pServersHero-bottom {
	display: flex;
	align-items: center;
	gap: 16px;
}
.pServersHero-button {
	flex: 0 0 auto;
}
.pServersHero-button .btn {
	padding-left: 30px;
	padding-right: 30px;
}
.pServersHero-button-text {
	flex: auto;
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.5;
}
.pServersHero-button-text strong {
	font-weight: 500;
}
.pServersHero-image {
	position: relative;
	width: calc(100% + 134px);
	margin-top: 30px;
	z-index: 1;
}
.pServersHero-image img {
	width: 100%;
	max-height: 620px;
}
.pServersHero-label {
	position: absolute;
    background: var(--orange);
    color: var(--white);
    font-size: var(--h3-size);
    width: 4000px;
    height: 44px;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    padding: 5px 0;
    bottom: -840px;
    right: -1800px;
    transform: rotate(-24deg);
    transform-origin: left bottom;
    z-index: 2;
}


.tariffs-heading.heading {
	margin-bottom: 45px;
}
.tariffs-blocks {
	display: flex;
	flex-direction: column;
	gap: 70px;
}
.tariffs-block-heading {
	font-size: var(--h2-size);
	font-weight: 500;
	text-align: center;
	margin-bottom: 35px;
}
.tariffs-block-heading img {
	max-width: 105px;
	max-height: 44px;
	margin: 0 10px;
}




.products-items {
	display: flex;
	flex-wrap: wrap;
}
.products-tariffs .products-items {
	margin: 0 -15px -44px;
}
.products-tariffs .products-item {
	margin: 0 0 44px;
	padding: 0 15px;
}
.products-additional .products-items {
	margin: 0 -9px -24px;
}
.products-additional .products-item {
	margin: 0 0 24px;
	padding: 0 9px;
}
.columns-4 .products-item {
	flex: 0 0 25%;
	max-width: 25%;
}
.columns-3 .products-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.columns-2 .products-item {
	flex: 0 0 50%;
	max-width: 50%;
}
.columns-1 .products-item {
	flex: 0 0 100%;
	max-width: 100%;
}

.products-itemTariff__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.products-itemTariff__head {
	position: relative;
	background: var(--grey);
	min-height: 110px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	-moz-border-radius: 40px 40px 0 0;
	-webkit-border-radius: 40px 40px 0 0;
	border-radius: 40px 40px 0 0;
	z-index: 1;
}
.products-itemTariff.style-blue .products-itemTariff__head {
	background: var(--blue);
}
.products-itemTariff.style-orange .products-itemTariff__head {
	background: #FFC457;
}
.products-itemTariff__title {
	text-align: center;
	color: #AAB0BC;
	font-size: var(--h6-size);
	font-weight: 400;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.products-itemTariff.style-blue .products-itemTariff__title {
	color: #A8C1FF;
}
.products-itemTariff.style-orange .products-itemTariff__title {
	color: rgba(34, 34, 34, 0.5);
}
.products-itemTariff__title span {
	color: var(--white);
	font-size: var(--h4-size);
	font-weight: 600;
}
.products-itemTariff__label {
	position: absolute;
	background: linear-gradient(231.43deg, #FFBE31 36.67%, #F59300 69.24%);
	color: var(--white);
	font-size: var(--text-size-esm);
	font-weight: 700;
	text-transform: uppercase;
	top: 39px;
	left: -44px;
	transform: rotate(-45deg);
	transform-origin: top center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	width: 160px;
	padding-top: 1px;
	z-index: 1;
	text-align: center;
}
.products-itemTariff.style-blue .products-itemTariff__label {
	background: linear-gradient(234.37deg, #61D5FF 29.13%, #22BFFD 68.11%);
}
.products-itemTariff.style-orange .products-itemTariff__label {
	background: linear-gradient(231.43deg, #FD6422 36.67%, #F44100 69.24%);
}
.products-itemTariff__body {
	position: relative;
	border: 1px solid var(--grey);
	-moz-border-radius: 0 0 40px 40px;
	-webkit-border-radius: 0 0 40px 40px;
	border-radius: 0 0 40px 40px;
	flex: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}
.products-itemTariff.style-blue .products-itemTariff__body {
	border-color: var(--blue);
	box-shadow: 0px 15px 25px 0px #E0E9FF;
}
.products-itemTariff.style-orange .products-itemTariff__body {
	border-color: #FFC457;
}
.products-itemTariff__price {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.products-itemTariff__price-inner {
	font-size: var(--text-size);
	font-weight: 400;
	color: var(--black);
	line-height: 1;
}
.products-itemTariff__price-inner span {
	font-size: calc(var(--h1-size) / 1.125);
	font-weight: 700;
}
.products-itemTariff__percent {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.products-itemTariff__percent-text {
	font-size: 13px;
	font-weight: 400;
	color: var(--orange);
	line-height: 1;
}
.products-itemTariff__percent-value {
	background: var(--orange);
	color: var(--white);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	line-height: 1.5;
	padding: 3px 4px;
}
.products-itemTariff__characteristics {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.products-itemTariff__characteristics p {
	margin: 0;
	display: flex;
	gap: 12px;
	font-size: var(--text-size-sm);
	font-weight: 400;
}
.products-itemTariff__characteristics p:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
}
.products-itemTariff__characteristics p.cpu:before {
	-webkit-mask-image: url(images/icons/cpu.svg);
	mask-image: url(images/icons/cpu.svg);
}
.products-itemTariff__characteristics p.ram:before {
	-webkit-mask-image: url(images/icons/ram.svg);
	mask-image: url(images/icons/ram.svg);
}
.products-itemTariff__characteristics p.storage:before {
	-webkit-mask-image: url(images/icons/ssd.svg);
	mask-image: url(images/icons/ssd.svg);
}
.products-itemTariff__characteristics p.bandwidth:before {
	-webkit-mask-image: url(images/icons/mbps.svg);
	mask-image: url(images/icons/mbps.svg);
}
.products-itemTariff__characteristics p.backup:before {
	-webkit-mask-image: url(images/icons/hdd.svg);
	mask-image: url(images/icons/hdd.svg);
}
.products-itemTariff__characteristics p.free_domain:before {
	-webkit-mask-image: url(images/icons/present.svg);
	mask-image: url(images/icons/present.svg);
}
.products-itemTariff__characteristics p.dedicated_ip:before {
	-webkit-mask-image: url(images/icons/ip.svg);
	mask-image: url(images/icons/ip.svg);
}
.products-itemTariff__characteristics p.port_speed:before {
	-webkit-mask-image: url(images/icons/port.svg);
	mask-image: url(images/icons/port.svg);
}
.products-itemTariff__characteristics p.check:before {
	-webkit-mask-image: url(images/icons/check.svg);
	mask-image: url(images/icons/check.svg);
}
.products-itemTariff__button .btn {
	min-width: 206px;
}
.products-itemTariff__afterContent {
	margin-top: 20px;
	text-align: center;
	font-size: var(--text-size-esm);
	font-weight: 400;
}


.products-itemAdditional__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	transition: .5s;
	z-index: 1;
}
.products-itemAdditional__wrap:hover {
	box-shadow: 0px 10px 25px 0px rgba(173, 204, 246, 0.4);
}
.products-itemAdditional__head {
	position: relative;
	background: var(--blue);
	min-height: 110px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	-moz-border-radius: 40px 40px 0 0;
	-webkit-border-radius: 40px 40px 0 0;
	border-radius: 40px 40px 0 0;
	z-index: 1;
}
.products-itemAdditional__title {
	text-align: center;
	color: #A8C1FF;
	font-size: var(--h6-size);
	font-weight: 300;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.products-itemAdditional__title span {
	color: var(--white);
	font-size: var(--h4-size);
	font-weight: 500;
}
.products-itemAdditional__body {
	position: relative;
	background: var(--blue-light);
	border: 1px solid #C7D7FF;
	-moz-border-radius: 0 0 40px 40px;
	-webkit-border-radius: 0 0 40px 40px;
	border-radius: 0 0 40px 40px;
	flex: auto;
	padding: 30px 30px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
	transition: .5s;
}
.products-itemAdditional__wrap:hover .products-itemAdditional__body {
	background: var(--white);
}
.products-itemAdditional__price {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.products-itemAdditional__price-inner {
	font-size: var(--text-size);
	font-weight: 400;
	color: var(--black);
	line-height: 1;
}
.products-itemAdditional__price-inner span {
	font-size: calc(var(--h1-size) / 1.125);
	font-weight: 700;
}
.products-itemAdditional__characteristics {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.products-itemAdditional__characteristics p {
	margin: 0;
	display: flex;
	gap: 12px;
	font-size: var(--text-size-sm);
	font-weight: 400;
}
.products-itemAdditional__characteristics p:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/icons/check.svg);
	mask-image: url(images/icons/check.svg);
	background-color: var(--blue);
}
.products-itemAdditional__button .btn {
	min-width: 206px;
}



.operatingSystem-wrap {
	position: relative;
	z-index: 1;
}
.operatingSystem-wrap:before {
	content: '';
	filter: blur(120px);
	background: rgba(255, 165, 31, 0.1);
	position: absolute;
	width: 100%;
	height: calc(100% + 180px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.operatingSystem-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.operatingSystem-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
}
.operatingSystem-item__image img {
	max-height: 160px;
}


.advantages_2-heading.heading {
	margin-bottom: 40px;
}
.advantages_2-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.advantages_2-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
	margin: 0 0 30px;
	padding: 0 15px;
}
.advantages_2-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	box-shadow: 0px 10px 25px 0px #E7EDF6;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 50px 42px 42px;
	z-index: 1;
}
.advantages_2-item__head {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}
.advantages_2-item__icon {
	flex: 0 0 75px;
	max-width: 75px;
}
.advantages_2-item__title {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--black);
	line-height: 1.36;
}
.advantages_2-item__description {
	font-size: var(--text-size-sm);
	line-height: 1.5;
}



.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	padding: 16px 24px;
	background: var(--bg-gradient);
	display: flex;
	align-items: center;
	margin-bottom: 30px !important;
	outline: none !important;
	list-style: none;
}
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	display: block;
}
ul.woocommerce-error {
	margin-bottom: 0 !important;
	padding: 0;
}
.woocommerce-account ul.woocommerce-error {
	padding: 16px 24px;
	margin-bottom: 30px !important;
}
.wc-block-components-notice-banner svg {
	flex: 0 0 36px;
	max-width: 36px;
	margin-right: 30px;
}
.wc-block-components-notice-banner__content {
	position: relative;
	overflow: hidden;
	flex: auto;
	max-width: 100%;
}
.wc-block-components-notice-banner__content .button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	float: right;
	margin-left: 30px;
	margin-bottom: 0px;
}



/*------- Cart Start ----------*/
.wc-empty-cart-message {
	margin-bottom: 24px;
	font-size: var(--h6-size);
	text-align: center;
}
.return-to-shop {
	text-align: center;
}
.pageCart-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pageCart-left {
	flex: 0 0 calc(75% - 30px / 2);
	max-width: calc(75% - 30px / 2);
}
.pageCart-right {
	flex: 0 0 calc(25% - 30px / 2);
	max-width: calc(25% - 30px / 2);
}
.pageCartTableProducts {
	width: 100%;
	border-collapse: collapse;
}
.pageCartTableProducts th {
	color: #999999;
	font-weight: 400;
	padding: 0 12px 10px;
}
.pageCartTableProducts td {
	border-top: 1px solid var(--grey-border);
	padding: 12px;
}
.pageCartTableProducts tr:first-child td {
	border-top: none;
}
.pageCartTableProducts th:first-child,
.pageCartTableProducts td:first-child {
	padding-left: 0;
}
.pageCartTableProducts th:last-child,
.pageCartTableProducts td:last-child {
	padding-right: 0;
}
.pageCartTableProducts td.product-remove {
	width: 40px;
}
.pageCartTableProducts .product-name {
	text-align: left;
	font-weight: 500;
	color: var(--black);
}
.pageCartTableProducts .product-price,
.pageCartTableProducts .product-subtotal {
	width: 180px;
	text-align: center;
}
.pageCartTableProducts .product-price del {
	font-size: var(--text-size-esm);
	opacity: .35;
}
.pageCartTableProducts .product-price ins {
	text-decoration: none;
	display: block;
	font-weight: 500;
	margin-top: -6px;
}
.pageCartTableProducts .product-quantity {
	width: 124px;
}
.pageCartTableProducts-qty {
	flex: 0 0 100px;
	max-width: 100px;
	height: 50px;
	border: 1px solid var(--grey-border);
	display: flex;
}
.pageCartTableProducts-qty span {
	flex: 0 0 30px;
	max-width: 30px;
	font-size: var(--h5-size);
	color: var(--black);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
}
.pageCartTableProducts-qty span:hover {
	color: var(--blue);
}
.pageCartTableProducts-qty .quantity {
	flex: auto;
}
.pageCartTableProducts-qty input {
	width: 100%;
	height: 100%;
	background: var(--white);
	font-size: var(--h5-size);
	line-height: 1.5;
    border: none;
    text-align: center;
    outline: none;
    padding: 10px 0;
    color: var(--black);
    -moz-appearance:textfield;
}
.pageCartTableProducts-qty input::-webkit-outer-spin-button,
.pageCartTableProducts-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.pageCartTableProducts tbody .product-subtotal {
	font-weight: 500;
	white-space: nowrap;
	color: var(--black);
	font-size: var(--h6-size);
}
.pageCartTableProducts .product-remove a {
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: red;
	width: 28px;
	height: 28px;
	display: block;
}
.pageCartTableProducts .product-remove a:hover {
	background-color: var(--black);
}
.pageCartTableProducts .coupon {
	display: flex;
	flex-wrap: wrap;
	max-width: 480px;
	float: left;
}
.pageCartTableProducts .coupon input {
	flex: auto;
	max-width: calc(100% - 200px - 10px);
}
.pageCartTableProducts .coupon button {
	flex: 0 0 200px;
	max-width: 200px;
	margin-left: 10px;
	padding-left: 16px;
	padding-right: 16px;
}
.pageCartTableProducts .coupon ~ button {
	float: right;
}
.coupon-error-notice {
	font-size: var(--text-size-esm);
	color: red;
	margin-top: 4px;
}



.pageCartTotals {
	background: var(--bg-gradient);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.pageCartTotals > h2 {
	font-size: var(--h5-size);
	padding: 24px 24px 0;
	margin-bottom: 10px;
}
.cart_totals table {
	width: 100%;
	border-collapse: collapse;
	line-height: 1.5;
}
.cart_totals table tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--grey-border);
	padding: 12px 24px;
}
.cart_totals table tr:last-child {
	border-bottom: none;
}
.cart_totals table th {
	display: block;
	font-size: var(--text-size-sm);
	color: var(--grey);
	font-weight: 300;
	text-align: left;
	margin-bottom: 2px;
	padding: 0;
}
.cart_totals table td {
	padding: 0;
	display: block;
	color: var(--black);
}
.cart_totals table tr.cart-subtotal td,
.cart_totals table tr.cart-discount td {
	font-weight: 400;
}
.cart_totals table tr.order-total td {
	font-size: var(--h5-size);
	font-weight: 500;
}
.checkout-button {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.woocommerce-shipping-destination {
	display: none !important;
}
.woocommerce-shipping-methods,
.wc_payment_methods {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce-shipping-methods li,
.wc_payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.woocommerce-shipping-methods li:last-child,
.wc_payment_methods li:last-child {
	margin-bottom: 0;
}
.woocommerce-shipping-methods li input,
.wc_payment_methods li input {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin: 0 10px 0 0;
	cursor: pointer;
}
.woocommerce-shipping-methods li label,
.wc_payment_methods li label {
	flex: 0 0 calc(100% - 16px - 10px);
	max-width: calc(100% - 16px - 10px);
	font-weight: 500;
	cursor: pointer;
	font-size: var(--text-size-sm);
	color: var(--black);
}
.payment_box {
	flex: 0 0 100%;
	max-width: 100%;
	background: #f9f9f9;
	margin-top: 4px;
	padding: 12px;
	font-size: var(--text-size-esm);
}

/*------- Cart End ----------*/


/*---------- Checkout Start ------------*/
.pageCheckout-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.pageCheckout-left {
	position: sticky;
	top: calc(105px + 30px);
	flex: 0 0 calc(60% - 20px);
	max-width: calc(60% - 20px);
	z-index: 1;
}
.pageCheckout-right {
	flex: 0 0 calc(40% - 20px);
	max-width: calc(40% - 20px);
	border: 1px solid var(--grey-border);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.woocommerce-billing-fields > h3,
.wcus-checkout-fields > h3,
.woocommerce-additional-fields > h3,
#order_review_heading,
.woocommerce-checkout-payment > h3,
.pageLogin-form > h2,
.woocommerce-Address-title > h3,
.woocommerce-MyAccount-content form > h3,
.woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-Address-title h2 {
	font-size: var(--h5-size);
	margin-bottom: 16px;
}
.woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}
#ukrposhta_shippping_fields > h3 {
	display: none;
}
.form-row {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 20px !important;
}
.form-row-first,
.form-row-last {
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
}
.form-row > label {
	font-size: var(--text-size-sm);
	color: var(--grey);
	display: block;
	line-height: 1.25;
	width: 100%;
	margin-bottom: 8px;
}
.form-row > label span.optional {
	display: none;
}
.form-row > label abbr {
	color: red;
}
.form-row > span em {
	font-size: var(--text-size-esm);
}
.checkout-inline-error-message {
	color: red;
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
#billing_country_field,
#oplata_country_field {
	display: none;
}


#order_review_heading {
	padding: 24px 24px 0;
}
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
	display: block;
}
.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout-review-order-table tfoot {
	display: block;
	width: 100%;
}
.woocommerce-checkout-review-order-table thead tr,
.woocommerce-checkout-review-order-table tbody tr {
	display: flex;
	width: 100%;
}
.woocommerce-checkout-review-order-table thead th {
	font-size: var(--text-size-esm);
	color: var(--grey);
	font-weight: 400;
	padding: 0 24px 10px;
	line-height: 1.2;
	text-align: left;
	border-bottom: 1px solid var(--grey-border);
}
.woocommerce-checkout-review-order-table tbody td {
	padding: 10px 24px;
	border-bottom: 1px solid var(--grey-border);
	color: var(--black);
	font-weight: 500;
}
.woocommerce-checkout-review-order-table thead th:first-child,
.woocommerce-checkout-review-order-table tbody td:first-child {
	flex: 0 0 65%;
	max-width: 65%;
}
.woocommerce-checkout-review-order-table thead th:last-child,
.woocommerce-checkout-review-order-table tbody td:last-child {
	font-weight: 500;
	flex: 0 0 35%;
	max-width: 35%;
}
.woocommerce-checkout-review-order-table tfoot tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--grey-border);
	padding: 10px 24px;
}
.woocommerce-checkout-review-order-table tfoot tr:last-child {
	border-bottom: none;
}
.woocommerce-checkout-review-order-table tfoot th {
	display: block;
	font-size: var(--text-size-sm);
	font-weight: 300;
	color: var(--grey);
	text-align: left;
	margin-bottom: 2px;
	padding: 0;
}
.woocommerce-checkout-review-order-table tfoot td {
	padding: 0;
	display: block;
	color: var(--black);
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
.woocommerce-checkout-review-order-table tfoot tr.cart-discount td {
	font-weight: 400;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: var(--h5-size);
	font-weight: 500;
}

.woocommerce-checkout-payment {
	padding: 0 24px 24px;
}
.wc_payment_methods {
	margin-bottom: 24px;
}
.woocommerce-privacy-policy-text,
.checkout-policy {
	color: #999;
	margin-bottom: 24px !important;
	font-size: var(--text-size-sm);
}
.form-row.place-order {
	margin-bottom: 0 !important;
}
.form-row.place-order .btn {
	width: 100%;
}
/*-------- Checkout End -----------*/



.pageLogin-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	gap: 16px;
}
.pageLogin-nav li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	padding: 8px 24px;
	background: var(--blue-light);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	line-height: 1.5;
	font-size: var(--text-size);
	font-weight: 500;
	text-decoration: none;
}
.pageLogin-nav li a:hover,
.pageLogin-nav li.active a {
	background: var(--orange);
	color: var(--white);
}
.pageLogin-blocks {
	max-width: 600px;
	margin: 0 auto;
}
.pageLogin-block {
	display: none;
}
.pageLogin-block.active {
	display: block;
}
.pageLogin-form,
.pageCheckout-loginForm form {
	flex: 1;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 36px;
	border: 1px solid var(--grey-border);
}
.pageLogin-form > h2 {
	text-align: center;
}
.show-password-input {
	display: none;
}

.pageCheckout-loginForm form {
	max-width: 600px;
	margin-bottom: 40px;
}



.woocommerce-account .container > .page-content > .woocommerce:after {
	content: '';
	clear: both;
	display: block;
}
.woocommerce-MyAccount-navigation {
	margin-bottom: 24px;
}
.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	list-style: none;
	gap: 16px;
}
.woocommerce-MyAccount-navigation ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	padding: 8px 24px;
	background: var(--blue-light);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	line-height: 1.5;
	font-size: var(--text-size);
	font-weight: 500;
	text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--orange);
	color: var(--white);
}
.woocommerce-MyAccount-content {

}



.woocommerce-orders-table,
.woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
	line-height: 1.2;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
	border: 1px solid var(--grey-border);
	padding: 10px 24px;
}
.woocommerce-orders-table th,
.woocommerce-table--order-details th {
	color: var(--grey);
	font-weight: 300;
	text-align: left;
}
.woocommerce-orders-table td,
.woocommerce-table--order-details td {
	color: var(--black);
	font-weight: 400;
}
.woocommerce-table--order-details .wc-item-meta {
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
	color: var(--grey);
	font-size: var(--text-size-sm);
}
.woocommerce-table--order-details .wc-item-meta li {
	display: flex;
	margin-bottom: 4px;
}
.woocommerce-table--order-details .wc-item-meta li:last-child {
	margin-bottom: 0;
}
.woocommerce-table--order-details .wc-item-meta strong {
	font-weight: 500;
	margin-right: 5px;
}

a.edit {
	color: red;
	display: inline-block;
	margin-bottom: 10px;
}

.woocommerce-order-details {
	margin-bottom: 24px;
}

.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.woocommerce-EditAccountForm fieldset {
	flex: 0 0 100%;
	max-width: 100%;
	border: none;
	padding: 0;
	margin: 0;
}
.woocommerce-EditAccountForm fieldset legend {
	font-size: var(--h4-size);
	font-weight: 500;
	margin-bottom: 10px;
	padding: 0;
	display: block;
}

.woocommerce-customer-details {
	background: var(--bg-gradient);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 24px;
}




.woocommerce-thankyou-order-received {
	font-size: var(--h4-size);
	font-weight: 500;
	text-align: center;
	color: var(--black);
}
.woocommerce-thankyou-order-details {
	margin: 0 0 30px;
	padding: 30px;
	gap: 24px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: var(--bg-gradient);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.woocommerce-thankyou-order-details li {
	flex: auto;
	max-width: 100%;
	text-align: center;
}
.woocommerce-thankyou-order-details li strong {
	display: block;
	color: var(--black);
}


















@media (max-width: 1499px) {
	:root {
		--container: 1200px;
		--container-sm: 1100px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 13px;
		--h1-size: 40px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.btn.btn-lg {
		min-height: 60px;
	}
	.section {
		padding-top: 110px;
		padding-bottom: 110px;
	}
	.heading {
		margin-bottom: 45px;
	}
	.subheading {
		margin-bottom: 32px;
	}
	.header-wrap {
		gap: 30px;
		height: 65px;
	}
	.main-menu {
		gap: 30px;
	}
	.header-logo img {
		width: 120px;
		max-height: 65px;
	}
	body.home .main {
		margin-top: -105px;
	}
	.hero-section,
	.hero-item {
		height: 740px;
	}
	.hero-item {
		padding: 120px 0 100px;
	}
	.hero-item__left {
		flex: 0 0 42%;
		max-width: 42%;
	}
	.hero-item__button .btn {
	    padding-left: 20px;
	    padding-right: 20px;
	}
	.hero-item__right {
		flex: 0 0 58%;
		max-width: 58%;
	}
	.hero-item__image img {
		max-height: 520px;
	}
	.hero-pagination {
		bottom: 50px !important;
	}
	.hero-item__label {
		height: 40px;
		bottom: -840px;
	}
	.advantages-item__wrap {
		padding: 30px 15px 30px 30px;
	}
	.advantages-item__head {
		gap: 20px;
	}
	.advantages-item__icon {
		flex: 0 0 68px;
		max-width: 68px;
	}
	.cta-button .btn {
		min-width: 320px;
	}

	.singleBlog-item__imageContent-item {
		gap: 40px;
	}
	.singleBlog-bottom {
		margin-top: 60px;
	}


	.pServersHero-section {
		padding: 80px 0 110px;
	}
	.pServersHero-left {
		flex: 0 0 42%;
		max-width: 42%;
	}
	.pServersHero-button .btn {
	    padding-left: 20px;
	    padding-right: 20px;
	}
	.pServersHero-right {
		flex: 0 0 56%;
		max-width: 56%;
	}
	.pServersHero-image img {
		max-height: 520px;
	}
	.pServersHero-label {
		height: 40px;
	}

	.operatingSystem-item__image {
		height: 140px;
	}
	.operatingSystem-item__image img {
		max-height: 140px;
	}


	.advantages_2-item__wrap {
		padding: 40px 30px 30px;
	}
	.advantages_2-item__head {
		gap: 20px;
		margin-bottom: 20px;
	}
	.advantages_2-item__icon {
		flex: 0 0 68px;
		max-width: 68px;
	}
}


@media (max-width: 1279px) {
	:root {
		--container: 1000px;
		--container-sm: var(--container);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 13px;
		--h1-size: 34px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header {
		padding: 12px 0;
	}
	.header-wrap {
		height: 60px;
		gap: 24px;
	}
	.header-phone {
		font-size: var(--h6-size);
	}
	.header-account .btn {
		padding-left: 12px;
		padding-right: 12px;
	}
	.header-logo img {
        width: 100px;
        max-height: 60px;
    }
    .main-menu {
    	gap: 20px;
    }
    body.home .main {
    	margin-top: -84px;
    }
    .hero-item__image {
    	margin-top: 0;
    	width: calc(100% + 80px);
    }
    .hero-section, .hero-item {
    	height: 680px;
    }
    .hero-item {
    	padding: 120px 0 70px;
    }
    .hero-item__before-heading {
    	font-size: var(--h6-size);
    	margin-bottom: 10px;
    }
    .hero-item__heading {
    	margin-bottom: 16px;
    }
    .hero-item__description {
    	font-size: var(--text-size);
    	margin-bottom: 16px;
    }
    .hero-item__percent {
    	font-size: var(--h6-size);
    	margin-bottom: 16px;
    }
    .hero-item__percent span {
    	font-size: calc(var(--h1-size) * 1.25);
    }
    .hero-item__bottom {
    	flex-direction: column;
    	align-items: flex-start;
    	width: 100%;
    }
    .hero-item__button-text br {
    	display: none;
    }
	.hero-item__label {
		height: 34px;
		bottom: -260px;
		font-size: var(--h4-size);
		width: 1000px;
		right: -250px;
	}
	.hero-item__button-text {
		font-size: var(--text-size);
	}
	.section {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.heading {
		margin-bottom: 35px;
	}
	.subheading {
		margin-bottom: 30px;
	}
	.servers-item__wrap {
		padding: 0 20px 35px;
	}
	.servers-item__icon {
		flex: 0 0 120px;
		max-height: 120px;
		width: 124px;
		padding: 16px 24px 24px;
	}
	.servers-item__icon img {
		max-height: 70px;
	}
	.servers-item__title {
		min-height: 76px;
	}
	.servers-item__description {
		margin-bottom: 20px;
	}
	.servers-item__price {
		margin-bottom: 16px;
	}
	.benefits-heading.heading {
		margin-bottom: 50px;
	}
	.benefits-items {
		gap: 60px;
	}
	.benefits-item__left {
		max-width: 38%;
	}
	.cta-wrap {
		gap: 60px;
	}
	.cta-right {
		max-width: calc(66% - 80px);
	}
	.cta-description {
		font-size: var(--h5-size);
		margin-bottom: 30px;
	}
	.cta-button .btn {
		min-width: 300px;
	}
	.reviews-swiper .swiper-slide.swiper-slide-next + .swiper-slide {
		opacity: 0;
		z-index: -999;
		pointer-events: none;
	}
	.reviews-item__wrap {
		padding: 25px 15px 30px 30px;
	}
	.reviews-item__content {
		margin-bottom: 20px;
	}
	.faq-heading.heading {
		margin-bottom: 30px;
	}
	.faq-item__head {
		min-height: 80px;
		font-size: var(--h5-size);
		padding: 20px 0;
	}
	.faq-item__body {
		margin-bottom: 30px;
	}
	.subscribe-section {
		padding: 50px 0 40px;
	}
	.subscribe-wrap {
		gap: 30px;
	}
	.subscribe-text {
		font-size: var(--h5-size);
	}
	.footer-main {
		padding: 40px 0 50px;
	}
	.footer-logo {
		max-width: 100px;
		margin-bottom: 24px;
	}
	.footer-logo img {
		max-height: 60px;
	}
	.footer-contacts {
		gap: 16px;
	}
	.footer-widget {
		padding-top: 20px;
		max-width: 200px;
	}
	.footer-widget-title {
		margin-bottom: 24px;
	}
	.footer-bottom {
		padding: 20px 0;
	}
	.reviews-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.archiveBlogСategory-list {
		gap: 10px;
	}
	.blog-item__title {
		font-size: var(--h5-size);
	}
	.singleBlog-items {
		gap: 60px;
	}



	.pServersHero-section {
		padding: 60px 0 80px;
		min-height: auto;
	}
	.pServersHero-image {
    	margin-top: 0;
    	width: calc(100% + 80px);
    }
    .pServersHero-before-heading {
    	font-size: var(--h6-size);
    	margin-bottom: 10px;
    }
    .pServersHero-heading {
    	margin-bottom: 16px;
    }
    .pServersHero-description {
    	font-size: var(--text-size);
    	margin-bottom: 16px;
    }
    .pServersHero-percent {
    	font-size: var(--h6-size);
    	margin-bottom: 16px;
    }
    .pServersHero-percent span {
    	font-size: calc(var(--h1-size) * 1.25);
    }
    .pServersHero-bottom {
    	flex-direction: column;
    	align-items: flex-start;
    	width: 100%;
    }
    .pServersHero-button-text br {
    	display: none;
    }
	.pServersHero-label {
		height: 34px;
		bottom: -260px;
		font-size: var(--h4-size);
		width: 1000px;
		right: -250px;
	}
	.pServersHero-button-text {
		font-size: var(--text-size);
	}


	.products-tariffs .products-items {
		margin: 0 -15px -30px;
	}
	.products-tariffs .products-item {
		margin: 0 0 30px;
		padding: 0 15px;
	}
	.columns-4 .products-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}

	.products-itemAdditional__body {
		padding: 30px 30px 45px;
	}

	.pageCartTableProducts .product-price, .pageCartTableProducts .product-subtotal {
		width: 140px;
	}
}


@media (max-width: 1079px) {
	:root {
		--container: 710px;
		--container-sm: var(--container);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-esm: 13px;
		--h1-size: 30px;
		--h2-size: 26px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	body {
		line-height: 1.5;
	}
	h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote {
		margin-bottom: 20px;
	}
	.btn {
		font-size: var(--text-size);
	}
	.section {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.heading {
		margin-bottom: 30px;
		line-height: 1.333;
	}
	.heading h2 {
		line-height: 1.2;
	}
	.heading br {
		display: none;
	}
	.subheading {
		margin-bottom: 24px;
	}
	.header-wrap {
		height: 50px;
		gap: 20px;
	}
	.header-logo {
		flex: auto;
		order: 1;
	}
	.header-logo img {
		width: 90px;
		height: 50px;
	}
	.main-menu,
	.header-phone {
		display: none;
	}
	.lang-menu {
		order: 2;
	}
	.header-account {
		order: 3;
	}
	.header-account .btn {
		font-size: 0;
		padding: 0;
		width: 50px;
	}
	.header-account .btn:before {
		content: '';
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-image: url(images/user.svg);
		mask-image: url(images/user.svg);
		background-color: var(--blue);
		flex: 0 0 27px;
		max-width: 27px;
		width: 27px;
		height: 27px;
		transition: .5s;
		z-index: 1;
	}
	.header-account .btn:hover:before {
		background-color: var(--white);
	}
	.header-toggle {
		order: 4;
	}
	.swiper-navigation {
		opacity: 1;
	}
	.hero-section, .hero-item {
		height: 100%;
	}
	.hero-swiper .swiper-slide {
		height: auto;
	}
	.hero-item {
		padding: 105px 0 95px;
	}
	.hero-item__right {
		display: none;
	}
	.hero-item__left {
		flex: 0 0 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.hero-item__before-heading {
		font-size: var(--h5-size);
	}
	.hero-item__heading {
		font-size: var(--h1-size);
		margin-bottom: 10px;
	}
	.hero-item__description {
		margin-bottom: 24px;
	}
	.hero-item__label {
		height: 30px;
		font-size: var(--h6-size);
		width: 2000px;
		right: auto;
		bottom: -240px;
		left: calc(50% - 920px);
	}
	.hero-item__image {
		margin-bottom: 24px;
		z-index: 0;
	}
	.hero-item__image img {
		max-height: 370px;
	}
	.hero-item__percent {
		gap: 16px;
		text-align: left;
	}
	.hero-item__percent span {
        font-size: calc(var(--h1-size) * 1.66667);
    }
    .hero-item__bottom {
    	align-items: center;
    }
    .hero-item__button .btn {
    	padding-left: 24px;
    	padding-right: 24px;
    }
    .hero-item__button-text {
    	font-size: var(--text-size-sm);
    }
    .servers-section .heading h2 {
    	font-size: var(--h2-size);
    }
    .servers-items {
    	margin: 0;
    	gap: 35px;
    }
    .servers-item {
    	margin: 0;
    	padding: 0;
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .servers-item__wrap {
    	-moz-border-radius: 30px;
    	-webkit-border-radius: 30px;
    	border-radius: 30px;
    	padding: 0 24px 54px;
    }
    .servers-item__icon {
		flex: 0 0 115px;
		max-height: 115px;
		width: 120px;
		padding: 16px 24px 24px;
    }
    .servers-item__title {
    	line-height: 1.2;
    	margin-bottom: 12px;
    	min-height: auto;
    }
    .servers-item__title br {
    	display: none;
    }
    .servers-item__description {
    	font-size: var(--text-size);
    	margin-bottom: 12px;
    }
    .servers-item__price {
    	font-size: var(--h6-size);
    	margin-bottom: 12px;
    }
    .servers-item__price span {
    	font-size: calc(var(--h1-size) * 1.3333);
    }
    .benefits-heading.heading {
    	margin-bottom: 35px;
    }
    .benefits-heading.heading h2 {
    	font-size: var(--h2-size);
    }
    .benefits-item__wrap,
    .benefits-item:nth-child(2n) .benefits-item__wrap {
    	flex-direction: column;
    }
    .benefits-item__left, .benefits-item__right {
    	flex: auto;
    }
    .benefits-item__left {
    	max-width: 100%;
    }
    .benefits-item__image {
    	padding: 0 !important;
    }
    .benefits-item__image img {
    	max-height: 300px;
    }
    .benefits-item__title {
    	font-size: var(--h3-size);
    	margin-bottom: 16px;
    }
    .advantages-items {
    	margin: 0;
    	gap: 35px;
    }
    .advantages-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin: 0;
    	padding: 0;
    }
	.advantages-item__wrap {
		padding: 40px 20px 40px 40px;
	}
	.advantages-item__title {
		line-height: 1.2;
	}
	.advantages-item__title br {
		display: none;
	}
	.advantages-item__description {
		font-size: var(--text-size);
	}
	.cta-wrap {
		gap: 35px;
		flex-direction: column;
	}
	.cta-left {
		flex: auto;
		max-width: 100%;
	}
	.cta-image {
		text-align: center;
	}
	.cta-image img {
		max-height: 300px;
	}
	.cta-right {
		max-width: 100%;
		text-align: center;
	}
	.cta-heading.heading {
		margin-bottom: 8px;
	}
	.cta-description {
		margin-bottom: 16px;
	}
	.reviews-section.section {
		padding-top: 100px;
	}
	.reviews-item__wrap {
        padding: 35px 24px 35px 35px;
    }
    .reviews-item__name {
    	font-size: var(--h5-size);
    }
    .reviews-navigation {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		justify-content: center;
		display: flex;
		align-items: center;
		margin-top: 25px;
		max-width: 100% !important;
		gap: 10px;
    }
    .reviews-navigation button {
    	position: relative;
    }
    .reviews-button {
    	margin-top: 25px;
    }
    .subscribe-section {
    	padding: 60px 0 40px;
    }
    .subscribe-wrap {
    	gap: 20px;
    	flex-direction: column;
    }
    .subscribe-text {
    	flex: 0 0 100%;
    	max-width: 100%;
    	text-align: center;
    }
    .subscribeForm-wrap {
    	gap: 20px;
    	flex-direction: column;
    	align-items: none;
    }
    .subscribeForm-col-field {
    	max-width: 100%;
    }
    .subscribeForm-col-button {
    	flex: auto;
    	max-width: 100%;
    }
    .subscribeForm-col-policy {
    	margin-top: -10px;
    	text-align: center;
    }
    .footer-wrap {
    	flex-direction: column;
    	gap: 45px;
    	align-items: center;
    }
    .footer-widget {
    	padding-top: 0;
    	max-width: 100%;
    	text-align: center;
    }
    .footer-logo {
    	max-width: 100%;
    	margin-bottom: 20px;
    }
    .footer-logo img {
    	max-height: 50px;
    	width: 85px;
    	height: 50px;
    }
    .footer-contacts {
    	gap: 20px;
    }
    .footer-contacts p {
    	align-items: center;
    	font-size: var(--text-size);
    	gap: 2px;
    }
    .footer-contacts p span {
    	font-size: var(--text-size-sm);
    }
    .footer-widget-title {
    	margin-bottom: 16px;
    }
    .footer-menu {
    	font-size: var(--text-size);
    }
    .footer-bottom {
    	padding: 35px;
    }
    .footer-bottom-wrap {
    	flex-direction: column-reverse;
    }
    .copyright {
    	font-size: var(--text-size);
    }
    .page-breadcrumbs {
    	padding: 12px 0;
    	text-align: left;
    }
    .breadcrumbs-sep {
    	margin: 0 8px;
    }
    .page-body.section {
    	padding-top: 24px;
    }
    .page-title {
    	margin-bottom: 40px;
    	text-align: center;
    }
    .lang-menu {
    	font-size: var(--h6-size);
    }
    .lang-menu > li.menu-item-has-children > a:after {
    	-webkit-mask-size: 12px;
    }

    .archiveBlogСategory-list li a {
    	font-size: var(--text-size-sm);
    	padding: 4px 12px 4px 8px;
    }

    .blog-items {
    	margin-bottom: -34px;
    }
    .blog-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    	margin-bottom: 34px;
    }
    .blog-item__image,
    .blog-item__image-inner {
    	height: calc((var(--container) - 30px) / 2 / 1.6);
    }
    .blog-item__image {
    	margin-bottom: 12px;
    }
    .blog-item__title {
    	font-size: var(--h6-size);
    }
    .blog-item__button .btn {
    	flex: 0 0 40px;
    	max-width: 40px;
    	min-height: 40px;
    }
    .blog-item__button {
    	padding: 10px 1px 1px 10px;
    	border-radius: 30px 0 0 0;
    }
    .blog-item__button:before, .blog-item__button:after {
    	background-image: url(images/blog-angle-mask-mobile.svg);
    	width: 26px;
    	height: 27px;
    }
    .blog-item__button:before {
    	left: -25px;
    }
    .blog-item__button:after {
    	top: -25px;
    	right: -2px;
    }

    .singleBlog-top {
    	margin-bottom: 30px;
    }
    .singleBlog-meta {
    	display: block;
    	padding: 0 12px 12px 0;
		-moz-border-radius: 0 0 30px 0;
		-webkit-border-radius: 0 0 30px 0;
		border-radius: 0 0 30px 0;
		padding-left: 60px;
    }
    .singleBlog-author {
    	display: block;
    }
    .singleBlog-author-avatar {
    	position: absolute;
    	width: 45px;
    	left: 0;
    }
    .singleBlog-author-name {
    	font-size: var(--text-size-sm);
    	max-width: 100%;
    }
    .singleBlog-date {
    	display: block;
    	font-size: var(--text-size-sm);
    }
    .singleBlog-date:before {
    	display: none;
    }
    .singleBlog-image {
		-moz-border-radius: 30px;
		-webkit-border-radius: 30px;
		border-radius: 30px;
    }
    .singleBlog-items {
        gap: 40px;
    }

    .page-content h2 {
    	font-size: var(--h1-size);
    }
    .page-content h3 {
    	font-size: var(--h2-size);
    }
    .page-content h4 {
    	font-size: var(--h3-size);
    }
    .page-content h5 {
    	font-size: var(--h4-size);
    }
    .page-content h6 {
    	font-size: var(--h5-size);
    }
    .page-content ul li span:first-child strong:first-child, .page-content ol li span:first-child strong:first-child {
    	font-size: var(--h6-size);
    }
    .singleBlog-item__iconContent {
    	padding: 24px 16px 40px 24px;
    	flex-direction: column;
    	gap: 10px;
    }
    .singleBlog-item__iconContent-icon {
    	flex: 0 0 57px;
    	max-width: 100%;
    	max-height: 57px;
    }
    .singleBlog-item__imageContent-items {
    	gap: 40px;
    }
	.singleBlog-item__imageContent-item {
		gap: 30px;
	}
	.singleBlog-item__imageContent-item,
	.singleBlog-item__imageContent-item:nth-child(2n) {
		flex-direction: column;
	}
	.singleBlog-item__imageContent-item__image {
		flex: auto;
		max-width: 100%;
	}
	.singleBlog-item__imageContent-item:nth-child(2n) .singleBlog-item__imageContent-item__image {
		text-align: left;
	}
	.singleBlog-bottom {
		margin-top: 35px;
		flex-direction: column;
	}
	.singleBlog-bottom-share {
		flex-direction: column;
		gap: 6px;
	}
	.singleBlog-bottom-share p {
		font-size: var(--text-size);
	}

	.pServersHero-section {
		padding: 30px 0 50px;
	}
	.pServersHero-right {
		display: none;
	}
	.pServersHero-left {
		flex: 0 0 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.pServersHero-before-heading {
		font-size: var(--h5-size);
	}
	.pServersHero-heading {
		font-size: var(--h1-size);
		margin-bottom: 10px;
	}
	.pServersHero-description {
		margin-bottom: 24px;
	}
	.pServersHero-label {
		height: 30px;
		font-size: var(--h6-size);
		width: 2000px;
		right: auto;
		bottom: -240px;
		left: calc(50% - 920px);
	}
	.pServersHero-image {
		margin-bottom: 24px;
		z-index: 0;
	}
	.pServersHero-image img {
		max-height: 370px;
	}
	.pServersHero-percent {
		gap: 16px;
		text-align: left;
	}
	.pServersHero-percent span {
        font-size: calc(var(--h1-size) * 1.66667);
    }
    .pServersHero-bottom {
    	align-items: center;
    }
    .pServersHero-button .btn {
    	padding-left: 24px;
    	padding-right: 24px;
    }
    .pServersHero-button-text {
    	font-size: var(--text-size-sm);
    }

    .columns-3 .products-item,
    .columns-4 .products-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }

    .products-itemTariff__title,
    .products-itemAdditional__title {
    	font-size: var(--h5-size);
    	gap: 6px;
    }
    .products-itemTariff__title span,
    .products-itemAdditional__title span {
    	font-size: var(--h2-size);
    }
    .products-itemTariff__price-inner,
    .products-itemAdditional__price-inner {
    	font-size: var(--h6-size);
    }
    .products-itemTariff__price-inner span,
    .products-itemAdditional__price-inner span {
    	font-size: calc(var(--h1-size) * 1.333);
    }
    .products-itemTariff__characteristics p,
    .products-itemAdditional__characteristics p {
    	font-size: var(--text-size);
    }
    .products-itemTariff__afterContent {
    	font-size: var(--text-size-sm);
    }

    .operatingSystem-item {
    	flex: 0 0 calc(50% - 15px);
    	max-width: calc(50% - 15px);
    }
    .operatingSystem-item__image {
    	height: 112px;
    	text-align: center;
    }
    .operatingSystem-item__image img {
    	max-height: 112px;
    }
    .operatingSystem-wrap .subheading {
    	margin-bottom: 35px;
    }

    .advantages_2-heading.heading {
    	margin-bottom: 30px;
    }
    .advantages_2-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .advantages_2-item__wrap {
    	padding: 40px 20px 40px 30px;
    }
    .advantages_2-item__head {
    	margin-bottom: 16px;
    }

    .subheading h3 img {
	    max-width: 64px;
	    max-height: 33px;
	}


	.pageCart-left,
	.pageCheckout-left {
		position: relative;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
		top: 0;
	}
	.pageCart-right,
	.pageCheckout-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


@media (max-width: 767px) {
	:root {
		--container: 510px;
	}
	.hero-item__label {
		bottom: -290px;
	}
	.reviews-items {
		margin: 0;
		gap: 35px;
	}
	.reviews-item {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 0;
		padding: 0;
	}
	.reviews-swiper .swiper-slide.swiper-slide-next {
		opacity: 0;
		z-index: -999;
		pointer-events: none;
	}
    .blog-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .blog-item__image,
    .blog-item__image-inner {
    	height: calc(var(--container) / 1.6);
    }

    .columns-3 .products-item, .columns-4 .products-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }

	.pServersHero-label {
		bottom: -290px;
	}

	.pageCartTableProducts,
	.pageCartTableProducts tbody {
		display: block;
		width: 100%;
		padding: 0;
	}
	.pageCartTableProducts tr {
		display: flex;
		align-items: center;
		gap: 12px 24px;
		flex-wrap: wrap;
		width: 100%;
		padding: 20px 0;
		border-top: 1px solid var(--grey-border);
	}
	.pageCartTableProducts tr:first-child {
		border-top: 0;
	}
	.pageCartTableProducts td {
		width: 100%;
		display: block;
		padding: 0;
		order: 3;
		flex: 0 0 calc((100% / 3) - (2 * 24px / 3));
		max-width: calc((100% / 3) - (2 * 24px / 3));
		width: calc((100% / 3) - (2 * 24px / 3));
		border: none;
	}
	.pageCartTableProducts td.product-name {
		order: 1;
		flex: 0 0 calc(100% - 28px - 24px);
		max-width: calc(100% - 28px - 24px);
	}
	.pageCartTableProducts td.product-remove {
		order: 2;
		flex: 0 0 28px;
		max-width: 28px;
		width: 28px;
	}
	.pageCartTableProducts-qty {
		max-width: 100%;
	}
	.pageCartTableProducts td.actions {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
		gap: 40px;
	}
	.pageCartTableProducts .coupon {
		max-width: 100%;
	}

	.form-row-first, .form-row-last {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.pageLogin-form, .pageCheckout-loginForm form {
		padding: 24px;
	}
	.wc_payment_methods li img {
		max-width: 65px;
		max-height: 16px;
	}
	.woocommerce-thankyou-order-details {
		padding: 24px;
		gap: 16px;
		flex-direction: column;
	}
	.woocommerce-thankyou-order-received {
		font-size: var(--h6-size);
	}
	.woocommerce-orders-table th, .woocommerce-orders-table td, .woocommerce-table--order-details th, .woocommerce-table--order-details td {
		padding: 8px 12px;
	}

	.woocommerce-MyAccount-navigation ul,
	.pageLogin-nav {
		gap: 4px;
	}
	.woocommerce-MyAccount-navigation ul li,
	.pageLogin-nav li {
		flex: 0 0 calc(50% - 2px);
		max-width: calc(50% - 2px);
	}
	.woocommerce-MyAccount-navigation ul li a,
	.pageLogin-nav li a {
		width: 100%;
	}

	.woocommerce-orders-table {
		display: block;
		width: 100%;
	}
	.woocommerce-orders-table thead {
		display: none;
	}
	.woocommerce-orders-table tbody {
		display: block;
		width: 100%;
	} 
	.woocommerce-orders-table tbody tr {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		background: var(--bg-gradient);
		padding: 20px;
		border-radius: 30px;
		margin-bottom: 24px;
	}	
	.woocommerce-orders-table tbody td {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
		padding: 0;
		border: none;
		background: none;
	}
	.woocommerce-orders-table tbody td {
		margin-bottom: 5px;
	}
	.woocommerce-orders-table tbody td:last-child {
		margin-bottom: 0;
	}
	.woocommerce-orders-table tbody td:before {
		content: attr(data-title) ":";
		font-weight: 600;
	}
	.woocommerce-orders-table__cell-order-actions:before {
		display: none;
	}
}


@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 44px);
	}
	.hero-item__label {
        bottom: -330px;
        left: calc(50% - 915px);
        font-size: var(--text-size);
        height: 28px;
    }
    .hero-item__percent {
    	gap: 10px;
    }
    .modal-dialog {
    	max-width: var(--container);
    }
    .modal-content {
    	padding: 40px 24px 24px;
    }
    .error-404-number {
    	font-size: calc(var(--h1-size) * 5);
    }
	.pServersHero-label {
        bottom: -330px;
        left: calc(50% - 915px);
        font-size: var(--text-size);
        height: 28px;
    }
    .pServersHero-percent {
    	gap: 10px;
    }
	.pageCartTableProducts .coupon input {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.pageCartTableProducts .coupon button {
		flex: 0 0 100%;
		max-width: 100%;
		order: 3;
		margin: 10px 0 0;
	}
	.coupon-error-notice {
		order: 2;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.woocommerce-checkout-review-order-table thead th:first-child, .woocommerce-checkout-review-order-table tbody td:first-child {
		flex: 0 0 60%;
		max-width: 60%;
	}
	.woocommerce-checkout-review-order-table thead th:last-child, .woocommerce-checkout-review-order-table tbody td:last-child {
		flex: 0 0 40%;
		max-width: 40%;
	}
}