/*
-----------------------------------------------------
  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("../fonts/lato/lato.css");




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

    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: #ffb60b;
   }

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

   ::-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. Box Icons
   -------------------------------------------- */
   .box{
    float: left; 
    margin-top: 70px; 
    width: 48px;
   }

   /*#box1:before{
    background-image: url('../images/creative-design.svg');
    background-size: 48px 48px;
    display: inline-block;
    width: 48px; 
    height: 48px;
    content:"";
    transition: background-image 1s;
   }*/

   /* --------------------------------------------
        1.1. Typed.js
   -------------------------------------------- */
   .rwd-line{
	   display: block;
   }
   
   #typed {
      white-space:pre;
   }

   .typed-cursor{
            opacity: 1;
            font-weight: 100;
            -webkit-animation: blink 0.7s infinite;
            -moz-animation: blink 0.7s infinite;
            -ms-animation: blink 0.7s infinite;
            -o-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
        }
        @-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }

      .type-wrap{
        padding: 5px 0 15px 0;
      }

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

      .bg_grey{
        background-color: #fafafa;
      }

      .bg_blue{
        background-color: #ffb60b;
      }

      .bg_black{
        background-color: #262626;
      }

      .bg1{
        background-image: url(../images/432pattern75.png);
      }

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


  .quote{
    color: #ffffff;
    font-weight: 500;
    position: relative;
    display: inline-block;
  }

  .quote-text {
    font-size: 50px;
    text-align: center;
  }

  .quote:hover{
    color: white;
  }

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

  .quote:hover:before{
    background-color: white;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }


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

    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: #ffb60b;
  }

  .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.1. Offsets
  -------------------------------------------- */

    .section_offset{
      padding: 100px 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_"]):not(.section_border),
    .section_vertical:not([class*="bg_"]) + .section_offset:not([class*="bg_"]):not(.section_border){
      padding-top: 0;
    }

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

    .blackout{
      padding: 100px 0;
      color: #fff;
      /*-webkit-background-size: cover;
      background-size: cover;*/
      background-repeat: repeat-x;
      /*background-position: 50% 50%;*/
      background-attachment: fixed;
      background-color: #222122;
    }

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

    .blackout.default_color{
      color: #373737;
    }

    .blackout.default_color h1,
    .blackout.default_color h2,
    .blackout.default_color h3,
    .blackout.default_color h4,
    .blackout.default_color h5,
    .blackout.default_color h6{
      color: #373737;
    }

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

    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: 34px;
      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: #ffb60b;
      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: #ffb60b;
        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 #ffb60b;
        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: #ffb60b;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn:hover{
        color: #ffb60b;
      }

      .btn:hover:before{
        background-color: #ffb60b;
        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;
      }

      .btn_type1{
        position: relative;
        background-color: #ffb60b;
        display: inline-block;
        font: 300 16px/30px 'Lato',sans-serif;
        border-radius: 30px;
        line-height: 30px;
        min-width: 185px;
        padding: 7px 23px 9px;
        text-align: center;
      }

      .btn_type1 span{
        color: #fff;
        display: inline-block;
        position: relative;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn_type1 span:after{
        content: "\f105";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -10px;
        color: #333;
        font: normal normal normal 14px/20px FontAwesome;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn_type1:hover{
        background-color: #272727;
      }

      .btn_type1:hover span{
        color: #fff;
        -webkit-transform: translate(-10px, 0);
        -ms-transform: translate(-10px, 0);
        -o-transform: translate(-10px, 0);
        transform: translate(-10px, 0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn_type1:hover span:after{
        color: #fff;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(20px, 0);
        -ms-transform: translate(20px, 0);
        -o-transform: translate(20px, 0);
        transform: translate(20px, 0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn_type1.small{
        min-width: 131px;
        font-size: 13px;
        line-height: 16px;
      }

      /*white button*/

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

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

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

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

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

      .link_type1{
        display: inline-block;
        position: relative;
        color: #ffb60b;
      }

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

      .link_type1:hover{
        color: #ffb60b;
      }

      .link_type1:hover:before{
        right: 0;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

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

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

    .divder2 {
      margin-top: 100px;
    }

    #references img{
      -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
      filter: grayscale(100%);
      max-width: 800px;
    }

    #references img:hover{
      -webkit-transition: all 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
      -moz-transition: all 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
      -ms-transition: all 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
      -o-transition: all 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
      transition: all 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
      -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
      filter: grayscale(0%);
    }

    #references .references-logo-grid{
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }

    #references .reference-logo-item{
      float: none;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
    }

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

    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.4. Icon Box
  -------------------------------------------- */

    .icons_container{
      margin-top: -70px;
    }

    .icon_box{
      position: relative;
      padding-left: 60px;
      padding-right: 10px;
      margin-top: 70px;
    }

    .icon_box i{
      position: absolute;
      top: 0;
      left: 0;
      font-size: 35px;
      color: #ccc;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .icon_box:hover i{
      color: #ffb60b;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .icon_box_title{
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 15px;
      margin-left: 10px;
    }

    .icon_box_excerpt{
      margin-left: 10px;
    }

  /* --------------------------------------------
        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%;
    }

    #section4 > .container h2{
      margin-bottom: 50px;
    }

    .project_btn {
      font-size: 18px !important;
    }

  /* --------------------------------------------
        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: #ffb60b;
    }

    .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: #ffb60b;
    }

    .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: #ffb60b;
      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: #ffb60b;
      border-right-color: #ffb60b;
    }

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

  /* --------------------------------------------
        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: #ffb60b;
      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: 70px;
  }

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

  .logo img{
    vertical-align: top;
    max-height: 40px;
  }


  /* --------------------------------------------
      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 #ffb60b;
      font-size: 20px;
      position: absolute;
      left: -50px;
      top: -1px;
    }

    .nav_btn:hover{
      color: #ffb60b;
    }

    .navigation{
      display: inline-block;
    }

    .navigation>li{
      float: left;
      position: relative;
      padding: 24px 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%;
      -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: center;
    color: #fff;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background: url(../images/bg1.jpeg) center bottom no-repeat;
    background-position: center bottom -16.5vh;
    -webkit-background-size: cover;
    background-size: cover;
  }

  @media screen and (max-aspect-ratio: 14/9){
    .first_screen{
      -webkit-background-size: auto 120%;
      background-size: auto 120%;
    }
  }

  .first_screen:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    margin-left: -5px;
  }

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

  .first_screen_inner.hero-copy-hidden{
    display: none;
  }

  .first_screen_subtitle{
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0 !important;
  }

  .first_screen_title{
    font-size: 80px;
    margin-bottom: 15px;
    line-height: 1;
  }

  .first_screen_inner .subtitle{
    margin-bottom: 50px;
  }

  .first_screen_label{
    position: absolute;
    left: 50%;
    bottom: 55px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .label_animation{
  animation: animationFrames linear 1.4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames linear 1.4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames linear 1.4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames linear 1.4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames linear 1.4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
  }

  @keyframes animationFrames{
    0% {
      transform:  translate(-50%,0px);
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      transform:  translate(-50%,30px);
      opacity: 0;
    }
  }

  @-moz-keyframes animationFrames{
    0% {
      -moz-transform:  translate(-50%,0px);
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      -moz-transform:  translate(-50%,30px);
      opacity: 0;
    }
  }

  @-webkit-keyframes animationFrames {
    0% {
      -webkit-transform:  translate(-50%,0px);
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      -webkit-transform:  translate(-50%,30px);
      opacity: 0;
    }
  }

  @-o-keyframes animationFrames {
    0% {
      -o-transform:  translate(-50%,0px);
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      -o-transform:  translate(-50%,30px);
      opacity: 0;
    }
  }

  @-ms-keyframes animationFrames {
    0% {
      -ms-transform:  translate(-50%,0px);
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      -ms-transform:  translate(-50%,30px);
      opacity: 0;
    }
  }

  @keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
  }
  @-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  @-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  @-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  .label_animation_fade {
     -webkit-animation: flickerAnimation 1.6s infinite;
     -moz-animation: flickerAnimation 1.6s infinite;
     -o-animation: flickerAnimation 1.6s infinite;
      animation: flickerAnimation 1.6s infinite;
  }


  #dodeca-icon{
      -webkit-animation: spin1 12s infinite linear;
      -moz-animation: spin1 12s infinite linear;
      -o-animation: spin1 12s infinite linear;
      -ms-animation: spin1 12s infinite linear;
      animation: spin1 12s infinite linear;
      display: block;
  }
      
    @-webkit-keyframes spin1 {
    0% { -webkit-transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg);}
    }
    @-moz-keyframes spin1 {
    0% { -moz-transform: rotate(0deg);}
    100% { -moz-transform: rotate(360deg);}
    }
    @-o-keyframes spin1 {
    0% { -o-transform: rotate(0deg);}
    100% { -o-transform: rotate(360deg);}
    }
    @-ms-keyframes spin1 {
    0% { -ms-transform: rotate(0deg);}
    100% { -ms-transform: rotate(360deg);}
    }
    @-keyframes spin1 {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
    } 


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

      8. Services

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

    .services {
      padding-bottom: 0px !important;
    }

    .servise_tabs:not(:first-child){
      padding-top: 95px;
    }

    .servise_list{
      margin-top: -30px;
    }

    .servise_title_box{
      text-align: center;
      padding-bottom: 30px;
      margin-top: 30px;
      border-bottom: 1px solid #e1e1e1;
      cursor: pointer;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .servise_title_box i{
      display: inline-block;
      font-size: 30px;
      color: #ccc;
      margin-bottom: 20px;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .servise_title_box.active,
    .servise_title_box:hover{
      border-color: #ffb60b;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .servise_title_box.active i,
    .servise_title_box:hover i{
      color: #ffb60b;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .servise_title{
      font-size: 24px;
      line-height: 1.23;
      color: #333;
      margin-bottom: 0;
    }

    .servise_content{
      padding-top: 60px;
    }

    .servise_content>div{
      display: none;
    }

    .servise_content>div.active{
      display: block;
    }


  /* --------------------------------------------
        5.6. Portfolio
  -------------------------------------------- */

    .filter_navigation{
      text-align: center;
      padding-top: 15px;
    }

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

    .filter_navigation ul li ul li{
      display: inline-block;
    }

    .filter_navigation ul li ul li a{
      display: block;
      font-size: 13px;
      line-height: 16px;
      padding: 7px 15px;
      text-transform: uppercase;
      color: #999;
      border-radius: 15px;
    }

    .filter_navigation ul li ul li a:hover{
      color: #ffb60b;
    }

    .filter_navigation ul li ul li.selected a,
    .filter_navigation ul li ul li.selected a:hover{
      color: #333;
      background-color: #f3f3f3;
      cursor: default;
    }

    #isotope_container{
      margin: 0 -15px 30px;
    }

    .project_box{
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
    }

    #section4 .project_box{
      overflow: visible;
    }

    .portfolio-pattern-library{
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .portfolio-category-card{
      --flower-x: 0px;
      --flower-y: 0px;
      --flower-rotation: 0deg;
      --flower-scale: 1;
      -webkit-appearance: none;
      appearance: none;
      position: relative;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: flex-end;
      -ms-flex-align: end;
      align-items: flex-end;
      width: 100%;
      min-height: 190px;
      aspect-ratio: 16 / 9;
      padding: 28px;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(20, 20, 20, 0.14);
      border-radius: 5px;
      color: #111;
      font: inherit;
      text-align: left;
      cursor: pointer;
      background: #fff;
      box-shadow: 0 12px 28px rgba(25, 32, 47, 0.1);
      -webkit-transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, -webkit-transform 0.25s ease;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, transform 0.25s ease;
    }

    .portfolio-category-card::before{
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 0;
      background: var(--card-gradient);
      opacity: 0;
      pointer-events: none;
      -webkit-transition: opacity 0.25s ease;
      transition: opacity 0.25s ease;
    }

    .portfolio-category-card__flower{
      position: absolute;
      top: 50%;
      right: -100px;
      z-index: 1;
      width: 340px;
      height: 340px;
      margin-top: -170px;
      color: rgba(0, 0, 0, 0.16);
      opacity: 0.58;
      pointer-events: none;
      -webkit-transform: translate3d(var(--flower-x), var(--flower-y), 0) rotate(var(--flower-rotation)) scale(var(--flower-scale));
      transform: translate3d(var(--flower-x), var(--flower-y), 0) rotate(var(--flower-rotation)) scale(var(--flower-scale));
      -webkit-transform-origin: center;
      transform-origin: center;
      -webkit-transition: color 0.2s ease, opacity 0.25s ease, -webkit-transform 0.14s ease-out;
      transition: color 0.2s ease, opacity 0.25s ease, transform 0.14s ease-out;
      will-change: transform;
    }

    .portfolio-category-card__flower svg{
      display: block;
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .portfolio-category-card:hover{
      --flower-scale: 1.045;
      color: #fff;
      border-color: transparent;
      box-shadow: 0 22px 42px rgba(25, 32, 47, 0.28);
      -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
      transform: translateY(-6px);
    }

    .portfolio-category-card:hover::before,
    .portfolio-category-card:focus-visible::before{
      opacity: 1;
    }

    .portfolio-category-card:hover .portfolio-category-card__flower,
    .portfolio-category-card:focus-visible .portfolio-category-card__flower{
      color: rgba(255, 255, 255, 0.22);
      opacity: 0.62;
    }

    .portfolio-category-card:focus{
      outline: none;
    }

    .portfolio-category-card:focus-visible{
      --flower-scale: 1.045;
      color: #fff;
      border-color: transparent;
      box-shadow: 0 0 0 3px #fff, 0 0 0 6px #333, 0 22px 42px rgba(25, 32, 47, 0.28);
    }

    .portfolio-category-card:active{
      -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
      transform: translateY(-2px);
    }

    .portfolio-category-card__number,
    .portfolio-category-card__copy,
    .portfolio-category-card__arrow{
      position: absolute;
      z-index: 2;
    }

    .portfolio-category-card__number{
      top: 24px;
      left: 28px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.18em;
      opacity: 0.72;
    }

    .portfolio-category-card__copy{
      right: 72px;
      bottom: 25px;
      left: 28px;
    }

    .portfolio-category-card__label{
      display: block;
      margin-bottom: 7px;
      font-size: 10px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .portfolio-category-card__title{
      display: block;
      color: inherit;
      font-size: 27px;
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.025em;
      white-space: nowrap;
    }

    .portfolio-category-card__title strong{
      font-weight: 700;
    }

    .portfolio-category-card__arrow{
      top: 20px;
      right: 22px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid var(--card-accent);
      border-radius: 50%;
      color: #fff;
      background-color: var(--card-accent);
      font-size: 19px;
      line-height: 1;
      -webkit-transition: background-color 0.25s ease, border-color 0.2s ease, -webkit-transform 0.25s ease;
      transition: background-color 0.25s ease, border-color 0.2s ease, transform 0.25s ease;
    }

    .portfolio-category-card:hover .portfolio-category-card__arrow,
    .portfolio-category-card:focus-visible .portfolio-category-card__arrow{
      background-color: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.42);
      -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      transform: rotate(10deg);
    }

    .portfolio-category-card--logo{
      --card-accent: #e63255;
      --card-gradient: linear-gradient(135deg, #ff4a55 0%, #c51f50 100%);
    }

    .portfolio-category-card--brand{
      --card-accent: #ee6f24;
      --card-gradient: linear-gradient(135deg, #ff982d 0%, #dc521f 100%);
    }

    .portfolio-category-card--key-visuals{
      --card-accent: #08737d;
      --card-gradient: linear-gradient(135deg, #078c94 0%, #075565 100%);
    }

    .portfolio-category-card--social{
      --card-accent: #dd8219;
      --card-gradient: linear-gradient(135deg, #e8ad16 0%, #d7671d 100%);
    }

    .portfolio-category-card--uiux{
      --card-accent: #1da875;
      --card-gradient: linear-gradient(135deg, #42c96d 0%, #07846c 100%);
    }

    .portfolio-category-card--web{
      --card-accent: #2582c2;
      --card-gradient: linear-gradient(135deg, #27a9d4 0%, #1c5eb0 100%);
    }

    .portfolio-category-card--video{
      --card-accent: #3153c7;
      --card-gradient: linear-gradient(135deg, #287beb 0%, #3132a4 100%);
    }

    .portfolio-category-card--industrial{
      --card-accent: #5546bd;
      --card-gradient: linear-gradient(135deg, #685ce9 0%, #41318d 100%);
    }

    .portfolio-category-card--concept{
      --card-accent: #dd245e;
      --card-gradient: linear-gradient(135deg, #ff3f68 0%, #bd185f 100%);
    }

    @media (max-width: 1199px){
      .portfolio-category-card__title{
        font-size: 25px;
      }
    }

    @media (max-width: 479px){
      .portfolio-category-card{
        min-height: 178px;
        padding: 24px;
      }

      .portfolio-category-card__number{
        top: 21px;
        left: 24px;
      }

      .portfolio-category-card__copy{
        right: 62px;
        bottom: 22px;
        left: 24px;
      }

      .portfolio-category-card__title{
        font-size: 23px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .portfolio-category-card,
      .portfolio-category-card__flower,
      .portfolio-category-card__arrow{
        -webkit-transition: none;
        transition: none;
      }
    }

    .overlay{
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0;
      background-color: rgba(51,51,51,0.7);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .project_box:hover .overlay{
      opacity: 1;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .project_btn{
      display: inline-block;
      white-space: nowrap;
      position: absolute;
      left: 50%;
      bottom: 100%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }

    .project_box:hover .project_btn{
      bottom: 50%;
      -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
      -o-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
    }

    .load_more_works,
    .load_more_works:focus{
      text-align: center;
      position: relative;
      display: inline-block;
      width: 46px;
      height: 46px;
      border: 2px solid #bfbfbf;
      border-radius: 50%;
      font-weight: 700;
      font-size: 30px;
      color: #bfbfbf;
    }

    .load_more_works:before{
      content: "+";
      display: block;
      position: absolute;
      width: 40px;
      line-height: 40px;
      top: 50%;
      left: 50%;
      margin-left: -20px;
      margin-top: -21px;
    }

    .load_more_works:hover{
      color: #ffb60b;
      border-color: #ffb60b;
    }
  
  .load_more_works.no_more_items{
      cursor:default;
    color: #bfbfbf !important;
      border-color: #bfbfbf !important;
    opacity:0.5;
    }
  
    .load_more_works.loaded{
      animation: loadMore linear 1s;
      animation-iteration-count: infinite;
      transform-origin: 50% 50%;
      -webkit-animation: loadMore linear 1s;
      -webkit-animation-iteration-count: infinite;
      -webkit-transform-origin: 50% 50%;
      -moz-animation: loadMore linear 1s;
      -moz-animation-iteration-count: infinite;
      -moz-transform-origin: 50% 50%;
      -o-animation: loadMore linear 1s;
      -o-animation-iteration-count: infinite;
      -o-transform-origin: 50% 50%;
      -ms-animation: loadMore linear 1s;
      -ms-animation-iteration-count: infinite;
      -ms-transform-origin: 50% 50%;
    }

    @keyframes loadMore{
      0% {
        transform: rotate(0deg) ;
      }
      100% {
        transform: rotate(360deg) ;
      }
    }

    @-moz-keyframes loadMore{
      0% {
        -moz-transform: rotate(0deg) ;
      }
      100% {
        -moz-transform: rotate(360deg) ;
      }
    }

    @-webkit-keyframes loadMore {
      0% {
        -webkit-transform: rotate(0deg) ;
      }
      100% {
        -webkit-transform: rotate(360deg) ;
      }
    }

    @-o-keyframes loadMore {
      0% {
        -o-transform: rotate(0deg) ;
      }
      100% {
        -o-transform: rotate(360deg) ;
      }
    }

    @-ms-keyframes loadMore {
      0% {
        -ms-transform: rotate(0deg) ;
      }
      100% {
        -ms-transform: rotate(360deg) ;
      }
    }


  /* --------------------------------------------
        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{
      min-width: 100%;
      min-height: 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: 100px;
      line-height: 100px;
      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;
    }

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

  11. Box Address

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

  .box_address{
    float: left;
    display: inline-block;
  }

  .box_address_icon{
    float: left;
    color: #fff;
    font: normal normal normal 38px/1.2 FontAwesome;
    margin-right: 30px;
  }

  .box_address li{
    text-align: left;
    position: relative;
    float: left;
    display: inline-block;
  }

  .box_address li:not(:last-child){
    padding-right: 65px;
    margin-right: 70px;
  }

  .box_address li:not(:last-child):after{
    content:'';
    position: absolute;
    right: 0;
    border-right: 1px solid #ffb60b;
    height: 54px;
  }

  .box_address_info,
  .box_address_number,
  .box_address_mail{
    line-height: 24px;
    float: left;
  }

  .box_address_number{
    font-size: 27px;
  }

  #section6 .box_address{
    float: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.45fr 0.8fr 1fr;
    grid-template-columns: 1.45fr 0.8fr 1fr;
    width: 100%;
    margin: 0 auto;
  }

  #section6 .box_address li,
  #section6 .box_address li:not(:last-child),
  #section6 .box_address li:last-child{
    float: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 0 34px;
  }

  #section6 .box_address li:first-child{
    padding-left: 0;
  }

  #section6 .box_address li:last-child{
    padding-right: 0;
  }

  #section6 .box_address_icon{
    float: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 18px;
  }

  #section6 .box_address_info,
  #section6 .box_address_number,
  #section6 .box_address_mail{
    float: none;
    min-width: 0;
    margin: 0;
  }

  #section6 .box_address li:not(:last-child):after{
    top: 50%;
    height: 54px;
    border-right-color: rgba(255, 255, 255, 0.28);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  @media only screen and (max-width: 991px){
    #section6 .box_address{
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 620px;
      margin: 0 auto !important;
    }

    #section6 .box_address li,
    #section6 .box_address li:not(:last-child),
    #section6 .box_address li:last-child{
      min-height: 0;
      margin: 0;
      padding: 18px 0;
    }

    #section6 .box_address li:not(:last-child):after{
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      height: 0;
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.24);
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
  }

 /* --------------------------------------------
        5.4. Share social list
  -------------------------------------------- */

    .share_social_list li{
      position: relative;
      text-align: center;
      background-color: #262626;
      float: left;
      width: 16.666%;
      height: 140px;
    }

    .share_social_list i{
      color: #fff;
      font-size: 30px;
    }

    .share_social_list a{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      display: block;
    }

    .share_social_list .google:hover{
      background-color: #bd081c;
    }

    .share_social_list .twiter:hover{
      background-color: #1dcaff;
    }

    .share_social_list .facebook:hover{
      background-color: #3b5998;
    }

    .share_social_list .pinterest:hover{
      background-color: #C92228;
    }

    .share_social_list .vimeo:hover{
      background-color: #66cc99;
    }

    .share_social_list .linkedin:hover{
      background-color: #007bb6;
    }

    .share_social_list a:hover .share_social_txt{
      font-size: 16px;
      margin-top: 15px;
      opacity: 1;
    }

    .share_social_list .share_social_wrap{
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }

    .share_social_list .share_social_txt{
      display: block;
      line-height: 1;
      color: #fff;
      font-size: 0;
      line-height: 0;
      opacity: 0;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

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

    9. Instagram Gallery

------------------------------------------------ */
    .instagram-feed-container {
      padding: 47px 20px 58px 20px;
      text-align: center; 
    }

    .instagram-feed-container .subheading--page-small {
        padding: 13px 0 13px 0
    }

    .instagram-feed {
        overflow: hidden;
    }

    .instagram-feed a {
        display: block;
        float: left;
        width: 50%;
        position: relative;
        line-height: 0
    }

    .instagram-feed a:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #f5f4f4;
        -webkit-transition: opacity 300ms ease-in-out;
        -ms-transition: opacity 300ms ease-in-out;
        transition: opacity 300ms ease-in-out;
        opacity: 0
    }

    .instagram-feed a:nth-child(n+5) {
        display: none
    }

    .instagram-feed a:hover:before {
        opacity: .6
    }

    .instagram-feed img {
        width: 100%;
        max-width: 212px
    }

    .instagram_photo_row {
      margin-bottom: 50px !important;
    }

    @media (max-width: 768px) and (min-width: 481px) {
        .instagram-feed a {
            width: 33.33%
        }

        .instagram-feed a:nth-child(n) {
            display: inline-block
        }

        .instagram-feed a:nth-child(n+7) {
            display: none
        }

        .instagram-feed img {
            max-width: 240px
        }
        .crop{ 
          width: 33.3%; 
          height: 230px; 
          overflow: hidden; 
        }

        .crop img { 
          width: 100%; 
        }
    }

    @media (min-width: 769px) {
        .instagram-feed-container {
            padding-left: 0;
            padding-right: 0
        }

        .instagram-feed-container .subheading--page-small {
            padding: 13px 0 35px 0
        }

        .instagram-feed a {
            width: 12.5%
        }

        .instagram-feed a:nth-child(n) {
            display: inline-block
        }

        .instagram-feed img {
            max-width: 306px
        }

        .crop{ 
          width: 12.5%; 
          height: 230px; 
          overflow: hidden; 
        }

        .crop img { 
          width: 100%; 
        }
    }

    .instafeed_link{
      display: block;
      position: relative;
    }

    .instafeed_link:before{
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      background-color: rgba(51,51,51,0.7);
      opacity: 0;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s;
    }

    .instafeed_link:after{
      content: "\f105";
      text-align: center;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 28px;
      height: 28px;
      margin-top: -14px;
      margin-left: -14px;
      border-radius: 50%;
      border: 2px solid #fff;
      color: #fff;
      font: normal normal normal 14px/24px FontAwesome;
      opacity: 0;
      -webkit-transform: translate(0, 40px);
      -ms-transform: translate(0, 40px);
      -o-transform: translate(0, 40px);
      transform: translate(0, 40px);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .instafeed_link:hover:after{
      opacity: 1;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
    }

    .instafeed_link:hover:before{
      opacity: 1;
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s;
    }

    .instagram_section{
      padding-top: 100px;
      padding-bottom: 30px;
    }

    .instagram_photo_row{
      margin-bottom: 100px;
    }

/* --------------------------------------------
      5.2. Progress Bar
  -------------------------------------------- */

    .progress_bars{
      padding-top: 90px;
    opacity:1 !important;
    }

    .bar_element{
      height: 3px;
      background-color: rgba(255,255,255,0.2);
      position: relative;
    }

    .value_indicator{
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      background-color: #fff;
    }

    .bar_title_box{
      margin-bottom: 20px;
    }

    .bar_value{
      float: left;
      vertical-align: baseline;
      font-size: 100px;
      line-height: 1;
      margin-right: 25px;
    }

    .bar_value>*{
      display: inline-block;
      vertical-align: baseline;
    }

    .bar_title_prefix{
      font-size: 50px;
      line-height: 1;
      margin-left: -15px;
    }

    .bar_title:before{
      content: attr(data-value);
    }

    .bar_text{
      overflow: hidden;
      padding-top: 10px;
      font-size: 34px;
      line-height: 44px;
    }

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

    8. Footer

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

  footer {
    background-color: #f2f2f2;
    padding: 35px 0;
  }
    .social_list {
      text-align: center;
    }
      .social_list li {
        display: inline-block;
        padding: 0 20px;
        margin-top: 20px;
      }
      .social_list li a {
        display:block;
    width:26px;
    font-size: 25px;
        color: #ccc;
      }
      .social_list li a:hover {
        color: #ffb60b;
      }
  .copyright{
    font-size: 13px;
    line-height: 20px;
    margin-top: 20px;
    color: #999;
    float: right;
  }

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

    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;}


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

    xxx. Dark Space

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


      @keyframes move-twink-back {
          from {background-position:0 0;}
          to {background-position:-10000px 5000px;}
      }
      @-webkit-keyframes move-twink-back {
          from {background-position:0 0;}
          to {background-position:-10000px 5000px;}
      }
      @-moz-keyframes move-twink-back {
          from {background-position:0 0;}
          to {background-position:-10000px 5000px;}
      }
      @-ms-keyframes move-twink-back {
          from {background-position:0 0;}
          to {background-position:-10000px 5000px;}
      }

      @keyframes move-clouds-back {
          from {background-position:0 0;}
          to {background-position:10000px 0;}
      }
      @-webkit-keyframes move-clouds-back {
          from {background-position:0 0;}
          to {background-position:10000px 0;}
      }
      @-moz-keyframes move-clouds-back {
          from {background-position:0 0;}
          to {background-position:10000px 0;}
      }
      @-ms-keyframes move-clouds-back {
          from {background-position: 0;}
          to {background-position:10000px 0;}
      }

      .stars, .twinkling, .clouds {
        position:absolute;
        top:0;
        left:0;
        right:0;
        bottom:0;
        width:100%;
        height:100%;
        display:block;
      }

      #space{
        /*margin-top: 150px;*/
        min-height: 700px;
        position: relative;
      }

      #space-div{
        z-index:5;
        position: absolute;
        padding: 90px 8%;
        text-align: center;
      }

      .stars {
        background:#000 url(../images/stars.png) repeat top center;
        z-index:0;
      }

      .twinkling{
        background:transparent url(../images/twinkling.png) repeat top center;
        z-index:1;

        -moz-animation:move-twink-back 200s linear infinite;
        -ms-animation:move-twink-back 200s linear infinite;
        -o-animation:move-twink-back 200s linear infinite;
        -webkit-animation:move-twink-back 200s linear infinite;
        animation:move-twink-back 200s linear infinite;
      }

      .clouds{
          background:transparent url(../images/clouds.png) repeat top center;
          z-index:3;

        -moz-animation:move-clouds-back 200s linear infinite;
        -ms-animation:move-clouds-back 200s linear infinite;
        -o-animation:move-clouds-back 200s linear infinite;
        -webkit-animation:move-clouds-back 200s linear infinite;
        animation:move-clouds-back 200s linear infinite;
      }

      .space-extension-top{
        height: 40px;
        background: rgba(255,255,255,0.94);
        background: -moz-linear-gradient(top, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 22%, rgba(0,0,0,0.84) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0.94)), color-stop(22%, rgba(255,255,255,0.92)), color-stop(100%, rgba(0,0,0,0.84)));
        background: -webkit-linear-gradient(top, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 22%, rgba(0,0,0,0.84) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 22%, rgba(0,0,0,0.84) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 22%, rgba(0,0,0,0.84) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 22%, rgba(0,0,0,0.84) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
        
      }

      .space-extension-bottom{
        height: 40px;
        background: rgba(0,0,0,0.86);
        background: -moz-linear-gradient(top, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0.93) 83%, rgba(255,255,255,0.94) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.86)), color-stop(83%, rgba(255,255,255,0.93)), color-stop(100%, rgba(255,255,255,0.94)));
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0.93) 83%, rgba(255,255,255,0.94) 100%);
        background: -o-linear-gradient(top, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0.93) 83%, rgba(255,255,255,0.94) 100%);
        background: -ms-linear-gradient(top, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0.93) 83%, rgba(255,255,255,0.94) 100%);
        background: linear-gradient(to bottom, rgba(0,0,0,0.86) 0%, rgba(255,255,255,0.93) 83%, rgba(255,255,255,0.94) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
      }

      #wave canvas{
        width: 100% !important;
      }


      .project{
        padding-top: 20px;
        padding-left: 30px;
      }

      .project img{
        padding-bottom: 20px;
      }

       #gokceavukatlık .project img,
       #koffieboon .project img,
       #ceptetamir .project img,
       #fatcat .project img,
       #parkkolay .project img,
       #studio113 .project img {

        padding-bottom: 0px;
      }


     



      .project-info{
        padding: 20px 30px 10px 20px;
      }

      .project-info p{
        font-size: 14px;
        line-height: 1.4em;
        padding-top: 10px;
        font-weight: 400;
      }

      .project-info h3{
        font-size: 18px;
        font-weight: 600;
        display: inline;
        padding-bottom: 
      }

      .project-info span{
        font-weight: 300;
      }

      span#typed, .first_screen_title{
        font-size: 60px;
      }

      .servise_tabs p.subtitle{
        font-size: 20px !important;
        line-height: 28px !important;
        padding: 0 50px;
      }

      #preloader { 
        position: fixed; 
        left: 0; 
        top: 0; 
        z-index: 999; 
        width: 100%; 
        height: 100%; 
        overflow: visible; 
        background: #333333 url('../images/flower.png') no-repeat center center;
      }


      #main-social-bar{
        display: inline-block;
      }
      #main-social-bar>li{
        float: left;
        display: inline-block;
        position: relative;
        padding: 24px 0 19px;
        padding-right: 18px;
      }
      #main-social-bar li a{
        color: #fff;
        line-height: 17px;
        display: block;
      }
      #main-social-bar li a:hover, #main-social-bar li.current a{
        color: #999;
      }

      .white-popup {
        position: relative;
        background: #FFF;
        padding: 20px;
        width: auto;
        height: auto;
        max-width: 1200px;
        margin: 20px auto;
      }

      .lightwidget-widget {
        width: 100%; 
        border: 0; 
        overflow: hidden;
      }

      .btn_type1 {
        margin-bottom: 60px;
      }

      #partners {
        margin-top: -60px;
      }


      #videoproduction h3 {
        font-weight: 400;

      }
