@import url(bootstrap.css);
@import url(fontawesome.css);

    /* 2. reset */
    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 {
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 100%;
      font: inherit;
      vertical-align: baseline;
      box-sizing: border-box;
      }
      
      html, body {
      height: 100%;
      line-height: 170%;
      }
      
      body {
        
      }
      
      article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
      display: block;
      }
      
      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;
      }
      
      *:focus {  
      outline: none;
      }
      
      /* remove dotted outline from links,
      button and input element */
      a:focus,
      a:active,
      button::-moz-focus-inner,
      input[type="reset"]::-moz-focus-inner,
      input[type="button"]::-moz-focus-inner,
      input[type="submit"]::-moz-focus-inner {
      border: 0;
      outline: 0;
      }
      
      /* IE10 scrollbar FIX */
      html {
      -ms-overflow-style: scrollbar;
      }
      
      
      /* 3. layout */
      body {
      font-family: 'Raleway', sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      text-align: left;
      color: #e0e0e0;
      background: #111;
       -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-text-size-adjust: 100%;
         -moz-text-size-adjust: 100%;
          -ms-text-size-adjust: 100%;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      width: 100%;
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      margin: 0;
      padding: 0;
      line-height: 1.5;
      }
      
      /* 3.1. upper page */
      .upper-page {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      left: 0;
      top: 0;
      margin: 0;
      }

          /* 5. center container */
    .center-container {
      position: absolute;
      display: table;
      table-layout: fixed;
      width: 100%;
      height: 100%;
      background: none;
      z-index: 15;
      }
      
      .center-block {
      display: table-cell;
      vertical-align: middle;
      }
      
      .center-container-menu {
      position: relative;
      display: table;
      width: 100%;
      height: 100%;
      }
      
      .center-block-menu {
      display: table-cell;
      vertical-align: middle;
      }

          /* 7. to top arrow */
    .to-top-arrow {
      position: fixed;
      width: 50px!important;
      max-width: 50px;
      height: 50px;
      line-height: 50px;
      left: 0; 
      right: 0;
      bottom: -10px;
      margin-left: auto; 
      margin-right: auto; 
      margin: 0 auto;
      overflow: hidden;
      font-size: 16px;
      text-align: center;
      color: #111;
      background: #fff;
              opacity: 0;
         -moz-opacity: 0;
      -webkit-opacity: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-transform: translateY(40px);
         -moz-transform: translateY(40px);
          -ms-transform: translateY(40px);
           -o-transform: translateY(40px);
              transform: translateY(40px);
      -webkit-transition: all 1.5s ease;
         -moz-transition: all 1.5s ease;
        -ms-transition: all 1.5s ease;
           -o-transition: all 1.5s ease;
              transition: all 1.5s ease;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
          -ms-border-radius: 50%;
           -o-border-radius: 50%;
              border-radius: 50%;
      cursor: pointer;
      z-index: 115;
      }
      
      .to-top-arrow.show {
      bottom: 30px;
      -webkit-transform: translateY(-20px);
         -moz-transform: translateY(-20px);
          -ms-transform: translateY(-20px);
           -o-transform: translateY(-20px);
              transform: translateY(-20px);
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      }
      
      @media only screen and (max-width: 1200px) {
        .to-top-arrow.show {
          bottom: 20px;
        }
      }
      
      @media only screen and (max-width: 880px) {
        .to-top-arrow.show {
          bottom: 10px;
        }
      }
      
      .to-top-arrow:hover {
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      }
      
    /* 8. preloader */
    .preloader-bg,
    #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    z-index: 999999;
    }
    
    #preloader {
    display: table;
    table-layout: fixed;
    }
    
    #preloader-status {
    display: table-cell;
    vertical-align: middle;
    }
    
    .preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
    }
    
    .loader {
    position: relative;
    width: 45px;
    height: 45px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
       -moz-animation: rotate 1s infinite linear;
        -ms-animation: rotate 1s infinite linear;
         -o-animation: rotate 1s infinite linear;
            animation: rotate 1s infinite linear;
    border: 3px solid rgba(255, 255, 255, .15);
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
        -ms-border-radius: 50%;
         -o-border-radius: 50%;
            border-radius: 50%;
    }
    
    .loader span {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -3px;
    left: -3px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, .75);
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
        -ms-border-radius: 50%;
         -o-border-radius: 50%;
            border-radius: 50%;
    }
    
    @-webkit-keyframes rotate {
      0% {
        -webkit-transform: rotate(0deg);
      }
      100% {
        -webkit-transform: rotate(360deg);
      }
    }
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    /* 9. hero */
    .hero-fullscreen {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      overflow: hidden;
      z-index: 2;
      }
      
      .hero-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-position: center center;
      background-repeat: no-repeat;
      -webkit-background-size: cover;
         -moz-background-size: cover;
          -ms-background-size: cover;
           -o-background-size: cover;
              background-size: cover;
      }
      
      .hero-fullscreen-FIX {
      width: 100%;
      height: 100%;
      }
    
          /* 10. link effect */
    a.link-effect {
      position: relative;
      display: inline-block;
      text-decoration: none;
      color: inherit;
      }
      
      a.link-effect::after {
      content: "";
      position: absolute;
      display: block;
      width: 100%;
      height: 1px;
      left: 0;
      bottom: 0;
      padding: 0;
      background-color: #e0e0e0;
      -webkit-transform-origin: left center;
         -moz-transform-origin: left center;
          -ms-transform-origin: left center;
              transform-origin: left center;
      -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
           -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
              transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      a.link-effect:hover::after {
      -webkit-transform-origin: left center;
         -moz-transform-origin: left center;
          -ms-transform-origin: left center;
              transform-origin: left center;
      -webkit-transform: scale(0, 1);
         -moz-transform: scale(0, 1);
          -ms-transform: scale(0, 1);
           -o-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
           -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
              transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      
      /* 11. navigation */
      /* navigation panels overlay */
      .panel-overlay-from-left {
      position: fixed;
      width: 25%;
      height: 100%;
      overflow: hidden;
      top: 0;
      left: -100%;
      background: rgba(0, 0, 0, .7);
      -webkit-transition: all .8s ease-in-out;
         -moz-transition: all .8s ease-in-out;
          -ms-transition: all .8s ease-in-out;
           -o-transition: all .8s ease-in-out;
              transition: all .8s ease-in-out;
              opacity: 0;
         -moz-opacity: 0;
      -webkit-opacity: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      z-index: 200;
      }
      
      .panel-overlay-from-left.open {
      left: 0;
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      }
      
      .panel-overlay-from-right {
      position: fixed;
      width: 75%;
      height: 100%;
      overflow: hidden;
      top: 0;
      right: -100%;
      background: #111;
      -webkit-transition: all .8s ease-in-out;
         -moz-transition: all .8s ease-in-out;
          -ms-transition: all .8s ease-in-out;
           -o-transition: all .8s ease-in-out;
              transition: all .8s ease-in-out;
              opacity: 0;
         -moz-opacity: 0;
      -webkit-opacity: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      z-index: 200;
      }
      
      .panel-overlay-from-right.open {
      right: 0;
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      }
      
      
      /* navigation panels */
      .panel-from-left {
      position: fixed;
      width: 25%;
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      top: 0;
      left: -100%;
      background: rgba(0, 0, 0, .7);
      -webkit-transition: all .8s ease-in-out;
         -moz-transition: all .8s ease-in-out;
          -ms-transition: all .8s ease-in-out;
           -o-transition: all .8s ease-in-out;
              transition: all .8s ease-in-out;
              opacity: 0;
         -moz-opacity: 0;
      -webkit-opacity: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      z-index: 200;
      }
      
      .panel-from-left.open {
      left: 0;
      }
      
      .panel-from-right {
      position: fixed;
      width: 75%;
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      top: 0;
      right: -100%;
      background: #111;
      -webkit-transition: all .8s ease-in-out;
         -moz-transition: all .8s ease-in-out;
          -ms-transition: all .8s ease-in-out;
           -o-transition: all .8s ease-in-out;
              transition: all .8s ease-in-out;
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      z-index: 200;
      }
      
      .panel-from-right.open {
      right: 0;
      }
      
      
      /* navigation icon */
      .round-menu-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background: none;
      z-index: 1001;
      }
      
      .round-menu.direction {
      background: #ceff00;
      top: 50px;
      right: 50px;	
      -webkit-transition: all 1.5s ease;
         -moz-transition: all 1.5s ease;
        -ms-transition: all 1.5s ease;
           -o-transition: all 1.5s ease;
              transition: all 1.5s ease;	
      }
      
      @media only screen and (max-width: 1200px) {
        .round-menu.direction {
          top: 40px;
          right: 40px;
        }
      }
      
      @media only screen and (max-width: 880px) {
        .round-menu.direction {
        top: 30px;
          right: 30px;
        }
      }
      
      .round-menu {
      position: absolute;
      display: block;
      width: 60px;
      height: 60px;
      top: 35px;
      right: 35px;
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      -webkit-transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
              transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
      -webkit-transition-property: color, -webkit-transform;
              transition-property: color, -webkit-transform;
              transition-property: transform, color;
              transition-property: transform, color, -webkit-transform;	
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
          -ms-border-radius: 0;
           -o-border-radius: 0;
              border-radius: 0;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
          -ms-border-radius: 50%;
           -o-border-radius: 50%;
              border-radius: 50%;
      -webkit-transition: all 1s ease;
         -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
           -o-transition: all 1s ease;
              transition: all 1s ease;
      overflow: hidden;
      cursor: pointer;
      z-index: 10;
      }
      
      @media only screen and (max-width: 1200px) {
        .round-menu {
          top: 25px;
          right: 25px;
        }
      }
      
      @media only screen and (max-width: 880px) {
        .round-menu {
          top: 15px;
          right: 15px;
        }
      }
      
      .round-menu::before {
      content: "";
      position: absolute;
      display: block;
      width: 60px;
      height: 60px;
      top: -webkit-calc(50% - 30px);
      top: -moz-calc(50% - 30px);
      top: calc(50% - 30px);
      left: -webkit-calc(50% - 30px);
      left: -moz-calc(50% - 30px);
      left: calc(50% - 30px);
      background: #fff;
              opacity: 0;
         -moz-opacity: 0;
      -webkit-opacity: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
              transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
      -webkit-transition-property: opacity, -webkit-transform;
              transition-property: opacity, -webkit-transform;
              transition-property: transform, opacity;
              transition-property: transform, opacity, -webkit-transform;
      -webkit-transform: scale(0.75);
              transform: scale(0.75);
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
          -ms-border-radius: 50%;
           -o-border-radius: 50%;
              border-radius: 50%;
      z-index: 0;
      }
      
      .round-menu.direction.round-menu::before {
      background: #ceff00;
      }
      
      .round-menu .dot-1,
      .round-menu .dot-2,
      .round-menu .dot-3 {
      position: absolute;
      display: block;
      width: 5px;
      height: 5px;
      top: -webkit-calc(50% - 3px);
      top: -moz-calc(50% - 3px);
      top: calc(50% - 3px);
      left: -webkit-calc(50% - 3px);
      left: -moz-calc(50% - 3px);
      left: calc(50% - 3px);
      background: #ceff00;
      -webkit-transition: -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
              transition: -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
              transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
              transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s, -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
          -ms-border-radius: 50%;
           -o-border-radius: 50%;
              border-radius: 50%;
      z-index: 1;
      }
      
      .round-menu.direction .dot-1,
      .round-menu.direction .dot-2,
      .round-menu.direction .dot-3 {
      background: #111;
      }
      
      .round-menu .dot-1 {
      -webkit-transform: translateX(-12px);
              transform: translateX(-12px);
      }
      
      .round-menu .dot-3 {
      -webkit-transform: translateX(12px);
              transform: translateX(12px);
      }
      
      .round-menu:hover::before {
      -webkit-transform: scale(1);
              transform: scale(1);
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      }
      
      .round-menu:hover .dot-1,
      .round-menu:hover .dot-2,
      .round-menu:hover .dot-3 {
      mix-blend-mode: exclusion;
      background: #fff;
      }
      
      .round-menu:hover .dot-1,
      .round-menu:hover .dot-3 {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      }
      
      
      /* navigation links */
      nav.navigation-menu {
      position: relative;
      width: 100%;
      height: 100%;
      background: none;
      text-align: center;
      margin: 0 auto;
      }
      
      nav.navigation-menu a {
      text-decoration: none;
      -webkit-transition: all 0.5s linear;
         -moz-transition: all 0.5s linear;
          -ms-transition: all 0.5s linear;
           -o-transition: all 0.5s linear;
              transition: all 0.5s linear;
      left: 0;
      right: 0;
      margin-left: -15px;
      margin-right: auto;
      width: auto!important;
      cursor: pointer;
      }
      
      nav.navigation-menu a:hover {
      -webkit-transition: all 0.5s linear;
         -moz-transition: all 0.5s linear;
          -ms-transition: all 0.5s linear;
           -o-transition: all 0.5s linear;
              transition: all 0.5s linear;
              color: #ceff00;
      }
      
      nav.navigation-menu li {
      margin: 0 auto 15px auto;
      }
      
      @media only screen and (max-width: 880px) {
        nav.navigation-menu li {
          margin: 0 auto 10px auto;
        }
      }
      
      nav.navigation-menu li:last-child {
      margin: 0;       
      }
      nav.navigation-menu li:last-child a{
        color:#ceff00;
      }
      nav.navigation-menu li:last-child a:hover{
        color:#fff;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
       -ms-transition: all .3s ease-in-out;
          -o-transition: all .3s ease-in-out;
             transition: all .3s ease-in-out;
       padding:5px 20px;
       background:#ceff00;
      }

      nav.navigation-menu a {
      font-family: 'Montserrat', sans-serif;
      font-size: 45px;
      font-weight: 900;
      font-style: normal;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: -0.04em;
      text-decoration: none;
      color: #fff;
      }
      
      @media all and (min-width: 1920px) {
        nav.navigation-menu a {
        font-size: 75px;
        }
      }
      
      @media only screen and (max-width: 1200px) {
        nav.navigation-menu a {
          font-size: 35px;
        }
      }
      
      @media only screen and (max-width: 995px) {
        nav.navigation-menu a {
          font-size: 25px;
        }
      }
      
      @media only screen and (max-width: 880px) {
        nav.navigation-menu a {
          font-size: 20px;
        }
      }
      
      @supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
        nav.navigation-menu a.active {
          color: transparent;
          -webkit-text-stroke: 1px #fff;
                  text-stroke: 1px #fff;
          text-shadow: none;
        }
      }
      
      
      /* 12. section txt */
      .section-txt p {
      text-align: left;
      }
      
      .section-txt a,
      .section-txt a:hover {
      text-decoration: none;
      font-weight: 600;
      }
      
  
  
