/*!
Theme Name: ultranetgroup
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
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: ultranetgroup
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.

ultranetgroup 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/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* 

вставка css sergo
*/

/**
 * author: Kondrashevsky Sergey
*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1280px;
}

.help {
  margin: 0;
  padding: 25px 0 125px;
}

.help__container {
/*  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(215px, 0.2fr) 1fr;
      grid-template-columns: minmax(215px, 0.2fr) 1fr;
  -webkit-column-gap: 10%;
          column-gap: 10%;*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.help-action{
  width: 25%;
}
.help-info.accordion{
  width: 70%;
}

.help-action__list {
  position: relative;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.help-action__list::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -2px;
  background-color: #ad95a9;
  border-radius: 2px;
}

.help-action__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 45px;
  color: #5a2d69 !important;
  background: #ffffff;
  border: 1px solid #fcf2f7;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 2;
}

.help-action__link::after {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border-radius: 2px;
}

.help-action__link--active {
  border-width: 0;
  font-weight: 700;
  background: #fcf2f7;
  -webkit-box-shadow: 0px 4px 10px rgba(70, 1, 41, 0.25);
          box-shadow: 0px 4px 10px rgba(70, 1, 41, 0.25);
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
  z-index: 3;
}

.help-action__link--active::after {
  background-color: #5a2d69;
}

.help-action__link-icon {
  width: 32px;
  min-width: 32px;
}

.help-action__link-text {
  margin-left: 20px;
  text-align: center;
  width: 100%;
}

.help-info.accordion .accordion__container {
  display: none;
}

.help-info.accordion .accordion__container--active {
  display: block;
}

.help-info.accordion .accordion__title {
  font-size: 14px;
  font-weight: 700;
}

.help-info.accordion .accordion__icon {
  width: 16px;
  height: 16px;
  margin-left: 50px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.help-info.accordion .accordion__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-info.accordion .accordion__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.help-info.accordion .accordion__item:not(:last-child) {
  margin-bottom: 25px;
}

.help-info.accordion .accordion__item--active .accordion__icon {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.help-info.accordion .accordion__item--active .accordion__header {
  padding-left: 20px;
  padding-right: 20px;
  background: #fcf2f7;
  -webkit-box-shadow: 0px 3.15414px 7.88534px rgba(74, 0, 43, 0.2);
          box-shadow: 0px 3.15414px 7.88534px rgba(74, 0, 43, 0.2);
  z-index: 3;
}

.help-info.accordion .accordion__item--active .accordion__content {
  display: block;
  background: rgba(189, 0, 99, 0.05);
  z-index: 2;
}

.help-info.accordion .accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 5px 18px rgba(74, 0, 43, 0.12);
          box-shadow: 0px 5px 18px rgba(74, 0, 43, 0.12);
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.help-info.accordion .accordion__content {
  display: none;
  padding: 32px 35px;
  background: #ffffff;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.help-info.accordion .accordion__text {
  font-size: 14px;
}

.help-info.accordion .accordion__list.list {
  margin: 0;
  margin-top: 32px;
}

.help-info.accordion .accordion__list.list .list__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.help-info.accordion .accordion__list.list .list__item:not(:last-child) {
  margin-bottom: 32px;
}

.help-info.accordion .accordion__list.list .list__text {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
}

.help-info.accordion .accordion__list.list .list__text:before {
  content: attr(data-index) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: 700;
}

.help-info.accordion .accordion__list.list .list__img {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 20px;
}

.help-info.accordion .accordion__list.list .list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 800px) {
  .help-action{
    width: 100%;
  }
  .help-info.accordion{
    width: 100%;
  }
  .help-action__list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
    margin-bottom: 20px;
  }
  .help-action__item{
    width: 48%;
  }
  .help-action__list::before {
    background-color: transparent;
  }


/*  .help__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    row-gap: 60px;
  }
  .help-action__list {
    display: -ms-grid;
    display: grid;
    !* -ms-grid-columns: (1fr)[2]; *!
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    -webkit-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }
  .help-action__list::before {
    content: none;
  }*/
}

@media screen and (max-width: 548px) {
  .help-action__link {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 460px) {
  .help-action__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 15px;
  }
  .help-action__link-text {
    margin-left: 0;
    margin-top: 10px;
  }
}

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

  .help-action__item{
    width: 100%;
  }

  .help-action__list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .help-action__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .help-action__link-text {
    margin-left: 15px;
    margin-top: 0;
  }
  .help-info.accordion .accordion__item--active .accordion__header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .help-info.accordion .accordion__icon {
    width: 14px;
    height: 14px;
  }
  .help-info.accordion .accordion__header {
    padding: 20px 25px;
  }
  .help-info.accordion .accordion__content {
    padding: 20px 15px;
  }
}











/* Document
	 ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i");
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 130%;
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 100%;
}



dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #481440;
  /*cursor: url('images/mouse.svg'), auto;*/
}

a:hover,
a:focus,
a:active,
a:visited {
  color: #bd0063;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-250%);
  transition: transform 0.4s;
  z-index: 99999;
}

