/*
-----------------------------------------------------
  Stylesheet Guide
-----------------------------------------------------

  1. Default stylesheets

    1.1. Color Schemes
  2. General classes
  3. Main
    3.1. Page tilte
    3.2. Offsets
    3.3. Blackout
  4. Basic Elements
    4.1. Typography
    4.2. Buttons
    4.3. Dividers
  5. Shortcods
    5.1. Slider
    5.2. Icon Box
    5.3. Section Vertical
    5.4. Video Box
    5.5. Product Box
    5.6. Reviews
    5.7. Partners Logo
  6. Header
    6.1. Navigation
    6.2. Search Box
  7. First Screen

     7.1. Slider
  8. Footer
  9. Spacing

*/
@import "reset.css";
@import "animate.css";
@import "bootstrap.min.css";
@import "../fonts/Evatheme-Icon/css/Evatheme-Icon-Fonts.css";
@import "../fonts/font-awesome-4.5.0/css/font-awesome.min.css";

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700,100);

/* ------------------------------------------------

    1. Default stylesheets

------------------------------------------------ */

   body {
    font-family: 'Lato', sans-serif;
    color:#666666;
    font-size:16px;
    line-height:26px;
    font-weight: 300;
    background:#fff;
   }

   *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   }

   ::selection{
    color: #fff;
    background-color: #ffc800;
   }

   ::-moz-selection{
    color: #fff;
    background-color: #ffc800;
   }

   ::-webkit-scrollbar{
    background: #cdcdcd;
    width: 8px;
   }

   ::-webkit-scrollbar-thumb{background: #333;}


   ::-webkit-input-placeholder{
    color:#999999;
    -webkit-transition: text-indent .5s ease, color .5s ease;
        transition: text-indent .5s ease, color .5s ease;
   }

   input::-moz-placeholder{
    color:#999999;
    opacity:1;
   }

   textarea::-moz-placeholder{
    color: #999999;
    opacity: 1;
   }

   ::ms-input-placeholder{
    color:#999999;
   }

   [placeholder]:focus::-webkit-input-placeholder{
    text-indent:10em;
    color:transparent;
   }


   /* --------------------------------------------
        1.1. Color Schemes
   -------------------------------------------- */

      .bg_grey{
        background-color: #fafafa;
      }

      .bg1{
        background-image: url(../images/bg1.jpg);
      }

      .bg2{
        background-image: url(../images/bg2.jpg);
      }

/* ------------------------------------------------

    2. General Classes

------------------------------------------------ */

   .align_left{
    text-align: left;
   }

   .align_right{
    text-align: right;
   }

   .align_center{
    text-align: center;
   }

   .f_left{
    float: left;
   }

   .f_left{
    float: right;
   }

   .wrapper{overflow: hidden;}

   .hide{ display: none;}

   .show{ display: block;}

   .d_ib{display: inline-block;}

   .transparent{ opacity:0; }

   .invisible{
    opacity: 0;
    visibility: hidden;
   }

   .visible{
    opacity:1;
    visibility: visible;
   }

   .p_abs{position: absolute;}

   .p_rel{position: relative;}

   .p_fix{position: fixed;}

   .clear{clear:both;width:100%;line-height:0;font-size:0;}

   .clearfix:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
   }

   .reg{text-transform:uppercase;}

/* ------------------------------------------------

    3. Main

------------------------------------------------ */

  #content{
	  overflow-x:hidden;
	  padding:0px 0px 0px 0px;
  }

  .back_to_top{
    border: none;
    outline: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background-color: #333;
    z-index: 99;
  }

  .back_to_top:hover{
    background-color: #ffc800;
  }

  .back_to_top i{
    font-size: 30px;
    line-height: 30px;
    margin: 0;
  }


  /* --------------------------------------------
        3.1. Page tilte
  -------------------------------------------- */

      .page_title_box{
         padding: 39px 0 43px;
         color: #505050;
         border-bottom: 1px solid #efefef;
         background-color: #fcfcfc;
      }

  /* --------------------------------------------
        3.2. Offsets
  -------------------------------------------- */

    .section_offset{
      padding: 90px 0;
      -webkit-background-size: cover;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 0 0;
    }

    .section_offset:not([class*="bg_"]) + .section_offset:not([class*="bg_"]),
    .section_vertical:not([class*="bg_"]) + .section_offset:not([class*="bg_"]){
      padding-top: 0;
    }

  /* --------------------------------------------
        3.3. Blackout
  -------------------------------------------- */

    .blackout{
      padding: 140px 0;
      color: #fff;
      -webkit-background-size: cover;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-attachment: fixed;
    }

    .blackout2{
      padding: 300px 0 260px;
      color: #fff;
      -webkit-background-size: cover;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-attachment: fixed;
    }