.background-video {
         position: fixed;
         background-size: cover;
         -webkit-background-size: cover;
         -moz-background-size: cover;
         -o-background-size: cover;
         width: 100%;
         height:100vh;
       }
       


           /* 19. logo */
    .logo {
      position: absolute;
      display: inline-block;
      top: 50px;
      left: 50px;
      line-height: 0;
              opacity: 1;
         -moz-opacity: 1;
      -webkit-opacity: 1;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-transition: all .3s ease-in-out;
         -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
           -o-transition: all .3s ease-in-out;
              transition: all .3s ease-in-out;
      cursor: pointer;
      z-index: 150;
      }
      
      @media only screen and (max-width: 1200px) {
        .logo {
        top: 40px;
          left: 40px;
        }
      }
      
      @media only screen and (max-width: 880px) {
        .logo {
        top: 30px;
          left: 30px;
        }
      .logo-img img{
        height: auto;
        width: 150px;
      }
      }
      
      .logo-img::before {
      content: "";
      display: block;
      
      line-height: 34px;
      -webkit-transition: all .3s ease-in-out;
         -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
           -o-transition: all .3s ease-in-out;
              transition: all .3s ease-in-out;
      }
      
      ul.nav-wil li:nth-child(1) a{
        -webkit-transition: all .3s ease-in-out;
         -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
           -o-transition: all .3s ease-in-out;
              transition: all .3s ease-in-out;
        float: right;
        z-index: 10;
        right:120px;
        top: 44px;
        font-size:15px;
        padding:8px 15px;
        color:#ceff00;
        border: 2px solid #ceff00;
        text-transform:uppercase;
        font-weight:600;
      }
      ul.nav-wil li:nth-child(1) a:hover{
        background:#ceff00;
        color:#fff;
      }
      @media only screen and (max-width: 880px) {
        ul.nav-wil li:nth-child(1) a{
          right:80px;
          top: 26px;
          padding:5px 10px;
          border: 1px solid #ceff00;
        }
      }



      /* 14. section title */
    .main-title-wrapper {
      position: absolute;
      width: 90%!important;
      top: 50%;
      left: 5%;
      bottom: auto;
      margin: 0;
      
      z-index: 10;
      }
      
      h1.main-title {
      font-family: 'Shapiro 75 Heavy Extd',sans-serif;
      font-style: normal;
      font-weight: 900;
      font-size: 45px;
      text-align: left!important;
      text-transform: uppercase;
      letter-spacing: -0.04em;
      color: #fff;
      margin: -14px auto;
      width: 100%;
      line-height: 1.5;
      position: relative;
      z-index: 3;
      }
      
      h1.cont-title {
        font-family: 'Shapiro 75 Heavy Extd',sans-serif;
        font-style: normal;
        font-weight: 900;
        font-size: 50px;
        text-align: left!important;
        text-transform: uppercase;
        letter-spacing: -0.04em;
        color: #fff;
        margin: -14px auto;
        width: 100%;
        line-height: 1.15;
        position: relative;
        z-index: 3;
        }
        @supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
          .cont-title.cont-title-all span {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
                    text-stroke: 1px #fff;
            text-shadow: none;
          }
        }

      @media all and (min-width: 1920px) {
        h1.main-title {
          font-size: 85px;
        margin: -20px auto;
        }
      }
      
      @media only screen and (max-width: 1200px) {
        h1.main-title {
          font-size: 55px;
        margin: -11px auto;
        }
      }
      
      @media only screen and (max-width: 995px) {
        h1.main-title {
          font-size: 35px;
        margin: -8px auto -6px auto;
        }
      }
      
      @media only screen and (max-width: 880px) {
        h1.main-title {
          font-size: 25px;
        margin: -5px auto -6px auto;
        }
        h1.cont-title {
          font-size: 30px;
          
          }
      }
      
      .main-title.main-title-all {
      color: #fff;
      text-align: center;
      }
      
      .main-title.main-title-all span {
      color: #fff;
      }
      
      @supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
        .main-title.main-title-all span {
          color: transparent;
          -webkit-text-stroke: 1px #fff;
                  text-stroke: 1px #fff;
          text-shadow: none;
        }
      }