.main-navigation ul ul ul {
  /*left: -999em;*/
  /*
  transform: translateX(-120%);
  transition: transform 0.6s;
  */
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

/*.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}*/

/*.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}*/

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation .showcity ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-250%);
  transition: transform 0.4s;
  z-index: 99999;
}
.main-navigation .showcity ul.sub-menu{
  display: flex;
  /*left: 0;*/
  width: 100%;
  position: fixed;
  background-color: #653B6C;
  top: 105px;
  padding: 50px 80px 30px 80px;
}
.main-navigation .showcity ul.sub-menu ul.sub-menu{
  top: 0;
  min-height: 100%;
  /*width: 100%;*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main-navigation .showcity ul.sub-menu ul.sub-menu li{
  width: 16%;
}
.main-navigation .showcity > ul.sub-menu ul.sub-menu :nth-last-child(1) {
  width: 100%;
}
.main-navigation .showcity ul.sub-menu a{
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  overflow-wrap: break-word;
  color: #FFFFFF;
  opacity: 0.5;
  padding: 10px 35px;
  width: auto;
}
.main-navigation .showcity ul.sub-menu .current-menu-item a,
.main-navigation .showcity ul.sub-menu .current-menu-parent > a,
.main-navigation .showcity > ul.sub-menu a:hover{
  background-color: #7F5C85;
  border-radius: 5px;
  opacity: 1;
  text-decoration: none;
}
.main-navigation .showcity > ul.sub-menu > li{
  width: 30%;
  padding-top: 30px;
}
.main-navigation .showcity > ul.sub-menu :nth-last-child(1) {
  width: 100%;
}
.main-navigation .showcity >ul.sub-menu .btn_close_geo {
  width: 55px !important;
  margin-top: 40px;
}
.btn_close_geo:hover{
  background-color: #E10283;
}


/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  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;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Site
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.wrapper {
  max-width: 1262px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.title {
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  text-transform: uppercase;
  color: #3e3047;
}
a.btn,
a.btn:visited,
input.btn {
  background: #bd0063;
  border-radius: 4px;
  padding: 16px 57px;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
}
.btn:hover {
  color: #ffffff;
}
section {
  margin: 124px 0;
  width: 100%;
  background-position: center center;
  background-size: cover;
}
/*
.bread_crumbs{
  font-size: 14px;
  line-height: 16px;
  color: #3E3047;
  margin-bottom: 50px;
}
.bread_crumbs a{
  color: #3E3047;
}
*/


/* HEADER */
.home header {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 1;
}
header .wrapper {
  display: flex;
  height: 105px;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #811e71;
}
header a {
  color: #481440;
  text-decoration: none;
}
header a:hover {
  color: #ea3b91;
}
header .block-1 {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;
  min-width: 270px;
}
header .block-1 .block-v-2 {
  padding-left: 10px;
}
header .block-2 {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 100%;
  justify-content: center;
}
header .block-2 .block-v-1 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 50px;
  align-items: center;
  border-bottom: 1px #a794a6 solid;
}
header .block-2 .block-v-2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 55px;
  align-items: center;
}
.header-links {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}
.languages {
    display: flex;
    width: 20%;
    align-items: center;
    justify-content: flex-end;
    max-width: 60px;
    margin: 0;
    float: right;
}
a.link-img {
  display: flex;
  font-weight: 500;
  font-size: 13px;
  color: #481440;
  align-items: center;
  text-decoration: none;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  height: 22px;
  padding-left: 32px;
}
a.link-img:hover {
  color: #ea3b91;
}
.lang,
a.lang:visited {
  padding: 0 5px;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  color: #a794a6;
}
.lang.active {
  color: #481440;
}
.language {
  color: #a794a6;
}
.main-navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.main-navigation a {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #481440;
}
.main-navigation a:hover {
  color: #ea3b91;
  text-decoration: underline;
}
.main-navigation ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.menu-glavnoe-menyu-container {
  width: 100%;
}
.call {
  margin-left: 5%;
}

a#hamburger-button-link {
  color: #fff;
  cursor: pointer;
  align-items: center;
  display: none;
}
#hamburger-button {
  width: 28px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  /*cursor: pointer;*/
  display: block;
  margin-right: 24px;
}
#hamburger-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ea3b91;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}


#hamburger-button span:nth-child(1) {
  top: 0;
}
#hamburger-button span:nth-child(2) {
  top: 8px;
}
#hamburger-button span:nth-child(3) {
  top: 16px;
  width: 19px;
}
#hamburger-button.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
#hamburger-button.open span:nth-child(2) {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#hamburger-button.open span:nth-child(3) {
  opacity: 0;
  left: -60px;
}

nav.mobile-menu {
  color: #fff;
  width: 55%;
  margin-top: 0;
  position: fixed;
  height: calc(100vh - 100px);
  z-index: 99;
  transform: translateX(-120%);
  transition: transform 0.6s;
  padding-top: 0;
  /*overflow: hidden;*/
  top: 100px;
  /*transform: translateX(0);*/
  background-color: #fff;
  overflow-y: scroll;
}
nav.mobile-menu.show {
  transform: translateX(0%);
  width: 100%;
  z-index: 999999;
}
.mobile-menu ul ul ul {
   left: -999em;
   top: 0;
   margin-left: 10px;
}
.mobile-menu ul ul{
  margin-left: 10px;
}
.mobile-menu ul.sub-menu {
  display: none;
}
.mobile-menu a {
  color: #bd0063;
  padding: 5px 0;
  display: flex;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .languages {
  color: #a794a6;
  margin-top: 30px;
  width: 100%;
  justify-content: flex-start;
  max-width: 100%;
}
.mobile-menu .lang {
  padding-left: 7px;
}

/*.mobile-menu ul ul li:hover > ul,
.mobile-menu ul ul li.focus > ul {
  display: block;
  left: auto;
}*/
.mobile-menu ul li.showcity:hover > ul,
.mobile-menu ul li.showcity.focus > ul {
  display: block;
  left: auto;
}

.menu-container {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  height: 100%;
  padding: 37px 0 50px 30px;
  /*overflow-y: auto;*/
  /*overflow-y: scroll;*/
  /*-ms-overflow-style: none;*/ /* IE and Edge */
}
/*.menu-container-right{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	!*height: 100%;*!
	justify-content: space-between;
	padding-bottom: 40px;
	width: 65%;
	min-width: 400px;
	max-width: 600px;
}*/
.menu-glavnoe-menyu-container {
  width: 100%;
  /*max-height: 440px;*/
  /*overflow: auto;*/
  /*overflow-y: auto;*/
  /*scrollbar-width: none;*/
  -ms-overflow-style: none; /* IE and Edge */
  padding-left: 0;
  margin-left: 30px;
}
.menu-glavnoe-menyu-container::-webkit-scrollbar {
  display: none;
}
.mobile-menu .header-links {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 0 0;
}
.mobile-menu a.link-img {
  padding-left: 30px;
}

@media screen and (max-width: 700px) {
  a#hamburger-button-link {
    display: flex;
    z-index: 99999;
    margin: 0 0 0 -18px;
  }
  header .block-2 .block-v-1,
  header .block-2 .block-v-2 {
    display: none;
  }
  header .block-2 {
    flex-direction: row;
    z-index: 999;
    justify-content: flex-end;
  }
}

/* top-cover */
.top-cover {
  margin-top: -105px;
  height: 685px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
}
.top-cover .content {
  margin-top: 105px;
}

