/*THEMS*/
/*Theme color 1 Default*/
:root,
[theme-color="theme-color-1"] {
  --brandColor: #3d69e1;
  --brandColorLight: #025be5;
  --brandColorDark: #0b49ac;
  --brandColorLinkHover: #1a2482;
  --brandColorTitleHover: #757bba;
  --brandBtnColor: #4f6bff;
  --brandHero: #203b74;
  --brandHeroActive: rgba(21, 30, 63, .5);
  --brandHeroIcoBg: #d8e1ee;
  --footerLinkColor: #7596ed;
  --footerLinkColorHover: #7596ed;
  --brandTextColor: #6c8fc8;
  --brandTextColorOnDarkBg: #93ecf9;
  --brandLIstColorOnDarkBg: #a4abfb;
  --mlBackgroundTextColor: #f6f5f5;
  --mlBackgroundTextColorDark: #e2e1e1;
}

/*Theme color 2*/
[theme-color="theme-color-2"] {
  --brandColor: #3de1b8;
  --brandColorLight: #3de1b8;
  --brandColorDark: #3de1b8;
  --brandColorLinkHover: #3de1b8;
  --brandColorTitleHover: #3de1b8;
  --brandBtnColor: #3de1b8;
  --brandHero: #3de1b8;
  --brandHeroActive: rgba(61, 225, 184, .5);
  --brandHeroIcoBg: #3de1b8;
  --footerLinkColor: #3de1b8;
  --footerLinkColorHover: #3de1b8;
  --brandTextColor: #3de1b8;
  --brandTextColorOnDarkBg: #fff;
  --brandLIstColorOnDarkBg: #fff;
}

/*Theme color 3*/
[theme-color="theme-color-3"] {
  --brandColor: #dfe13d;
  --brandColorLight: #dfe13d;
  --brandColorDark: #dfe13d;
  --brandColorLinkHover: #dfe13d;
  --brandColorTitleHover: #dfe13d;
  --brandBtnColor: #dfe13d;
  --brandHero: #dfe13d;
  --brandHeroActive: rgba(223, 225, 61, .5);
  --brandHeroIcoBg: #dfe13d;
  --footerLinkColor: #dfe13d;
  --footerLinkColorHover: #dfe13d;
  --brandTextColor: #dfe13d;
  --brandTextColorOnDarkBg: #fff;
  --brandLIstColorOnDarkBg: #fff;
}

/*Theme color 4*/
[theme-color="theme-color-4"] {
  --brandColor: #e16b3d;
  --brandColorLight: #e16b3d;
  --brandColorDark: #e16b3d;
  --brandColorLinkHover: #e16b3d;
  --brandColorTitleHover: #e16b3d;
  --brandBtnColor: #e16b3d;
  --brandHero: #e16b3d;
  --brandHeroActive: rgba(225, 107, 61, .5);
  --brandHeroIcoBg: #e16b3d;
  --footerLinkColor: #e16b3d;
  --footerLinkColorHover: #e16b3d;
  --brandTextColor: #e16b3d;
  --brandTextColorOnDarkBg: #fff;
  --brandLIstColorOnDarkBg: #fff;
}