/*--------------------------------------------------------------
22. Our clients
--------------------------------------------------------------*/
.client-list {
  	-webkit-box-align: center;
  	    -ms-flex-align: center;
  	        align-items: center;
  	width: 100%;
}

.client-list li {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    text-align: center;
    height: 220px;
}

.client-list li a {
    display: -webkit-box;
    	display: -ms-flexbox;
    		display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid #888888;
    border-right: 1px solid #888888;
    height: 100%;
    -webkit-box-sizing: border-box;
        box-sizing: border-box;
}
      
.client-list li:nth-child(4n) a {
	border-right: none;
}

.client-list li:nth-last-child(1) a,
.client-list li:nth-last-child(2) a,
.client-list li:nth-last-child(3) a,
.client-list li:nth-last-child(4) a {
	border-bottom: none;
}
      
.client-list .brand-box {
    height: 150px;
    width: 150px; 
    position: relative;
}

.hover-opac-img {
	-webkit-transition: .7s cubic-bezier(.17, .85, .438, .99);
		-o-transition: .7s cubic-bezier(.17, .85, .438, .99);
			transition: .7s cubic-bezier(.17, .85, .438, .99);
}

.opac-img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: .7s cubic-bezier(.17, .85, .438, .99);
		-o-transition: .7s cubic-bezier(.17, .85, .438, .99);
			transition: .7s cubic-bezier(.17, .85, .438, .99);
}