.top-cover .title {
  font-size: 44px;
  color: #ffffff;
  text-shadow: 3px 3px 4px rgba(64, 32, 105, 0.54);
}
.top-cover .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.top-cover .btn {
  margin-top: 27px;
}

/* col-2 */
.col-2 .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block-1,
.block-2 {
  width: 47%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.col-2 .block-1 {
  max-height: 438px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.col-2 .title {
  margin-bottom: 54px;
}
.col-2 .text {
  font-size: 18px;
}
.open-hide {
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}
.logo-cover {
  display: flex;
  background-color: #fff;
  padding: 2% 4%;
  margin-right: 19px;
  margin-bottom: 34px;
  box-shadow: 3px 3px 10px rgba(20, 19, 81, 0.15);
}
@media screen and (max-width: 800px) {
  .block-1,
  .block-2 {
    width: 100%;
  }
  .col-2 .block-1 {
    min-height: 400px;
  }
  .col-2 .title {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}

/* how-to */
.how-to .block-2 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.how-to .wrapper {
  flex-wrap: wrap;
}
.how-to .block-1,
.how-to .block-2 {
  width: 50%;
}
.how-to .text {
  font-size: 20px;
  line-height: 28px;
  color: #3e3047;
}
.grid {
  margin-top: 80px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item {
  width: 49%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #3e3047;
  margin-bottom: 30px;
}
.icon-container {
  width: 30%;
  min-width: 120px;
}
.icon-container .icon {
  width: 112px;
  height: 112px;
  border-radius: 60px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 0px 27px rgba(96, 18, 103, 0.22);
}
.icon-container .icon:hover {
  border: 1px solid #a64678;
}
.item .content {
  width: 70%;
}
.item .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.item .text {
  font-size: 17px;
  line-height: 130%;
}

/* how-to2 */
.how-to2 .block-2 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.how-to2 .wrapper {
  flex-wrap: wrap;
}
.how-to2 .block-1 {width: 100%;},
.how-to2 .block-2 {
  width: 0%;
}
.how-to2 .text {
  font-size: 20px;
  line-height: 28px;
  color: #3e3047;
}
.grid {
  margin-top: 80px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item {
  width: 49%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #3e3047;
  margin-bottom: 30px;
}
.icon-container {
  width: 30%;
  min-width: 120px;
}
.icon-container .icon {
  width: 112px;
  height: 112px;
  border-radius: 60px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 0px 27px rgba(96, 18, 103, 0.22);
}
.icon-container .icon:hover {
  border: 1px solid #a64678;
}
.item .content {
  width: 70%;
}
.item .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.item .text {
  font-size: 17px;
  line-height: 130%;
}


/* footer */
footer .wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.footer-logo,
.footer-menu,
.footer-phones,
.footer-social {
  display: flex;
  width: 13%;
  flex-direction: column;
}
.footer-logo {
  width: 23%;
}
.footer-phones {
  width: 16%;
}
.footer-social {
  width: 17%;
}
footer .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  color: #3e3047;
  margin-bottom: 15px;
  text-transform: none;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  padding-top: 7px;
}
footer a,
footer a:visited {
  font-size: 15px;
  color: #3e3047;
  word-wrap: break-word;
}
footer a:hover {
  color: #ea3b91;
  text-decoration: underline;
}
.copyright {
  font-size: 14px;
  line-height: 16px;
  color: #3e3047;
}
footer .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #453053;
}
@media screen and (max-width: 1170px) {
  .footer-logo,
  .footer-menu,
  .footer-phones,
  .footer-social {
    width: 29%;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 686px) {
  .footer-logo,
  .footer-menu,
  .footer-phones,
  .footer-social {
    width: 48%;
  }
}
@media screen and (max-width: 420px) {
  .footer-logo,
  .footer-menu,
  .footer-phones,
  .footer-social {
    width: 100%;
  }
  footer .title,
  footer li,
  footer .social-links,
  footer .text,
  footer .footer-logo {
    text-align: center;
  }
  .wrapper.copyright {
    justify-content: center;
  }
}

/* list-icon */
.list-icon .wrapper {
  flex-direction: column;
}
.list-icon .title {
  width: 100%;
}
.list-icon .item {
  padding: 18px;
  margin-bottom: 0;
}
.list-icon .item:hover {
  box-shadow: 0px 0px 27px rgba(96, 18, 103, 0.22);
}
.list-icon .item .text {
  font-size: 15px;
  line-height: 130%;
}
.list-icon .item .title {
  font-weight: 500;
  font-size: 22px;
  line-height: 132%;
  color: #3e3047;
  text-transform: none;
}
.list-icon .icon-container .icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding-top: 20px;
}
@media screen and (max-width: 800px) {
  .item {
    width: 100%;
  }
  .how-to .icon-container {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .how-to .icon-container .icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
  .how-to .block-1,
  .how-to .block-2 {
    width: 100%;
  }
  .title {
    font-size: 30px;
    line-height: 110%;
  }
  section {
    margin: 60px 0;
  }
  .list-icon .grid {
    margin-top: 0;
  }
}

/* usluga */
.usluga {
  padding: 90px 0;
}
.usluga .wrapper {
  flex-direction: column;
}
.usluga a.btn-transparent {
  max-width: 300px;
  padding: 19px;
  /*background: #FFFFFF;*/
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  background-color: transparent;

  /*	opacity: 0.17;
	filter: blur(4px);*/
  border: 1.5px solid #ffffff;
  box-sizing: border-box;
  /*filter: drop-shadow(4px 4px 6px #000000);*/
  /*box-shadow: 4px 4px 6px #000000;*/
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  display: block;
}
.usluga .title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(14, 18, 62, 0.62);
}
.usluga .text {
  color: #fff;
  font-size: 18px;
  line-height: 135%;
}

/* usluga-list */

.usluga-list .wrapper {
  flex-wrap: wrap;
}
.usluga-list a {
  display: block;
  width: 33.33%;
  border: 1px solid transparent;
  border-right: 1px solid #bfbfbf;
}
.usluga-list .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  text-transform: none;
  margin-bottom: 30px;
}
.usluga-list .content {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 46px 0 46px 10%;
}
.usluga-list .block-1,
.usluga-list .block-2 {
  width: 40%;
}
.icon-plus {
  width: 30px;
  height: 30px;
  background-image: url("images/ic_plus.svg");
  background-size: cover;
}
.usluga-list .block-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.usluga-list a:hover .icon-plus {
  background-image: url("images/ic_plus_hover.svg");
}
.usluga-list a:hover {
  background: rgba(0, 0, 0, 0.77);
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.22);
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 2px;
}
@media screen and (max-width: 500px) {
  .usluga-list .title {
    font-size: 14px;
  }
}

/* zayavka */
.zayavka .wrapper {
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 10px;
  color: #fff;
}
.zayavka .title {
  color: #ffffff;
  margin-bottom: 30px;
}
.zayavka .text {
  font-size: 18px;
  line-height: 135%;
  color: #ffffff;
}
.zayavka .content {
  display: flex;
  justify-content: space-between;
}
.zayavka .block-1 {
  width: 35%;
}
.zayavka .block-2 {
  width: 50%;
}
input {
  height: 44px;
  filter: drop-shadow(4px 4px 9px rgba(38, 18, 80, 0.34));
}
.form-control {
  width: 100%;
  padding: 14px !important;
  margin-bottom: 16px;
}
.form-control.btn {
  border: none;
  margin-bottom: 0;
}
.text-after {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  margin-bottom: 10px;
}
.wpcf7 {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .zayavka .content {
    flex-direction: column-reverse;
  }
  .zayavka .block-1,
  .zayavka .block-2 {
    width: 100%;
  }
}

/* televizor */
.televizor {
  height: 907px;
  background-size: 1440px 907px;
  background-repeat: no-repeat;
}
.televizor .wrapper {
  flex-direction: column;
  max-width: 1100px;
  align-items: center;
}
.televizor .title {
  margin-top: 70px;
  line-height: 100%;
  text-align: center;
  color: #3e3047;
}
.televizor .text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #6b5778;
}
.televizor a.tv {
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #3e3047;
  width: 24%;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}