@font-face {
  font-family: 'PT Sans';
  src: url("../fonts/PTSans-Regular.woff2") format("woff2"), url("../fonts/PTSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PT Sans';
  src: url("../fonts/PTSans-Bold.woff2") format("woff2"), url("../fonts/PTSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Raleway Bold';
  src: url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.mainboard {
  position: relative;
  z-index: 10;
}

.header-main {
  width: 100%;
  clear: both;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.header-main .header-row,
.header-main .search-box-desk,
.header-main .menu-mobile {
  pointer-events: auto;
}

.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.header-fixed .header-main {
  position: fixed;
}

.header-fixed .header-row {
  -webkit-box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.3);
}

.header-row {
  background: #fff;
}

.header-row .header-cabinet {
  display: none;
}

.header-logo {
  height: 71px;
}

.header-logo a {
  white-space: nowrap;
  display: inline-block;
  margin: 12px 0 0 30px;
  text-decoration: none !important;
  color: #000 !important;
}

.header-logo svg,
.footer-logo svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 42px;
  margin: 0 12px 0 0;
}

.header-logo-title {
  vertical-align: middle;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 28px;
  text-transform: uppercase;
}

.header-menu {
  display: none;
}

.header-menu-btn {
  position: absolute;
  z-index: 12;
  display: block;
  width: 78px;
  height: 81px;
  background: var(--brandColor);
  top: 10px;
  right: 12px;
}

.header-menu-box {
  position: absolute;
  width: 34px;
  height: 27px;
  top: 17px;
  left: 50%;
  margin: 0 0 0 -17px;
}

.header-menu-box span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.header-menu-box span:nth-child(1) {
  top: 0px;
}

.header-menu-box span:nth-child(2),
.header-menu-box span:nth-child(3) {
  top: 9px;
}

.header-menu-box span:nth-child(4) {
  top: 18px;
}

.menu-open .header-menu-box span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.menu-open .header-menu-box span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-open .header-menu-box span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-open .header-menu-box span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.financity-body .menu-mobile {
  display: none;
  position: absolute;
  z-index: 11;
  top: 71px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brandColor);
  padding: 10px 0;
  overflow: hidden;
  overflow-y: auto;
}

.financity-body .menu-mobile-link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
}

.financity-body .menu-mobile-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.financity-body .search-box-desk {
  display: none;
  overflow: hidden;
  height: 0;
}

.financity-body .search-box {
  margin: 10px 20px;
}