.client-list li:hover .opac-img {
	opacity: 1;
}

.client-list li:hover .hover-opac-img {
	opacity: 0;
}

.empty-spot {
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
}

.empty-spot:before,
.empty-spot:after {
	content: '';
	width: 1px;
	height: calc(100% - 40px);
	background: #ceff00;
	position: absolute;
	right: 20px;
	bottom: 20px;
	-webkit-transform: scaleY(.4) scaleX(1);
	    -ms-transform: scaleY(.4) scaleX(1);
	        transform: scaleY(.4) scaleX(1);
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
	-webkit-transition: .5s cubic-bezier(.858, .01, .068, .99);
		-o-transition: .5s cubic-bezier(.858, .01, .068, .99);
			transition: .5s cubic-bezier(.858, .01, .068, .99);
}

.empty-spot:after {
	width: calc(100% - 40px);
	height: 1px;
	-webkit-transform: scaleY(1) scaleX(.4);
	    -ms-transform: scaleY(1) scaleX(.4);
	        transform: scaleY(1) scaleX(.4);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
}

.empty-spot-box {
	position: relative;
}
.empty-spot-box a:hover{
  color: #ceff00;
}

.empty-spot-box:before,
.empty-spot-box:after {
	content: '';
	width: 1px;
	height: calc(100% - 40px);
	background: #ceff00;
	position: absolute;
	left: 20px;
	top: 20px;
	-webkit-transform: scaleY(.4) scaleX(1);
	    -ms-transform: scaleY(.4) scaleX(1);
	        transform: scaleY(.4) scaleX(1);
	-webkit-transform-origin: top;
	    -ms-transform-origin: top;
	        transform-origin: top;
	-webkit-transition: .5s cubic-bezier(.858, .01, .068, .99);
		-o-transition: .5s cubic-bezier(.858, .01, .068, .99);
			transition: .5s cubic-bezier(.858, .01, .068, .99);
}

.empty-spot-box:after {
	width: calc(100% - 40px);
	height: 1px;
	-webkit-transform: scaleY(1) scaleX(.4);
	    -ms-transform: scaleY(1) scaleX(.4);
	        transform: scaleY(1) scaleX(.4);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}

.empty-spot-box:hover:before,
.empty-spot-box:hover:after,
.client-list li:hover .empty-spot:before,
.client-list li:hover .empty-spot:after {
	-webkit-transform: scaleX(1) scaleY(1);
	    -ms-transform: scaleX(1) scaleY(1);
	        transform: scaleX(1) scaleY(1);
}

@media only screen and (max-width: 999px) {
	
	.client-list li {
	    height: 190px;
	}
	
}


@media only screen and (max-width: 767px) {
	
	.client-list li {
	    -ms-flex-preferred-size: 50%;
	        flex-basis: 50%;
	}
	
	.client-list li:nth-child(2n) a {
		border-right: none;
	}
	
	.client-list li:nth-last-child(3) a,
	.client-list li:nth-last-child(4) a {
		border-bottom: 1px solid #888888;
	}
  

}

@media only screen and (max-width: 549px) {
		
	.client-list .brand-box {
        height: 120px;
        width: 120px;
    }

    .client-list .brand-box img{
      width: 120px;
      height: auto;
    }
    
    .client-list li {
	    height: 170px;
	}
		
}


/* 6.1. Bg colors */

.dark-bg-1 {
	background: #000;
}

.dark-bg-2 {
	background: #111;
}


/* 1.1. Helpers */
.rel-pos {
	position: relative;
}

.d-block {
	display: block;
}

.d-flex {
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
}

.d-flex-wrap {
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}

.flex-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.top-bottom-padding-120 {
	padding-top: 120px;
	padding-bottom: 120px;
}

.top-padding-120 {
	padding-top: 120px;
}

.bottom-padding-120 {
	padding-bottom: 120px;
}

.top-bottom-padding-90 {
	padding-top: 90px;
	padding-bottom: 90px;
}

.top-padding-90 {
	padding-top: 90px;
}

.bottom-padding-90 {
	padding-bottom: 90px;
}

.top-bottom-padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.top-padding-60 {
	padding-top: 60px;
}

.bottom-padding-60 {
	padding-bottom: 60px;
}

.top-bottom-padding-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.top-padding-50 {
	padding-top: 50px;
}

.bottom-padding-50 {
	padding-bottom: 50px;
}

.top-bottom-padding-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.top-padding-40 {
	padding-top: 40px;
}

.bottom-padding-40 {
	padding-bottom: 40px;
}

.top-bottom-padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.top-padding-30 {
	padding-top: 30px;
}

.bottom-padding-30 {
	padding-bottom: 30px;
}

.top-bottom-padding-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.top-padding-20 {
	padding-top: 20px;
}

.bottom-padding-20 {
	padding-bottom: 20px;
}

.top-bottom-padding-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.top-padding-15 {
	padding-top: 15px;
}

.bottom-padding-15 {
	padding-bottom: 15px;
}

.top-bottom-padding-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.top-padding-10 {
	padding-top: 10px;
}

.bottom-padding-10 {
	padding-bottom: 10px;
}

.top-bottom-padding-5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.top-padding-5 {
	padding-top: 5px;
}

.bottom-padding-5 {
	padding-bottom: 5px;
}

.top-bottom-margin-30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.bottom-margin-30 {
	margin-bottom: 30px;
}

.top-margin-30 {
	margin-top: 30px;
}

.top-bottom-margin-25 {
	margin-top: 25px;
	margin-bottom: 25px;
}

.bottom-margin-25 {
	margin-bottom: 25px;
}

.top-margin-25 {
	margin-top: 25px;
}

.top-bottom-margin-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.bottom-margin-20 {
	margin-bottom: 20px;
}

.top-margin-20 {
	margin-top: 20px;
}

.top-bottom-margin-15 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.bottom-margin-15 {
	margin-bottom: 15px;
}

.top-margin-15 {
	margin-top: 15px;
}

.top-bottom-margin-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.bottom-margin-10 {
	margin-bottom: 10px;
}

.top-margin-10 {
	margin-top: 10px;
}

.top-bottom-margin-5 {
	margin-top: 5px;
	margin-bottom: 5px;
}

.bottom-margin-5 {
	margin-bottom: 5px;
}

.top-margin-5 {
	margin-top: 5px;
}

.content-left-right-margin-50 {
	margin-left: 50px;
	margin-right: 50px;
}

.content-right-margin-50 {
	margin-right: 50px;
}

.content-left-margin-50 {
	margin-left: 50px;
}

.content-left-right-margin-45 {
	margin-left: 45px;
	margin-right: 45px;
}