a.tv:hover {
  border-bottom: 2px solid #bd0063;
}
.televizor .content {
  margin-top: 90px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 95%;
}
.televizor a.tv-button {
  margin-top: 380px;
  max-width: 300px;
  border-radius: 5px;
  color: #ffffff;
  text-shadow: 4px 4px 6px #000000;
  border: 2px #fff solid;
  background: #3c434b;
}
@media screen and (max-width: 872px) {
  .televizor .content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .televizor .content {
    margin-top: 50px;
    width: 100%;
    flex-direction: column;
  }
  .televizor a.tv {
    font-size: 16px;
    width: 100%;
    border-bottom: none;
  }
  .televizor a.tv:hover {
    text-decoration: underline;
  }
}

.menu-header-container,.menu-header-ru-container{
  width: 100%;
}
.lang-item a {
    color: #931d81;
    padding: 0 5px;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    opacity: .5;
        display: inline;
    text-transform: uppercase;
}
.current-lang a {
    opacity: 1!important;
}
.languages li:not(:first-child):before {
    content: '|';
    position: relative;
    bottom: 2px;
}


/* 
say===================================================================
*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.text_cent{text-align: center;}

li {
  list-style: none;
}

.bread_crumbs{margin-top: 24px;}
.bread_crumbs__ul {
  display: flex;
  margin: 0;
  align-items: center;
}

.bread_crumbs__ul li:not(:first-child) {
  margin-left: 15px;
}

.bread_crumbs__ul li:not(:first-child):before {
  content: "/";
  position: relative;
  right: 6px;
}

.bread_crumbs__ul li{
	font-size: 14px;
	line-height: 16px;
	text-transform: capitalize;
	color: #3E3047;
}

.bread_crumbs__ul li a{
	color: #3E3047;
}

.video__list{
	font-weight: normal;
	font-size: 22px;
	line-height: 135%;
	text-align: center;
	width: 25%;
	margin-top: 60px;
}
.video__list img{ margin: 0 auto;}
.wpcf7-form-control-wrap{
  width: 100%;
}

.grid_video__list_say{display: flex; flex-wrap: wrap;justify-content: center;}

.grid_video__list_say p{margin-top: 20px; background:  linear-gradient(180deg, #9E4473 0%, #4A3741 100%);
   -webkit-background-clip: text; 
   -webkit-text-fill-color: transparent;
   }
.tarif__bg4 .wrapper{flex-direction: column;}
.stock-content.cards .cards__wrapper_tarif{
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  row-gap: 70px;

}
/*
*Modal ----------------------------------> START
*/
.pum-theme-452 .pum-content + .pum-close, .pum-theme-enterprise-blue .pum-content + .pum-close{display: none;}


.modal_tarif  .title_tarif_popup{
font-weight: bold;
font-size: 28px;
line-height: 33px;
text-transform: uppercase;
color: #3E3047;
text-align: center;
padding-bottom: 53px;
}

.left__form_tarif, .right__form_tarif{
  width: 50%;
}
@media screen and (max-width: 600px) {
  .left__form_tarif, .right__form_tarif{
    width: 100%;
  }
}


.modal_tarif input{
  background: #FFFFFF;
  border: 1px solid #E1E3EA;
  box-sizing: border-box;
  border-radius: 4px;
  font-style: normal;
  font-weight: normal;
  /*width: 400px;*/
  width: 95%;
  font-size: 14px;
  line-height: 16px;
  color: #999999;
  padding-left: 16px;
  margin-bottom: 16px;
}
.modal_tarif .house_tar_inp2 {
/*  width: 25px !important;
  float: right;*/
}
.modal_tarif .house_tar_inp_1 {
   width: 165px !important;
}