.financity-body .search-box-in {
  display: block;
  background: #fff;
  padding: 10px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.financity-body .search-box input {
  font-size: 16px;
  padding: 0px;
  height: 30px;
  width: 100%;
  border: none;
  color: #000;
  background: transparent;
  text-align: center;
}

.financity-body .search-box button {
  border: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/icons/icon-menu-search.png") 50% 50% no-repeat transparent;
  position: absolute;
  top: 0;
  right: 0;
  text-align: left;
  overflow: hidden;
  text-indent: -300px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.financity-body .lang-box {
  display: none;
  position: relative;
  top: 30px;
  z-index: 11;
}

.financity-body .lang-box a {
  display: block;
  width: 50px;
  height: 106px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.financity-body .lang-box a.active, .financity-body .lang-box a:hover {
  background: var(--brandColor);
  color: #fff;
  text-decoration: none;
}

.financity-body .menu-mobile .cabinet-box {
  display: inline-block;
}

.financity-body .menu-mobile .lang-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.financity-body .cabinet-box {
  height: 67px;
  line-height: 66px;
  padding: 0 42px 0 72px;
  background: url("../images/icons/icon-menu-cabinet.png") 20px 50% no-repeat var(--brandColor);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 33px;
}

.financity-body .cabinet-box-wrapper {
  background: #fff;
  margin: 20px 0 0 0;
  padding: 20px;
  text-align: center;
}

.financity-body .cabinet-box span {
  margin: 0 6px;
}

.financity-body .cabinet-box a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.financity-body .cabinet-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.financity-body .hero {
  background: var(--brandHero);
  position: relative;
  overflow: hidden;
}

.financity-body .hero-slide {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.financity-body .hero-slide:first-child .hero-slide-content {
  background-image: none;
}

.financity-body .hero-slide-content {
  padding: 0 38px;
  position: relative;
  z-index: 10;
  background: url("../images/hero/hero-dot.png") 0 0 repeat-x var(--brandHero);
}

.financity-body .hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

.financity-body .hero-slide-slogan {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
  white-space: nowrap;
  font-weight: bold;
  overflow: hidden;
  width: 100%;
  color: rgba(164, 202, 238, 0.1);
}

.financity-body .hero-slide-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 108px;
  font-family: 'PT Sans';
  font-size: 24px;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
}

.financity-body .hero-slide-title::after {
  content: '';
  display: block;
  width: 16px;
  height: 30px;
  background: url("../images/hero/hero-arrow.png") 0 0 no-repeat;
  position: absolute;
  top: 39px;
  right: 32px;
  -webkit-transition: -webkit-transform 300ms linear;
  transition: -webkit-transform 300ms linear;
  -o-transition: transform 300ms linear;
  transition: transform 300ms linear;
  transition: transform 300ms linear, -webkit-transform 300ms linear;
}

.financity-body .hero-slide-info {
  display: none;
  font-family: 'PT Sans';
  font-size: 14px;
  line-height: normal;
  color: #fff;
  overflow: hidden;
}

.financity-body .hero-slide-info ul, .financity-body .hero-slide-info ol {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.financity-body .hero-slide-info ul li, .financity-body .hero-slide-info ol li {
  margin: 0 0 15px 0;
  padding: 0 0 0 20px;
  position: relative;
}

.financity-body .hero-slide-info ul li::before, .financity-body .hero-slide-info ol li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--brandBtnColor);
  position: absolute;
  top: 5px;
  left: 0;
}

.financity-body .hero-slide-info p {
  margin: 0 0 20px 0;
  padding: 0;
}

.financity-body .hero-slide.start .hero-slide-content {
  background-color: var(--brandHeroActive);
}

.financity-body .hero-slide.start .hero-slide-title::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.financity-body .hero-slide.start .hero-slide-img,
.financity-body .hero-slide.start .hero-slide-slogan {
  z-index: 2;
  opacity: 1;
}

.financity-body .hero-slide.active .hero-slide-content {
  background-color: var(--brandHeroActive);
}

.financity-body .hero-slide.active .hero-slide-info {
  display: block;
}

.financity-body .hero-slide.active .hero-slide-img,
.financity-body .hero-slide.active .hero-slide-slogan {
  opacity: 1;
}

.financity-body .hero-slide-btns {
  margin: 50px 0 44px 0;
}

.financity-body .hero-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'PT Sans';
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  height: 67px;
  max-width: 320px;
  margin: 0 auto 16px auto;
  border-radius: 35px;
  border: 2px solid #fff;
}

.financity-body .hero-btn:hover, .financity-body .hero-btn:active, .financity-body .hero-btn:focus {
  color: #fff;
}

.financity-body .hero-btn-icon {
  margin: 0 15px 0 0;
}

.financity-body .hero-btn.fill {
  background: var(--brandBtnColor);
  border-color: var(--brandBtnColor);
}

.financity-body .hero .hero-slide-1 .hero-slide-slogan {
  color: rgba(164, 202, 238, 0.1);
}

.financity-body .hero .hero-slide-2 .hero-slide-slogan {
  color: rgba(6, 6, 43, 0.5);
}

.financity-body .hero .hero-slide-3 .hero-slide-slogan {
  color: rgba(0, 1, 2, 0.7);
}

.financity-body .hero .hero-slide-4 .hero-slide-slogan {
  color: rgba(6, 6, 43, 0.5);
}

.financity-body .descr-hero {
  font-family: 'PT Sans';
  display: none;
}

.financity-body .descr-hero-title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.financity-body .descr-hero-text {
  font-size: 18px;
  color: #000;
}

.financity-body .features {
  font-family: 'PT Sans', sans-serif;
  line-height: normal;
}

.financity-body .features-head {
  color: #fff;
  background: var(--brandColor);
  text-transform: uppercase;
  padding: 25px 50px;
}

.financity-body .features-head-title {
  font-family: 'PT Sans', sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
  padding: 0;
}

.financity-body .features-head-text {
  font-size: 18px;
  display: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.financity-body .features-list {
  padding: 20px 0;
}

.financity-body .features-item {
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.financity-body .features-item-icon-holder {
  width: 74px;
  height: 74px;
  position: relative;
}

.financity-body .features-item-icon-holder::before {
  content: '';
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brandHeroIcoBg);
  position: absolute;
  z-index: 0;
  top: 12px;
  left: 14px;
}

.financity-body .features-item-icon-holder img {
  position: relative;
  z-index: 1;
}

.financity-body .features-item-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0 20px 0 0;
  min-width: 94px;
}

.financity-body .features-item-title {
  font-size: 21px;
  font-weight: bold;
  color: #000;
}

.financity-body .features-item-text {
  font-size: 18px;
  color: #8d8d8d;
  padding: 30px 0 0 0;
}

.price-boxes {
  margin-right: -2px;
}

.price-box .gdlr-core-portfolio-title {
  font-size: 21px !important;
  font-weight: 600 !important;
  letter-spacing: 0px !important;
  text-transform: none !important;
}

.price-box .gdlr-core-portfolio-thumbnail {
  position: relative;
  overflow: visible;
}

.price-box .gdlr-core-portfolio-thumbnail::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: url("../images/hero/hero-dot-vert.png") 100% 0 repeat-y;
}

