/*!
Theme Name: NET Zahid
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: netzahid
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.

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

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

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--container: 1316px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-lg: 18px;
	--h1-size: 54px;
	--h2-size: 44px;
	--h3-size: 36px;
	--h4-size: 30px;
	--h5-size: 24px;
	--h6-size: 20px;

	--grey: #6F7174;
	--white: #FFFFFF;
	--red: #FA0006;
	--black: #18191C;
	--gradient: linear-gradient(263.12deg, #ED0007 0%, #ED0007 40%, #5856D6 100%);
	--grey-light: #E3E3E3;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.25;
	color: var(--grey);
	background: var(--white);
}
a {
	text-decoration: underline;
	color: var(--black);
	transition: .5s;
}
a:hover {
	color: var(--red);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.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: 'Rubik', sans-serif;
	font-weight: 600;
	margin: 0 0 24px;
	line-height: 1.08;
	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%;
}
strong {
	font-weight: 600;
}

.contentStyle img {
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}


.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 12px;
	margin-bottom: 24px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	display: block;
	line-height: 1.25;
	margin-bottom: 12px;
	color: var(--white);
}
::-webkit-input-placeholder {
	color: var(--white);
}
::-moz-placeholder {
	color: var(--white);
}
:-ms-input-placeholder {
	color: var(--white);
}
:-moz-placeholder {
	color: var(--white);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: none;
	border: 1px solid var(--white);
	color: var(--white);
	-moz-border-radius: 28px;
	-webkit-border-radius: 28px;
	border-radius: 28px;
	padding: 12px 20px;
	min-height: 56px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 200px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.form-field-radioInline .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -12px;
}
.form-field-radioInline .wpcf7-list-item {
	margin: 0 0 12px;
	padding: 0 12px;
	max-width: 220px;
}
.form-field-radioInline .wpcf7-list-item label {
	display: block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	z-index: 1;
}
.form-field-radioInline .wpcf7-list-item input {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid #767676;
	width: 18px;
	height: 18px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.form-field-radioInline .wpcf7-list-item input:checked {
	border-color: #0075FF;
}
.form-field-radioInline .wpcf7-list-item input:checked:before {
	content: '';
	background: #0075FF;
	flex: 0 0 11px;
	max-width: 11px;
	height: 11px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-sm);
	color: #F0E6F2;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size-sm);
}
.form-field-policy {
	margin-bottom: 32px;
}
.form-field-policy a {
	text-decoration: underline;
	color: var(--white);
}
.form-field-policy a:hover {
	opacity: .7;
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 34px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid none;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .5s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
	width: 6px;
	height: 14px;
	border-bottom: 2px solid var(--black);
	border-right: 2px solid var(--black);
	display: block;
	position: absolute;
	top: 1px;
	left: 7px;
	transform: rotate(45deg);
}

.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}
.bg-image-grey {
	background: url(images/bg-image-grey.jpg) no-repeat center top;
	background-size: cover;
}

.heading {
	position: relative;
	margin-bottom: 42px;
}
.heading.center {
	text-align: center;
}
.heading p:first-child {
	font-size: var(--text-size-sm);
	font-weight: 500;
	color: var(--red);
	margin-bottom: 12px;
}
.heading h2 {
	font-size: var(--h2-size);
	font-weight: 600;
}
.heading.white h2,
.heading.white p,
.heading.white p:first-child {
	color: var(--white);
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 9px 28px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	outline: none;
	min-width: 264px;
	min-height: 60px;
	text-decoration: none;
	cursor: pointer;
	transition: .5s;
}
.btn-sm {
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	min-width: 224px;
	min-height: 50px;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-right: 6px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: .5s;
}
.btn-icon-left:before {
	margin-right: 6px;
}
.btn-icon-right:after {
	margin-left: 6px;
}
.btn-primary {
	background-color: var(--red);
	border-color: var(--red);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--black);
}
.btn-secondary:hover {
	background-color: var(--grey-light);
	border-color: var(--grey-light);
	color: var(--black);
}
.btn-outline-secondary {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--black);
}
.btn-gradient {
	background: var(--gradient);
	border: none;
	color: var(--white);
}
.btn-gradient:hover {
	background: var(--gradient);
	border: none;
	color: var(--white);
	opacity: .7;
}
.btn-gradient:before,
.btn-gradient:after {
	background-color: var(--white);
}
.btn-icon-user:before,
.btn-icon-user:after {
	-webkit-mask-image: url(images/user.svg);
	mask-image: url(images/user.svg);
}
.btn.btn-link {
	min-width: inherit;
	min-height: inherit;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: 0;
	border: none;
	color: var(--red);
}
.btn.btn-link:hover {
	color: var(--black);
}


.owl-dots {
	position: absolute;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	height: 15px;
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-right: 6px;
	background: var(--black) !important;
	transition: .5s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover {
	background: var(--red) !important;
}
.owl-dots button.active {
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	background: var(--red) !important;
}




.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5;
	border: none;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--red);
}
.swiper-navigation button:disabled {
	background: var(--white);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-down.svg);
    mask-image: url(images/arrow-down.svg);
    background-color: var(--black);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation button.swiper-navigation-next:before {
	transform: rotate(-90deg);
}
.swiper-navigation button:hover:before {
	background-color: var(--white);
}





.soc-links {
	display: flex;
	align-items: center;
}
.soc-links.black {
	color: var(--black);
}
.soc-links span {
	flex: 0 0 auto;
	margin-right: 15px;
	font-weight: 500;
}
.soc-links ul {
	flex: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 8px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
}
.soc-links li a:hover {
	transform: scale(1.05);
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path:first-child {
	stroke: var(--white);
}
.soc-links li a path:last-child {
	fill: var(--white);
}
.soc-links.black li a rect:first-child {
	stroke: var(--black);
}
.soc-links.black li a path:last-child {
	fill: var(--black);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: var(--black);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: .1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 50px 20px 20px;
	-moz-border-radius: 16px 0 0 16px;
	-webkit-border-radius: 16px 0 0 16px;
	border-radius: 16px 0 0 16px;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: 28px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--red);
}
.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 a {
	order: 1;
	font-size: var(--text-size);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	text-transform: uppercase;
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 auto;
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--red);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	margin-top: -2px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--red);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--red);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	z-index: 9;
}
.mobile-soc {
	margin-top: 24px;
	flex-direction: column;
	align-items: flex-start;
}
.mobile-soc span {
	flex: auto;
	max-width: 100%;
	margin-right: 0;
	margin-bottom: 8px;
}



.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-md {
	max-width: 570px;
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background: url(images/bg-purple-red.jpg) no-repeat center 60%;
	background-size: cover;
	color: var(--white);
	outline: 0;
	padding: 40px 50px;
	-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(--h5-size);
	font-weight: 600;
	margin-bottom: 32px;
	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(--white);
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	opacity: .7;
}


.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: 32px;
	margin-bottom: 24px;
}
.alignright {
	float: right;
	margin-left: 32px;
	margin-bottom: 24px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 24px;
}

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

.topbar {
	position: relative;
	background: var(--gradient);
	color: var(--white);
	padding: 10px 0;
	z-index: 1;
}
.topbar-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
}
.topbar-buttons {
	display: flex;
	align-items: center;
}
.topbar-buttons .btn {
	margin-right: 24px;
}
.topbar-buttons .btn:last-child {
	margin-right: 0;
}

.header {
	position: sticky;
	background: url(images/main-bg.jpg) no-repeat center top;
	background-size: cover;
	top: 0;
	padding: 24px 0;
	z-index: 92;
}
.home .header {
	background: transparent;
}
.home .header.fixed {
	background: url(images/main-bg.jpg) no-repeat center top;
	background-size: cover;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}
.header-logo {
	max-width: 180px;
}
.header-logo img {
	max-height: 60px;
}
.main-menu {
	flex: 0 0 auto;
	margin: 0 24px;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu > li {
	position: relative;
	margin-right: 24px;
	z-index: 1;
}
.main-menu > li:last-child {
	margin-right: 0;
}
.main-menu > li > a {
	display: flex;
	align-items: center;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}
.main-menu li.current-menu-item > a {
	color: var(--red);
}
.main-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/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .25s;
}
.main-menu > li.menu-item-has-children:hover > a:after,
.main-menu li.current-menu-item > a:after {
	background-color: var(--red);
}
.main-menu > li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: -20px;
	margin: 0;
	padding: 24px 0px 10px;
	width: 320px;
	list-style: none;
	z-index: 1;
}
.main-menu > li > ul:before {
	content: '';
	background: var(--white);
	border: 1px solid var(--grey-light);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	position: absolute;
	width: 100%;
	height: calc(100% - 14px);
	bottom: 0;
	left: 0;
	z-index: -1;
}
.main-menu > li > ul > li {
	padding: 0 24px;
}
.main-menu > li > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
}
.main-menu li:hover > ul {
	display: block;
}
.header-account {
	flex: 0 0 auto;
}
.header-account .btn {
	min-width: inherit;
}
.header-toggle {
	display: flex;
	align-items: center;
	margin-left: 16px;
}
.header-toggle button {
	flex: 0 0 44px;
	max-width: 44px;
	width: 44px;
	height: 44px;
	-webkit-mask-size: 40px;
	-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(--black);
	cursor: pointer;
	outline: none;
	padding: 0;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--red);
}





.footer-main {
	background: url(images/footer-bg.jpg) no-repeat center top;
	background-size: cover;
	color: var(--white);
	overflow: hidden;
}
.footer-logo {
	text-align: center;
	margin-bottom: 30px;
}
.footer-logo:last-child {
	margin-bottom: 0;
}
.footer-logo img {
	max-height: 50px;
}
.footer-contacts-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -40px -40px;
}
.footer-contacts-item {
	margin: 0 0 40px;
	padding: 0 40px;
}
.footer-contacts-item__icon {
	width: 65px;
	height: 65px;
	margin: 0 auto 24px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-contacts-item__icon:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
}
.footer-contacts-item.phone .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts-item.e-mail .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/message.svg);
	mask-image: url(images/message.svg);
}
.footer-contacts-item.viber .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/viber.svg);
	mask-image: url(images/viber.svg);
}
.footer-contacts-item__label {
	font-weight: 500;
	margin-bottom: 12px;
	text-align: center;
}
.footer-contacts-item__value {
	font-weight: 600;
	text-align: center;
	color: var(--white);
}
.footer-contacts-item__value a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts-item__value a:hover {
	color: var(--red);
}
.footer-contacts-item__value .mobile {
	display: none;
}
@media(min-width:992px) {
	.footer-contacts-item__value .mobile {
		display: inline;
	}
	.footer-contacts-item__value .desktop {
		display: none;
	}
}

.footer-bottom {
	position: relative;
	background: var(--gradient);
	color: var(--white);
	padding: 24px 0;
	z-index: 1;
}
.footer-bottom-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.footer-menu li {
	margin-right: 24px;
}
.footer-menu li:last-child {
	margin-right: 0;
}
.footer-menu li a {
	color: var(--white);
	font-weight: 500;
	text-decoration: none;
}
.footer-menu li a:hover {
	opacity: .8;
}

.copyright {
	position: relative;
	background: #18191C;
	color: var(--white);
	text-align: center;
	padding: 18px 0;
	font-size: var(--text-size-sm);
	z-index: 1;
}
.copyright a {
	color: var(--white);
	text-decoration: none;
}
.copyright a:hover {
	color: var(--red);
}


.page-header {
	background: url(images/page-header-bg.jpg) no-repeat center;
	background-size: cover;
	color: var(--white);
}
.page-breadcrumbs {
	text-align: center;
	margin-bottom: 12px;
	font-weight: 500;
}
.page-breadcrumbs a {
	font-weight: 400;
	color: var(--red);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--white);
}
.breadcrumbs-sep {
	display: inline-block;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--red);
	width: 20px;
	height: 20px;
	margin: 0 8px 1px;
	transform: rotate(-90deg);
    vertical-align: middle;
}
.page-title {
	text-align: center;
	font-size: var(--h1-size);
	color: var(--white);
}
.single-post .page-title {
	font-size: var(--h2-size);
}
.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	font-weight: 600;
	color: var(--grey-light);
	line-height: 1;
	text-align: center;
	margin-bottom: 24px;
}
.error-404-button {
	text-align: center;
}




.hero-section {
	position: relative;
	margin-top: -108px;
	background: url(images/main-bg.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	z-index: 1;
}
.hero-wrap {
	display: flex;
	justify-content: space-between;
	min-height: 850px;
	padding-top: 237px;
}
.hero-left {
	flex: 0 0 calc(46% - 24px);
	max-width: calc(46% - 24px);
	padding-bottom: 80px;
}
.hero-heading {
	margin-bottom: 20px;
	font-size: var(--h1-size);
	line-height: 1.08;
	font-weight: 600;
}
.hero-content {
	margin-bottom: 24px;
	color: var(--black);
	font-size: var(--h6-size);
}
.hero-info {
	position: relative;
	padding-left: 30px;
	z-index: 1;
}
.hero-info:before {
	content: '';
	position: absolute;
	background: var(--red);
	width: 8px;
	height: 100%;
	top: 0;
	left: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	z-index: 1;
}
.hero-list {
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}
.hero-list li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 36px;
	color: #222222;
	font-weight: 500;
	z-index: 1;
}
.hero-list li:last-child {
	margin-bottom: 0;
}
.hero-list li:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background: url(images/check.svg) no-repeat center;
	background-size: contain;
	top: -2px;
	left: 0;
	z-index: 1;
}
.hero-right {
	flex: 0 0 calc(46% - 12px);
	max-width: calc(46% - 12px);
}
.hero-image {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}
.hero-image-inner {
	width: calc(100% + 285px);
}
.hero-phone {
	position: absolute;
	top: 49px;
	left: -131px;
	width: 535px;
	height: 191px;
	background: url(images/hero-phone-bg.svg) no-repeat center;
	background-size: contain;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.hero-phone span {
	font-size: var(--h5-size);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 12px;
	color: #222222;
}
.hero-phone a {
	text-decoration: none;
	font-size: calc(var(--h1-size) * 1.18);
	font-weight: 600;
	line-height: 1;
	background: -webkit-linear-gradient(261.19deg, #ED0108 -0.04%, #7347B1 88.64%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-phone a:hover {
	opacity: .7;
}
.hero-email {
	position: absolute;
	left: 30px;
	bottom: 45px;
	display: inline-flex;
	align-items: center;
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.hero-email:hover {
	color: var(--red);
}
.hero-email:before {
	content: '';
	flex: 0 0 34px;
	max-width: 34px;
	width: 34px;
	height: 34px;
	background: url(images/hero-email-icon.svg) no-repeat center;
	background-size: contain;
	margin-right: 16px;
}




.about-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-left {
	flex: 0 0 calc(50% - 14px);
	max-width: calc(50% - 14px);
}
.about-heading {
	margin-bottom: 24px;
}
.about-content {
	margin-bottom: 32px;
}
.about-content:last-child {
	margin-bottom: 0;
}
.about-content p,
.about-content ul {
	margin-bottom: 14px;
}
.about-content p:last-child,
.about-content ul:last-child {
	margin-bottom: 0;
}
.about-advantages {
	position: relative;
}
.about-advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.about-advantages-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 24px;
	padding: 0 12px;
}
.about-advantages-item__wrap {
	position: relative;
	background: url(images/about-advantages-bg.svg) no-repeat center;
	background-size: contain;
	height: calc(((var(--container) * .5 - 12px) - 24px * 2) / 3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 16px 16px 32px;
    transition: .5s;
	z-index: 1;
}
.about-advantages-item.active .about-advantages-item__wrap {
	background-image: url(images/about-advantages-bg-hover.svg);
}
.about-advantages-item__image {
	width: 64px;
	height: 64px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-advantages-item__image span {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background: var(--black);
    transition: .5s;
}
.about-advantages-item.active .about-advantages-item__image span {
	background-color: var(--white);
}
.about-advantages-item__text {
	text-align: center;
	color: var(--black);
	font-weight: 500;
	transition: .5s;
}
.about-advantages-item.active .about-advantages-item__text {
	color: var(--white);
}
.about-right {
	flex: 0 0 calc(50% - 65px);
	max-width: calc(50% - 65px);
}
.about-images {
	position: relative;
	z-index: 1;
}
.about-image {
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	overflow: hidden;
}
.about-image-1 {
	position: relative;
	width: 71.5%;
	height: 100%;
	margin-left: auto;
	z-index: 1;
}
.about-image-2 {
	position: absolute;
	width: 36.5%;
	height: 36.1%;
	top: 4.8%;
	left: 6.3%;
	z-index: 2;
}
.about-image-3 {
	position: absolute;
	width: 42.8%;
	height: 45.6%;
	bottom: 5%;
	left: 0;
	z-index: 2;
}



.infoBlock-section:after {
	content: '';
	background: url(images/bg-image-elements.png) no-repeat center top;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .73;
	z-index: -1;
}
.infoBlock-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.infoBlock-wrap.reverse {
	flex-direction: row-reverse;
}
.infoBlock-left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.infoBlock-image {
	height: 100%;
	overflow: hidden;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.infoBlock-right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.infoBlock-heading {
	margin-bottom: 24px;
}
.infoBlock-content {
	margin-bottom: 30px;
}
.infoBlock-content:last-child {
	margin-bottom: 0;
}
.infoBlock-content p,
.infoBlock-content ul {
	margin-bottom: 14px;
}
.infoBlock-content p:last-child,
.infoBlock-content ul:last-child {
	margin-bottom: 0;
}
.infoBlock-text {
	margin-bottom: 40px;
}
.infoBlock-text a {
	text-decoration: none;
}
.infoBlock-text img {
	margin: 0 17px;
}




.tv-section {
	background: linear-gradient(83.97deg, #1B2322 0%, #781518 69.98%, #E8040D 109.44%);
}
.tv-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.tv-left,
.tv-right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.tv-logo {
	margin-bottom: 14px;
}
.tv-heading {
	margin-bottom: 24px;
}
.tv-content {
	color: var(--white);
	margin-bottom: 30px;
}
.tv-content p,
.tv-content ul {
	margin-bottom: 14px;
}
.tv-content p:last-child,
.tv-content ul:last-child {
	margin-bottom: 0;
}
.tv-text {
	color: var(--white);
	margin-bottom: 40px;
}
.tv-text a {
	text-decoration: none;
	color: var(--white);
}
.tv-text a:hover {
	color: var(--red);
}
.tv-text img {
	margin: 0 17px;
}
.tv-images {
	position: relative;
}
.tv-images-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.tv-images-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 24px;
	padding: 0 12px;
}
@media(min-width: 576px) {
	.tv-images-item__image {
		position: relative;
		overflow: hidden;
		-moz-border-radius: 30px;
		-webkit-border-radius: 30px;
		border-radius: 30px;
		height: 320px;
		margin-top: -80px;
		z-index: 1;
	}
	.tv-images-item:nth-child(2n) .tv-images-item__image {
		height: 240px;
		margin-top: 0;
	}
	.tv-images-item:nth-child(1) .tv-images-item__image,
	.tv-images-item:nth-child(3) .tv-images-item__image {
		margin-top: 0;
	}
}



.options-section:before {
	content: '';
	background: url(images/bg-image-elements.png) no-repeat center top;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .73;
	z-index: -1;
}
.options-wrap {
	position: relative;
	padding-top: 46px;
	z-index: 1;
}
.options-info {
	position: absolute;
    top: calc(50% - 120px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.options-items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: -90px;
}
.options-item {
	flex: 0 0 23.6%;
	max-width: 23.6%;
	margin-right: 17.9%;
	margin-left: 8.5%;
	margin-bottom: 90px;
}
.options-item:nth-child(2n) {
	margin-right: 8.5%;
	margin-left: 17.9%;
}
.options-item:nth-child(3) {
	margin-left: 0;
}
.options-item:nth-child(4) {
	margin-right: 0;
}
.options-item__wrap {
	position: relative;
	background: url(images/options-item-bg.svg) no-repeat center;
	background-size: contain;
	height: calc(var(--container) * .236 / 1.023);
	padding: 0 24px 24px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	z-index: 1;
}
.options-item__image {
	width: 119px;
	height: 119px;
	background: url(images/options-item-image-bg.svg) no-repeat center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -46px 0 16px;
}
.options-item__image img {
	max-height: 100px;
}
.options-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--black);
	transition: .5s;
}
.options-item__wrap:hover .options-item__title {
	color: red;
}
.options-image {
	max-width: 422px;
	margin: 0 auto 42px;
}
.options-image svg {
	width: 100%;
	height: 100%;
}
.options-button {
	text-align: center;
	display: flex;
	flex-direction: column;
}
.options-button .btn {
	margin-bottom: 24px;
}
.options-button .btn:last-child {
	margin-bottom: 0;
}




.advantages-section:before {
	content: '';
	background: url(images/bg-image-elements.png) no-repeat center top;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .73;
	z-index: -1;
}
.advantages-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 24px;
	grid-row-gap: 24px;
}
.advantages-item:nth-child(1) {
	grid-area: 1 / 1 / 3 / 2;
}
.advantages-item:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
}
.advantages-item:nth-child(3) {
	grid-area: 2 / 2 / 3 / 3;
}
.advantages-item:nth-child(4) {
	grid-area: 3 / 1 / 4 / 2;
}
.advantages-item:nth-child(5) {
	grid-area: 3 / 2 / 4 / 3;
}
.advantages-item__wrap {
	position: relative;
	height: 100%;
	min-height: 260px;
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(255, 239, 243, 0.3);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
.advantages-item:first-child .advantages-item__wrap {
	flex-direction: column;
}
.advantages-item__info {
	flex: auto;
	padding: 34px;
}
.advantages-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--black);
	margin-bottom: 12px;
}
.advantages-item__text {
	margin-bottom: 0;
}
.advantages-item__button {
	margin-top: 42px;
}
.advantages-item__image {
	position: relative;
	flex: 0 0 219px;
	max-width: 219px;
	background: url(images/advantages-item-image-bg.svg) no-repeat left center;
	background-size: 343px;
	z-index: 1;
}
.advantages-item:first-child .advantages-item__image {
	flex: 0 0 189px;
	max-height: 189px;
	max-width: 100%;
	background-size: 100%;
	background-position: top center;
	background-image: url(images/advantages-item-image-bg-1.svg);
	margin-top: 85px;
}
.advantages-item__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}
.advantages-item:first-child .advantages-item__image span {
	position: absolute;
	width: 100%;
	height: 203px;
	left: 0;
	bottom: 44px;
	z-index: 1;
}




.reviews-item__wrap {
	position: relative;
	background: #F0E6F2;
	padding: 32px 60px 80px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	z-index: 1;
}
.reviews-item__image {
	width: 150px;
	height: 150px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 24px;
}
.reviews-item__text {
	color: #404040;
	text-align: center;
}
.reviews-item__name {
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--black);
	text-align: center;
	text-transform: uppercase;
}




.feedback-section {
	background: url(images/bg-purple-red.jpg) no-repeat bottom center;
	background-size: cover;
}
.feedback-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.feedback-left {
	flex: 0 0 calc(42% - 12px);
	max-width: calc(42% - 12px);
}
.feedback-right {
	flex: 0 0 calc(58% - 12px);
	max-width: calc(58% - 12px);
}
.feedback-form {
	color: var(--white);
}





.pAboutContacts-section {
	background: url(images/bg-purple-red.jpg) no-repeat center 70%;
	background-size: cover;
}
.pAboutContacts-phone {
	margin: 0 auto;
	width: 535px;
	height: 191px;
	background: url(images/hero-phone-bg.svg) no-repeat center;
	background-size: contain;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.pAboutContacts-phone span {
	font-size: var(--h5-size);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 12px;
	color: #222222;
}
.pAboutContacts-phone a {
	text-decoration: none;
	font-size: calc(var(--h1-size) * 1.18);
	font-weight: 600;
	line-height: 1;
	background: -webkit-linear-gradient(261.19deg, #ED0108 -0.04%, #7347B1 88.64%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pAboutContacts-phone a:hover {
	opacity: .7;
}





.tariffs-section:before {
	content: '';
	background: url(images/bg-image-elements.png) no-repeat center top;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .73;
	z-index: -1;
}
.tariffsTabs {
	position: relative;
}
.tariffsTabs-nav {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.tariffsTabs-nav li {
	margin: 0 24px 24px 0;
}
.tariffsTabs-nav li:last-child {
	margin-right: 0;
}
.tariffsTabs-nav li a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	border: none;
	background: var(--gradient);
	padding: 9px 28px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	outline: none;
	min-width: 264px;
	min-height: 60px;
	text-decoration: none;
	cursor: pointer;
	z-index: 1;
	transition: .5s;
}
.tariffsTabs-nav li.active a {
	color: var(--white);
}
.tariffsTabs-nav li a:before {
	content: '';
	position: absolute;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	top: 1px;
	left: 1px;
	background: var(--white);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	transition: .5s;
	z-index: -1;
}
.tariffsTabs-nav li.active a:before {
	opacity: 0;
}
.tariffsTabs-block {
	display: none;
}
.tariffsTabs-block.active {
	display: block;
}

.tariffs-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -12px -24px;
}
.tariffs-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 24px;
	padding: 0 12px;
	padding-top: 45px;
}
.tariffs-item__wrap {
	position: relative;
	background: var(--white);
	border: 2px solid rgba(139, 0, 138, 0.2);
	border-bottom-width: 12px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	height: 100%;
	padding: 0 32px 32px;
	z-index: 1;
}
.tariffs-item__info {
	position: relative;
	margin-top: -45px;
	background: #EFF0F2;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 42px 24px;
	text-align: center;
	margin-bottom: 32px;
	z-index: 1;
}
.tariffs-item__title {
	font-weight: 500;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 12px;
}
.tariffs-item__value {
	font-size: calc(var(--h1-size) * 1.18);
	font-weight: 600;
	color: var(--black);
	line-height: 1;
}
.tariffs-item__price {
	font-size: var(--h4-size);
	font-weight: 500;
	color: var(--black);
	text-align: center;
	margin-bottom: 32px;
}
.tariffs-item__button .btn {
	width: 100%;
	min-width: inherit;
}





.instruction-block__wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 1;
}
.instruction-block:nth-child(2n) .instruction-block__wrap {
	flex-direction: row-reverse;
}
.instruction-block__number {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 335px;
	font-weight: 600;
	color: #41423C;
	opacity: .09;
	line-height: .72;
	z-index: -1;
}
.instruction-block:nth-child(2n) .instruction-block__number {
	left: auto;
	right: 0;
}
.instruction-block__left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.instruction-block__right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.instruction-block__image {
	text-align: center;
}
.instruction-block__image img {
	filter: drop-shadow(0px 21px 21px rgba(0, 0, 0, 0.1));
}
.instruction-block__content {
	padding-top: 80px;
}





.services-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -12px -24px;
}
.services-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 24px;
	padding: 0 12px;
	padding-top: 45px;
}
.services-item__wrap {
	position: relative;
	background: var(--white);
	border: 2px solid rgba(139, 0, 138, 0.2);
	border-bottom-width: 12px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	height: 100%;
	padding: 0 24px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	z-index: 1;
}
.services-item__info {
	position: relative;
	margin-top: -45px;
	background: #EFF0F2;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	padding: 29px 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	margin-bottom: 0px;
	min-height: ;
	z-index: 1;
}
.services-item__title {
	font-weight: 500;
	color: var(--red);
	text-transform: uppercase;
	margin-bottom: 12px;
}
.services-item__description {
	margin-bottom: 0px;
	color: var(--black);
}
.services-item__phone {
	margin-top: -16px;
	text-align: center;
	font-size: var(--h5-size);
	font-weight: 500;
}
.services-item__phone a {
	color: var(--black);
	text-decoration: none;
}
.services-item__phone a:hover {
	color: var(--red);
}
.services-item__button .btn {
	width: 100%;
	min-width: inherit;
}




.tvInfo-items {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.tvInfo-item__wrap {
	display: flex;
	gap: 30px;
}
.tvInfo-item:nth-child(2n) .tvInfo-item__wrap {
	flex-direction: row-reverse;
}
.tvInfo-item__left,
.tvInfo-item__right {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
}
.tvInfo-item__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}
.tvInfo-item__image {
	overflow: hidden;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.tvInfo-item__title {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.2;
}
.tvInfo-item__title span {
	flex: 0 0 120px;
	max-width: 120px;
	width: 120px;
	height: 120px;
	background: url(images/tvInfo-title-before.svg) no-repeat center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--h1-size);
	font-weight: 600;
	color: var(--white);
}




.blog-swiper {
	overflow: hidden;
}
.blog-swiper .swiper-slide {
	height: auto;
}
.blog-bottom {
	margin-top: 30px;
	display: flex;
	align-items: center;
}
.blog-navigation {
	margin-left: 33%;
	flex: 0 0 34%;
	max-width: 34%;
	justify-content: center;
}
.blog-button {
	flex: 0 0 33%;
	max-width: 33%;
	text-align: right;
}

.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.blog-items .blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 24px;
	padding: 0 12px;
}
.blog-swiper .blog-item {
	height: 100%;
}
.blog-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--grey-light);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	box-shadow: 0px 0px 10px 0px rgba(255, 239, 243, 0.3);
	z-index: 1;
}
.blog-item__image {
	flex: 0 0 calc((var(--container) - 24px * 2) / 3 / 1.8);
	max-height: calc((var(--container) - 24px * 2) / 3 / 1.8);
	clip-path: path("M0 30C0 13.4314 13.4315 0 30 0H220.5H393C409.569 0 423 13.4315 423 30V154.866C423 168.419 413.912 180.29 400.828 183.826L219.328 232.884C214.201 234.27 208.799 234.27 203.672 232.884L22.1721 183.826C9.08786 180.29 0 168.419 0 154.866V30Z");
}
.blog-item__info {
	flex: auto;
	display: flex;
	flex-direction: column;
	padding: 0 24px 24px;
}
.blog-item__date {
	margin-top: -20px;
	font-size: var(--text-size-sm);
}
.blog-item__title {
	font-size: var(--text-size-lg);
	margin-bottom: 14px;
	line-height: 1.2;
}
.blog-item__title a {
	color: var(--black);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--red);
}
.blog-item__excerpt {
	flex: auto;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 14px;
}
.blog-item__more {
	text-align: right;
}


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



.singleBlog-image {
	height: calc(var(--container) / 2);
	min-height: 420px;
	max-height: 620px;
	overflow: hidden;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	margin-bottom: 14px;
}
.singleBlog-date {
	padding-bottom: 14px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--grey-light);
	padding-left: 24px;
	color: var(--black);
}






@media (max-width: 1399px) {
	:root {
		--container: 1116px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 48px;
		--h2-size: 42px;
		--h3-size: 34px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.header-account .btn {
		padding-left: 16px;
		padding-right: 16px;
	}
	.hero-wrap {
		padding-top: 180px;
		min-height: 720px;
	}
	.hero-phone {
		top: 30px;
		left: -110px;
		width: 460px;
		height: 165px;
	}
	.hero-phone a {
		font-size: calc(var(--h1-size) * 1.1);
	}
	.hero-email {
		bottom: 30px;
	}
	.infoBlock-text span {
		display: block;
		margin-bottom: 10px;
	}
	.infoBlock-text img {
		margin-left: 0;
	}
	.options-image {
		max-width: 360px;
	}
	.options-item {
	    flex: 0 0 28%;
	    max-width: 28%;
	    margin-right: 17%;
	    margin-left: 5%;
	}
	.options-item:nth-child(2n) {
		margin-right: 5%;
		margin-left: 17%;
	}
	.options-item:nth-child(4) {
		margin-right: 0;
	}
	.options-item__wrap {
		height: calc(var(--container) * .28 / 1.023);
	}
	.advantages-item__image {
		background-size: 480px;
	}

	.footer-contacts-items {
		margin: 0 -16px -40px;
	}
	.footer-contacts-item {
		margin: 0 0 40px;
		padding: 0 16px;
	}

	.pAboutContacts-phone {
		width: 480px;
		height: 170px;
	}


	.instruction-block__content {
		padding-top: 40px;
	}


	.blog-item__image {
		flex: 0 0 calc((var(--container) - 24px * 2) / 3 / 1.506);
		max-height: calc((var(--container) - 24px * 2) / 3 / 1.506);
		clip-path: path('M0 30C0 13.4314 13.4315 0 30 0H184.532H324C340.569 0 354 13.4315 354 30V155.997C354 169.013 345.607 180.544 333.22 184.545L186.22 232.022C180.226 233.958 173.774 233.958 167.78 232.022L20.7797 184.545C8.39344 180.544 0 169.013 0 155.997V30Z');
	}
}






@media (max-width: 1199px) {
	:root {
		--container: 916px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--text-size-lg: 16px;
		--h1-size: 42px;
		--h2-size: 34px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header {
		padding: 16px 0;
	}
	.header-account .btn {
		font-size: 0 !important;
		padding: 0 !important;
		min-height: inherit !important;
		width: 44px;
		height: 44px;
	}
	.header-account .btn:before {
		margin-right: 0;
	}
	.hero-section {
		margin-top: -92px;
	}
	.hero-wrap {
        padding-top: 150px;
        min-height: 620px;
    }
	.hero-phone {
		top: 20px;
		left: -80px;
		width: 380px;
		height: 135px;
	}
	.tv-text {
		margin-bottom: 42px;
	}
	.tv-left {
		flex: 0 0 calc(44% - 12px);
		max-width: calc(44% - 12px);
	}
	.tv-right {
		flex: 0 0 calc(56% - 12px);
		max-width: calc(56% - 12px);
	}

	.infoBlock-content,
	.infoBlock-text,
	.tv-content,
	.tv-text {
		margin-bottom: 24px;
	}
	.tv-text span {
		display: block;
		margin-bottom: 10px;
	}
	.tv-text img {
		margin-left: 0;
	}

	.options-item__image {
		width: 96px;
		height: 96px;
	}
	.options-item__image img {
		max-height: 54px;
	}

	.options-image {
        max-width: 300px;
    }
    .options-items {
    	margin-bottom: -60px;
    }
    .options-item {
    	margin-bottom: 60px;
    }
    .options-info {
    	top: calc(50% - 70px);
    }
    .advantages-items {
    	display: block;
    }
    .advantages-item {
    	margin-bottom: 24px;
    }
    .advantages-item:last-child {
    	margin-bottom: 0;
    }
    .advantages-item__image {
        background-size: 343px;
    }
    .advantages-item:first-child .advantages-item__image {
    	margin-top: 60px;
    }
    .footer-contacts-item {
    	flex: 0 0 calc(100% / 3);
    	max-width: calc(100% / 3);
    }
    .footer-logo img {
    	max-height: 42px;
    }
	.pAboutContacts-phone {
		width: 400px;
		height: 142px;
	}
	.alignleft,
	.aligncenter,
	.alignright {
		max-width: 50%;
	}

	.tariffs-item__value {
		font-size: var(--h1-size);
	}
	.tariffs-item__info {
		padding: 32px 12px;
	}


	.instruction-block__content {
		padding-top: 0;
	}

	.tvInfo-item__title span {
		flex: 0 0 100px;
		max-width: 100px;
		width: 100px;
		height: 100px;
	}


	.blog-item__image {
		clip-path: path('M0 30C0 13.4315 13.4315 0 30 0H149.606H257C273.569 0 287 13.4315 287 30V122.717C287 135.725 278.617 147.251 266.241 151.258L152.741 188.008C146.734 189.953 140.266 189.953 134.259 188.008L20.7588 151.258C8.3832 147.251 0 135.725 0 122.717V30Z');
	}
	.blog-item__info {
		padding: 0 16px 16px;
	}
	.blog-item__date {
		margin-top: -10px;
		margin-bottom: 14px;
	}
}



@media (max-width: 991px) {
	:root {
		--container: 696px;

		--text-size: 14px;
		--text-size-sm: 13px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], select, textarea {
		min-height: 50px;
		font-size: var(--text-size);
	}
	h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote {
		margin-bottom: 14px;
	}
	.form-fields {
		margin: 0 -7px -14px;
	}
	.form-field {
		padding: 0 7px;
		margin-bottom: 14px;
	}
	.form-field-policy {
		margin-bottom: 18px;
	}
	.contentStyle img {
		-moz-border-radius: 16px;
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
	.alignleft,
	.aligncenter,
	.alignright {
		float: none;
		margin: 0 0 16px;
		display: block;
		max-width: 100%;
	}
	.soc-links {
		flex-direction: column;
		align-items: flex-start;
	}
	.soc-links span {
		display: block;
		margin-bottom: 8px;
		margin-right: 0;
	}
	.btn {
		-moz-border-radius: 25px;
		-webkit-border-radius: 25px;
		border-radius: 25px;
		min-width: 200px;
		min-height: 50px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.btn-sm {
		-moz-border-radius: 23px;
		-webkit-border-radius: 23px;
		border-radius: 23px;
		min-width: 160px;
		min-height: 45px;
	}
	.section {
		padding-top: 56px;
		padding-bottom: 56px;
	}
	.heading {
		margin-bottom: 24px;
	}
	.heading p:first-child {
		font-size: var(--text-size);
		margin-bottom: 8px;
	}
	.topbar-soc {
		display: none;
	}
	.topbar-buttons {
		flex: 0 0 100%;
		max-width: 100%;
		justify-content: center;
	}
	.topbar-buttons .btn {
		margin-right: 16px;
	}
	.header-wrap {
		height: 36px;
	}
	.main-menu {
		display: none;
	}
	.header-logo img {
		max-height: 36px;
	}
	.hero-section {
		margin-top: -68px;
	}
	.header-account {
		margin-left: auto;
	}
	.header-account .btn:before {
		flex: 0 0 32px;
		max-width: 32px;
		width: 32px;
		height: 32px;
	}
	.hero-wrap {
		padding-top: 107px;
		min-height: inherit;
		flex-direction: column;
	}
	.hero-left {
		flex: auto;
		max-width: 100%;
		padding-bottom: 50px;
	}
	.hero-list {
		margin-bottom: 24px;
	}
	.hero-right {
		flex: auto;
		max-width: 100%;
	}
	.hero-image-inner {
		width: calc(100% + 60px);
		margin-left: -30px;
	}
	.hero-phone {
		top: 10px;
		left: 6px;
		width: 260px;
		height: 95px;
	}
	.hero-phone span {
		font-size: var(--h6-size);
		margin-bottom: 8px;
	}
	.hero-phone a {
        font-size: var(--h2-size);
    }
    .hero-email {
    	display: none;
    }
    .about-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 24px;
    }
    .about-heading {
    	margin-bottom: 14px;
    }
    .about-content {
    	margin-bottom: 24px;
    }
    .about-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .about-advantages-items {
    	justify-content: center;
    }
    .about-advantages-item {
    	flex: 0 0 184px;
    	max-width: 184px;
    }
    .about-advantages-item__wrap {
    	height: 160px;
    }
    .about-image,
    .infoBlock-image {
		-moz-border-radius: 16px;
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
    .about-image-1 {
    	width: calc(50% - 8px);
    }
    .about-image-1 img {
    	min-height: 250px;
    }
    .about-image-2 {
    	width: calc(50% - 8px);
    	height: calc(55% - 8px);
    	top: 0;
    	left: 0;
    }
    .about-image-3 {
    	width: calc(50% - 8px);
    	height: calc(45% - 8px);
    	bottom: 0;
    	left: 0;
    }
    .infoBlock-wrap-1 {
    	flex-direction: column-reverse;
    }
    .infoBlock-right {
    	flex: auto;
    	max-width: 100%;
    }
    .infoBlock-wrap-1 .infoBlock-right {
    	margin-bottom: 32px;
    }
    .infoBlock-heading,
    .tv-heading {
    	margin-bottom: 14px;
    }
    .infoBlock-content {
    	margin-bottom: 24px;
    }
    .infoBlock-left {
    	flex: auto;
    	max-width: 100%;
    	margin-bottom: 32px;
    }
    .infoBlock-wrap-1 .infoBlock-left {
    	margin-bottom: 0px;
    }
    .tv-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 32px;
    }
    .tv-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .tv-logo img {
    	max-height: 56px;
    }
    .tv-text {
    	margin-bottom: 24px;
    }
    .tv-text span {
    	display: block;
    	margin-bottom: 16px;
    }
    .tv-text img {
    	margin-left: 0;
    }
    .tv-text a {
    	font-size: var(--h6-size);
    }

    .options-wrap {
    	padding-top: 0;
    }
    .options-info {
    	position: relative;
    	top: 0;
    	left: 0;
    	transform: none;
    	margin-bottom: 16px;
    }
    .options-image {
    	max-width: 260px;
    	margin-bottom: 0;
    }
    .options-info .options-button {
    	display: none;
    }
    .options-items {
    	margin-bottom: -64px;
    	align-items: center;
    	padding-top: 40px;
    }
    .options-item {
    	flex: auto;
    	max-width: 100%;
    	margin: 0 0 64px !important;
    }
	.options-item__wrap {
		height: 248px;
		width: 254px;
		margin: 0 auto;
		padding: 0 16px 16px;
	}
	.options-item__image {
		width: 80px;
		height: 80px;
		margin: -40px 0 14px;
	}
	.options-item__image img {
		max-height: 48px;
	}
	.options-item__title {
		margin-bottom: 8px;
	}
	.options-button {
		margin-top: 24px;
	}

	.feedback-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 56px;
	}
	.feedback-right {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.pAboutContacts-phone {
		width: 260px;
		height: 95px;
	}
	.pAboutContacts-phone span {
		font-size: var(--h6-size);
		margin-bottom: 8px;
	}
	.pAboutContacts-phone a {
        font-size: var(--h2-size);
    }

	.footer-logo img {
		max-height: 32px;
	}
	.footer-contacts-item__icon {
		margin-bottom: 16px;
	}
	.footer-contacts-item__label {
		margin-bottom: 8px;
	}
	.footer-bottom-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-menu {
		margin-bottom: 16px;
	}

	.tariffsTabs-nav li {
		margin: 0 16px 16px 0;
	}
	.tariffs-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.tariffsTabs-nav li a {
		min-height: 50px;
		min-width: 220px;
	}


	.services-item {
		flex: 0 0 50%;
		max-width: 50%;
	}


	.instruction-block__left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}
	.instruction-block__right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.instruction-block__image img {
		max-height: 480px;
	}
	.instruction-block__number {
		right: 0;
		left: auto;
		z-index: 2;
		font-size: 260px;
	}


	.tvInfo-items {
		gap: 56px;
	}
	.tvInfo-item__wrap {
		flex-direction: column !important;
		gap: 24px;
	}
	.tvInfo-item__left,
	.tvInfo-item__right {
		flex: auto;
		max-width: 100%;
	}
	.tvInfo-item__left {
		gap: 16px;
	}
	.tvInfo-item__title {
		gap: 16px;
	}
	.tvInfo-item__title span {
		flex: 0 0 80px;
		max-width: 80px;
		width: 80px;
		height: 80px;
	}
	.tvInfo-item__image {
		-moz-border-radius: 24px;
		-webkit-border-radius: 24px;
		border-radius: 24px;
	}


	.blog-items {
		justify-content: center;
	}
	.blog-item {
		flex: 0 0 359px;
		max-width: 359px;
	}
	.blog-item__wrap {
		-moz-border-radius: 24px;
		-webkit-border-radius: 24px;
		border-radius: 24px;
	}
	.blog-item__image {
        flex: 0 0 223px;
        max-height: 223px;
        clip-path: path('M0 24C0 10.7452 10.7452 0 24 0H174.106H310C323.255 0 334 10.7452 334 24V150.533C334 160.943 327.289 170.166 317.385 173.369L174.385 219.612C169.584 221.164 164.416 221.164 159.615 219.612L16.6154 173.369C6.7107 170.166 0 160.943 0 150.533V24Z');
    }


    .singleBlog-image {
    	-moz-border-radius: 24px;
		-webkit-border-radius: 24px;
		border-radius: 24px;
    }


    .blog-bottom {
    	flex-direction: column;
    	gap: 24px;
    	margin-top: 24px;
    }
    .blog-navigation,
    .blog-button {
    	flex: auto;
    	max-width: 100%;
    	margin: 0;
    }
}	



@media (max-width: 767px) {
	:root {
		--container: 516px;

		--text-size: 14px;
		--text-size-sm: 13px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-radioInline .wpcf7-list-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-contacts-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.tariffsTabs-nav li {
		flex: 0 0 100%;
		max-width: 100%;
		margin-right: 0;
	}
	.tariffsTabs-nav li a {
		width: 100%;
	}


	.instruction-block__number {
		font-size: 200px;
	}

	.blog-section {
		overflow: hidden;
	}
	.blog-swiper {
		overflow: inherit;
	}
	.blog-swiper .swiper-slide {
		width: 336px !important;
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 60px);

		--text-size: 14px;
		--text-size-sm: 13px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.topbar-buttons .btn {
		padding-left: 0;
		padding-right: 0;
		flex: 0 0 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.header-logo {
		margin-right: 24px;
	}
	.hero-phone {
        top: 7px;
        left: 0;
        width: 160px;
        height: 60px;
    }
    .hero-phone span {
    	font-size: var(--text-size);
    	margin-bottom: 4px;
    }
    .hero-phone a {
        font-size: var(--h5-size);
    }
    .advantages-item__info {
    	padding: 14px;
    }
    .advantages-item__image {
    	flex: 0 0 100px;
    	max-width: 100px;
    }
    .advantages-item:first-child .advantages-item__image {
    	background-size: 200%;
    	flex: 0 0 100px;
    	max-height: 100px;
    }
    .advantages-item:first-child .advantages-item__image span {
    	bottom: 25px;
    	height: 120px;
    }
    .reviews-item__wrap {
    	padding: 24px 40px 60px;
    }
    .reviews-item__image {
    	width: 80px;
    	height: 80px;
    	margin-bottom: 16px;
    }
    .footer-contacts-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }

    .modal-dialog {
    	margin-left: 15px;
    	margin-right: 15px;
    	max-width: 100%;
    }
    .modal-content {
    	padding: 40px 24px 32px;
    	-moz-border-radius: 16px;
    	-webkit-border-radius: 16px;
    	border-radius: 16px;
    }
    .modal-title {
    	margin-bottom: 24px;
    }

    .tariffs-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .tariffs-item__wrap {
    	padding: 0 16px 24px;
    }
    .tariffs-item__value {
    	font-size: calc(var(--h1-size) * 1.18);
    }
    .tariffs-item__info {
    	margin-bottom: 24px;
    }
    .tariffs-item__price {
    	margin-bottom: 24px;
    }


    .services-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .services-item__wrap {
    	padding: 0 16px 24px;
    	gap: 24px;
    }
    .services-item__info {
    	min-height: inherit;
    }

    .tv-images-items {
    	margin: 0 -6px -12px;
    }
    .tv-images-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    	margin: 0 0 12px;
    	padding: 0 6px;
    }
    .tv-images-item__image {
		position: relative;
		overflow: hidden;
		-moz-border-radius: 30px;
		-webkit-border-radius: 30px;
		border-radius: 30px;
		height: calc((var(--container) - 24px) / 2 / .7);
		z-index: 1;
	}
	.tv-images-item:nth-child(2) .tv-images-item__image,
	.tv-images-item:nth-child(3) .tv-images-item__image,
	.tv-images-item:nth-child(6) .tv-images-item__image {
		height: calc((var(--container) - 24px) / 2 / .7 - 40px);
	}
	.tv-images-item:nth-child(4) .tv-images-item__image {
		margin-top: -40px;
	}

	.infoBlock-content, .infoBlock-text, .tv-content, .tv-text {
		margin-bottom: 16px;
	}


	.instruction-block__image img {
		max-height: var(--container);
	}
	.instruction-block__number {
        font-size: 130px;
        opacity: .15;
    }

    .singleBlog-image {
    	min-height: inherit;
    	height: auto;
    }
    .singleBlog-date {
    	margin-bottom: 24px;
    }
}




/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}