.modal_tarif .left__form_tarif__adress{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal_tarif .house_tar_inp_1 {
  width: 265px;
}
.modal_tarif  .house_tar_inp2{
  /*
  width: 125px;
    float: right;
  */
  width: 90%;
  float: left;
}
.pum-container, .pum-theme-enterprise-blue .pum-container {
  padding: 8px !important;
}

.modal_tarif .textarea-408__say textarea{
width: 100%;
height: 104px;
background: #FFFFFF;
border: 1px solid #E1E3EA;
box-sizing: border-box;
border-radius: 4px;
 font-size: 14px;
  line-height: 16px;
  color: #999999;
  padding-left: 16px;
  padding-top: 10px;
  resize: none;
}

.modal_tarif .text-646_say{
  width: 70%;
}

.modal_tarif .form_tarif_1scr{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.modal_tarif .send_form_tarif{
  width:40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
  height: 46.05px;
  filter: drop-shadow(3px 5px 8px rgba(38, 18, 80, 0.31));
  background: #D2016E;
  font-weight: bold;
font-size: 18px;
line-height: 21px;
color: #FFFFFF;
cursor: pointer;
transition: 0.4s;
}
.modal_tarif .send_form_tarif:hover{
  background-color: #fff;
  border-color: #d2016e;
  color: #d2016e;
  transition: 0.4s;
}


.modal-close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
}

/** Overlay */
.overlay__tarif {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  display: none;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/** JS */
.is-visible {
  opacity: 1;
  display: block;
  pointer-events: auto;
}

/*
*Modal ----------------------------------> END END END END
*/



.file-drop__container {
  margin-top: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e1e3ea;
  border-radius: 4px;
  -webkit-filter: drop-shadow(4px 2px 15px rgba(54, 14, 73, 0.07));
          filter: drop-shadow(4px 2px 15px rgba(54, 14, 73, 0.07));
  width: 100%;
  height: 45px;
}

.file-drop__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.file-drop__area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}

.file-drop__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-drop__input:focus {
  outline: none;
}

.file-drop__msg {
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.file-drop__label {
  background-color: #888888;
  border-radius: 3px;
  color: #ffffff;
  padding: 5px 7px;
}

.file-drop__label:not(:last-child) {
  margin-right: 5px;
}

.file-drop__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #d2016e;
  border: 2px solid #d2016e;
  border-radius: 4px;
  -webkit-filter: drop-shadow(3px 5px 8px rgba(38, 18, 80, 0.31));
          filter: drop-shadow(3px 5px 8px rgba(38, 18, 80, 0.31));
  color: #fff;
  font-size: 16px;
  padding: 9px 40px;
  height: 100%;
  cursor: pointer;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.file-drop__btn:focus {
  border-color: #d2016e;
}

.file-drop__btn:hover {
  background-color: #fff;
  border-color: #d2016e;
  color: #d2016e;
}


.content__active_cont{
display: flex!important;
}
.tactive__contact{
  border: 1px solid #5A2D69!important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 10px;
    font-weight: normal;
    margin: 10px 0;
    position: absolute;
    display: block;
    width: 100%;
    top: 31px;
    z-index: 9999;
}
.circ_hqde_phone{
  background: #BD0063;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.circ_hqde_phone:hover svg{
  transform: scale(1.1) rotate(378deg);
  transition: .2s;
}

.tarif_plans__img {
	transition: 0.4s;
}

.tarif_plans__wrapper {
/*	display: grid;
	grid-template-columns: repeat(2, 100%);*/
    display: flex;
  min-width: 540px;
  width: 100%;

	overflow: hidden;
	position: relative;
  margin-left: 0;
  height: 315px;
}

.tarif_plans.tarif_plans--active .tarif_plans__img {
	filter: grayscale(100)
}

.tarif_plans.tarif_plans--active .tarif_plans__content {
	/*transform: translateX(-100%);*/
    transform: translateX(-105%);
}

.tarif_plans.tarif_plans--active .tarif_plans__content--first {
	opacity: 0;
	pointer-events: none;
}

.tarif_plans.tarif_plans--active .tarif_plans__content--last {
	opacity: 1;
	transition-duration: 0.9s;
	pointer-events: auto;
}

.tarif_plans__content {
	text-shadow: none;
	line-height: normal;
	transition: 0.5s;
}

.tarif_plans__content--first {
	opacity: 1;
	pointer-events: auto;
}

.tarif_plans__content--last {
	opacity: 0;
	pointer-events: none;
	transition-duration: 0.5s;
}

.tarif_plans__content-text {
	font-size: 14px;
	font-weight: 300;
	text-shadow: none;
	line-height: normal;
	color: #3e3047;
	margin-bottom: 5px;
}
.tarif_plans__content  p{
  font-size: 14px;
	font-weight: 300;
	text-shadow: none;
	line-height: normal;
	color: #3e3047;
	margin-bottom: 5px;
}
.tarif_plans__content-plus {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.tarif_plans__content-plus__text {
	font-size: 14px;
	font-weight: 300;
	text-shadow: none;
	line-height: normal;
	color: #3e3047;
	margin: 0;
}

.tarif_plans__content-plus__text strong {
	font-weight: 500;
	color: #bd0063;
}

.tarif_plans__content-plus__icon {
	width: 18px;
	height: 18px;
	margin-left: 10px;
}

.tarif_plans__content-text--underline {
	position: relative;
}

.tarif_plans__content-text--underline::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #DD1313;
	transform: translate(-50%, -50%) rotate(10deg);
}

.tarif_plans__content-title {
	font-size: 18px;
	font-weight: 500;
	color: #3e3047;
}

.tarif_plans__content-list {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 30px;
	display: grid;
	justify-content: center;
}

.tarif_plans__content-list__item {
	display: flex;
	align-items: center;
}

.tarif_plans__content-list__item:not(:last-child) {
	margin-bottom: 5px;
}

.tarif_plans__content-list__icon {
	width: 14px;
	height: 14px;
	margin-right: 17px;
}

.tarif_plans__content-list__text {
	font-size: 14px;
	font-weight: 300;
	color: #3e3047;
}


/* геолокация ============ */

.geolocation{
  background: #653B6C;
  width: 100%;
  padding: 28px 0;
  font-style: normal;
  z-index: 999;
  position: absolute;
  top: auto;
  opacity: 1;
}

.geolocation_close{
  opacity: 0;
  top: -1199%;
}


.geo_div_input ul{
  margin: 0;
}

.geo_div_input{  
  background: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  padding-bottom: 13px;
  color: #FFFFFF;
}

.geolocation form{width: 100%;}

.geolocation .geo__input{
  background: none;
  border: 0;
  text-align: right;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  padding-right: 32px;
}
.geolocation .geo__input:focus{
  color: #FFFFFF;
  outline: none;
}


.geolocation button{
  border: 0;
  background: none;
  padding: 0;
  position: relative;
  right: 11px;
  cursor: pointer;
  top: 6px;
}

.geolocation .geo__input::placeholder {
  color: #fff;

}

.geolocation .wrapper{height: auto;}

.geo_ul_city__btn_first{
  width: 248px;
height: 40px;
left: 80px;
top: 246px;
background: #7F5C85;
border-radius: 5px;
font-weight: 500;
font-size: 18px;
line-height: 22px;
color: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
opacity: 1!important;
}
.geo_ul_city__btn_first img{
  margin-right: 20px;
}

.city{margin-top: 77px;}

.geo_ul_city{
display: flex;
margin: 0;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.geo_ul_city li{
  font-weight: normal;
font-size: 18px;
width: 21%;
line-height: 21px;
cursor: pointer;
margin-bottom: 33px;
color: #FFFFFF;
opacity: 0.5;
}
.btn_close_geo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
height: 55px;
background: #7F5C85;
border-radius: 8px;
margin: 0 auto;
cursor: pointer;
}



/* 
вставка css say----------------------------------------------------->
 */
.cont_a {
  font-weight: bold;
  font-size: 23px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #BD0063;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__adress {
  margin: 0;
}

.contact__adress .contact__adress__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__adress .contact__adress__block {
  width: 31%;
  height: 72px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 2px 5px 16px rgba(38, 18, 80, 0.13);
          box-shadow: 2px 5px 16px rgba(38, 18, 80, 0.13);
  border-radius: 6px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  color: #5A2D69;
}

.contact__adress .contact__adress__block:hover {
  border: 1px solid #5A2D69;
}

.contact__adress_info {
  margin: 10px 0 0 0;
}

.contact__adress_info .contact__adress_info__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.contact__adress_info .contact__adress_info__block {
  font-weight: normal;
  font-size: 22px;
  line-height: 132%;
  color: #3E3047;
}

.contact__adress_info .contact__adress_info__block img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 27px rgba(96, 18, 103, 0.22);
          box-shadow: 0px 0px 27px rgba(96, 18, 103, 0.22);
  margin-right: 21px;
}

.contact__adress_info .contact__adress_info__block .div_df_addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 13px;
}

