/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  color: #fff;
  background: #080715;
  font: 16px/1.5 "Lato", "Arial", "Helvetica", sans-serif;
  min-width: 360px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(#1d1b4e));
  background: linear-gradient(to bottom, black 0%, #1d1b4e 100%);
}
@media (max-width: 767px) {
  body {
    background: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(50%, #1c1a43), to(#100f2d));
    background: linear-gradient(to bottom, black 0%, #1c1a43 50%, #100f2d 100%);
  }
}

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

.gm-style img {
  max-width: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: "Poppins", "Arial", "Helvetica", sans-serif;
  font-weight: bold;
  margin: 0 0 0.5em;
  color: inherit;
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 27px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 21px;
}

h5, .h5 {
  font-size: 17px;
}

h6, .h6 {
  font-size: 15px;
}

p {
  margin: 0 0 1em;
}

a {
  color: #39f;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover, a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  padding: 0.4em 0.7em;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #000;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
}

/* custom select styles */
.jcf-select {
  width: 100%;
  height: 48px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #100f2d;
  border: 1px solid #848393;
  border-radius: 8px;
  margin: 0;
  min-width: 150px;
}
.jcf-select.jcf-drop-active {
  border-radius: 8px 8px 0 0;
}
.jcf-select.jcf-drop-active .jcf-select-opener:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.jcf-select select {
  z-index: 1;
  left: 0;
  top: 0;
}

.jcf-select .jcf-select-text {
  font-size: 16px;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  display: block;
  margin: 10px 35px 5px 12px;
  color: #a2a2a2;
  height: 100%;
}

.jcf-select .jcf-select-opener {
  position: absolute;
  text-align: center;
  background: none;
  width: 32px;
  bottom: 0;
  right: 0;
  top: 0;
}
.jcf-select .jcf-select-opener:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-style: solid;
  border-width: 8px 7px 0;
  border-color: #707070 transparent transparent;
}

body > .jcf-select-drop {
  position: absolute;
  margin: -1px 0 0;
  z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
  margin: 1px 0 0;
}

.jcf-select .jcf-select-drop {
  position: absolute;
  margin-top: 0;
  z-index: 9999;
  top: 100%;
  left: -1px;
  right: -1px;
}

.jcf-select .jcf-drop-flipped {
  bottom: 100%;
  top: auto;
}

.jcf-select-drop .jcf-select-drop-content {
  border: 1px solid #848393;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

/* multiple select styles */
.jcf-list-box {
  overflow: hidden;
  display: inline-block;
  border: 1px solid #848393;
  min-width: 200px;
  margin: 0 15px;
}

/* select options styles */
.jcf-list {
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #100f2d;
  border-radius: 0 0 8px 8px;
  width: 100%;
}

.jcf-list .jcf-list-content {
  vertical-align: top;
  display: inline-block;
  overflow: auto;
  width: 100%;
}

.jcf-list ul {
  list-style: none;
  padding: 0 15px;
  margin: 0;
}

.jcf-list ul li {
  overflow: hidden;
  display: block;
  border-bottom: 2px solid #2d2c41;
}
.jcf-list ul li:first-child, .jcf-list ul li:last-child {
  border-bottom: none;
}

.jcf-list .jcf-overflow {
  overflow: auto;
}

.jcf-list .jcf-option {
  overflow: hidden;
  cursor: default;
  display: block;
  padding: 16px 0;
  color: #fff;
  height: 1%;
}

.jcf-list .jcf-disabled {
  background: #fff !important;
  color: #aaa !important;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
  color: #a2a2a2;
}

.jcf-list .jcf-optgroup-caption {
  white-space: nowrap;
  font-weight: bold;
  display: block;
  padding: 16px 0;
  color: #fff;
  cursor: default;
}

.jcf-list .jcf-optgroup .jcf-option {
  padding-left: 30px;
}

.jcf-select-drop .jcf-option-hide-me {
  display: none !important;
}

.resize-active * {
  -webkit-transition: none !important;
  transition: none !important;
}

#wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 0;
}
@media (max-width: 767px) {
  #wrapper {
    padding: 60px 0 0;
  }
}

.js-tab-hidden {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
  top: -9999px !important;
}

@media (max-width: 767px) {
  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .logo, .main, .footer {
    -webkit-transition: -webkit-filter ease-in-out 0.35s;
    transition: -webkit-filter ease-in-out 0.35s;
    transition: filter ease-in-out 0.35s;
    transition: filter ease-in-out 0.35s, -webkit-filter ease-in-out 0.35s;
  }
}

@media (max-width: 767px) {
  .menu-active {
    overflow: hidden;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .menu-active .logo, .menu-active .main, .menu-active .footer {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
}

.main {
  position: relative;
}

.container {
  width: 100%;
  position: relative;
  max-width: 1160px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }
}

.btn-wrap {
  position: relative;
  display: block;
}

.btn {
  font-size: 16px;
  line-height: 20px;
  width: 170px;
  height: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#fcadc0), color-stop(50%, #765cc2), to(#0a98fb));
  background: linear-gradient(to right, #fcadc0 0%, #765cc2 50%, #0a98fb 100%);
  border-radius: 35px;
  color: #fff;
  padding: 2px;
}
.btn .btn-text {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  background: #020512;
  border-radius: 35px;
  padding: 7px 5px;
}
.btn:hover {
  opacity: 0.9;
}

.menu-opener {
  width: 20px;
  height: 18px;
  border-top: 2px solid #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  right: 24px;
  top: 19px;
  z-index: 10;
}
@media (min-width: 768px) {
  .menu-opener {
    display: none;
  }
}
.menu-active .menu-opener {
  border-top: none;
}
.menu-opener:before, .menu-opener:after {
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  left: 0;
  top: 16px;
}
.menu-active .menu-opener:before, .menu-active .menu-opener:after {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-opener:after {
  top: 7px;
}
.menu-active .menu-opener:after {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header {
  position: fixed;
  background: #020512;
  left: 0;
  top: 0;
  right: 0;
  height: 80px;
  z-index: 99;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .header-holder {
    padding: 9px 0;
  }
}
@media (max-width: 767px) {
  .header-holder .btn-wrap {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header-holder .btn {
    width: 150px;
  }
}

.logo {
  position: relative;
  display: block;
  width: 166px;
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-drop {
  position: relative;
}
@media (max-width: 767px) {
  .nav-drop {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
  }
}
@media (max-width: 767px) {
  .menu-active .nav-drop {
    -webkit-transform: none;
            transform: none;
  }
}

.nav-area {
  position: relative;
}

.nav-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .menu {
    padding: 60px 24px;
    width: 100%;
  }
}
.menu li {
  position: relative;
  padding: 0 46px 0 0;
}
@media (max-width: 1023px) {
  .menu li {
    padding: 0 35px 0 0;
  }
}
@media (max-width: 767px) {
  .menu li {
    width: 100%;
    padding: 20px 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }
}
.menu a {
  font-size: 18px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1023px) {
  .menu a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .menu a {
    font-size: 24px;
    font-weight: 300;
  }
}
.menu a:hover {
  color: #ae74fb;
}

.visual-area {
  position: relative;
  background: url(../images/visual-bg.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .visual-area {
    background: none;
  }
}

.visual-caption {
  position: relative;
  padding: 245px 0 220px;
}
@media (max-width: 1023px) {
  .visual-caption {
    padding: 180px 0 160px;
  }
}
@media (max-width: 767px) {
  .visual-caption {
    background: url(../images/visual-bg.jpg) no-repeat 80% 50%;
    margin: 0 -24px;
    height: calc(100vh - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 50px 24px;
  }
}
.visual-caption h1 {
  font-size: 56px;
  line-height: 74px;
  font-weight: 300;
  max-width: 850px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .visual-caption h1 {
    font-size: 45px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .visual-caption h1 {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    width: 100%;
    margin: 0 0 50px;
  }
}
.visual-caption .gradient-text {
  font-weight: 600;
}
@media (max-width: 767px) {
  .visual-caption .gradient-text {
    font-size: 38px;
    line-height: 1.3;
    display: block;
  }
}
.visual-caption .btn-wrap {
  display: none;
}
@media (max-width: 767px) {
  .visual-caption .btn-wrap {
    display: block;
    width: 100%;
  }
}

.gradient-text {
  background: -webkit-gradient(linear, left top, right top, from(#fcacc1), color-stop(50%, #c571fa), to(#0a99fb));
  background: linear-gradient(to right, #fcacc1 0%, #c571fa 50%, #0a99fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.visual-info-list {
  position: relative;
  list-style: none;
  margin: 0 -15px;
  padding: 0 0 103px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1023px) {
  .visual-info-list {
    padding: 0 0 80px;
  }
}
@media (max-width: 767px) {
  .visual-info-list {
    display: block;
    background: #0a0a1a;
    padding: 10px 24px;
    margin: 0 -24px;
  }
}
.visual-info-list li {
  position: relative;
  text-align: center;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .visual-info-list li {
    padding: 20px 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .visual-info-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.visual-info-list .title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  display: block;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .visual-info-list .title {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
  }
}
.visual-info-list .text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  display: block;
}
@media (max-width: 767px) {
  .visual-info-list .text {
    font-size: 14px;
  }
}

.heading-area {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  position: relative;
  text-align: center;
  max-width: 630px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .heading-area {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
  }
}
.heading-area h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 1023px) {
  .heading-area h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .heading-area h2 {
    font-size: 24px;
    line-height: 32px;
    padding: 0 0 20px;
    position: relative;
  }
}
.heading-area h2:after {
  width: 200px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: none;
}
@media (max-width: 767px) {
  .heading-area h2:after {
    display: block;
  }
}
.heading-area p {
  margin: 12px 0 0;
}
@media (max-width: 767px) {
  .heading-area p {
    margin-top: 30px;
  }
}

.section-area {
  position: relative;
  padding: 80px 0 0;
  margin: -80px 0 0;
}
@media (max-width: 767px) {
  .section-area {
    padding: 60px 0 0;
    margin: -60px 0 0;
  }
}
.section-area#section04 {
  padding-top: 160px;
  margin-top: -160px;
}

.services-section {
  position: relative;
  padding: 105px 0 185px;
}
@media (max-width: 1023px) {
  .services-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .services-section {
    padding: 25px 0;
  }
}
.services-section:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background: url(../images/pattern01.png) no-repeat;
  background-size: cover;
  height: 1140px;
}

.services-info-block {
  position: relative;
}

.tabset-area {
  position: relative;
  background: #100f2d;
  border-radius: 20px;
  padding: 18px 35px 78px 70px;
}
@media (max-width: 1199px) {
  .tabset-area {
    padding: 18px 35px 78px;
  }
}
@media (max-width: 1023px) {
  .tabset-area {
    padding: 10px 10px 78px;
  }
}
@media (max-width: 767px) {
  .tabset-area {
    display: none;
  }
}

.tabset {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #090919;
}
@media (max-width: 1199px) {
  .tabset {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .tabset {
    font-size: 13px;
  }
}
.tabset li {
  position: relative;
}
.tabset li.active a {
  background: -webkit-gradient(linear, left top, right top, from(#fcadc0), color-stop(50%, #765cc2), to(#0a98fb));
  background: linear-gradient(to right, #fcadc0 0%, #765cc2 50%, #0a98fb 100%);
}
.tabset li.active a:before {
  opacity: 1;
  visibility: visible;
}
.tabset a {
  position: relative;
  display: block;
  height: 48px;
  min-width: 240px;
  text-align: center;
  color: #fff;
  background: #090919;
  border-radius: 35px;
  padding: 4px;
}
@media (max-width: 1199px) {
  .tabset a {
    min-width: 220px;
  }
}
@media (max-width: 1023px) {
  .tabset a {
    min-width: 178px;
    padding: 2px;
    height: 44px;
  }
}
.tabset a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  border-style: solid;
  border-width: 7px 7px 0;
  border-color: #765cc2 transparent transparent;
  opacity: 0;
  visibility: hidden;
  margin: 0 0 0 -7px;
}
.tabset .tab-text {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  padding: 7px 5px;
  background: #090919;
  border-radius: 35px;
}

.tab-content {
  position: relative;
}

.services-detail {
  position: relative;
  padding: 50px 0 0;
}
@media (max-width: 767px) {
  .services-detail {
    text-align: center;
    padding: 30px 0;
  }
}
.services-detail .title {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .services-detail .title {
    display: block;
  }
}
.services-detail .text {
  font-size: 18px;
  line-height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  text-align: center;
  z-index: 2;
}
@media (max-width: 1023px) {
  .services-detail .text {
    font-size: 16px;
    top: -54px;
  }
}
@media (max-width: 767px) {
  .services-detail .text {
    font-size: 14px;
    line-height: 20px;
    position: static;
    display: block;
    margin: 0 0 10px;
  }
}
.services-detail .image-holder {
  position: relative;
  max-width: 745px;
  margin: 0 auto;
}
.services-detail .image-holder img {
  display: block;
  width: 100%;
  height: auto;
}

.classification-info {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.classification-info .image-area {
  position: relative;
}
.classification-info .image-area img {
  display: block;
  width: 100%;
  height: auto;
}
.classification-info .image-wrap {
  position: relative;
}
.classification-info .image-text {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  display: block;
  text-align: center;
  font-weight: 300;
}

.enterprise-section {
  position: relative;
  padding: 60px 0;
  min-height: calc(100vh - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
@media (max-width: 1023px) {
  .enterprise-section {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .enterprise-section {
    padding: 15px 0;
    min-height: inherit;
  }
}

.enterprise-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -7px;
}
@media (max-width: 1199px) {
  .enterprise-row {
    margin: 0 -5px;
  }
}

.enterprise-col {
  position: relative;
  width: 20%;
  padding: 0 7px;
  margin: 0 0 15px;
}
@media (max-width: 1199px) {
  .enterprise-col {
    padding: 0 5px;
    margin: 0 0 10px;
  }
}
@media (max-width: 1023px) {
  .enterprise-col {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .enterprise-col {
    width: 100%;
    margin: 0 0 16px;
  }
}

.enterprise-block {
  background: #100f2b;
  position: relative;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
  padding: 30px 16px;
  height: 100%;
}
@media (max-width: 1199px) {
  .enterprise-block {
    padding: 25px 10px;
  }
}
@media (max-width: 1023px) {
  .enterprise-block {
    background: #191836;
  }
}
@media (max-width: 767px) {
  .enterprise-block {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 16px;
  }
}
.enterprise-block .inner-wrap {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.enterprise-block .icon-holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 62px;
  margin: 0 0 30px;
}
.enterprise-block .icon-holder img {
  display: block;
}
.enterprise-block .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .enterprise-block .title {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .enterprise-block .title {
    font-size: 18px;
  }
}
.enterprise-block p {
  font-weight: 300;
  margin: 0;
}
.enterprise-block:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.bottom-info-text {
  font-size: 18px;
  line-height: 24px;
  position: relative;
  font-weight: 400;
  display: block;
  text-align: center;
  padding: 75px 0 0;
}
@media (max-width: 767px) {
  .bottom-info-text {
    display: none;
  }
}

.contact-section {
  position: relative;
  padding: 20px 0 135px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 20px 0 60px;
  }
}
.contact-section:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background: url(../images/pattern01.png) no-repeat;
  background-size: cover;
  height: 1140px;
}
.contact-section .heading-area {
  max-width: 700px;
}

.w-100 {
  width: 100% !important;
}

.contact-form {
  position: relative;
}

.field-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 -17px;
}

.field-col {
  position: relative;
  padding: 0 17px;
  width: 50%;
  margin: 0 0 26px;
}
@media (max-width: 767px) {
  .field-col {
    width: 100%;
    margin: 0 0 15px;
  }
}

.field-holder {
  position: relative;
}
.field-holder .lbl {
  font-size: 16px;
  line-height: 22px;
  color: #999;
  position: absolute;
  top: 9px;
  left: 8px;
  padding: 3px 5px 5px;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.field-holder .lbl:after {
  background: #100f2d;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  top: 15px;
  z-index: -1;
}
.field-holder.input-focused .lbl {
  top: -15px;
  color: rgba(255, 255, 255, 0.75);
}
.field-holder.input-focused .field,
.field-holder.input-focused .jcf-select .jcf-select-text {
  color: #fff;
}
.field-holder .field {
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  height: 48px;
  font-weight: 400;
  background: #100f2d;
  border: 1px solid #848393;
  padding: 3px 12px 5px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  color: #a2a2a2;
}
.field-holder .field:-moz-placeholder {
  color: #a2a2a2;
  opacity: 1;
}
.field-holder .field::-moz-placeholder {
  color: #a2a2a2;
  opacity: 1;
}
.field-holder .field:-ms-input-placeholder {
  color: #a2a2a2;
}
.field-holder .field::-webkit-input-placeholder {
  color: #a2a2a2;
}
.field-holder .field:focus {
  border-color: #848393;
}
.field-holder .field.input-error {
  border-color: #f00;
}
.field-holder textarea.field {
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
  height: 112px;
}

.submit-btn-holder {
  position: relative;
  padding: 14px 0 0;
}
@media (max-width: 767px) {
  .submit-btn-holder {
    padding: 0;
  }
}
.submit-btn-holder .sub-text {
  font-size: 12px;
  color: #a2a2a2;
}
@media (max-width: 767px) {
  .submit-btn-holder .sub-text {
    display: block;
    margin: 0 0 30px;
  }
}

.submit-btn {
  font-size: 20px;
  line-height: 24px;
  width: 230px;
  height: 48px;
  font-weight: 700;
  border-radius: 8px;
  background: #c26ffb;
  position: relative;
  display: block;
  margin: 0 auto;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 5px 10px;
  border: none;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .submit-btn {
    width: 100%;
  }
}
.submit-btn:hover {
  opacity: 0.9;
}

.success-message {
  font-size: 18px;
  line-height: 26px;
  overflow: hidden;
  text-align: center;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  min-height: 264px;
  border-radius: 20px;
  background: #1c1a42;
  -webkit-box-shadow: inset 0 2px 28px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 2px 28px rgba(255, 255, 255, 0.1);
  display: none;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .success-message {
    padding: 0 20px;
  }
}
.success-message .text,
.success-message .link-wrap {
  width: 100%;
}
.success-message .link-wrap {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .success-message .link-wrap {
    padding-top: 120px;
  }
}
.success-message p {
  margin: 0;
}
.success-message .link {
  font-weight: 500;
  color: #cd84ff;
}

.form-success .field-row,
.form-success .submit-btn-holder {
  display: none;
}
.form-success .success-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subpage-form .heading-area h2 {
  font-weight: 400;
}
@media (max-width: 767px) {
  .subpage-form .heading-area h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .subpage-form .heading-area h2:after {
    display: none;
  }
}
.subpage-form .heading-area p {
  font-weight: 400;
}
@media (max-width: 767px) {
  .subpage-form .heading-area p {
    margin-top: 20px;
  }
}
.subpage-form .contact-section {
  background: url(../images/visual-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 75% 50%;
  padding: 70px 0 90px;
}
@media (max-width: 767px) {
  .subpage-form .contact-section {
    padding: 30px 0;
  }
}
.subpage-form .contact-form {
  padding: 45px 55px;
  width: 100%;
  max-width: 1024px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  min-height: 462px;
  border-radius: 20px;
  background: #1c1a42;
  -webkit-box-shadow: inset 0 2px 28px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 2px 28px rgba(255, 255, 255, 0.1);
}
@media (max-width: 1023px) {
  .subpage-form .contact-form {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .subpage-form .contact-form {
    margin: 0 -8px;
    width: auto;
    min-height: 525px;
    padding: 25px 20px;
    background: rgba(28, 26, 66, 0.6);
  }
}
.subpage-form .success-message {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
}
@media (max-width: 767px) {
  .subpage-form .success-message {
    padding: 0;
  }
}

.footer {
  position: relative;
  padding: 34px 0;
  background: #222052;
  overflow: hidden;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0 35px;
    background: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.footer-holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-logo {
  position: relative;
  display: block;
  width: 185px;
}
@media (max-width: 767px) {
  .f-logo {
    width: 122px;
  }
}
.f-logo a {
  display: block;
}
.f-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.copyright {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  position: relative;
  display: block;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 12px;
    font-weight: 400;
  }
}


input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
  -webkit-box-shadow: 0 0 0 30px #100F2D inset !important;
  -webkit-text-fill-color: white;

}