/*Font Includes*/
@font-face {
  font-family: light_font;
  src: url("../fonts/lufga_light.ttf");
}

@font-face {
  font-family: reg_font;
  src: url("../fonts/lufga_reg.ttf");
}

@font-face {
  font-family: med_font;
  src: url("../fonts/lufga_med.ttf");
}

@font-face {
  font-family: semi_font;
  src: url("../fonts/lufga_semi.ttf");
}

@font-face {
  font-family: bold_font;
  src: url("../fonts/lufga_bold.ttf");
}

/*GLobal Colors*/
/*GLobal Variables*/
/*GLobal Variables*/
/*Functions and Mixin*/
/* Mixin and Function End*/
body {
  /*Common Body Styles Start*/
  font-family: reg_font;
  background-color: white;
  /*Common Elements Style*/
  /*Common Body Responsive Styles Start*/
}

body p,
body .content_ul li {
  color: #000;
  padding: 0;
  margin: 0;
  padding-top: 30px;
  line-height: 1.8em;
}

body p.primary,
body .content_ul li.primary {
  color: #181818;
}

body p.accent,
body .content_ul li.accent {
  color: #000;
}

body p.secondary,
body .content_ul li.secondary {
  color: #000;
}

body p.white,
body .content_ul li.white {
  color: #fff;
}

body p.align_justify,
body .content_ul li.align_justify {
  text-align: justify;
}

body p.align_left,
body .content_ul li.align_left {
  text-align: left;
}

body p.align_right,
body .content_ul li.align_right {
  text-align: right;
}

body p.reg,
body .content_ul li.reg {
  font-family: reg_font;
}

body p.semi,
body .content_ul li.semi {
  font-family: semi_font;
}

body p.bold,
body .content_ul li.bold {
  font-family: bold_font;
}

body p.light,
body .content_ul li.light {
  font-family: light_font;
}

body p.med,
body .content_ul li.med {
  font-family: med_font;
}

body .content_ul ul,
body .content_ul ol {
  padding-top: 30px;
}

body .content_ul li {
  padding-top: 0;
}

body .common_header {
  padding: 0;
  margin: 0;
  padding-top: 30px;
  font-family: semi_font;
  color: #000;
  line-height: 1.2em;
}

body .common_header.primary {
  color: #181818;
}

body .common_header.accent {
  color: #000;
}

body .common_header.secondary {
  color: #000;
}

body .common_header.white {
  color: #fff;
}

body .common_header.reg {
  font-family: reg_font;
}

body .common_header.semi {
  font-family: semi_font;
}

body .common_header.bold {
  font-family: bold_font;
}

body .common_header.light {
  font-family: light_font;
}

body .common_header.med {
  font-family: med_font;
}

body .common_header span {
  font-family: bold_font;
  color: #181818;
}

body .common_header span.primary {
  color: #181818;
}

body .common_header span.accent {
  color: #000;
}

body .common_header span.secondary {
  color: #000;
}

body .common_header span.white {
  color: #fff;
}

body .common_header span.reg {
  font-family: reg_font;
}

body .common_header span.semi {
  font-family: semi_font;
}

body .common_header span.bold {
  font-family: bold_font;
}

body .common_header span.light {
  font-family: light_font;
}

body .common_header span.med {
  font-family: med_font;
}

body .common_anchor {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #181818;
  border-radius: 8px;
}

body .common_anchor:hover {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}

body .common_anchor.secondary {
  background-color: #000;
  color: #000;
}

body .common_anchor.secondary:hover {
  background-color: #000;
  color: #fff;
}

body .gridContainer {
  margin: auto;
  clear: none;
  float: none;
  margin-left: auto;
}