.contact__adress_info .contact__adress_info__block .div_df_addr p {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  width: 201px;
  text-align: left;
  color: #000000;
  text-transform: initial;
  margin: 0;
}

.contact__maps {
  margin-top: 96px;
}

.contact__maps .wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__maps .title {
  margin-bottom: 40px;
  text-align: left;
}

.tarif__bg1 {
  height: 328px;
  margin-top: 0;
  margin-bottom: 0;
}

.tarif__bg1 .title {
  font-size: 44px;
  margin-top: 73px;
  color: #ffffff;
  text-shadow: 3px 3px 4px #000;
}

.tarif__bg1 .tarif__bg1__descr {
  font-weight: normal;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  margin-top: 34px;
}

.tarif__bg1 .tarif__bg1__btn {
  margin-top: 30px;
  width: 413.47px;
  height: 46.05px;
  background: #D2016E;
  border-radius: 7px;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
 tarif__bg1
  */
.tarif__bg2 {
  margin: 0;
}

.tarif__bg2 .wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tarif__bg2 .tarif__bg2__btn_sector__hr {
  width: 150%;
  height: 1px;
  background: #5A2D69;
  opacity: 0.5;
  left: -25%;
  bottom: -23px;
  position: absolute;
}

.tarif__bg2 .bread_crumbs__ul {
  margin-top: 24px;
  margin-bottom: 13px;
}

.tarif__bg2 .tarif__bg2__btn_sector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tarif__bg2 .tarif__bg2__btn_sector .tarif__bg2__btn_sector__active:before {
  width: 100%;
}

.tarif__bg2 .tarif__bg2__btn_sector li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  cursor: pointer;
  color: #BD0063;
  padding-bottom: 19px;
}

.tarif__bg2 .tarif__bg2__btn_sector li:before {
  content: '';
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  background: #BD0063;
}

.tarif__bg2 .tarif__bg2__btn_sector img {
  margin-right: 24px;
}

.tarif__bg2 .tarif__bg2__titl_btn {
  margin-top: 60px;
  margin-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tarif__bg2 .tarif__bg2__titl_btn button {
  max-width: 450px;
  max-height: 150px;
  cursor: pointer;
  background: none;
  border: 1.5px solid #BD0063;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  padding: 13px;
  line-height: 21px;
  color: #BD0063;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: center;
}

.tarif__bg2 .tarif__bg2__titl_btn button img {
  margin-right: 27px;
}

.tarif__bg2 .title_tarif {
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  text-transform: uppercase;
  color: #3E3047;
  /* margin-top: 61px; */
}

/* 
tarif__bg2 
*/
.tarif__bg2_tarif_plans {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;

  flex-wrap: wrap;
  margin: 0 auto 81px;
  /* tarif_plans__img */
  /* tarif_plans */
  /* tarif_plans__speed */
  /* tarif_plans__supp_sett */
}

.tarif__bg2__btn_sector__active{
  display: flex!important;
}

.tarif__bg2_tarif_plans .tarif_plans__img {
  border-radius: 10px;
  height: 153px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 36px;
}

.tarif__bg2_tarif_plans .tarif_plans {
  font-weight: 900;
  font-size: 36px;
	    margin-bottom: 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 5px 16px rgba(38, 18, 80, 0.13);
          box-shadow: 2px 5px 16px rgba(38, 18, 80, 0.13);
  border-radius: 10px;
  width: 294px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 2px 2px 5px rgba(54, 8, 5, 0.49);
  overflow: hidden;
}

.tarif__bg2_tarif_plans .tarif_plans__speed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 26px;
  margin-bottom: 23px;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  color: #3E3047;
}

.tarif__bg2_tarif_plans .tarif_plans__speed img {
  margin-right: 20px;
}

.tarif__bg2_tarif_plans .hr_tarif {
  background: rgba(90, 45, 105, 0.33);
  width: 90%;
  display: block;
  margin: 0 auto 24px;
}

.tarif__bg2_tarif_plans .tarif_plans__supp_sett {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 26px;
  margin-bottom: 23px;
}

.tarif__bg2_tarif_plans .tarif_plans__supp_sett .tarif_plans__supp_sett_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #3E3047;
}