/* ------------------------------------------------

    4. Basic Elements

------------------------------------------------ */

  /* --------------------------------------------
      4.1. Typography
  -------------------------------------------- */

    h1,h2,h3,h4,h5,h6{
      font-family: 'Lato', sans-serif;
      font-weight:300;
      line-height: 1.23em;
      color: #333333;
      margin: 0;
      margin-bottom: 17px;
    }

    h1{
      font-size: 100px;
      line-height: 100px;
      margin-bottom: 40px;
    }

    h2{
      font-size: 50px;
      text-align: center;
    }
    h2 strong{
      font-weight: 400;
    }

    h3{font-size: 22px;}

    h4{
      font-size: 18px;
    }
    h5{font-size: 16px;}

    h6{
      font-size: 14px;
      line-height: 18px;
      font-weight: 400;
      margin-bottom: 15px;
    }

    .blackout h1,
    .blackout h2,
    .blackout h3,
    .blackout h4,
    .blackout h5,
    .blackout h6,
    .blackout2 h1,
    .blackout2 h2,
    .blackout2 h3,
    .blackout2 h4,
    .blackout2 h5,
    .blackout2 h6,
    .first_screen_inner h1,
    .first_screen_inner h2,
    .first_screen_inner h3,
    .first_screen_inner h4,
    .first_screen_inner h5,
    .first_screen_inner h6{
      color: #fff;
    }

    .title_box1:not(:last-child){
      margin-bottom: 60px;
    }

    .subtitle{
      font-size: 24px;
      line-height: 36px;
      color: #333;
    }

    .first_screen_inner .subtitle,
    .blackout2 .subtitle,
    .blackout .subtitle{
      color: #fff;
    }

    .title_icon{
      display:inline-block;
	  vertical-align:top;
	  font-size: 35px;
      color: #ccc;
      margin-bottom: 30px;
    }

    p:not(:last-child){margin-bottom: 20px;}

    mark{background-color: #20cfef;padding: 0 2px;color: #fff;}
    mark.red{background-color: #ee352f;}

    a{
      color: #0066cc;
      text-decoration: none;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }
    a:hover{
      color: #666;
      text-decoration: none;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }
    a:focus,
    a:visited{
      outline: none;
      text-decoration: none;
    }

    img{
      max-width: 100%;
    }

  /* --------------------------------------------
      4.2. Buttons
  -------------------------------------------- */

      button{
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      button:focus{
        outline: none;
      }

      button:hover{
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn{
        display: inline-block;
        outline: none;
        background: none;
        border: none;
        color: #0066cc;
        font-size: 24px;
        line-height: 30px;
        position: relative;
        padding-right: 35px;
      }

      .btn:before{
        content: "\f105";
        display: block;
        position: absolute;
        text-align: center;
        width: 26px;
        height: 26px;
        right: 0;
        top: 50%;
        margin-top: -12px;
        border: 2px solid #0066cc;
        border-radius: 50%;
        font: normal normal normal 14px/22px FontAwesome;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn:after{
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 100%;
        height: 1px;
        background-color: #0066cc;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn:hover{
        color: #0066cc;
      }

      .btn:hover:before{
        background-color: #0066cc;
        color: #fff;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn:hover:after{
        right: 35px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      /*white button*/

      .first_screen_inner .btn,
      .blackout .btn,
      .blackout2 .btn{
        color: #fff;
      }

      .first_screen_inner .btn:hover,
      .blackout .btn:hover,
      .blackout2 .btn:hover{
        color: #fff;
      }

      .first_screen_inner .btn:before,
      .blackout .btn:before,
      .blackout2 .btn:before{
        border-color: #fff;
      }

      .first_screen_inner .btn:after,
      .blackout .btn:after,
      .blackout2 .btn:after{
        background-color: #fff;
      }

      .first_screen_inner .btn:hover:before,
      .blackout .btn:hover:before,
      .blackout2 .btn:hover:before{
        background-color: #fff;
        color: #0066cc;
      }

  /* --------------------------------------------
      4.3. Dividers
  -------------------------------------------- */

    .divider{
      margin: 0;
      border: none;
      outline: none;
      height: 1px;
      width: 100%;
      background-color: #e1e1e1;
    }

/* ------------------------------------------------

    5. Shortcods

------------------------------------------------ */


  /* --------------------------------------------
        5.1. Slider
  -------------------------------------------- */

    .flexslider{
      border: none;
      margin: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      background: none;
    }

    .flex-direction-nav a:before{
      color: #fff;
      line-height: 1;
    }

    .demo_pages{
      margin: 0 -195px;
      padding: 90px 0 0;
    }

    .demo_pages img{
      max-width: 100%;
    }

    /*.flipster{
      margin: 0 -195px;
      padding: 90px 0 83px;
      overflow: hidden;
      position: relative;
    }

    .flipster--carousel .flipster__item--past-1,
    .flipster--carousel .flipster__item--future-1,
    .flipster--carousel .flipster__item--past-2,
    .flipster--carousel .flipster__item--future-2{
      opacity: 1;
    }

    .flipster_box{
      position: relative;

    }

    .flipster:before{
      content: '';
      display: block;
      width: 1087px;
      height: 603px;
      position: absolute;
      z-index: 99;
      margin-left: -1px;
      bottom: 0;
      left: 50%;
      background: url(../images/mac.png) 0 0 no-repeat;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }*/

  /* --------------------------------------------
        5.2. Icon Box
  -------------------------------------------- */

    .icons_container>.row:not(:last-child){
      margin-bottom: 55px;
    }

    .icon_box{
      text-align: center;
      padding: 0 20px;
    }

    .icon_box>i{
      display: block;
      font-size: 40px;
      color: #ccc;
      margin-bottom: 13px;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .icon_box:hover>i{
      color: rgba(255,200,0,1.00);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .icon_box_title{
      font-size: 24px;
      line-height: 30px;
      color: #333;
      margin-bottom: 13px;
    }

    .icon_box:hover .icon_box_title{
      color: #000;
    }

    .icon_box .icon_box_title:hover{
      color: rgba(255,200,0,1.00);
    }

    .icon_box_title a{
      color: inherit;
    }

  /* --------------------------------------------
        5.3. Section Vertical
  -------------------------------------------- */

    .section_vertical{
      display: table;
      width: 100%;
      table-layout: fixed;
    }

    .section_offset:not([class*="bg_"]) + .section_vertical:not([class*="bg_"]){
      border-top: 1px solid #e1e1e1;
    }

    .section_vertical>*{
      display: table-cell;
      width: 50%;
      vertical-align: middle;
    }

    .section_vertical_text{
      padding: 90px 8%;
      text-align: center;
    }

    .section_vertical_img{
      padding-top: 115px;
      text-align: right;
      vertical-align: bottom;
    }

    .section_vertical_img img{
      max-width: 100%;
    }

  /* --------------------------------------------
        5.4. Video Box
  -------------------------------------------- */

    .video_box{
      padding: 0 0 47% !important;
      position: relative;
      overflow: hidden;
    }

    .video_img{
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      text-align: center;
      overflow: hidden;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .video_img img{
      width: 100%;
    }

    .video_wrapper{
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0;
      visibility: hidden;
    }

    .video{
      width: 100%;
    }

    .video_btn_box{
      padding-bottom: 45px;
      position: absolute;
      text-align: center;
      font-size: 24px;
      line-height: 30px;
      color: #fff;
      bottom: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
      -o-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .video_box.pause .video_btn_box{
      bottom: 10px;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }

    .video_btn_box span{
      font-family: 'Lato', sans-serif;
      white-space: nowrap;
      text-align: center;
      font-size: 24px;
      line-height: 30px;
      color: #fff;
      font-weight: 300;
      position: absolute;
      bottom:-45px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }

    .video_btn_box span:after{
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      right: 100%;
      height: 1px;
      background-color: #fff;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .video_btn:hover.video_btn span:after{
      content: '';
      width: 100%;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .video_btn{
      position: relative;
      padding: 0;
      outline: none;
      background: none;
      border: 2px solid #fff;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      font: normal normal normal 30px/96px FontAwesome;
    }

    .video_btn i{
      line-height: 96px;
    }

    .video_btn i.fa-play{
      margin-left: 5px;
    }

    .video_btn:hover{
      background-color: #fff;
      color: #0066cc;
    }

    .video_box.pause .video_img{
      opacity: 0;
      visibility: hidden;
    }

    .video_box.pause .video_wrapper{
      opacity: 1;
      visibility: visible;
    }

  /* --------------------------------------------
        5.5. Product Box
  -------------------------------------------- */

    .product_box{
      text-align: center;
    }

    .product_img{
      margin-bottom: 25px;
    }

    .product_img img{
      max-width: 100%;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .product_box:hover .product_img img{
      -webkit-box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
      -o-transform: translateY(-15px);
      transform: translateY(-15px);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .product_container .row:not(:last-child){
      margin-bottom: 50px;
    }

  /* --------------------------------------------
        5.6. Reviews
  -------------------------------------------- */

    .reviews_slider{
      padding: 40px 100px;
      margin: 45px 100px 0;
      width: auto;
      position: relative;
      border: 1px solid #e1e1e1;
      -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.05);
      box-shadow: 0 4px 5px rgba(0,0,0,0.05);
    }

    .reviews_slider:before{
      content: '”';
      display: block;
      position: absolute;
      top: -10px;
      padding-top: 10px;
      left: 50%;
      margin-left: -30px;
      background-color: #fafafa;
      text-align: center;
      font-size: 80px;
      width: 60px;
      color: #0066cc;
    }

    .review{
      font-size: 34px;
      line-height: 44px;
      color: #333;
      text-align: center;
    }

    .review_name{
      font-size: 16px;
      line-height: 20px;
      font-weight: 700;
      color: #333;
    }

    .post_name{
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
      color: #999;
    }

    .owl-nav>div{
      position: absolute;
      top: 50%;
      margin-top: -30px;
      left: -100px;
      width: 30px;
      height: 60px;
      color: #ccc;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .owl-nav>div:hover{
      opacity: 0.5;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .owl-nav>div.owl-next{
      left: auto;
      right: -100px;
      text-align: right;
    }

    .owl-nav>div:before{
      content: "\f104";
      font: normal normal normal 50px/60px FontAwesome;
    }

    .owl-nav>div.owl-next:before{
      content: "\f105";
    }

    .owl-dots{
      position: absolute;
      width: 100%;
      bottom: -60px;
      left: 0;
      text-align: center;
    }

    .owl-dots>div{
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 8px;
      border-radius: 50%;
      border: 2px solid #b0b0b0;
      background-color: #b0b0b0;
    }

    .owl-dots>div.active{
      border-color: #0066cc;
      background: none;
    }

    .owl-nav > div.owl-next,.owl-nav > div.owl-prev{
      overflow: visible;
      width: 30px;
      height: 60px;
      font-size: 0;
    }

    .owl-nav > div:before{
      content: '' !important;
      width: 40px;
      height: 40px;
      position: absolute;
      border-width: 1px;
      border-style: solid;
      border-color: transparent;
      top: 50%;
      margin-top: -20px;
      -moz-transform: rotate(-52deg) skewX(-15deg);
      -webkit-transform: rotate(-52deg) skewX(-15deg);
      -o-transform: rotate(-52deg) skewX(-15deg);
      -ms-transform: rotate(-52deg) skewX(-15deg);
      transform: rotate(-52deg) skewX(-15deg);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .owl-nav > div:hover:before{
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .owl-nav > div.owl-prev:before{
      border-top-color: #cccccc;
      border-left-color: #cccccc;
      left: 0;
    }

    .owl-nav > div.owl-next:before{
      border-bottom-color: #cccccc;
      border-right-color: #cccccc;
      right: 0;
    }

    .owl-nav > div.owl-next:hover:before{
      border-bottom-color: #0066cc;
      border-right-color: #0066cc;
    }

    .owl-nav > div.owl-prev:hover:before{
      border-top-color: #0066cc;
      border-left-color: #0066cc;
    }

  /* --------------------------------------------
        5.7. Partners Logo
  -------------------------------------------- */

    .partner_list{
      text-align: center;
    }

    .partner_list li{
      display: inline-block;
      width: 24%;
      margin-bottom: 55px;
      padding: 0 20px;
      vertical-align: middle;
    }

    .partner_list li a{
      opacity: 0.5;
    }

    .partner_list li a:hover{
      opacity: 1;
    }

  /* --------------------------------------------
        5.6. Reviews
  -------------------------------------------- */

    .facts_box{
      background-color: #0066cc;
      padding: 96px 0;
      color: #fff;
    }

    .fact_item{
      position: relative;
    }

    [class*='col-']:not(:last-child) .fact_item:before{
      content: '';
      display: block;
      position: absolute;
      height: 100%;
      top: 0;
      right: 40px;
      width: 1px;
      background-color: rgba(255,255,255,0.25);
    }

    .fact_title{
      display: block;
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 0;
    }

    .counter{
      font-size: 100px;
      line-height: 1;
      font-weight: 100;
    }

/* ------------------------------------------------

    6. Header

------------------------------------------------ */

  #header{
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(32,32,32,0.85);
  }

  .header_inner{
    position: relative;
    height: 50px;
  }

  .logo{
    line-height: 17px;
    float: left;
    padding-top: 14px;
  }

  .logo img{
    vertical-align: top;
  }


  /* --------------------------------------------
      6.1. Navigation
  -------------------------------------------- */

    nav{
      text-align: center;
      line-height: 17px;
      padding-right: 60px;
    }

    .nav_btn{
      display: none;
      border: none;
      outline: none;
      width: 50px;
      height: 50px;
      color: #fff;
      background-color: rgba(32,32,32,0.85);
      border-top: 1px solid #ffc800;
      font-size: 20px;
      position: absolute;
      left: -50px;
      top: -1px;
    }

    .nav_btn:hover{
      color: #ffc800;
    }

    .navigation{
      display: inline-block;
    }

    .navigation>li{
      float: left;
      position: relative;
      padding: 14px 0 19px;
    }

    .navigation>li:not(:last-child){
      padding-right: 75px;
    }

    .navigation li a{
      color: #fff;
      line-height: 17px;
      display: block;
    }

    .navigation li a:hover,
    .navigation li.current a{
      color: #999;
    }

  /* --------------------------------------------
      6.2. Search Box
  -------------------------------------------- */

    .search_box{
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 60px;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .search_box input:not([type="radio"]):not([type="checkbox"]):not([type="file"]){
      width: 100%;
      outline: none;
      border: none;
      background-color: #0f0f0f;
      font: 300 16px/20px 'Lato',sans-serif;
      padding: 15px 60px 15px 20px;
      color: #fff;
      opacity: 0;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .search_btn{
      outline: none;
      border: none;
      background: none;
      position: absolute;
      width: 20px;
      height: 20px;
      top: 50%;
      margin-top: -10px;
      right: 20px;
      color: #fff;
    }

    .search_btn:before{
      content: "\f002";
      font: normal normal normal 16px/20px FontAwesome;
      display: block;
      width: 100%;
      height: 100%;
    }

    .search_box.active .search_btn:before{
      content: "\f00d";
    }

    .search_box.active{
      width: 100%;
    }

    .search_box.active input:not([type="radio"]):not([type="checkbox"]):not([type="file"]){
      opacity: 1;
    }

/* ------------------------------------------------

    7. First Screen

------------------------------------------------ */

  .first_screen{
    text-align: left;
    color: #000;
    min-height: 400px;
	  max-height: 900px;
    overflow: hidden;
  }

  .main_slider .slides li:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 90%;
    margin-left: -5px;
  }

  .first_screen_inner{
    display: inline-block;
	text-align: left;
    width: 100%;
    vertical-align: middle;
    position: relative;
    z-index: 2;
  }

  .first_screen_subtitle{
    font-size: 36px;
    line-height: 40px;
  }



  /* --------------------------------------------
        7.1. Slider
  -------------------------------------------- */

    .main_slider .slides li{
      text-align: center;
      overflow: hidden;
      padding-top: 50px;
    }

    .main_slider,
    .main_slider .slides,
    .main_slider .slides li{
      height: 100%;
    }

    .slide_img_bg{
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 1;
    }

    .slide_img_bg img{
	object-fit: cover;
		min-height: 100%;
		min-width: 100%;
    }

    .slide_img_box{
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
    }

    .main_slider .slides li .slide_img_box img{
        width: 33.33%;
        height: auto;
        display: inline-block;
        position: absolute;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-transition-delay: 1s;
        -o-transition-delay: 1s;
        transition-delay: 1s;
    }

    .main_slider .slides li .slide_img_box .slider_img_center{
      position: relative;
      z-index: 9;
    }

    .main_slider .slides li .slide_img_box .slider_img_left2{
      top: 30%;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 1;

    }

    .main_slider .slides li .slide_img_box .slider_img_left1{
      top: 15%;
      left: 50%;
      z-index: 2;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }

    .main_slider .slides li .slide_img_box .slider_img_right1{
      top: 15%;
      right: 50%;
      z-index: 2;
      -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
      -o-transform: translate(50%, 0);
      transform: translate(50%, 0);
    }

    .main_slider .slides li .slide_img_box .slider_img_right2{
      top: 30%;
      right: 50%;
      z-index: 1;
      -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
      -o-transform: translate(50%, 0);
      transform: translate(50%, 0);
    }


    .main_slider .slides li.flex-active-slide .slide_img_box .slider_img_left2{
      left: 0;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
    }

    .main_slider .slides li.flex-active-slide .slide_img_box .slider_img_left1{
      left: 16.666%;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
    }

    .main_slider .slides li.flex-active-slide .slide_img_box .slider_img_right1{
      right: 16.666%;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
    }

    .main_slider .slides li.flex-active-slide .slide_img_box .slider_img_right2{
      right: 0;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
    }

    .slider_title{
      font-size: 80px;
		text-align: left;
      line-height: 80px;
      margin-bottom: 40px;
    }

    .flexslider:hover .flex-direction-nav .flex-next {
      right: 40px;
    }

    .flexslider:hover .flex-direction-nav .flex-prev {
      left: 40px;
    }

    .flex-direction-nav .flex-prev,.flex-direction-nav .flex-next{
      overflow: visible;
      width: 30px;
      height: 60px;
      font-size: 0;
    }

    .flex-direction-nav a::before{
      content: '' !important;
      width: 40px;
      height: 40px;
      position: absolute;
      border-width: 1px;
      border-style: solid;
      border-color: transparent;
      top: 50%;
      margin-top: -20px;
      -moz-transform: rotate(-52deg) skewX(-15deg);
      -webkit-transform: rotate(-52deg) skewX(-15deg);
      -o-transform: rotate(-52deg) skewX(-15deg);
      -ms-transform: rotate(-52deg) skewX(-15deg);
      transform: rotate(-52deg) skewX(-15deg);
    }

    .flex-direction-nav .flex-prev:before{
      border-top-color: #fff;
      border-left-color: #fff;
      left: 0;
    }

    .flex-direction-nav .flex-next:before{
      border-bottom-color: #fff;
      border-right-color: #fff;
      right: 0;
    }

/* ------------------------------------------------

    8. Footer

------------------------------------------------ */

  footer {
    background-color: #f2f2f2;
    padding: 50px 0 25px;
  }

  .footer_inner{
    padding-bottom: 35px;
    border-bottom: 1px solid #e1e1e1;
  }

  .footer_list li:not(:last-child){
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
  }

  .footer_list a{
    color: #666;
    position: relative;
    display: inline-block;
  }

  .footer_list a:before{
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .footer_list a:hover{
    color: #ffc800;
  }

  .footer_list a:hover:before{
    width: 100%;
    background-color: #ffc800;
  }

  .footer_address{
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
  }

  .email_link{
    position: relative;
    display: inline-block;
  }

  .email_link:before{
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffc800;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .email_link:hover:before{
    width: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .footer_address p:not(:last-child){
    margin-bottom: 10px;
  }

  .social_list{
    padding-top: 17px;
  }

  .social_list li{
    float: left;
  }

  .social_list li:not(:last-child){
    margin-right: 30px;
  }

  .social_list li a{
    font-size: 25px;
    color: #ccc;
  }

  .social_list li a:hover{
    color: #ffc800;
  }

  .footer_bottom{
    font-size: 13px;
    line-height: 20px;
    color: #999;
    padding-top: 25px;
  }

  .footer_list1 li{
    float: left;
    position: relative;
  }

  .footer_list1 li:not(:first-child){
    padding-left: 22px;
  }

  .footer_list1 li:not(:first-child):before{
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 2px;
    height: 2px;
    background-color: #333;
  }

  .footer_list1 a{
    color: #999;
  }

  .footer_list1 a:hover{
    color: #333;
    text-decoration: underline;
  }

/* ------------------------------------------------

    9. Spacing

------------------------------------------------ */

.m0{margin: 0;}
.m5{margin: 5px;}

.mb0{margin-bottom: 0;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}

.mt0{margin-top: 0;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}

.p0{padding: 0;}
.p5{padding: 5px;}

.pb0{padding-bottom: 0;}
.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb20{padding-bottom: 20px;}
.pb30{padding-bottom: 30px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}

.pt0{padding-top: 0;}
.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt20{padding-top: 20px;}
.pt30{padding-top: 30px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}