body .table_wrap {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .cell_wrap {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .btn-group {
  display: inline-block;
  margin-top: 30px;
}

body .btn-group button {
  padding: 12px;
  font-family: reg_font;
  background-color: #fff !important;
  background: none;
  border-color: #ccc;
  border-radius: 8px;
}

body .btn-group a:hover {
  background: none;
  background-color: #181818 !important;
  color: #000;
}

body .form_field {
  margin-top: 30px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

body .nav.nav-tabs {
  margin-top: 30px !important;
}

body .nav.nav-tabs li a {
  color: #000;
}

body .nav.nav-tabs li.active a {
  background-color: #181818;
}

body input[type=text] {
  background-color: #fff;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@media only screen and (min-width: 1600px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 16px;
  }
  body .common_header {
    font-size: 40px;
  }
  body .common_header.large {
    font-size: 70px;
  }
  body .gridContainer {
    width: 95.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
  body .gridContainer.vsmall {
    max-width: 800px;
    min-width: 800px;
  }
}

@media only screen and (max-width: 1599px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body .common_header {
    font-size: 35px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 85.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
  body .gridContainer.vsmall {
    max-width: 800px;
    min-width: 800px;
  }
}

@media only screen and (max-width: 1100px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body .common_header {
    font-size: 35px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body .gridContainer.vsmall {
    max-width: 800px;
    min-width: 800px;
  }
}

@media only screen and (max-width: 786px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body .common_header {
    font-size: 35px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body .gridContainer.vsmall {
    max-width: 80%;
    min-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 14px;
  }
  body .nav.nav-tabs li {
    float: none;
    display: inline-block;
  }
  body .nav.nav-tabs {
    white-space: nowrap;
    overflow-x: scroll;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 40px;
  }
  body .gridContainer {
    width: 95.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
  }
  body .gridContainer.vsmall {
    max-width: 95.5%;
    min-width: 95.5%;
  }
  body a.common_anchor {
    font-size: 14px;
  }
}

body .gridContainer.small_test_wrap {
  max-width: 900px;
  min-width: auto;
  width: auto;
  background-color: #fff;
  padding: 30px !important;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
}

.full_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.half_wrap {
  width: 50%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

/*Home starts*/
body {
  background-color: #000;
}

.top_slider_wrap {
  background: url(../images/back_desktop.jpg) center no-repeat;
  background-size: cover;
}

.top_slider_wrap .data_wrap {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.top_slider_wrap img {
  max-width: 70%;
}

.abs_loading_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  z-index: 999;
}

.abs_loading_wrap .title_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
}

.abs_loading_wrap .title_wrap .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  text-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.abs_loading_wrap .title_wrap .common_header {
  padding: 0;
}

.overview_wrap {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  overflow: hidden;
}

.overview_wrap .text_wrap {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.overview_wrap .common_header {
  color: #3b3b3b;
  text-transform: uppercase;
  padding: 0;
  font-size: 185px !important;
}

.break_video_wrap {
  padding-top: 30vh;
  padding-bottom: 30vh;
  margin-bottom: 0;
}

.break_video_wrap .common_header {
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0;
}

.break_video_wrap .image_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/water_bg.jpg) center no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
}

.feature_parent_wrap {
  background: #1d1d1d;
}

.feature_parent_wrap .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.feature_parent_wrap .image_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 50%;
  padding: 60px 80px;
}

.feature_parent_wrap .image_wrap .gradient_wrap {
  background: #1f1f1f;
  background: linear-gradient(16deg, #1f1f1f 0%, #0c0c0c 100%);
  border-radius: 80px;
  overflow: hidden;
  background: #000;
  height: 800px;
}

.feature_parent_wrap .image_wrap .gradient_wrap img, .feature_parent_wrap .image_wrap .gradient_wrap video {
  width: 100%;
  max-width: none;
}

.feature_parent_wrap .data_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  width: 50%;
  padding: 40px;
  background: url("../images/dots_background.png") center center no-repeat;
  background-size: 100% auto;
}

.feature_parent_wrap.right .image_wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.feature_parent_wrap.right .data_wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/*Home ENds*/
.mobile {
  display: none !important;
}

.fullscreen-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prefooter_form_wrap {
  margin: 90px 0;
}

.float_label {
  position: absolute;
  left: 10px;
  top: -10px;
  pointer-events: none;
  z-index: 1;
  background: #000;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
}

body .form_field.transparent {
  background: transparent;
  border: 1px solid #474747;
  color: #fff;
}

#contact_message_wrap,
.error_full_wrap {
  color: #fff;
}

.form_label_parent {
  margin-top: 30px;
}

.form_label_parent .form_field {
  margin-top: 0;
}

/*Responsive Starts*/
@media only screen and (max-width: 1599px) {
  .overview_wrap .text_wrap .common_header {
    font-size: 140px !important;
  }
  .feature_parent_wrap .image_wrap .gradient_wrap {
    height: 600px;
  }
}

@media only screen and (max-width: 1100px) {
  .feature_parent_wrap {
    padding: 30px 0;
  }
  .feature_parent_wrap .parent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .feature_parent_wrap .image_wrap {
    width: 100%;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    padding: 0;
  }
  .feature_parent_wrap .image_wrap .gradient_wrap {
    height: 600px;
  }
  .feature_parent_wrap .data_wrap {
    width: 100%;
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}

@media only screen and (max-width: 480px) {
  .top_slider_wrap .half_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  .overview_wrap .text_wrap .common_header {
    font-size: 55px !important;
  }
  .overview_wrap .image_wrap img {
    width: 200%;
    max-width: none;
    margin-left: -50%;
  }
  .feature_parent_wrap .image_wrap .gradient_wrap {
    height: 400px;
  }
  .feature_parent_wrap .data_wrap {
    padding: 0;
  }
  .mobile {
    display: inline-block !important;
  }
  .desktop {
    display: none !important;
  }
}

/*Responsive Ends*/
.form_field.input_error {
  border-color: #e76161 !important;
}
/*# sourceMappingURL=style.css.map */