.tarif__bg2_tarif_plans .tarif_plans__supp_sett .tarif_plans__supp_sett_div img {
  margin-right: 9px;
}

.tarif__bg2_tarif_plans .tarif_plans__price {
  font-weight: bold;
  padding: 0 26px;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: #BD0063;
  margin-bottom: 14px;
}

.tarif__bg2_tarif_plans .tarif_plans__price_descr {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #BD0063;
  padding: 0 26px;
}

.tarif__bg2_tarif_plans .tarif_plans__detalits {
  font-weight: 300;
  font-size: 16px;
  padding: 0 26px;
  line-height: 100%;
  text-align: center;
  color: #5A2D69;
  margin-bottom: 17px;
  display: block;
  margin-top: 20px;
}

.tarif__bg2_tarif_plans .tarif_plans__btn {
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 100%;
  color: #FFFFFF;
  background: #5A2D69;
  border: 1.5px solid #5A2D69;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tarif__bg2_tarif_plans .tarif_plans__btn:hover {
  background: #fff;
  color: #5a2d69;
  border: 1px solid #5A2D69;
}

/* 
tarif__bg2_tarif_plans 
*/
.tarif__bg2_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tarif__bg2_contact p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 57px;
}

.tarif__bg2_contact p svg, .tarif__bg2_contact p img {
  margin-right: 21px;
}

.tarif__bg3 {
  margin-top: 72px;
}

.tarif__bg3 .wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tarif__bg3 .title {
  margin-bottom: 85px;
}

.tarif__bg3 .p_tarif__bg3 {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #3E3047;
}

.p_tarif__bg99 {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #3E3047;
  text-decoration: underline;
}

.tarif__bg3 .tarif__bg3__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

.tarif__bg3 .tarif__bg3__ul li {
  width: 45%;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-size: 18px;
  line-height: 135%;
  color: #3E3047;
}

.tarif__bg3 .tarif__bg3__ul li img {
  margin-right: 60px;
}

.pum-container, .pum-theme-enterprise-blue .pum-container {
    border: none !important;
}

/* 
tarif__bg3
 */
/* 
tarif__bg4
 */