.price-box .gdlr-core-portfolio-thumbnail-image-wrap {
  height: 174px;
  overflow: hidden;
}

.price-box .gdlr-core-portfolio-thumbnail-image-wrap::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .49;
  background: #061232;
}

.price-box-price {
  background: var(--brandColor);
  padding: 18px 24px;
  position: absolute;
  z-index: 2;
  bottom: -25px;
  left: 35px;
  font-family: 'Raleway Regular';
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}

.price-box-price b {
  font-family: 'Raleway Bold';
  font-size: 36px;
}

.price-box-price i {
  font-style: normal;
  font-size: 22px;
}

.gdlr-core-gallery-item .gdlr-core-gallery-list img {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
  /* IE 6-9 */
}

.gdlr-core-gallery-item .gdlr-core-gallery-list img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}

#toTop {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#toTop svg path.totop-bg {
  fill: var(--brandColor);
}

.logo-svg .logo-svg-path-1 {
  fill: #1f3c75;
}

.logo-svg .logo-svg-path-2 {
  fill: var(--brandColor);
}

.footer-logo .logo-svg .logo-svg-path-1 {
  fill: #fff;
}

.gdlr-core-title-item .gdlr-core-title-item-title,
.gdlr-core-hover-box-title.gdlr-core-skin-title,
.gdlr-core-title-item-title.gdlr-core-skin-title,
.gdlr-core-page-builder-body [data-skin="Purple Service"] .gdlr-core-skin-title {
  color: var(--brandColor);
}

.gdlr-core-page-builder-body [data-skin="Home Cases"] .gdlr-core-skin-title a,
.gdlr-core-page-builder-body [data-skin="Column Service HP 1"] .gdlr-core-skin-title a,
.financity-body a {
  color: var(--brandColor);
}

.financity-body a:hover {
  color: var(--brandColorLinkHover);
}

.gdlr-core-body .gdlr-core-load-more, .gdlr-core-body .gdlr-core-button, .financity-body .financity-button, .financity-body input[type="button"], .financity-body input[type="submit"] {
  background-color: var(--brandColor);
}

.financity-footer-wrapper a {
  color: var(--footerLinkColor);
}

.gdlr-core-flexslider .flex-control-nav li a.flex-active {
  background-color: var(--brandColor);
}

.gdlr-core-flexslider .flex-control-nav li a.flex-active {
  border-color: var(--brandColor);
}

.financity-footer-wrapper a:hover,
.financity-footer-wrapper .current-menu-item > a,
.financity-footer-wrapper .widget_nav_menu ul li > a:hover:before {
  color: var(--footerLinkColorHover);
}

.gdlr-core-page-builder-body [data-skin="Column Service HP 1"] .gdlr-core-skin-title a:hover {
  color: var(--brandColorTitleHover);
}

.gdlr-core-page-builder-body [data-skin="Purple Personnel"] h3,
.gdlr-core-page-builder-body [data-skin="Purple Personnel"] .gdlr-core-skin-title {
  color: var(--brandColor);
}

.gdlr-core-blockquote-item .gdlr-core-blockquote-item-author,
.gdlr-core-blockquote-item .gdlr-core-blockquote-item-author-position {
  color: var(--brandColorLight);
}

.ml-background-text {
  font-family: 'Raleway Bold';
  font-size: 250px;
  color: var(--mlBackgroundTextColor);
  text-transform: uppercase;
  text-align: center;
}

