/**
 * Front CSS.
 *
 * @package uvp
 * @since uvp 1.0
 */
/**
 * Variables SASS.
 *
 * @package acora
 * @since acora 1.0
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  font-family: Titillium Web, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  overflow-x: hidden; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html,
body {
  font: normal 14px Open Sans, arial, sans-serif;
  letter-spacing: 0.03em;
  background: #FFF;
  color: #000; }

strong {
  font-weight: 700; }

h1, h2, h3, h4 {
  font: 700 40px Titillium Web, sans-serif; }

p {
  font: 400 18px Titillium Web, sans-serif;
  line-height: 30px; }

a {
  text-decoration: none;
  background-image: linear-gradient(#000 calc(100% - 1px), #000 1px);
  background-position: 0 calc(100% + 1px);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: #000; }
  a:hover {
    background-size: 100% 1px; }

.fwduvp-info-window-dark a {
  background-image: linear-gradient(#FFF calc(100% - 1px), #FFF 1px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

/* Menu */
.menu {
  position: relative;
  z-index: 1;
  width: calc(100% - 80px);
  max-width: 1920px;
  z-index: 100;
  padding: 30px 0 20px;
  margin: 0 auto; }
  .menu.menu-demo {
    position: absolute;
    left: 40px; }
  .menu .logo-a {
    margin-left: -5px; }
  .menu a {
    border: none; }
  .menu .logo {
    position: relative;
    top: 4px;
    width: 129px;
    height: 41px; }
  .menu .primary-navigation {
    width: 100%;
    margin-top: -41px;
    text-align: right; }
  .menu #demos_menu {
    padding: 10px 0 11px 20px;
    background-position: 21px calc(100% - 9px);
    background-image: linear-gradient(#fff calc(100% - 1px), #fff 1px); }
    .menu #demos_menu:hover {
      background-size: calc(100% - 20px) 1px;
      color: #FFF; }
  .menu li {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-right: 26px; }
    .menu li .active {
      pointer-events: none;
      color: #E70973 !important; }
    .menu li a {
      display: block;
      white-space: nowrap;
      font: 700 14px Titillium Web, sans-serif;
      line-height: 16px;
      text-transform: uppercase;
      color: #FFFFFF; }
      .menu li a.buy-now {
        background-position: 20px calc(100% - 9px);
        background-image: linear-gradient(#fff calc(100% - 1px), #fff 1px);
        padding: 10px 12px 11px 20px;
        color: #FFF; }
        .menu li a.buy-now:hover {
          background-size: calc(100% - 33px) 1px;
          color: #FFF; }
      .menu li a:hover {
        background-size: 0% 0;
        color: #E70973; }
  .menu .has-children {
    margin: 0 0 0 -5px; }
    .menu .has-children a {
      padding: 23px 33px 21px 33px;
      color: #000; }
    .menu .has-children svg {
      display: inline-block;
      position: absolute;
      left: 93px;
      top: 16px;
      margin-right: 5px;
      color: #FFF;
      transform: rotate(0deg);
      transition: transform .3s ease-out, top .3s ease-out; }
    .menu .has-children:hover svg {
      top: 15px;
      transform: rotate(180deg); }
    .menu .has-children:hover > .sub-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.4s cubic-bezier(0.7, 0, 0.2, 1), transform 0.4s cubic-bezier(0.7, 0, 0.2, 1); }
  .menu .sub-menu {
    right: -8px;
    box-sizing: border-box;
    position: absolute;
    padding-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
    .menu .sub-menu li {
      width: 100%;
      border-bottom: 1px solid #F0F0F0;
      margin: 0; }
      .menu .sub-menu li a {
        background: #FFF; }
      .menu .sub-menu li:first-child a {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px; }
      .menu .sub-menu li:last-child {
        border-bottom: none; }
        .menu .sub-menu li:last-child a {
          border-bottom-left-radius: 5px;
          border-bottom-right-radius: 5px; }
  .menu .active > a {
    background-size: calc(100% - 33px) 1px;
    color: #FFF !important; }
  .menu .secondary-navigation {
    display: inline-block;
    display: none;
    position: fixed;
    width: 240px;
    top: 30px;
    left: calc(100% - 240px);
    transform: translateY(-50px);
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1); }
    .menu .secondary-navigation .sub-menu {
      right: auto;
      opacity: 1;
      visibility: visible; }

.primary-menu-hide {
  display: none; }

.activate-secondary-menu {
  display: inline-block !important; }

.secondary-menu-show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important; }

.vertical-menu-toggle {
  position: absolute;
  display: none;
  top: 28px;
  right: 0;
  width: 26px;
  height: 40px;
  cursor: pointer;
  z-index: 10002;
  padding-left: 10px;
  padding-right: 4px;
  transition: background-color 0.32s ease-out, color 0.32s ease-out, left 0.8s cubic-bezier(0.7, 0, 0.2, 1), top 0.8s cubic-bezier(0.7, 0, 0.2, 1); }
  .vertical-menu-toggle span,
  .vertical-menu-toggle span:before,
  .vertical-menu-toggle span:after {
    content: '';
    position: absolute;
    top: 19px;
    width: 30px;
    height: 3px;
    display: block;
    cursor: pointer;
    background: #FFF;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all .32s ease-out; }
  .vertical-menu-toggle span:before {
    top: -9px; }
  .vertical-menu-toggle span:after {
    top: 9px; }

.vertical-menu--showed span {
  background: transparent !important;
  backface-visibility: hidden; }
.vertical-menu--showed span:before {
  top: 0;
  transform: rotate(43deg);
  backface-visibility: hidden; }
.vertical-menu--showed span:after {
  top: 0;
  transform: rotate(-43deg);
  backface-visibility: hidden; }

/* Try */
.try {
  position: relative;
  z-index: 1;
  font: 900 56px Titillium Web, sans-serif;
  width: calc(100% - 40px);
  text-align: center;
  line-height: 66px;
  margin: 83px auto 0;
  max-width: 800px;
  color: #FFF; }

.improve {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 80px);
  font: 400 18px Titillium Web, sans-serif;
  width: calc(100% - 40px);
  line-height: 30px;
  text-align: center;
  color: #E4E4E4;
  margin: 19px auto 5px; }

.vertical-menu-show {
  display: block;
  top: 28px; }

#myDiv {
  height: 469px;
  margin: 0 auto 80px; }

#myDiv2 {
  margin: 40px auto;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.2); }

.main-info {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 0; }
  .main-info.main-info-demos {
    overflow: visible;
    z-index: 1; }
  .main-info svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%); }

.scroll {
  position: relative;
  width: 49px;
  height: 49px;
  margin: -24px auto 0; }
  .scroll .arrow {
    position: absolute;
    left: 15px;
    top: 19px; }

.move-arrow {
  animation: .6s 6 moveArrow;
  animation-timing-function: ease-out; }

@keyframes moveArrow {
  0% {
    transform: translateY(0); }
  25% {
    transform: translateY(30%); }
  50% {
    transform: translateY(0); }
  75% {
    transform: translateY(-30%); }
  100% {
    transform: translateY(0); } }
.devices {
  overflow: hidden;
  position: relative;
  width: 982px;
  height: 586px;
  z-index: 1;
  margin: 50px auto 50px; }
  .devices .in {
    width: 982px;
    height: 486px;
    transform-origin: 0% 0%; }
  .devices .imac {
    position: absolute;
    top: 0;
    left: 177px; }
  .devices .iphone {
    position: absolute;
    top: 274px;
    left: -4px; }
  .devices .ipad {
    position: absolute;
    top: 207px;
    left: 104px; }
  .devices .macbook {
    position: absolute;
    top: 180px;
    left: 425px;
    transform-origin: 0 0; }

.short-ft {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  max-width: 1270px;
  margin: 10px auto 160px; }
  .short-ft .col {
    flex-basis: calc(33.33% - 60px);
    padding-right: 79px;
    margin-top: 100px; }
    .short-ft .col:nth-child(3n) {
      padding-right: 0; }
  .short-ft h1 {
    font-weight: 900;
    font-size: 33px;
    line-height: 46px;
    text-align: center;
    text-shadow: 0px 4px 0px #252525;
    background: linear-gradient(90deg, #4442BE 0.97%, #E11E93 64.94%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 8px transparent;
    color: #FFFFFF; }
    .short-ft h1:before {
      content: '';
      text-shadow: 0px 4px 0px #252525; }
  .short-ft p {
    line-height: 24px;
    text-align: center;
    margin-top: 16px; }

.features-holder {
  position: relative;
  overflow: hidden;
  margin: -313px 0 0 0; }
  .features-holder .svg {
    position: absolute;
    top: 0;
    left: 50%; }
  .features-holder .svg1 {
    position: absolute;
    top: 265px;
    left: 87px; }
  .features-holder .svg2 {
    position: absolute;
    top: 255px;
    left: 261px; }
  .features-holder .svg3 {
    position: absolute;
    top: 434px;
    left: 263px; }
  .features-holder .svg4 {
    position: absolute;
    top: 575px;
    left: 150px; }
  .features-holder .svg5 {
    position: absolute;
    top: 320px;
    left: 1603px; }
  .features-holder .svg6 {
    position: absolute;
    top: 235px;
    left: 1425px; }
  .features-holder .svg7 {
    position: absolute;
    top: 442px;
    left: 1584px; }
  .features-holder .svg8 {
    position: absolute;
    top: 642px;
    left: 1518px; }

.ft-h {
  font-style: normal;
  font-weight: normal;
  font-size: 44px;
  line-height: 46px;
  text-align: center;
  margin: 0 auto; }

.ft {
  width: calc(100% - 40px);
  max-width: 1170px;
  margin: 227px auto 0;
  color: #FFF; }
  .ft h1 {
    font-weight: 900;
    font-size: 56px;
    line-height: 66px;
    max-width: 626px;
    text-align: center;
    color: #000; }
    .ft h1 span {
      color: #E70973; }
  .ft p {
    font: 400 16px Titillium Web;
    line-height: 26px;
    text-align: center;
    max-width: 890px;
    margin: 50px auto 0;
    color: #252525; }

.ft2 {
  position: relative;
  overflow: hidden;
  height: 700px;
  width: calc(100% - 40px);
  max-width: 1020px;
  margin: 42px auto 0; }
  .ft2 .flex {
    display: flex;
    flex-wrap: wrap; }
    .ft2 .flex .col {
      position: relative;
      flex-basis: 20%;
      text-align: center;
      margin: 77px 0 0 0; }
    .ft2 .flex .hot {
      position: absolute;
      top: -20px;
      right: 0;
      font-weight: bold;
      font-size: 10px;
      line-height: 12px;
      border-radius: 30px;
      padding: 1px 9px 2px;
      background: #E70973;
      color: #FFF; }
    .ft2 .flex p {
      font: 700 14px Titillium Web, sans-serif;
      text-transform: uppercase;
      line-height: 21px;
      margin: 25px 10px 0; }

.expand {
  position: absolute;
  width: 100%;
  height: 310px;
  bottom: 0; }
  .expand .grad {
    height: 202px;
    background: linear-gradient(180deg, #FFFFFF 26.56%, rgba(255, 255, 255, 0.482269) 65.63%, rgba(255, 255, 255, 0.482269) 83.85%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-180deg); }
  .expand .more {
    display: flex;
    position: relative;
    height: 108px;
    justify-content: center;
    background: #FFF; }
    .expand .more p {
      font: 300 24px Titillium Web, sans-serif;
      display: inline-block;
      line-height: 37px;
      align-self: center;
      cursor: pointer;
      text-transform: uppercase;
      margin-left: -25px;
      transition: color 0.25s ease-out, opacity 0.5s cubic-bezier(0.7, 0, 0.2, 1), transform 0.5s cubic-bezier(0.7, 0, 0.2, 1); }
      .expand .more p:hover {
        color: #E70973; }
    .expand .more svg {
      position: relative;
      left: 25px;
      top: 6px; }
      .expand .more svg.svg2 {
        left: 24px;
        top: -8px;
        display: none; }

/* Familly */
.familly {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 388px;
  margin: 30px auto 0;
  background: #4442be; }
  .familly #familly_img {
    position: absolute;
    width: 100%;
    height: 100%; }
  .familly .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .8;
    background: #4442BE; }
  .familly .text-holder {
    position: relative;
    z-index: 1;
    align-self: center;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 0 auto; }
    .familly .text-holder p {
      font-size: 16px;
      line-height: 30px;
      font-weight: 300;
      margin-top: 19px;
      color: #FFF; }
  .familly h1 {
    font-weight: 900;
    font-size: 56px;
    line-height: 66px;
    color: #FFF; }
  .familly a {
    display: inline-block;
    line-height: 19px;
    border: none;
    border-radius: 33px;
    font-weight: bold;
    text-transform: uppercase;
    box-sizing: border-box;
    margin-top: 47px;
    padding: 20px 55px 21px;
    background: #E70973;
    color: #FFF; }
    .familly a:hover {
      color: #000;
      background: #FFF; }

/* Main features */
.main-ft {
  width: calc(100% - 40px);
  max-width: 1170px;
  margin: 110px auto 0; }
  .main-ft .ft-col {
    display: flex;
    margin: 80px 0 0 0; }
    .main-ft .ft-col:nth-child(even) .text {
      order: 1;
      margin: 0 0 0 80px; }
    .main-ft .ft-col:nth-child(even) p {
      margin: 0 40px 0 0; }
  .main-ft .text {
    align-self: center;
    margin: 0; }
  .main-ft .image {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    width: 50%;
    max-width: 570px;
    background: #4442be; }
  .main-ft h1 {
    max-width: 520px;
    font-style: normal;
    font-weight: 900;
    font-size: 33px;
    line-height: 42px;
    margin: 0 0 22px; }
  .main-ft p {
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    margin-right: 60px;
    color: #000; }
    .main-ft p + p {
      margin-top: 15px !important; }

.quality {
  overflow: hidden;
  width: 100%;
  max-width: 1650px;
  margin: 110px auto 0; }
  .quality.demo {
    margin-top: 203px; }
  .quality .col {
    display: block;
    position: relative;
    width: 100%;
    vertical-align: top;
    height: 506px;
    background: #4442be; }
  .quality .col2 {
    margin: 60px 0 0; }
    .quality .col2 .overlay {
      transform: matrix(-1, 0, 0, 1, 0, 0); }
  .quality .overlay,
  .quality #quality_col_1,
  .quality #quality_col_2 {
    position: absolute;
    width: 100%;
    height: 100%; }
  .quality .overlay {
    background: linear-gradient(90deg, #4442BE 0%, rgba(68, 66, 190, 0) 100%);
    opacity: 0.95; }
  .quality .text {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 683px;
    text-align: left;
    color: #FFF; }
    .quality .text h1 {
      font-weight: 900;
      font-size: 56px;
      line-height: 66px; }
    .quality .text p {
      font-size: 24px;
      line-height: 37px;
      margin: 37px 0 0;
      color: #F3F3F3; }
    .quality .text .first {
      color: #F70C3E; }
    .quality .text .second {
      color: #F70C3E; }
  .quality .t-2 {
    right: -32px;
    left: auto; }
    .quality .t-2 h1 {
      max-width: 426px; }
    .quality .t-2 p {
      max-width: 555px; }

.m-ft {
  width: calc(100% - 40px);
  max-width: 1270px;
  margin: 133px auto 0; }
  .m-ft .m-main-holder {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: -123px 0 0; }
    .m-ft .m-main-holder .col {
      flex-basis: calc(50% - 50px);
      padding-right: 99px;
      margin-top: 100px; }
      .m-ft .m-main-holder .col:nth-child(2n) {
        padding-right: 0; }
    .m-ft .m-main-holder h1 {
      font-weight: 900;
      font-size: 24px;
      line-height: 43px;
      margin: 45px 0 0 0; }
    .m-ft .m-main-holder p {
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      margin: 24px 0 0 0;
      color: #39393A; }

/* #######################################################
 * Demos.
 * #######################################################
*/
.main-bnr {
  overflow: visible; }

.bnr {
  position: relative;
  overflow: visible;
  width: 1920px;
  height: 594px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 0 0;
  background: #4442BE; }
  .bnr .girl {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../assets/bnr.png") no-repeat;
    background-position: 20% 50%;
    background-size: cover; }
  .bnr .right {
    position: absolute;
    overflow: hidden;
    width: 886px;
    height: 621px;
    right: 0;
    top: 164px !important; }
    .bnr .right .imac {
      position: absolute;
      top: 0;
      left: 177px; }
    .bnr .right .iphone {
      position: absolute;
      top: 274px;
      left: -4px; }
    .bnr .right .ipad {
      position: absolute;
      top: 207px;
      left: 104px; }
    .bnr .right .macbook {
      position: absolute;
      top: 180px;
      left: 423px; }
  .bnr .main-holder {
    position: absolute;
    width: 100%;
    height: 100%; }
  .bnr .text {
    width: calc(100% - 40px);
    max-width: 1170px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .bnr .text h1 {
      max-width: 680px;
      font-weight: 900;
      font-size: 56px;
      line-height: 66px;
      margin: -4px 0 0;
      color: #FFF; }
      .bnr .text h1 span {
        color: #E70973; }
    .bnr .text p {
      font-size: 24px;
      line-height: 34px;
      font-weight: 300;
      margin: 19px 0 0;
      color: #FFF; }

/* #######################################################
 * Demos.
 * #######################################################
*/
.demos {
  width: 100%;
  max-width: 1920px;
  vertical-align: top;
  line-height: 0;
  margin: 0 auto;
  padding-bottom: 1px;
  background: #F8F8F8; }
  .demos .choose {
    display: inline-block;
    width: 146px;
    height: 154px;
    margin-bottom: 26px; }
  .demos .left {
    display: inline-block;
    vertical-align: top;
    width: 320px;
    border-right: 1px solid #e0e0e0; }
    .demos .left.load {
      display: none; }
    .demos .left .dumy {
      position: relative;
      max-width: 220px;
      margin: auto;
      padding: 0; }
      .demos .left .dumy .search {
        display: inline-block;
        position: relative;
        width: 100%;
        font-weight: bold;
        font-size: 14px;
        box-sizing: border-box;
        border: 1px solid #E0E0E0;
        border-radius: 22px;
        line-height: 16px;
        padding: 12px 23px 10px;
        background: #ECECEC;
        color: #999999; }
        .demos .left .dumy .search:focus {
          outline: none; }
      .demos .left .dumy svg {
        position: relative;
        top: -28px;
        left: 87%;
        z-index: 1; }
    .demos .left .item {
      position: relative;
      width: 100%;
      cursor: pointer;
      box-sizing: border-box;
      border-radius: 22px;
      line-height: 16px;
      padding: 13px 23px 11px;
      margin: 26px 0 0;
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
      font-weight: bold;
      font-size: 14px;
      color: #999999;
      transition: all .3s ease-out; }
      .demos .left .item span {
        position: absolute;
        top: 8px;
        right: 10px;
        box-sizing: border-box;
        width: 21px;
        height: 21px;
        font-weight: bold;
        font-size: 10px;
        line-height: 12px;
        border-radius: 100%;
        opacity: 0;
        text-align: center;
        padding: 5px 0 0 1px;
        color: #FFF;
        background: #E70973;
        transition: all .3s ease-out; }
      .demos .left .item:hover {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.14);
        color: #000; }
        .demos .left .item:hover span {
          opacity: 1; }
    .demos .left #item_0 {
      margin-top: 24px; }
  .demos .right {
    display: inline-block;
    box-sizing: content-box;
    vertical-align: top;
    width: calc(100% - 321px);
    max-width: 1600px; }
    .demos .right.load {
      width: 100%;
      max-width: none; }
      .demos .right.load .dumy {
        border: none; }
    .demos .right .dumy {
      overflow: hidden;
      padding: 0 170px;
      border-left: 1px solid #e0e0e0;
      margin-left: -1px; }
  .demos .extra-content {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    line-height: 28px;
    padding: 25px 20px 14px;
    color: #252525; }
  .demos .background {
    background-color: #e1e1e1; }
  .demos #myGDiv {
    min-height: 582px; }
    .demos #myGDiv .thumbs-holder,
    .demos #myGDiv .main {
      min-height: 582px; }
    .demos #myGDiv .background {
      background-color: #C4C4C4; }
    .demos #myGDiv .p-nothing-found {
      font: 700 14px Titillium Web, sans-serif;
      top: 50% !important; }
    .demos #myGDiv .border {
      border: 1px solid #E0E0E0 !important;
      box-sizing: border-box; }
  .demos .grid-load {
    min-height: 70px !important; }
    .demos .grid-load .thumbs-holder,
    .demos .grid-load .main {
      min-height: 70px !important; }
  .demos .text-holder {
    text-align: center; }
    .demos .text-holder .in {
      width: 100%; }
      .demos .text-holder .in .link {
        box-sizing: border-box; }
    .demos .text-holder a {
      display: inline-block;
      font-family: Titillium Web, sans-serif;
      font-weight: bold;
      font-size: 14px;
      line-height: 19px;
      text-transform: uppercase;
      border-radius: 3px;
      padding: 10px 31px 11px;
      background: #E70973;
      color: #FFFFFF; }
      .demos .text-holder a:hover {
        color: #000;
        background: #FFF; }
  .demos .overlay {
    background-color: rgba(0, 0, 0, 0.6); }

/* Combobox. */
.p-selector {
  left: auto !important;
  top: 100px !important;
  left: auto !important;
  opacity: 0 !important;
  pointer-events: none;
  right: -200px;
  z-index: 999 !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 25px; }

.p-buttons-background {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF; }

.PGMenuButtonsSpacers {
  background-color: #FFFFFF; }

.PGMenuButtonBackgroundNormal {
  background-color: #FFFFFF; }

.PGMenuButtonBackgroundSelected {
  background-color: #FFFFFF; }

.PGMenuSelectorTextNormal {
  font: 700 14px Titillium Web, sans-serif;
  text-transform: uppercase;
  padding: 17px 30px 16px;
  border-radius: 25px;
  color: #999999; }

.PGMenuSelectorTextSelected {
  font: 700 14px Titillium Web, sans-serif;
  text-transform: uppercase;
  padding: 17px 30px 16px;
  color: #000000; }

.PGMenuButtonTextNormal {
  font: 700 14px Titillium Web, sans-serif;
  text-transform: uppercase;
  padding: 17px 30px 16px;
  color: #999999; }

.PGMenuButtonTextSelected {
  font: 700 14px Titillium Web, sans-serif;
  text-transform: uppercase;
  padding: 17px 30px 16px;
  color: #000000; }

.arrowNormal {
  backface-visibility: hidden !important;
  color: #999999;
  transition: color .4s ease-out; }

.arrowSelected {
  backface-visibility: hidden !important;
  color: #000000;
  transition: color .4s ease-out; }

/* Search. */
.p-wrapper {
  overflow: visible !important;
  width: 40px;
  left: auto !important;
  opacity: 0 !important;
  z-index: 999 !important;
  pointer-events: none;
  width: 241px;
  color: #FFF; }

.p-wrapper.showed {
  background-color: black; }

.p-wrapper span {
  font-size: 24px;
  float: left;
  margin: 9px 8px 8px 8px; }

.p-wrapper .search {
  cursor: pointer;
  z-index: 1;
  position: absolute;
  right: 17px;
  top: 17px;
  color: #000000; }
  .p-wrapper .search:before {
    position: relative;
    top: -3px;
    left: 3px;
    font-size: 17px; }

.fwdicon-search {
  width: 0;
  margin: 0 !important; }

.p-search {
  position: absolute !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 16px 19px 15px 29px !important;
  width: 100%;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #E0E0E0 !important;
  box-sizing: border-box;
  border-radius: 25px;
  background: #ECECEC;
  color: #000; }
  .p-search:focus {
    outline: none; }

.grid-menu-active {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.14) !important;
  color: #000 !important; }
  .grid-menu-active span {
    opacity: 1 !important; }

.ready {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 541px;
  background: #191919;
  margin: 105px auto 0; }
  .ready #ready_img {
    position: absolute;
    width: 100%;
    height: 100%; }
  .ready .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4442BE;
    opacity: 0.85; }
  .ready .separator {
    display: none; }
  .ready .text {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 650px;
    color: #FFF; }
    .ready .text h1 {
      font-weight: 900;
      font-size: 56px;
      line-height: 84px;
      text-align: center; }
    .ready .text p {
      font-size: 16px;
      line-height: 30px;
      line-height: 30px;
      margin: 12px 0 0;
      text-align: center; }
    .ready .text .a-holder {
      margin: 0 auto;
      text-align: center; }
    .ready .text a {
      font: 700 14px Titillium Web, sans-serif;
      display: inline-block;
      font-weight: bold;
      line-height: 21px;
      border: none;
      border-radius: 90px;
      text-transform: uppercase;
      box-sizing: border-box;
      margin-top: 47px;
      padding: 20px 55px 21px;
      background: #E70973;
      color: #FFF; }
      .ready .text a:hover {
        color: #000 !important;
        background: #FFF !important; }
      .ready .text a:nth-of-type(1) {
        margin: 62px 30px 0 0; }
      .ready .text a:nth-of-type(2) {
        box-sizing: border-box;
        position: relative;
        z-index: 100;
        border: 1px solid #FFF;
        background: transparent; }
  .ready.demos {
    height: auto;
    background: transparent;
    margin: auto;
    padding: 117px 0 30px;
    background: linear-gradient(180deg, #242424 0%, rgba(26, 26, 26, 0) 100%); }
    .ready.demos .text {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin: auto; }
      .ready.demos .text h1 {
        color: #FFF; }
      .ready.demos .text p {
        font-weight: 400;
        color: #FFF; }
      .ready.demos .text a:hover {
        color: #FFF;
        background: #000; }
      .ready.demos .text a:nth-of-type(2):before {
        background: #FFF; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ready {
    display: block; }
    .ready .text {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

  .short-ft h1 {
    background: transparent;
    text-shadow: none;
    color: #1d1d1d; } }
.footer {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 0;
  box-sizing: border-box;
  background: url("../assets/bubbles.jpg") no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #F3F3F3; }
  .footer.single {
    margin-top: 110px; }
  .footer .holder {
    width: calc(100% - 40px);
    max-width: 703px;
    text-align: center;
    margin: 0 auto 0; }
    .footer .holder .logo {
      margin-top: 138px; }
    .footer .holder h4 {
      font-weight: 300;
      font-size: 14px;
      line-height: 24px;
      margin: 53px 0 0; }
  .footer .info {
    margin: 43px 0 0; }
    .footer .info svg {
      position: relative;
      top: 4px;
      margin-right: 10px; }
    .footer .info p {
      display: inline-block;
      font-weight: 300;
      font-size: 14px; }
    .footer .info a {
      font-weight: 300;
      font-size: 14px;
      background-image: linear-gradient(#F3F3F3 calc(100% - 1px), #F3F3F3 1px);
      border-bottom-color: rgba(243, 243, 243, 0.3);
      margin-right: 40px;
      color: #FFF; }
  .footer .bundle {
    padding-bottom: 54px; }
    .footer .bundle p {
      margin: 44px 0 0;
      color: #999999; }
    .footer .bundle h4 {
      display: inline-block;
      font-weight: 700;
      font-size: 24px;
      line-height: 37px;
      margin: 0 0 5px 0;
      background: linear-gradient(86.21deg, #0066FF 0.45%, #770D9D 49.22%, #FF0D38 99.29%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .footer .bundle a {
      font-weight: 300;
      font-size: 14px;
      line-height: 21px;
      text-transform: uppercase;
      background-image: linear-gradient(#F3F3F3 calc(100% - 1px), #F3F3F3 1px);
      border-bottom-color: rgba(243, 243, 243, 0.3);
      color: #FFF; }

.footer-bar {
  padding: 15px 0;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background: #191821; }
  .footer-bar .holder {
    width: calc(100% - 40px);
    max-width: 1170px;
    margin: auto; }
  .footer-bar p {
    font: normal 14px Roboto;
    line-height: 24px;
    display: inline-block;
    color: #FFF; }
  .footer-bar a {
    position: relative;
    top: 4px;
    float: right;
    background-image: none; }
    .footer-bar a path {
      transition: fill .3s ease-out;
      fill: #FFF; }
    .footer-bar a:hover path {
      fill: #F70C3E; }
    .footer-bar a:first-of-type {
      margin-left: 26px; }

/* Demo single */
.main.single {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background: #1d1d1d; }

#myDivHolder {
  overflow: hidden; }
  #myDivHolder .single-header-text {
    position: relative;
    z-index: 1; }
  #myDivHolder #myDiv {
    margin: -14px auto 17px; }
    #myDivHolder #myDiv > div {
      overflow: visible !important; }

.single-header-text {
  width: 100%;
  background: #1D1D1D;
  max-width: 1920px;
  margin: 0 auto; }

.d-s-title {
  font: 900 56px Titillium Web, sans-serif;
  width: calc(100% - 40px);
  max-width: 800px;
  text-align: center;
  line-height: 66px;
  margin: 0 auto;
  padding: 195px 0 0;
  color: #FFF; }
  .d-s-title.lightbox-title {
    margin-top: 13px; }

.d-s-text {
  font: 300 14px Titillium Web, sans-serif;
  width: calc(100% - 40px);
  max-width: 800px;
  text-align: center;
  line-height: 24px;
  color: #FFF;
  margin: 10px auto -4px; }
  .d-s-text.long {
    max-width: 1000px; }

.lightbox-a-holder {
  text-align: center; }

.lightbox {
  display: inline-block;
  font: bold 14px Open Sans;
  line-height: 19px;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  box-sizing: border-box;
  margin: 145px 0 140px;
  padding: 20px 55px 21px;
  background: #CACACA;
  color: #FFF; }
  .lightbox:hover {
    background: #E70973; }

.api {
  display: flex;
  width: 100%;
  max-width: 1170px;
  margin: -13px auto 111px;
  justify-content: center;
  flex-wrap: wrap; }
  .api .api-button {
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 21px;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    background: #transparent;
    padding: 14px 30px;
    transition: all .3s ease-out; }
    .api .api-button:first-child {
      margin-right: 20px; }
    .api .api-button:hover {
      background: #2F2F2F;
      border-color: transparent; }

.vast {
  width: calc(100% - 40px);
  max-width: 1170px;
  margin: 0 auto 0;
  text-align: center; }
  .vast p {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin: 28px 0 16px;
    color: #999999; }
  .vast select {
    font: 400 16px Roboto;
    line-height: 19px;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px !important;
    background: #FFFFFF; }

.api-animation {
  animation: .4s 1 beatHeart; }

@keyframes beatHeart {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  40% {
    opacity: 0; }
  60% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/* #######################################################
 * Global stuff.
 * #######################################################
*/
/* Hide and show */
.fwd-hide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.2, 1), transform 0.5s cubic-bezier(0.7, 0, 0.2, 1); }

.fwd-hide2 {
  opacity: 0;
  transform: translate(-50%, 50px);
  transition: opacity 1s cubic-bezier(0.7, 0, 0.2, 1), transform 1s cubic-bezier(0.7, 0, 0.2, 1); }

.fwd-hide-top {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.2, 1), top 0.5s cubic-bezier(0.7, 0, 0.2, 1); }

.fwd-hide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.2, 1), transform 0.5s cubic-bezier(0.7, 0, 0.2, 1); }

.fwd-hide-opacity {
  opacity: 0;
  transition: opacity 1s, top 0.5s cubic-bezier(0.7, 0, 0.2, 1); }

.reveal {
  opacity: 1 !important;
  transform: translateY(0); }

.reveal-top {
  opacity: 1;
  top: 0; }

.reveal-left {
  opacity: 1 !important;
  transform: translateX(0); }

.reveal2 {
  opacity: 1 !important;
  transform: translate(-50%, 0) !important; }

.reveal-without-top {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto; }

.clear-fix {
  clear: both; }

/* Logged in window dark. */
.fwduvp-loggedin-message-dark {
  font: 400 14px  Arial !important;
  color: #AAAAAA !important; }

.fwduvp-loggedin-message-dark a {
  background-image: linear-gradient(#FFF calc(100% - 1px), #FFF 1px);
  background-size: 0% 1px;
  color: #CCC;
  background-position: 0 calc(100% + 1px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

.fwduvp-loggedin-message-dark a:hover {
  background-size: 100% 1px;
  color: #FFF; }

/* Logged in window white. */
.fwduvp-loggedin-message-white {
  font: 400 14px Roboto, Arial !important;
  color: #6a6a6a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

.fwduvp-loggedin-message-white a {
  background-image: linear-gradient(#000000 calc(100% - 1px), #000000 1px);
  background-size: 0% 1px;
  color: #666666;
  background-position: 0 calc(100% + 1px);
  border-bottom: 1px solid rgba(60, 60, 60, 0.3); }

.fwduvp-loggedin-message-white a:hover {
  background-size: 100% 1px !important;
  color: #000000; }

/**
 * Responsive CSS.
 *
 * @package uvp
 * @since uvp 1.0
 */
@media screen and (max-width: 1800px) {
  .demos .right .dumy {
    padding: 0 100px; } }
@media screen and (max-width: 1600px) {
  .demos .right .dumy {
    padding: 0 80px; }

  .main-bnr .right {
    right: 40px; } }
@media screen and (max-width: 1440px) {
  .demos .right .dumy {
    padding: 0 50px; }

  .main-bnr .right {
    right: 40px; } }
@media screen and (max-width: 1270px) {
  .theme-disabled2 {
    transform: translate(-50%, 50px) !important;
    opacity: 0 !important; }

  #myDivHolder #theme {
    display: inline-block;
    position: relative;
    right: auto;
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    transform: translateX(-50%);
    padding: 0px 30px 7px; }
  #myDivHolder .tp {
    display: none !important; }
  #myDivHolder .shadow {
    margin-top: -12px; }
  #myDivHolder .white,
  #myDivHolder .dark {
    display: inline-block;
    margin: 0; }
  #myDivHolder .white {
    margin-right: 7px; }
  #myDivHolder .line {
    display: none; }
  #myDivHolder .line2 {
    display: inline-block;
    margin: 0 16px 0 14px; }
  #myDivHolder .colors {
    display: inline-block;
    width: auto; }
    #myDivHolder .colors .color {
      display: inline-block;
      margin-right: 10px; }
      #myDivHolder .colors .color:last-child {
        margin: 0; }

  .main-info .quote {
    margin-top: 248px; } }
@media screen and (max-width: 1220px) {
  .menu {
    width: calc(100% - 47px);
    padding: 23px 0 20px; }
    .menu.menu-demo {
      left: 20px; }

  .vertical-menu-show {
    top: 26px; }

  .main-bnr .bnr {
    width: 100%; }
  .main-bnr .right {
    right: -348px; } }
@media screen and (max-width: 1140px) {
  .main-bnr .right {
    right: -430px; }

  .footer {
    flex-wrap: wrap; }
    .footer .col {
      flex-basis: calc(50% - 40px) !important; }
      .footer .col:nth-child(2), .footer .col:nth-child(4) {
        padding: 0 0 0 30px; }
      .footer .col:nth-child(3), .footer .col:nth-child(4) {
        margin-top: 40px; }
    .footer .bundle .a-holder {
      font-size: 14px; } }
@media screen and (max-width: 1015px) {
  .main-bnr .right {
    right: -550px; }

  .short-ft {
    margin-bottom: 110px; }
    .short-ft .col {
      flex-basis: 100%;
      margin-top: 70px;
      padding: 0; }

  .ft .f-ads .col {
    width: 100%; }
  .ft .f-ads .f-ads-2 {
    float: none;
    margin-top: 37px; }
  .ft .f-ads .f-ads-1 .col2,
  .ft .f-ads .f-ads-2 .col2 {
    max-width: 382px; }

  .ft2 .flex .col {
    flex-basis: 20%; }

  .m-ft .m-main-holder .col {
    flex-basis: calc(50% - 25px);
    padding-right: 0 !important; }
    .m-ft .m-main-holder .col:nth-child(2n) {
      padding-left: 50px; }

  .main-ft .text h1 {
    max-width: none; }
  .main-ft .text p {
    margin-right: 0; }

  .quality svg {
    display: none; }
  .quality .col {
    width: 100%;
    height: auto; }
  .quality .col2 .overlay {
    transform: matrix(1, 0, 0, 1, 0, 0); }
  .quality .text {
    position: relative;
    height: auto;
    max-width: none;
    transform: none;
    left: auto;
    top: auto;
    box-sizing: border-box;
    padding: 69px 20px 71px 20px; }
    .quality .text.t-2 {
      right: auto; }
    .quality .text h1 {
      max-width: 537px; }
    .quality .text p {
      max-width: 480px; }

  .demos .left {
    display: none !important; }
  .demos .right {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto; }
    .demos .right .dumy {
      overflow: visible;
      border: none;
      padding: 0; }
  .demos .p-selector,
  .demos .p-wrapper {
    pointer-events: auto;
    top: -80px !important;
    right: 0 !important;
    opacity: 1 !important;
    transform: translateY(0); }
  .demos .p-wrapper {
    top: -150px !important; }

  .demos .right {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto; }
    .demos .right .dumy {
      overflow: visible;
      border: none;
      padding: 0; }
  .demos .p-selector,
  .demos .p-wrapper {
    pointer-events: auto;
    top: -80px !important;
    right: 0 !important;
    opacity: 1 !important;
    transform: translateY(0); }
  .demos .p-wrapper {
    top: -150px !important; }

  /* Main features */
  .main-ft .ft-col {
    flex-wrap: wrap; }
  .main-ft .image {
    width: 100%;
    max-width: none; }
  .main-ft .text {
    order: 1;
    flex-basis: 100%;
    margin: 40px 0 0 0 !important; } }
@media screen and (max-width: 1015px) {
  .main-bnr .right {
    display: none; } }
@media screen and (max-width: 768px) {
  .ft .f-ads .f-ads-1 .col2,
  .ft .f-ads .f-ads-2 .col2 {
    max-width: 350px; }

  .short-ft {
    margin-top: -3px;
    margin-bottom: 94px; }

  .ft2 .flex .col {
    flex-basis: 25%; }

  .m-ft .m-main-holder .col {
    flex-basis: 100%;
    padding: 0 !important; }

  .familly {
    height: 573px; }
    .familly h1 {
      display: inline-block;
      max-width: 338px;
      font-size: 44px;
      line-height: 55px; }
    .familly p {
      display: inline-block;
      max-width: 364px; }

  .ready .separator {
    display: block; }
  .ready a {
    margin-right: 0 !important; }
    .ready a:nth-of-type(2) {
      margin-top: 20px; } }
@media screen and (max-width: 650px) {
  .main-bnr {
    overflow: hidden; }
    .main-bnr .bnr {
      overflow: hidden;
      height: auto; }
    .main-bnr .main-holder {
      position: relative; }
    .main-bnr .text {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin: 95px 20px 90px; }
      .main-bnr .text h1 {
        font-size: 33px;
        line-height: 44px;
        margin: 140px 0 0; }
      .main-bnr .text p {
        font-size: 16px;
        line-height: 34px; }

  .ft .f-ads .f-ads-1 .col2,
  .ft .f-ads .f-ads-2 .col2 {
    max-width: 320px; } }
@media screen and (max-width: 600px) {
  .reviews {
    display: none !important; }

  .d-s-title {
    font-size: 44px;
    line-height: 46px;
    padding: 134px 0 0; }

  .api .api-button {
    flex-basis: 100%;
    max-width: 190px;
    text-align: center;
    margin: 0 !important; }
    .api .api-button:first-child {
      margin-bottom: 20px !important; }

  .main-info {
    background: #4442BE;
    box-shadow: inset 0px 0px 50px rgba(0, 0, 0, 0.5); }
    .main-info svg {
      display: none; }

  #myDivHolder #theme {
    top: 46px; }
  #myDivHolder .shadow {
    position: relative;
    top: -16px;
    width: 70%;
    height: 33px; }

  .short-ft {
    margin-top: 30px; }
    .short-ft .col {
      margin-top: 31px; }
      .short-ft .col:first-child {
        margin-top: 37px; }

  .features-holder {
    margin-top: -157px; }
    .features-holder .ft h1 {
      font-size: 44px;
      line-height: 46px; }
    .features-holder .ft p {
      margin-top: 30px; }
    .features-holder .ft2 {
      margin-top: 10px; }

  .demos {
    margin-bottom: -13px; }

  .ft {
    margin-top: 74px; }
    .ft .f-ads .overlay {
      background: linear-gradient(184.51deg, rgba(21, 5, 119, 0.9) 3.44%, rgba(21, 5, 119, 0) 97%); }
    .ft .f-ads .f-ads-1,
    .ft .f-ads .f-ads-2 {
      min-height: 430px; }
      .ft .f-ads .f-ads-1 .col2,
      .ft .f-ads .f-ads-2 .col2 {
        max-width: none;
        box-sizing: border-box;
        padding: 12px 30px 35px 34px; }
      .ft .f-ads .f-ads-1 img,
      .ft .f-ads .f-ads-2 img {
        left: 50%;
        transform: translateX(-50%); }
    .ft .f-ads .f-ads-1 .col1 {
      padding: 82px 0 0 30px; }
      .ft .f-ads .f-ads-1 .col1 p {
        position: absolute;
        top: 40px;
        left: 30px; }
    .ft .f-ads .f-ads-2 {
      margin-top: 26px; }
      .ft .f-ads .f-ads-2 .overlay {
        background: linear-gradient(185.02deg, rgba(200, 12, 102, 0.8) 49.66%, rgba(200, 12, 102, 0) 96.45%); }

  .ft2 {
    margin-top: 25px; }
    .ft2 .flex .col {
      margin-top: 45px; }

  .main-ft {
    margin-top: 100px; }
    .main-ft .ft-col {
      margin-top: 45px; }
    .main-ft .text {
      margin-top: 21px !important; }
    .main-ft h1 {
      font-size: 33px;
      line-height: 44px;
      margin-bottom: 3px; }

  .try {
    font-size: 44px;
    line-height: 46px;
    margin-top: 30px; }

  .quality {
    margin-top: 93px; }
    .quality.demo {
      margin-bottom: -25px; }
    .quality .col {
      padding: 100px 0 0; }
    .quality .col2 {
      margin-top: 0;
      padding: 0; }
      .quality .col2 .text p {
        padding-bottom: 20px; }
    .quality #quality_col_1,
    .quality #quality_col_2 {
      width: calc(100% - 40px);
      margin: auto;
      position: relative;
      height: 360px; }
    .quality #quality_col_1 img {
      left: -497px !important; }
    .quality #quality_col_2 img {
      left: 0 !important; }
    .quality .overlay {
      display: none; }
    .quality .text {
      padding-top: 39px; }
      .quality .text h1 {
        font-size: 44px;
        line-height: 46px; }
      .quality .text p {
        max-width: none;
        margin-top: 25px; }

  .familly {
    margin-top: 21px;
    height: 388px; }
    .familly h1 {
      font-size: 44px;
      line-height: 46px; }
    .familly a {
      margin-top: 35px; }

  .ft2 .flex .col {
    flex-basis: 33.33%; }

  .m-ft {
    margin-top: 80px; }
    .m-ft .m-main-holder {
      margin-top: -12px; }
      .m-ft .m-main-holder h1 {
        margin-top: 8px; }
      .m-ft .m-main-holder p {
        margin-top: 8px; }
      .m-ft .m-main-holder .col {
        margin-top: 52px; }

  .ready {
    height: auto;
    margin-top: 91px; }
    .ready.demos {
      margin: 10px auto -51px !important;
      padding: 33px 0 0px; }
    .ready .text {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      text-align: center;
      margin: 0 auto 0;
      padding: 69px 0 80px; }
      .ready .text h1 {
        font-size: 44px;
        line-height: 46px; }
    .ready a {
      margin-right: 0 !important;
      margin-top: 52px !important; }
      .ready a:nth-of-type(2) {
        margin-top: 10px !important; }

  .footer-main {
    padding-top: 36px; }

  .footer {
    flex-wrap: wrap;
    padding-bottom: 7px; }
    .footer .holder .logo {
      margin-top: 80px; }
    .footer .col {
      flex-basis: 100% !important;
      margin-top: 40px;
      padding: 0 !important; } }
@media screen and (max-width: 500px) {
  #myDivHolder #theme {
    padding: 0px 10px 7px 18px; }
  #myDivHolder .line2 {
    margin: 0 9px 0 4px; }
  #myDivHolder .colors .color:nth-child(8), #myDivHolder .colors .color:nth-child(9) {
    display: none; }

  .ft2 .flex .col {
    flex-basis: 50%; }

  .footer .info {
    max-width: 230px;
    margin: 43px auto 0; }
    .footer .info a {
      margin-right: 0; }
    .footer .info .phone {
      margin-top: 8px; } }
@media screen and (max-width: 400px) {
  .ft .f-ads .f-ads-2 {
    min-height: 449px; }
    .ft .f-ads .f-ads-2 .col1 p {
      display: none; } }
@media screen and (max-width: 385px) {
  #myDivHolder .colors .color {
    margin-right: 8px; } }

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