@media screen and (max-width: 992px) {
  .modal_tarif input,.modal_tarif .text-646_say,.modal_tarif .house_tar_inp_1,.right__form_tarif,.file-drop__container{width: 100%!important;}
  .modal_tarif .form_tarif_1scr,.modal_tarif .left__form_tarif__adress{flex-direction: column;}
  .modal_tarif{position: relative!important;}
  .modal_tarif .form_tarif_1scr{align-items: center!important;}
}
@media screen and (min-width: 992.5px) {
  .modal_tarif {
    transition: opacity 0.3s;
    /*
    position: fixed;
    right: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    */
    margin: 0 auto;
    z-index: 9999;
    padding: 30px;
    /*max-width: 1000px;*/
    /*min-width: 850px;*/
    width: 100%;
    background: #fff;
    /*border-radius: 4px;*/
    box-shadow: 0 3px 10px rgb(0 0 0 / 30%);
}
}
@media screen and (min-width: 992.5px) and (max-width: 1100px) {
  .tarif__bg2 .tarif__bg2__btn_sector__hr {
    width: 100%;
    left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .grid_video__list_say p {
    font-size: 19px;
  }
  .contact__adress_info .contact__adress_info__block {
    font-size: 19px;
  }
  .contact__adress_info .contact__adress_info__block img {
    width: 60px;
    height: 60px;
  }
  .tarif__bg2 .title_tarif {
    font-size: 28px;
    line-height: 0;
  }
  .tarif__bg2 .tarif__bg2__btn_sector, .tarif__bg2_tarif_plans {
    width: 95%;
  }
  .tarif__bg2 .tarif__bg2__btn_sector__hr {
    width: 100%;
    left: 0;
  }
  .tarif__bg3 .tarif__bg3__ul li {
    width: 48%;
  }
  .tarif__bg3 .tarif__bg3__ul li img {
    margin-right: 20px;
  }
}

/* (min-width: 768px)  and (max-width: 992px)  */
@media screen and (min-width: 480px) and (max-width: 767.5px) {

  .geo_ul_city li{width: 47%;}
  .video__list {
    width: 30%;
  }
  .contact__adress_info .contact__adress_info__block {
    width: 95%;
    text-align: center;
    margin-bottom: 15px;
  }
  .contact__adress_info .contact__adress_info__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__adress_info .contact__adress_info__block .div_df_addr {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__adress .contact__adress__block {
    width: 48%;
  }
  .tarif__bg2 .title_tarif {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tarif__bg2 .tarif__bg2__btn_sector, .tarif__bg2_tarif_plans {
    width: 95%;
  }
  .tarif__bg2 .tarif__bg2__btn_sector li {
    padding: 10px 0;
  }
  .tarif__bg2 .tarif__bg2__btn_sector img {
    margin-right: 14px;
    width: 31px;
  }
  .tarif__bg2 .tarif__bg2__titl_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            
  }
  .tarif__bg2__btn_sector__tarif{padding-top: 61px;}
  .tarif__bg2 .tarif__bg2__titl_btn button {
    margin-bottom: 15px;
  }
  .tarif__bg2_tarif_plans, .tarif__bg2_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tarif__bg2_tarif_plans .tarif_plans {
    margin-bottom: 50px;
  }
  .tarif__bg2_tarif_plans {
    margin: 0;
  }
  .tarif__bg2 .tarif__bg2__btn_sector__hr {
    display: none;
  }
  .tarif__bg2 .tarif__bg2__btn_sector {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tarif__bg3 .tarif__bg3__ul li {
    width: 98%;
  }
  .tarif__bg3 .tarif__bg3__ul li img {
    margin-right: 20px;
  }
  .tarif__bg3 .tarif__bg3__ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

  .geo_div_input{
    align-items: baseline;
    flex-direction: column;
  }
  .geo_ul_city li{width: 100%;}

  .video__list {
    width: 50% !important;
  }
  .top-cover .title, .title {
    font-size: 24px !important;
  }
  .contact__adress_info .contact__adress_info__block {
    width: 99%;
    text-align: center;
    margin-bottom: 15px;
  }
  .contact__adress_info .contact__adress_info__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__adress_info .contact__adress_info__block .div_df_addr {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__adress .contact__adress__block {
    width: 100%;
  }
  .tarif__bg1 {
    text-align: center;
  }
  .tarif__bg1 .tarif__bg1__btn {
    width: 80%;
    margin: 0 auto;
  }
  .tarif__bg2 .title_tarif {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tarif__bg2 .tarif__bg2__btn_sector, .tarif__bg2_tarif_plans {
    width: 95%;
  }
  .tarif__bg2 .tarif__bg2__btn_sector li {
    padding: 10px 0;
  }
  .tarif__bg2 .tarif__bg2__btn_sector img {
    margin-right: 14px;
    width: 31px;
  }
  .tarif__bg2 .tarif__bg2__titl_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tarif__bg2 .tarif__bg2__titl_btn button {
    margin-bottom: 15px;
  }
  .tarif__bg2_tarif_plans, .tarif__bg2_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tarif__bg2_tarif_plans .tarif_plans {
    margin-bottom: 50px;
  }
  .tarif__bg2_tarif_plans {
    margin: 0 auto;
  }
  .tarif__bg2 .tarif__bg2__btn_sector__hr {
    display: none;
  }
  .tarif__bg2 .tarif__bg2__btn_sector {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tarif__bg3 .tarif__bg3__ul li {
    font-size: 14px;
    width: 98%;
    margin-bottom: 20px;
  }
  .tarif__bg3 .tarif__bg3__ul li img {
    margin-right: 20px;
  }
  .tarif__bg3 .tarif__bg3__ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Новости */

.news .stock-content.cards .cards__wrapper {
  grid-template-columns: repeat(4, 1fr);
}

section.news{
  margin: 10px 0 124px 0;
}

.pagination{
  width: 100%;
  text-align: center;
}
.nav-links a, .nav-links .page-numbers{
  padding: 20px;
}
.news-content{
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
.news-item{
  width: 24%;
  position: relative;
  display: -ms-grid;
  display: grid;
  border-radius: 3px;
  background: #ffffff;
  -webkit-box-shadow: 1px 2px 16px rgb(54 14 73 / 7%);
  box-shadow: 1px 2px 16px rgb(54 14 73 / 7%);
  margin-bottom: 20px;
}
.news-content .cards-item__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.news-content .cards-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.stock-content.cards .cards-item__label {
  position: absolute;
  top: 25px;
  right: 0;
  font-size: 14px;
  font-weight: 700;
  color: #5a2d69;
  padding: 8px 30px;
  background: #ffffff;
  -webkit-box-shadow: 3px 3px 4px rgba(11, 13, 58, 0.25);
  box-shadow: 3px 3px 4px rgba(11, 13, 58, 0.25);
  border-radius: 2px;
}

.news-content .cards-item__content {
  display: -ms-grid;
  display: grid;
  padding: 24px 25px 20px;
}

.news-content .cards-item__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  color: #3e3047;
  margin-bottom: 24px;
}

.news-content .cards-item__text {
  color: #3e3047;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 40px;
}

.news-content .cards-item__link {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #5a2d69;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.news-content .cards-item__link:hover {
  opacity: 0.6;
}

.news-content.cards-item__btn {
  margin-top: 17px;
  border: 2px solid #5a2d69;
  padding: 16px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #5a2d69;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  width: 100%;
  transition: 0.4s;
}

.news-content .cards-item__btn:hover {
  color: #5a2d69;
  background-color: #fff;
}

.news-content .cards-item__label {
  position: absolute;
  top: 25px;
  right: 0;
  font-size: 14px;
  font-weight: 700;
  color: #5a2d69;
  padding: 8px 30px;
  background: #ffffff;
  -webkit-box-shadow: 3px 3px 4px rgba(11, 13, 58, 0.25);
  box-shadow: 3px 3px 4px rgba(11, 13, 58, 0.25);
  border-radius: 2px;
}

@media screen and (max-width: 1280px) {
  .news-item {
    width: 30%;
  }
}
@media screen and (max-width: 960px) {
  .news-item {
    width: 45%;
  }
}
@media screen and (max-width: 670px) {
  .news-item {
    width: 100%;
  }
}
section.single-news{
  margin-top: 10px;
  margin-bottom: 80px;
}
.right-img{
  float: right;
  margin: 0 0 20px 20px;
  width: 45%;
}

#masthead {
	background-color: #ffffff;
}

.tarif_plans__content-plus{
  cursor: pointer;
}

/* Canal Modal*/
.canal-modal {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
  color: #fff;
  width: 100%;
  position: fixed;
  height: calc(100vh - 200px);
  z-index: 100001;
  transform: translateX(-120%);
  transition: transform 0.3s;
  overflow: hidden;
  top: 100px;
  /*transform: translateX(0);*/
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.canal-modal.show {
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.canal-modal .title{
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #3E3047;
}
.canal-container{
  padding: 10px 48px 0 48px;
}
.canal-type{
  padding: 11px 18px;
  border: 1px solid #FFD6EA;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #BD0063;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.11);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.11);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.11);
}
.canal-list{
  padding: 15px 0 10px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.canal{
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 82px;
}
.canal-name{
  text-align: center;
  color: #000;
  font-size: 12px;
  max-width: 62px;
  line-height: 100%;
  padding: 5px 0 10px 0;
  overflow-wrap: break-word;
}
.canal-img{
  border: 1px solid #d2d2d2;
  background-color: #f9f9f9;
  background: linear-gradient(180deg, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%);
  width: 60px;
  height: 60px;
}
.canal-all{
  overflow-y: auto;
}
.close_modal_canal{
  padding: 20px;
  text-align: right;
}
.close_modal_canal img {
  float: right;
  cursor: pointer;
}
.site-overlay {
  position:absolute;
  width:100%;
  height:1000%;
  z-index:100000;
  opacity:0.7;
  background-color: #000;
  top: 0;
  left: 0;
  /*display: none;*/
  /*transform: scale(0);*/
  transform: translate(0, -100%) ;
  transition: transform 0.6s;
}
.site-overlay.show {
  display: block;
  /*transform: scale(1) ;*/
  transform: translate(0%, 0%);
}

@media screen and (max-width: 600px) {
  .canal-container {
    padding: 10px 10px 0 10px;
  }
}