.ml-background-text.dark {
  color: var(--mlBackgroundTextColorDark);
}

.page.subpage {
  padding-top: 71px;
}

/* 1 mobile */
@media (max-width: 1024px) {
  body.media-label::after {
    content: '1 mobile < 1023';
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: red;
    color: #000;
    line-height: 40px;
    font-size: 22px;
    padding: 0 40px;
    z-index: 111;
    opacity: .5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
  }
}

/* 2 iPad */
@media (min-width: 1024px) {
  body.media-label::after {
    content: '2 iPad 1024 +';
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: orange;
    color: #000;
    line-height: 40px;
    font-size: 22px;
    padding: 0 40px;
    z-index: 111;
    opacity: .5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
  }
  .page.subpage {
    padding-top: 122px;
  }
  .financity-body .header-main .header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 30px;
    height: 122px;
  }
  .financity-body .header-main .header-row .cabinet-box {
    display: block;
  }
  .financity-body .header-main .header-row .search-btn {
    display: block;
  }
  .financity-body .header-main .header-row .lang-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .financity-body .header-main .header-cabinet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .financity-body .header-main .header-cabinet .search-btn {
    margin-right: 20px;
  }
  .financity-body .header-menu-btn {
    position: relative;
    right: auto;
    top: 30px;
    width: 106px;
    height: 106px;
  }
  .financity-body .search-btn {
    margin: 0;
    padding: 0;
    display: block;
    width: 50px;
    height: 50px;
    background: url("../images/icons/icon-menu-search.png") 50% 50% no-repeat transparent;
    text-align: left;
    text-indent: -600px;
    overflow: hidden;
  }
  .financity-body .menu-mobile {
    top: 122px;
  }
  .financity-body .menu-mobile .cabinet-box-wrapper,
  .financity-body .menu-mobile .search-box,
  .financity-body .menu-mobile .lang-box {
    display: none;
  }
  .financity-body .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  .financity-body .hero.no-active .hero-slide {
    max-width: 25vw;
  }
  .financity-body .hero-slide {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    max-width: 19.4vw;
    overflow: hidden;
  }
  .financity-body .hero-slide.start {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .financity-body .hero-slide.start .hero-slide-title {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    left: auto;
    bottom: auto;
  }
  .financity-body .hero-slide.active {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 40vw;
  }
  .financity-body .hero-slide.active .hero-slide-title {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    left: auto;
    bottom: auto;
  }
  .financity-body .hero-slide-title {
    font-size: 36px;
    white-space: nowrap;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    letter-spacing: -1px;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    position: relative;
    bottom: -76px;
    left: -2px;
  }
  .financity-body .hero-slide-title::after {
    display: none;
  }
  .financity-body .hero-slide-content {
    height: 100%;
    background: url("../images/hero/hero-dot-vert.png") 0 0 repeat-y;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .financity-body .hero-slide-info {
    width: calc(40vw - 48px);
  }
  .financity-body .hero-slide-slogan {
    display: block;
    font-size: 290px;
    line-height: 290px;
    bottom: -39px;
    letter-spacing: -12px;
  }
  .financity-body .hero-btn {
    margin-left: 0;
  }
  .financity-body .mainboard {
    min-height: calc(100vh - 122px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .financity-body .mainboard-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .financity-body .mainboard-features {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .financity-body .mainboard-slider {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .financity-body .mainboard-descr {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .financity-body .features-head {
    display: none;
  }
  .financity-body .features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 20px 10px 20px 28px;
  }
  .financity-body .features-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  .financity-body .features-item-icon {
    padding: 0;
    min-width: 80px;
  }
  .financity-body .features-item-title {
    font-size: 18px;
  }
  .financity-body .features-item-text {
    display: none;
  }
  .financity-body .search-box-desk {
    height: auto;
    background: var(--brandColor);
    position: absolute;
    z-index: 12;
    top: 122px;
    left: 0;
    right: 0;
  }
  .financity-body .search-box-desk .search-box {
    position: relative;
  }
  .financity-body .search-box-desk .search-box-close {
    font-size: 60px;
    color: #fff;
    display: block;
    width: 60px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: -10px;
    cursor: pointer;
  }
}

/* 3 Desktop */
@media (min-width: 1366px) {
  body.media-label::after {
    content: '3 Desktop 1366 + ';
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: green;
    color: #000;
    line-height: 40px;
    font-size: 22px;
    padding: 0 40px;
    z-index: 111;
    opacity: .5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
  }
  .financity-body .hero-slide-btns {
    margin: 20px 0;
  }
  .financity-body .menu-mobile,
  .financity-body .header-menu-btn {
    display: none !important;
  }
  .financity-body .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 30px;
    z-index: 11;
    margin-left: 40px;
  }
  .financity-body .header-menu a {
    display: block;
    padding: 0 12px;
    height: 106px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
  }
  .financity-body .header-menu a.active, .financity-body .header-menu a:hover {
    background: var(--brandColor);
    color: #fff;
    text-decoration: none;
  }
  .financity-body .hero.no-active .hero-slide {
    max-width: calc(((100vw - 320px) / 4) - 0.6vw);
  }
  .financity-body .hero-slide {
    max-width: calc((100vw - 320px - 36vw) / (4 - 1) - 0.6vw);
  }
  .financity-body .hero-slide-info {
    width: calc(36vw - 48px);
  }
  .financity-body .hero-slide.active {
    max-width: 36vw;
  }
  .financity-body .descr-hero {
    display: block;
    width: 320px;
    padding: 0 24px;
    line-height: normal;
  }
  .financity-body .descr-hero-title {
    padding: 0;
    margin: 0 0 36px 0;
  }
  .financity-body .descr-hero-hr {
    display: block;
    clear: both;
    width: 145px;
    height: 2px;
    padding: 0;
    margin: 0;
    background: #162160;
    border: none;
  }
  .financity-body .descr-hero-text {
    padding: 0;
    margin: 40px 0 50px 0;
  }
  .financity-body .features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .financity-body .features-head {
    display: block;
    padding: 28px;
    width: 320px;
    font-size: 30px;
  }
  .financity-body .features-list {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .price-box-price {
    min-width: 240px;
    font-size: 18px;
  }
  .price-box-price b {
    font-size: 45px;
  }
  .price-box-price i {
    font-size: 30px;
  }
}

/* 4 HD > 1920 */
@media (min-width: 1600px) {
  body.media-label::after {
    content: '4 HD 1600 +';
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: blue;
    color: #000;
    line-height: 40px;
    font-size: 22px;
    padding: 0 40px;
    z-index: 111;
    opacity: .5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
  }
  .financity-body .hero-slide-info ul li,
  .financity-body .hero-slide-info ol li {
    margin-bottom: 7px;
  }
  .financity-body .header-menu {
    margin-left: 108px;
    margin-right: auto;
  }
  .financity-body .header-menu a {
    padding: 0 16px;
  }
  .financity-body .lang-box {
    margin-left: 66px;
  }
  .financity-body .hero.no-active .hero-slide {
    max-width: calc(((100vw - 368px) / 4) - 0.6vw);
  }
  .financity-body .hero-slide {
    max-width: calc((100vw - 368px - 25vw) / (4 - 1) - 0.6vw);
  }
  .financity-body .hero-slide-info {
    width: calc(25vw - 48px);
  }
  .financity-body .hero-slide.active {
    max-width: 25vw;
  }
  .financity-body .hero-slide-slogan {
    font-size: 380px;
    line-height: 380px;
    letter-spacing: -20px;
    bottom: -54px;
  }
  .financity-body .descr-hero {
    width: 368px;
    padding: 0 36px 0 40px;
  }
  .financity-body .features-head {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 40px;
    width: 368px;
  }
  .financity-body .features-head-text {
    display: block;
  }
  .financity-body .features-list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 50px 0 50px 50px;
  }
  .financity-body .features-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 40px;
  }
  .financity-body .features-item-icon {
    min-width: 94px;
  }
  .financity-body .features-item-text {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */