
/* ----------------------------------------------------------------
     [ 01 Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  color: #777;
  line-height: 1.7;
  font-weight: 500;
  font-size: 15px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  /*font-family: 'Staatliches', cursive;
  font-family: 'Open Sans', sans-serif;*/
  overflow-x: hidden !important;
}

p {
  /*font-family: 'Open Sans', sans-serif;*/
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  color: #777;
}

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

span, a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.container{
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.header-title{
  font-size: 35px;
  font-family: 'Staatliches', cursive;
  color:#222;
  line-height: 100%;
}
.subheader{
  color:#222;
  font-size: 16px;
  font-weight: bold;
}
.curve {
  position: absolute;
  /*z-index: 7;*/
}
.curve.curve-center:after {
  border-left: 50vw solid transparent;
}
.curve.curve-center:before {
  border-right: 50vw solid transparent;
}
.curve.curve-center.curve-top:after {
  border-left: 50vw solid transparent;
}
.curve.curve-center.curve-top:before {
  border-right: 50vw solid transparent;
}
.curve.curve-bottom {
  left: 0;
  bottom: -1px;
  width: 100%;
}
.curve.curve-bottom:after, .curve.curve-bottom:before {
  bottom: 0;
}
.curve.curve-top {
  left: 0;
  margin-top:-1px;
  /*top: -1px;*/
  width: 100%;
  z-index: -1;
}
.curve.curve-top:after, .curve.curve-top:before {
  top: 0;
  border-top: 50px solid #fff;
  border-bottom: 0;
}
.curve.curve-top:after {
  border-left: 100vw solid transparent;
}
.curve.curve-top:before {
  border-right: 100vw solid transparent;
}
.curve.curve-light-b:before {
  border-bottom: 0px solid #ffffff;
}
.curve.curve-light-b:after {
  border-bottom: 300px solid #ffffff;
}
.curve.curve-light-t:after {
  border-top: 0px solid #ffffff;
}
.curve.curve-light-t:before {
  border-top: 300px solid #ffffff;
  z-index: 0;
}
.curve:after, .curve:before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 50px solid #fff;
  position: absolute;
}
.curve:after {
  right: 0;
  border-left: 100vw solid transparent;
}
.curve:before {
  left: 0;
  border-right: 100vw solid transparent;
}

.section-padding {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 80px;
  text-align: center;
}
.section-head h4 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.section-head h4 span {
  font-weight: 300;
}

[data-overlay-color] .section-head p {
  color: #ccc;
}
[data-overlay-color].process .icon {
  color: #fff !important;
}

.bg-light {
  background: #ffffff;
}

.o-hidden {
  overflow: hidden;
}

.pos-re {
  position: relative;
  padding-top: 10px;
  margin-bottom: 50px;
}

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

.lg-line-height {
  line-height: 1.5;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


.iconheader{
  width: 90px;
  height: 90px;
  line-height: 105px;
  font-size: 50px;
  border-radius: 50%;
  margin-bottom: 0px;
  position: relative;
  background: transparent;
  color: #fff;
  text-align: center;
}

.iconsubheader{
  width: 50px;
  height: 50px;
  line-height: 55px;
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 15px;
  position: relative;

}

.imglose{
  margin:0 auto;
  width: 100%;
  max-width: 500px;

}

.theme_ribbon {
    border-top: 50px solid #605CA7;
    border-bottom: 10px solid #4B4F54;
}
/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 02 Start Buttons ]
-----------------------------------------------------------------*/
.butn {
  font-size: 15px;
  font-weight: 300;
  padding: 9px 30px;
  border-radius: 0px;
  /*border: 1px solid transparent;*/
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
}
.butn span {
  position: relative;
  z-index: 2;
}
.butn:after {
  content: '';
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  z-index: 1;
  opacity: 1;
}
.butn:hover:after {
  width: 100%;
}

.butn-bg {
  background: #137bc8;
  border-color: #137bc8;
  color: #fff;
}
.butn-bg:hover span {
  /*color: #137bc8;*/
}

.butn-light, .butn-bord {
  /*font-family: 'Staatliches', cursive;*/
  text-transform: uppercase;
}
.butn-light:after, .butn-bord:after {
  background: transparent;
}
.butn-light:hover span, .butn-bord:hover span {
  color: #fff !important;
}
.butn-light span, .butn-bord span {
  /*color: #137bc8;*/
  color:#fff;
}