.content-right-margin-45 {
	margin-right: 45px;
}

.content-left-margin-45 {
	margin-left: 45px;
}

.content-left-right-margin-40 {
	margin-left: 40px;
	margin-right: 40px;
}

.content-right-margin-40 {
	margin-right: 40px;
}

.content-left-margin-40 {
	margin-left: 40px;
}

.content-left-right-margin-35 {
	margin-left: 35px;
	margin-right: 35px;
}

.content-right-margin-35 {
	margin-right: 35px;
}

.content-left-margin-35 {
	margin-left: 35px;
}

.content-left-right-margin-30 {
	margin-left: 30px;
	margin-right: 30px;
}

.content-right-margin-30 {
	margin-right: 30px;
}

.content-left-margin-30 {
	margin-left: 30px;
}

.content-left-right-margin-25 {
	margin-left: 25px;
	margin-right: 25px;
}

.content-right-margin-25 {
	margin-right: 25px;
}

.content-left-margin-25 {
	margin-left: 25px;
}

.content-left-right-margin-20 {
	margin-left: 20px;
	margin-right: 20px;
}

.content-right-margin-20 {
	margin-right: 20px;
}

.content-left-margin-20 {
	margin-left: 20px;
}

.content-left-right-margin-15 {
	margin-left: 15px;
	margin-right: 15px;
}

.content-right-margin-15 {
	margin-right: 15px;
}

.content-left-margin-15 {
	margin-left: 15px;
}

.content-left-right-margin-10 {
	margin-left: 10px;
	margin-right: 10px;
}

.content-right-margin-10 {
	margin-right: 10px;
}

.content-left-margin-10 {
	margin-left: 10px;
}

.content-left-right-margin-5 {
	margin-left: 5px;
	margin-right: 5px;
}

.content-right-margin-5 {
	margin-right: 5px;
}

.content-left-margin-5 {
	margin-left: 5px;
}

.content-padding-l-r-20 {
	padding-left: 20px;
	padding-right: 20px;
}

.content-padding-bottom-20 {
	padding-bottom: 20px;
}