.butn-bord {
  background: transparent !important;
  border-color: #137bc8;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border: 0;
  background: transparent;
  z-index: 9;
  min-height: 50px;
  padding: 10px 0px;
}
.navbar .icon-bar {
  color: #fff;
}
.navbar .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #eee;
  margin: 15px 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar .navbar-nav .active {
  color: #ff7e1c !important;
}

.navbar .whitepaper{
  padding-top: 10px;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  padding: 10px 0px;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.nav-scroll .icon-bar {
  color: #222;
}
.nav-scroll .navbar-nav .nav-link {
  color: #222;
}
.nav-scroll .navbar-nav .logo {
  padding: 15px 0;
  color: #111;
}

.logo {
  width: 180px;
}

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Header ]
-----------------------------------------------------------------*/
/*.header {
  min-height: 100vh;
  position: relative;
  padding-bottom: 100px;
}*/
.header{
  margin:0;
  padding:0;
  /*padding-bottom: 50px;*/
  width: 100vw;
  height: 100vh;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  /*backface-visibility: hidden;*/
  animation:slideBg 30s linear infinite;
  animation-timing-function: ease-in-out;
  background-image: url('../img/slide1.jpg');
}

@keyframes slideBg{
  0%{
    background-image: url('../img/slide1.jpg');
  }
  35%{
    background-image: url('../img/slide2.jpg');
  }
  70%{
    background-image: url('../img/slide3.jpg');
  }
  100%{
    background-image: url('../img/slide1.jpg');
  }
}


.header.video {
  overflow: hidden;
}
.logosymbol{
  width: 100%;
  max-width: 150px;
}
.logotext{
  width: 100%;
  max-width: 750px;
  padding-top: 0px;
  padding-bottom: 10px;
}
.headerbtn-container{
  margin:0 auto;
  text-align: center;
}
.headerbtn{
  border-radius: 0%;
  width: 100px;
  opacity: 1;
  opacity: .3;
  padding-top: 7px;
}
.headerbtn:hover{
  opacity: 1;
}

.header .caption .o-hidden {
  display: inline-block;
}

.header .caption h4 {
  font-size: 70px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 25px;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.header h1 span{
  color:#ff7e1c;
}

.header .caption h1 {
  color:#ff7e1c;
  margin: auto;
  font-size: 45px;
  text-transform: uppercase;
  word-spacing: 2px;
  letter-spacing: 2px;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.header .caption p {
  font-size: 16px;
  font-weight: 300;
  color: #eee;
  word-spacing: 2px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.header .caption p span {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 5px;
  padding-right: 14px;
  position: relative;
}
.header .caption p span:last-child {
  padding: 0;
}
.header .caption p span:last-child:after {
  display: none;
}
.header .caption p span:after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #137bc8;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: .5;
}
.header .caption .butn {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  font-size: 20px;
}

.wave {
  min-height: 105vh;
}
.wave:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100px;
  background-image: url(../img/wave.svg);
  background-size: cover;
  z-index: 7;
}

.bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: .2;
}

.cd-headline.clip .cd-words-wrapper {
  font-size: 35px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ Start Hero ]
-----------------------------------------------------------------*/

.mp_container{
  margin:0 auto;
  width: 100%;
}

.mp_img{
  position:relative;
  width: 100%;
  max-width: 500px;
  padding: 15px;
}
/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start service ]
-----------------------------------------------------------------*/
.servicebox{
  padding: 20px;
  min-height: 170px;
  border-radius: 20px;
  margin-bottom: 10px;
  color: #777;
}
.servicebox img{
  padding-bottom: 10px;
}
.servicebox h5{
  color: #004a80;
}
/* ----------------------------------------------------------------
     [ End service ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start partner ]
-----------------------------------------------------------------*/

.moving-logos-wrapper{
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin:auto;
}

.moving-logos-inner{
  display: inline-block;
  position: relative;
  width: 100%;
  height:100px;
  background: url('../img/partners.png');
  position: relative;
  animation-name: animateBg;
  animation-timing-function: linear;
  animation-duration: 2000s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  max-width: 1200px;
}