@media only screen and (max-width: 999px) {
	
	.response-999 .content-left-right-margin-50,
	.response-999 .content-left-right-margin-45,
	.response-999 .content-left-right-margin-40,
	.response-999 .content-left-right-margin-35,
	.response-999 .content-left-right-margin-30,
	.response-999 .content-left-right-margin-25,
	.response-999 .content-left-right-margin-20,
	.response-999 .content-left-right-margin-15,
	.response-999 .content-left-right-margin-10,
	.response-999 .content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
	
	.response-999 .content-right-margin-50,
	.response-999 .content-right-margin-45,
	.response-999 .content-right-margin-40,
	.response-999 .content-right-margin-35,
	.response-999 .content-right-margin-30,
	.response-999 .content-right-margin-25,
	.response-999 .content-right-margin-20,
	.response-999 .content-right-margin-15,
	.response-999 .content-right-margin-10,
	.response-999 .content-right-margin-5 {
		margin-right: 0;
	}
	
	.response-999 .content-left-margin-50,
	.response-999 .content-left-margin-45,
	.response-999 .content-left-margin-40,
	.response-999 .content-left-margin-35,
	.response-999 .content-left-margin-30,
	.response-999 .content-left-margin-25,
	.response-999 .content-left-margin-20,
	.response-999 .content-left-margin-15,
	.response-999 .content-left-margin-10,
	.response-999 .content-left-margin-5 {
		margin-left: 0;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.content-left-right-margin-50,
	.content-left-right-margin-45,
	.content-left-right-margin-40,
	.content-left-right-margin-35,
	.content-left-right-margin-30,
	.content-left-right-margin-25,
	.content-left-right-margin-20,
	.content-left-right-margin-15,
	.content-left-right-margin-10,
	.content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
	
	.content-right-margin-50,
	.content-right-margin-45,
	.content-right-margin-40,
	.content-right-margin-35,
	.content-right-margin-30,
	.content-right-margin-25,
	.content-right-margin-20,
	.content-right-margin-15,
	.content-right-margin-10,
	.content-right-margin-5 {
		margin-right: 0;
	}
	
	.content-left-margin-50,
	.content-left-margin-45,
	.content-left-margin-40,
	.content-left-margin-35,
	.content-left-margin-30,
	.content-left-margin-25,
	.content-left-margin-20,
	.content-left-margin-15,
	.content-left-margin-10,
	.content-left-margin-5 {
		margin-left: 0;
	}
	
	.response-549 .content-left-right-margin-50 {
		margin-left: 50px;
		margin-right: 50px;
	}
	
	.response-549 .content-right-margin-50 {
		margin-right: 50px;
	}
	
	.response-549 .content-left-margin-50 {
		margin-left: 50px;
	}
	
	.response-549 .content-left-right-margin-45 {
		margin-left: 45px;
		margin-right: 45px;
	}
	
	.response-549 .content-right-margin-45 {
		margin-right: 45px;
	}
	
	.response-549 .content-left-margin-45 {
		margin-left: 45px;
	}
	
	.response-549 .content-left-right-margin-40 {
		margin-left: 40px;
		margin-right: 40px;
	}
	
	.response-549 .content-right-margin-40 {
		margin-right: 40px;
	}
	
	.response-549 .content-left-margin-40 {
		margin-left: 40px;
	}
	
	.response-549 .content-left-right-margin-35 {
		margin-left: 35px;
		margin-right: 35px;
	}
	
	.response-549 .content-right-margin-35 {
		margin-right: 35px;
	}
	
	.response-549 .content-left-margin-35 {
		margin-left: 35px;
	}
	
	.response-549 .content-left-right-margin-30 {
		margin-left: 30px;
		margin-right: 30px;
	}
	
	.response-549 .content-right-margin-30 {
		margin-right: 30px;
	}
	
	.response-549 .content-left-margin-30 {
		margin-left: 30px;
	}
	
	.response-549 .content-left-right-margin-25 {
		margin-left: 25px;
		margin-right: 25px;
	}
	
	.response-549 .content-right-margin-25 {
		margin-right: 25px;
	}
	
	.response-549 .content-left-margin-25 {
		margin-left: 25px;
	}
	
	.response-549 .content-left-right-margin-20 {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.response-549 .content-right-margin-20 {
		margin-right: 20px;
	}
	
	.response-549 .content-left-margin-20 {
		margin-left: 20px;
	}
	
	.response-549 .content-left-right-margin-15 {
		margin-left: 15px;
		margin-right: 15px;
	}
	
	.response-549 .content-right-margin-15 {
		margin-right: 15px;
	}
	
	.response-549 .content-left-margin-15 {
		margin-left: 15px;
	}
	
	.response-549 .content-left-right-margin-10 {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.response-549 .content-right-margin-10 {
		margin-right: 10px;
	}
	
	.response-549 .content-left-margin-10 {
		margin-left: 10px;
	}
	
	.response-549 .content-left-right-margin-5 {
		margin-left: 5px;
		margin-right: 5px;
	}
	
	.response-549 .content-right-margin-5 {
		margin-right: 5px;
	}
	
	.response-549 .content-left-margin-5 {
		margin-left: 5px;
	}
	
}

@media only screen and (max-width: 549px) {

	.response-549 .content-left-right-margin-50,
	.response-549 .content-left-right-margin-45,
	.response-549 .content-left-right-margin-40,
	.response-549 .content-left-right-margin-35,
	.response-549 .content-left-right-margin-30,
	.response-549 .content-left-right-margin-25,
	.response-549 .content-left-right-margin-20,
	.response-549 .content-left-right-margin-15,
	.response-549 .content-left-right-margin-10,
	.response-549 .content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
	
	.response-549 .content-right-margin-50,
	.response-549 .content-right-margin-45,
	.response-549 .content-right-margin-40,
	.response-549 .content-right-margin-35,
	.response-549 .content-right-margin-30,
	.response-549 .content-right-margin-25,
	.response-549 .content-right-margin-20,
	.response-549 .content-right-margin-15,
	.response-549 .content-right-margin-10,
	.response-549 .content-right-margin-5 {
		margin-right: 0;
	}
	
	.response-549 .content-left-margin-50,
	.response-549 .content-left-margin-45,
	.response-549 .content-left-margin-40,
	.response-549 .content-left-margin-35,
	.response-549 .content-left-margin-30,
	.response-549 .content-left-margin-25,
	.response-549 .content-left-margin-20,
	.response-549 .content-left-margin-15,
	.response-549 .content-left-margin-10,
	.response-549 .content-left-margin-5 {
		margin-left: 0;
	}
	
	.content-padding-l-r-20 {
		padding-left: 10px;
		padding-right: 10px;
	}
	
}

/* 1.2. Custom grid */
.container {
	max-width: 1350px;
	width: calc(100% - 80px);
	margin-left: auto;
	margin-right: auto;
	height: auto;
	position: relative;
}

.container.full {
	max-width: 100%;
}

.container.small {
	max-width: 960px;
}

.flex-container {
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}

.flex-container.reverse {
	-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
	    	-ms-flex-flow: wrap-reverse;
	        	flex-flow: wrap-reverse;
}

.one-column,
.two-columns,
.three-columns,
.four-columns,
.five-columns,
.six-columns,
.seven-columns,
.eight-columns,
.nine-columns,
.ten-columns,
.eleven-columns,
.twelve-columns {
	-webkit-box-sizing: border-box;
	    box-sizing: border-box;
	position: relative;
	z-index: 1;    
}

.one-column {
	-ms-flex-preferred-size: 8.33%;
	    flex-basis: 8.33%;
}

.two-columns {
	-ms-flex-preferred-size: 16.66%;
	    flex-basis: 16.66%;
}

.three-columns {
	-ms-flex-preferred-size: 25%;
	    flex-basis: 25%;
}

.four-columns {
	-ms-flex-preferred-size: 33.33%;
	    flex-basis: 33.33%;
}

.five-columns {
	-ms-flex-preferred-size: 41.66%;
	    flex-basis: 41.66%;
}

.six-columns {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}

.seven-columns {
	-ms-flex-preferred-size: 58.33%;
	    flex-basis: 58.33%;
}

.eight-columns {
	-ms-flex-preferred-size: 66.66%;
	    flex-basis: 66.66%;
}

.nine-columns {
	-ms-flex-preferred-size: 75%;
	    flex-basis: 75%;
}

.ten-columns {
	-ms-flex-preferred-size: 83.33%;
	    flex-basis: 83.33%;
}

.eleven-columns {
	-ms-flex-preferred-size: 91.66%;
	    flex-basis: 91.66%;
}

.twelve-columns {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
}

.one-offset {
	margin-left: 8.33%;
}

.two-offset {
	margin-left: 16.66%;
}

.three-offset {
	margin-left: 25%;
}

.four-offset {
	margin-left: 33.33%;
}

.five-offset {
	margin-left: 41.66%;
}

.six-offset {
	margin-left: 50%;
}

.seven-offset {
	margin-left: 58.33%;
}

.eight-offset {
	margin-left: 66.66%;
}

.nine-offset {
	margin-left: 75%;
}

.ten-offset {
	margin-left: 83.33%;
}

.eleven-offset {
	margin-left: 91.66%;
}

@media only screen and (max-width: 999px) {
	
	.container {
		width: calc(100% - 40px);
	}
	
	.response-999 .one-column,
	.response-999 .two-columns,
	.response-999 .three-columns,
	.response-999 .four-columns,
	.response-999 .five-columns,
	.response-999 .six-columns,
	.response-999 .seven-columns,
	.response-999 .eight-columns,
	.response-999 .nine-columns,
	.response-999 .ten-columns,
	.response-999 .eleven-columns,
	.response-999 .twelve-columns {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.response-999 .one-offset,
	.response-999 .two-offset,
	.response-999 .three-offset,
	.response-999 .four-offset,
	.response-999 .five-offset,
	.response-999 .six-offset,
	.response-999 .seven-offset,
	.response-999 .eight-offset,
	.response-999 .nine-offset,
	.response-999 .ten-offset,
	.response-999 .eleven-offset {
		margin-left: 0;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.one-column,
	.two-columns,
	.three-columns,
	.four-columns,
	.five-columns,
	.six-columns,
	.seven-columns,
	.eight-columns,
	.nine-columns,
	.ten-columns,
	.eleven-columns,
	.twelve-columns {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.one-offset,
	.two-offset,
	.three-offset,
	.four-offset,
	.five-offset,
	.six-offset,
	.seven-offset,
	.eight-offset,
	.nine-offset,
	.ten-offset,
	.eleven-offset {
		margin-left: 0;
	}
	
	.response-549 .one-column {
		-ms-flex-preferred-size: 8.33%;
		    flex-basis: 8.33%;
	}
	
	.response-549 .two-columns {
		-ms-flex-preferred-size: 16.66%;
		    flex-basis: 16.66%;
	}
	
	.response-549 .three-columns {
		-ms-flex-preferred-size: 25%;
		    flex-basis: 25%;
	}
	
	.response-549 .four-columns {
		-ms-flex-preferred-size: 33.33%;
		    flex-basis: 33.33%;
	}
	
	.response-549 .five-columns {
		-ms-flex-preferred-size: 41.66%;
		    flex-basis: 41.66%;
	}
	
	.response-549 .six-columns {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
	}
	
	.response-549 .seven-columns {
		-ms-flex-preferred-size: 58.33%;
		    flex-basis: 58.33%;
	}
	
	.response-549 .eight-columns {
		-ms-flex-preferred-size: 66.66%;
		    flex-basis: 66.66%;
	}
	
	.response-549 .nine-columns {
		-ms-flex-preferred-size: 75%;
		    flex-basis: 75%;
	}
	
	.response-549 .ten-columns {
		-ms-flex-preferred-size: 83.33%;
		    flex-basis: 83.33%;
	}
	
	.response-549 .eleven-columns {
		-ms-flex-preferred-size: 91.66%;
		    flex-basis: 91.66%;
	}
	
	.response-549 .twelve-columns {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.response-549 .one-offset {
		margin-left: 8.33%;
	}
	
	.response-549 .two-offset {
		margin-left: 16.66%;
	}
	
	.response-549 .three-offset {
		margin-left: 25%;
	}
	
	.response-549 .four-offset {
		margin-left: 33.33%;
	}
	
	.response-549 .five-offset {
		margin-left: 41.66%;
	}
	
	.response-549 .six-offset {
		margin-left: 50%;
	}
	
	.response-549 .seven-offset {
		margin-left: 58.33%;
	}
	
	.response-549 .eight-offset {
		margin-left: 66.66%;
	}
	
	.response-549 .nine-offset {
		margin-left: 75%;
	}
	
	.response-549 .ten-offset {
		margin-left: 83.33%;
	}
	
	.response-549 .eleven-offset {
		margin-left: 91.66%;
	}
	
}

@media only screen and (max-width: 549px) {
	
	.container {
		width: calc(100% - 20px);
	}
	
	.response-549 .one-column,
	.response-549 .two-columns,
	.response-549 .three-columns,
	.response-549 .four-columns,
	.response-549 .five-columns,
	.response-549 .six-columns,
	.response-549 .seven-columns,
	.response-549 .eight-columns,
	.response-549 .nine-columns,
	.response-549 .ten-columns,
	.response-549 .eleven-columns,
	.response-549 .twelve-columns {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.response-549 .one-offset,
	.response-549 .two-offset,
	.response-549 .three-offset,
	.response-549 .four-offset,
	.response-549 .five-offset,
	.response-549 .six-offset,
	.response-549 .seven-offset,
	.response-549 .eight-offset,
	.response-549 .nine-offset,
	.response-549 .ten-offset,
	.response-549 .eleven-offset {
		margin-left: 0;
	}
	
}

/*--------------------------------------------------------------
7. Typography
--------------------------------------------------------------*/
.italic-text {
  font-style: italic; 
}

.text-center {
text-align: center;
}

.text-right {
text-align: right;
}

.text-justify {
text-align: justify;
}

.text-up {
text-transform: uppercase;
}

.bold700-text {
font-weight: 700 !important;
}

.bold600-text {
font-weight: 600 !important;
}

.medium-text {
font-weight: 500 !important;
}

.regular-text {
font-weight: 400 !important;
}

.light-text {
font-weight: 300 !important;
}

.open-sans-text {
font-family: 'Open Sans', sans-serif !important;
}

.oswald-text {
font-family: 'Oswald', sans-serif !important;
}

.text-trans-none {
text-transform: none !important;
}

.text-spacing1 {
letter-spacing: 1px !important;
}

.text-spacing2 {
letter-spacing: 2px !important;
}

.text-spacing3 {
letter-spacing: 3px !important;
}

.text-spacing4 {
letter-spacing: 4px !important;
}

.text-spacing5 {
letter-spacing: 5px !important;
}

.text-spacing0 {
letter-spacing: 0px !important;
}

.text-spacing-1 {
letter-spacing: -1px !important;
}

.text-spacing-2 {
letter-spacing: -2px !important;
}

.text-height-05 {
line-height: .5 !important;
}

.text-height-06 {
line-height: .6 !important;
}

.text-height-07 {
line-height: .7 !important;
}

.text-height-08 {
line-height: .8 !important;
}

.text-height-09 {
line-height: .9 !important;
}

.text-height-10 {
line-height: 1 !important;
}

.text-height-11 {
line-height: 1.1 !important;
}

.text-height-12 {
line-height: 1.2 !important;
}

.text-height-13 {
line-height: 1.3 !important;
}

.text-height-14 {
line-height: 1.4 !important;
}

.text-height-15 {
line-height: 1.5 !important;
}

.text-height-16 {
line-height: 1.6 !important;
}

.text-height-17 {
line-height: 1.7 !important;
}

.text-height-18 {
line-height: 1.8 !important;
}

.text-height-19 {
line-height: 1.9 !important;
}

.text-height-20 {
line-height: 2 !important;
}

.title-style {
text-transform: uppercase;
font-weight: 500;
letter-spacing: 2px;
font-family: 'Oswald', sans-serif;
line-height: 1;
font-size: 30px;
}

.small-title {
text-transform: uppercase;
font-size: 14px;
line-height: 1.4;
font-weight: 600;
letter-spacing: 0px;
font-family: 'Open Sans', sans-serif;
}

.small-title-oswald {
text-transform: uppercase;
font-size: 14px;
line-height: 1.4;
font-weight: 600;
letter-spacing: 0px;
font-family: 'Oswald', sans-serif;
}

.xsmall-title-oswald {
text-transform: uppercase;
font-size: 12px;
line-height: 1.4;
font-weight: 600;
letter-spacing: 1px;
font-family: 'Oswald', sans-serif;
}

.medium-title {
text-transform: uppercase;
font-size: 45px;
line-height: 1.13;
font-weight: 500;
letter-spacing: 3px;
font-family: 'Oswald', sans-serif;
}

.large-title {
text-transform: uppercase;
font-size: 65px;
line-height: 1;
font-weight: 600;
letter-spacing: -2px;
font-family: 'Oswald', sans-serif;
}

.large-title-bold {
text-transform: uppercase;
font-size: 65px;
line-height: 1;
font-weight: 700;
letter-spacing: -2px;
font-family: 'Oswald', sans-serif;
}

.xlarge-title {
text-transform: uppercase;
font-size: 75px;
line-height: 1;
font-weight: 700;
letter-spacing: -2px;
font-family: 'Oswald', sans-serif;
}

.xxlarge-title {
text-transform: uppercase;
font-size: 100px;
line-height: 1;
font-weight: 700;
letter-spacing: -2px;
font-family: 'Oswald', sans-serif;
}

.p-style-xsmall {
font-size: 13px;
line-height: 2.35;
font-weight: 300;
letter-spacing: 0px;
font-family: 'Open Sans', sans-serif;
}

.p-style-small {
font-size: 14px;
line-height: 2.15;
font-weight: 400;
letter-spacing: 1px;
font-family: 'Open Sans', sans-serif;
}

.p-style-medium {
font-size: 16px;
line-height: 1.8;
font-weight: 600;
letter-spacing: 0px;
font-family: 'Open Sans', sans-serif;
}

.p-style-large {
font-size: 18px;
line-height: 1.8;
font-weight: 400;
letter-spacing: 0px;
font-family: 'Open Sans', sans-serif;
}

.p-style-bold {
font-size: 20px;
line-height: 1.6;
font-weight: 600;
letter-spacing: 1px;
font-family: 'Oswald', sans-serif;
}

.p-style-bold-up {
text-transform: uppercase;
font-size: 14px;
line-height: 1.5;
font-weight: 700;
letter-spacing: 1px;
font-family: 'Open Sans', sans-serif;
}

.p-letter-style {
text-transform: uppercase;
font-size: 10px;
line-height: 1;
font-weight: 400;
letter-spacing: 5px;
font-family: 'Oswald', sans-serif;
}

@media only screen and (max-width: 1199px) {

.title-style {
  font-size: 28px;
}

.medium-title {
  font-size: 38px;
}

.large-title,
.large-title-bold {
  font-size: 55px;
}

.xlarge-title {
  font-size: 65px;
}

.xxlarge-title {
  font-size: 85px;
}

}

@media only screen and (max-width: 999px) {

.title-style {
  font-size: 26px; 
}

.medium-title {
  font-size: 35px;
}

.large-title,
.large-title-bold {
  font-size: 50px;
}

.xlarge-title {
  font-size: 55px;
}

.xxlarge-title {
  font-size: 70px;
}

.p-style-bold {
  font-size: 18px;
}

.p-style-bold-up {
  font-size: 13px;
}
  
}

@media only screen and (max-width: 767px) {

.title-style {
  font-size: 25px;
}

.small-title-oswald {
  font-size: 13px;
}

.xsmall-title-oswald {
  font-size: 11px;
}

.medium-title {
  font-size: 30px;
}

   .large-title,
   .large-title-bold {
  font-size: 40px;
}

.xlarge-title {
  font-size: 45px;
}

.xxlarge-title {
  font-size: 50px;
}

.p-style-large {
  font-size: 16px;
}

.p-style-medium {
  font-size: 15px;
}

.p-style-bold {
  font-size: 16px;
}

.p-style-bold-up {
  font-size: 12px;
}
  
}

@media only screen and (max-width: 549px) {

.title-style {
  font-size: 23px;
}

.small-title-oswald {
  font-size: 12px;
}

.xsmall-title-oswald {
  font-size: 10px;
}

.medium-title {
  font-size: 25px;
}

   .large-title,
   .large-title-bold {
  font-size: 35px;
}

.xlarge-title {
  font-size: 38px;
}

.xxlarge-title {
  font-size: 42px;
}

.p-style-medium {
  font-size: 14px;
}

.p-style-large {
  font-size: 15px;
}

.p-style-bold {
  font-size: 14px;
}
    
}


@media only screen and (max-width: 549px) {
	
	.container {
		width: calc(100% - 20px);
	}
		
}


/* Video */

section.video {
  padding: 90px 0px;  
}

section.video .left-content {
color: #fff;
}

section.video .left-content span {
text-transform: uppercase;
font-size: 14px;
letter-spacing: 0.5px;
}

section.video .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}

section.video .left-content p {
  margin-top: 30px;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 30px;
}

section.video .left-content h4 em {
  font-style: normal;
  color: #ceff00;
}

section.video .left-content .main-button {
margin-top: 30px;
}

.video-item {
position: relative;
width: 100%;
max-width: 600px;
margin: 0 auto ;
}

@media screen and (max-width: 767px) {

section.video .left-content {
  margin-bottom: 45px;
}

section.video .first-item .first-content h4,
section.video .second-item .second-content h4 {
  text-align: center;
}

}

.video-item figure {
position: relative;
width: 100%;
font-size: 0;
}
.video-item figure img {
width: 100%;
}
.video-item figure a:before {
content: '';
position: absolute;
bottom: 10px;
right: 15px;
width: 60px;
height: 60px;
margin-top: -32.5px;
margin-left: -32.5px;
border-radius: 50%;
background-color: #ceff00;
z-index: 10;
}
.video-item figure a:after {
content: '';
position: absolute;
bottom: 27.5px;
right: 20px;
margin-top: -12.5px;
margin-left: -7px;
border: solid 13px transparent;
border-left: solid 20px;
border-left-color: #fff;
z-index: 10;
}
.video-item figure a:hover:before {
background-color: #ceff00;
}

.video-item .video-caption {
  position: absolute;
  z-index: 10;
  background-color: rgba(0,0,0,0.75);
  height: 80px;
  width: 100%;
  padding: 27px 30px;
  bottom: 0;
}

.video-item .video-caption h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
/* Buttons */

.main-button a {
  background-color: #ceff00;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  
}


/* styles for a common effect  */
.effect {
  /*display: flex; */
}
.effect a {
  text-decoration: none !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 15px;
  overflow: hidden;
  position: relative;
  color: #e0e0e0;
  border: 1px solid #212121;
}
.effect a i {
  position: relative;
  z-index: 3;
}
.effect a:last-child {
  margin-right: 0px;
}
.effect a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.effect a i {
  display: inline-block;
  vertical-align: middle;
}
/* varrius effect */
.effect.varrius a {
  transition: all 0.2s linear 0s;
}
.effect.varrius a:after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  top: -110%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-color: #ceff00;
  border-radius: 50%;
}
.effect.varrius a:hover {
  color: #000;
}
.effect.varrius a:hover:after {
  top: 5%;
  transition: all 0.2s linear 0s;
}

.effect .buttons {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

/*--------------------------------------------------------------
11. Footer
--------------------------------------------------------------*/
.footer {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	position: relative;
}

.footer:before {
	content: '';
	width: 100%;
	height: 1px;
	background: #111517;
	position: absolute;
	left: 0;
}

.footer-logo {
	width: 200px;
	height: 100%;
}

.footer a {
	color: #fff;
  font-family: 'Shapiro 75 Heavy Extd',sans-serif;
}

.footer a:hover {
	color: #ceff00;
  text-decoration: none;
}

.footer a.active {
	color: #ceff00;
}

.footer-menu li {
	margin-bottom: 5px;
}

.footer-social li {
	margin-bottom: 12px;
}

.footer-information li {
	margin-bottom: 15px;
}

.footer-menu li:last-child,
.footer-social li:last-child,
.footer-information li:last-child {
	margin-bottom: 0;
}

.footer-information i {
	width: 30px;
	font-size: 12px;
}

.footer-information span {
	margin-left: 30px;
}

.footer-copyright {
	margin-top: 0;
	text-align: center;
	
}

@media only screen and (max-width: 767px) {
	
	.footer-center-mobile {
		display: -webkit-box;
			display: -ms-flexbox;
				display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
		
}