@keyframes animateBg {
    100% { background-position:-100000px 0;}
}

@-webkit-keyframes animateBg {
    100% { background-position:-100000px 0;}
}

@-moz-keyframes animateBg {
    100% { background-position:-100000px 0;}
}

@-o-keyframes animateBg {
    100% { background-position:-100000px 0;}
}


/* ----------------------------------------------------------------
     [ End partner ]
-----------------------------------------------------------------*/




/* ----------------------------------------------------------------
     [ Start Contact ]
-----------------------------------------------------------------*/

.inputfield-container{
  position: relative;
  margin:0 auto;
  width: 100%;
  max-width: 600px;
}

.inputfield{
  padding: 30px;
  height: 60px;
  border-radius: 0px;
  background: #f9f9f9;
}
.inputtext{
  padding: 30px;
  width: 100%;
  max-width: 600px;
  background: #f9f9f9;
  border: 1px solid #bbb;
}

select,
input[type="text"],
input[type="tel"],
input[type="email"] {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #bbb;
  text-indent: 0px;
}

select{height: 32px;}
input[type="text"],
input[type="tel"],
input[type="email"] {
  font-size: 17px;
  line-height: 100%
}

select.invalid,
input[type="text"].invalid,
input[type="tel"].invalid,
input[type="email"].invalid {
  border: 1px solid red;
}


input[type=checkbox]
{
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  transform: scale(1.5);
  padding: 7px;
}

.checkboxtext
{
  font-size: 110%;
  display: inline;
}

#checkbox {
  border: 0px;
  float: left;
  margin-right:10px;
}

.contact .butn{
  font-size: 19px;
  text-align: center;
  width: 100%;
  background: #ff7e1c;
  border:none;
  color: #fff;
}

.errortext{
  color: #ffffff;
  background: red;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  display: none;
}
.messagesent{
  color: #ffffff;
  background:green;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  margin-top:10px;
  display: none;
}

/* ==========================================================================
   Placeholders
   ========================================================================== */
::-webkit-input-placeholder {font-weight: normal;color:#777;}
::-moz-placeholder {font-weight: normal;color:#777;}
:-moz-placeholder {font-weight: normal;color:#777;}
input:-moz-placeholder{font-weight: normal;color:#777;}
:-ms-input-placeholder {font-weight: normal;color:#777;}
input:-ms-input-placeholder{font-weight: normal;color:#777;}
input.address:-ms-input-placeholder{font-weight: normal;color:#777;}



/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
   [ Responsive ]
-----------------------------------------------------------------*/
.mb-all50 {
  margin-bottom: 50px;
}

.mb-all30 {
  margin-bottom: 30px;
}

.mb-all0 {
  margin-bottom: 0;
}


@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media screen and (max-width: 991px) {
  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .bgimg-height {
    height: 400px;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }
  .logo{
    width: 130px;
    padding-left:15px;
  }

  .navbar .navbar-collapse {
    overflow: auto;
    background: #111;
    text-align: center;
    padding: 10px 0;
  }

  .navbar .nav-link {
    margin: 10px auto !important;
  }

  .nav-scroll .navbar-toggler {
    margin-right: 15px;
  }
  .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important;
  }
  .nav-scroll .navbar-collapse .active {
    color: #137bc8 !important;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
  .header .caption h4 {
    font-size: 30px;
  }
  .header .caption h1 {
    font-size: 45px;
    line-height: 1.4;
  }

}

@media screen and (max-width: 767px) {
  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }

  .hero .col-sm-2, .hero .col-sm-1{
    width: auto!important;
  }

  .iconheader{
    width: 70px;
    height: 70px;
    line-height: 85px;
    font-size: 40px;
  }
  .logotext{
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .logo-container{
    padding-right: 0px;
  }
  .cd-headline.clip .cd-words-wrapper {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {

}

@media screen and (max-width: 480px) {
  .header .caption h4 {
    font-size: 25px;
    letter-spacing:15px;
  }
  .header .caption h1 {
    font-size: 25px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 1170px) {
  .pos-re {
    position: relative;
    padding-top: 80px;
  }
  p {
    font-size: 15px;
  }
  .header-title{
    font-size: 50px;
  }
  .cd-headline {
    font-size: 6rem;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
  font-weight: 400;
  color: #ff7e1c;
}
