@charset "UTF-8";


/* ------------------------------------------------ */
/* $Item info                                       */
/* ------------------------------------------------ */


/*!
  + Item Name: Belinda Agency & Portfolio Template
  + Item URI: http://themeforest.net/user/krazicode/portfolio
  + Item Description: Creative agency template
  + Version: 1.0.0
  + Author: Krazicode
  + Author URI: http://themeforest.net/user/krazicode
  + License: GNU General Public License version 3.0 & Envato Regular/Extended License
  + License URI:  http://www.gnu.org/licenses/gpl-3.0.html & http://themeforest.net/licenses
*/


/* ------------------------------------------------ */
/* $Table of contents                               */
/* ------------------------------------------------ */


/*

  + $Mutual components

    > #Page loader
    > #Navigation
    > #Hero header
    > #Modals
    > #Footer

  + $Home page

    > #Home page mutual components
    > #Home page about section
    > #Home page work section
    > #Home page team section
    > #Home page services section
    > #Home page blog section
    > #Home page contact section
    > #Home page about modals
    > #Home page team modals

  + $Work page
  + $Work item page
  + $Blog
  + $404 page
  + $Plugins custom styles

    > #Perfect scrollbar
    > #Magnific popup
    > #Owl carousel

*/


/* ------------------------------------------------ */
/* $Mutual components                               */
/* ------------------------------------------------ */


/*

  > #Page loader
  > #Navigation
  > #Hero header
  > #Modals
  > #Footer

*/

/**
 * This section contains elements that are common
 * between at least two pages.
 */


/* #Page loader
/* ------------------------------ */

/*

  - @Loader animation
  - @Loader base

*/

/**
 * @Loader animation
 * -----------------
 */

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(16px, -32px);
            transform: translate(16px, -32px);
  }

  66% {
    -webkit-transform: translate(32px, 0px);
            transform: translate(32px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(16px, 32px);
            transform: translate(16px, 32px);
  }

  66% {
    -webkit-transform: translate(-16px, 32px);
            transform: translate(-16px, 32px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-32px, 0px);
            transform: translate(-32px, 0px);
  }

  66% {
    -webkit-transform: translate(-16px, -32px);
            transform: translate(-16px, -32px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

/**
 * @Loader base
 * ------------
 */

.wrap_Loader {
  z-index: 50;
}

.no-js .wrap_Loader {
  display: none;
}

  .Loader {
    position: relative;
    -webkit-transform: translate(-16px, -16px);
        -ms-transform: translate(-16px, -16px);
            transform: translate(-16px, -16px);
  }

    /**
     * Hide `loading ...` text in browsers with animation support.
     */

    .cssanimations .Loader span {
      display: none;
    }

    /**
     * Hide bullets in browsers with no animation support.
     */

    .no-cssanimations .Loader-bullet {
      display: none;
    }

    .Loader-bullet {
      position: absolute;
      width: 6px;
      height: 6px;
      -webkit-border-radius: 100%;
              border-radius: 100%;
    }

    .Loader-bullet1 {
      top: 32px;
      -webkit-animation: ball-triangle-path-1 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
              animation: ball-triangle-path-1 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
    }

    .Loader-bullet2 {
      left: 16px;
      -webkit-animation: ball-triangle-path-2 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
              animation: ball-triangle-path-2 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
    }

    .Loader-bullet3 {
      top: 32px;
      left: 32px;
      -webkit-animation: ball-triangle-path-3 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
              animation: ball-triangle-path-3 1s cubic-bezier(0.785, 0.135, 0.150, 0.860) 0s infinite both;
    }


/* #Navigation
/* ------------------------------ */

/*

  - @Base
  - @Bars button
  - @Close button
  - @Navbar list
  - @Logos
  - @Navigation responsive state

    o @@Navbar container responsive state
    o @@Bars responsive state
    o @@Close button responsive state
    o @@Navbar list responsive state
    o @@Logos responsive state

*/

/**
 * @Base
 * -----------------
 */

.Navbar {
  height: 100%;
  overflow-y: auto;
  border-width: 0 1px 0 0;
  border-style: solid;
  left: 0;
  top: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  z-index: 5;
  -webkit-transition: -webkit-transform .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
          transition: transform .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}

.Navbar.offcanvas {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

/**
 * @Bars button
 * ------------
 */

.Bars {
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  left: 1.8em;
  top: 1.8em;
  z-index: 4;
  padding: 1em;
}

  .Bar {
    display: block;
    width: 1.8em;
    height: 2px;
    background: black;
    opacity: .5;
    -webkit-transition: opacity .3s cubic-bezier(0.785, 0.135, 0.150, 0.860);
            transition: opacity .3s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  }

  .Bars:hover .Bar {
    opacity: 1;
  }

  .Bar + .Bar {
    margin-top: 3px;
  }

/**
 * @Close button
 * -------------
 */

.Navbar-close {
  left: 0;
  top: 0;
  left: 0;
  padding-top: .7em;
  padding-bottom: .7em;
  z-index: 6;
  -webkit-transition: -webkit-transform .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
          transition: transform .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.Navbar.offcanvas .Navbar-close {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
  .Navbar-close a {
    padding: .25em;
    display: block;
  }

/**
 * @Navbar list
 * ------------
 */

.NavbarList {
  position: relative;
  z-index: 2;
}

  .NavbarList-item {
    display: block;
    padding: 0;
    line-height: 1;
    text-align: center;
  }

    .NavbarList-item a {
      display: inline-block;
      padding: 1.2em 1.8em;
      position: relative;
      line-height: 1.618;
    }

      /**
       * Animatable down border.
       *
       * Used to indicate the active section
       * currently showed in the viewport on window scrolling.
       *
       * It's related to smooth scrolling plugin.
       *
       * Works on user hover.
       */

      .NavbarList-item a::after {
        content: '';
        display: block;
        width: .7em;
        height: 1px;
        position: absolute;
        left: 50%;
        margin-left: -.35em;
        bottom: 0;
        -webkit-transition: width .3s, margin .3s;
                transition: width .3s, margin .3s;
      }

      /**
       * Hide the small bottom line all logos.
       */

      .Navbar-logo a::after {
        display: none;
      }

      .NavbarList-item a.is-active::after,
      .NavbarList-item a:hover::after {
        width: 2em;
        margin-left: -1em;
      }

/**
 * @Logos
 * ------
 */

.Navbar-logo a {
  width: 106px;
  background: url(../media/images/logo-word.png) no-repeat;
  background-position: 0 50%;
}

.Navbar-logo--mobile a {
  margin-bottom: 1.8em;
}

/**
 * Hide desktop logos on mobile devices.
 */

.Navbar-logo--in-hero,
.Navbar-logo--out-hero {
 display: none;
}

/**
 * @Navigation responsive state
 * ----------------------------
 */



/* #Hero header
/* ------------------------------ */

/*

  - @Hero base
  - @Hero overlay
  - @Hero logo
  - @Hero splitted
  - @Hero title
  - @Hero description
  - @Hero header scroll icon
  - @Hero responsive state

      o @@Hero base responsive state

*/

/**
 * @Hero base
 * ----------
 */

.HeroHeader {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.HeroHeader--full {}

  .HeroHeader .Container {}

      .HeroHeader-content {
        padding: 3em 0;
        text-transform: capitalize;
      }

/**
 * @Hero logo
 * ----------
 */

.wrap_HeroHeader-logo {}

  .HeroHeader-logo {
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
  }

/**
 * @Hero splitted
 * --------------
 */

.HeroHeader-splitter {
  margin-top: 3em;
}

  .HeroHeader-splitter .Line {
    opacity: .1;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }

  .HeroHeader-splitterText {
    padding: 0 1em;
  }

/**
 * @Hero title
 * -----------
 */

.wrap_HeroHeader-title {
  margin: .5em 0;
  border-width: 0 .75em;
  border-style: solid;
  padding: 0 1em;
}

  .HeroHeader-title {
    text-transform: uppercase;
    font-weight: 900;
  }

/**
 * @Hero spaced description
 * ------------------------
 */

.HeroHeader-content > .slogan {
  margin-top: 1em;
  font-weight: bold;
}

/**
 * @Hero description
 * -----------------
 */

.HeroHeader-lead {
  font-size: 1.3em;
  opacity: .85;
}

/**
 * @Hero social list
 * -----------------
 */

.HeroHeader-socialsList {
  margin-top: 1.2em;
}

  .HeroHeader-socialsList a {
    -webkit-transition: opacity .3s;
            transition: opacity .3s;
  }

  .HeroHeader-socialsList a:hover {
    opacity: 1;
  }

/**
 * @Hero header scroll icon
 * ------------------------
 */

.ScrollLink {
  opacity: .5;
  -webkit-transition: opacity .3s;
          transition: opacity .3s;
}

.ScrollLink:hover {
  opacity: 1;
}


/**
 * @Hero responsive state
 * ----------------------
 */

@media (min-width: 60em) {

  /* @@Hero base responsive state */

  .HeroHeader-content {
    padding: 8em 0 8em;
  }
}


/* #Modals
/* ------------------------------ */

body.Modal--on {
  overflow-y: hidden;
  overflow-x: visible;
  left: -100%;
}

  .Modal {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    z-index: 0;
    -webkit-transition: left .75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
            transition: left .75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  }

  body.Modal--on .Modal.is-active {
    left: 0;
  }


/* #Footer
/* ------------------------------ */

/*

  - @Footer social list
  - @Footer copyright text

*/

/**
 * @Footer social list
 * -------------------
 */

.wrap_SocialList {
  padding: 3em 0;
}

  .SocialList {
    margin: -.25em;
  }

    .SocialList-item {
      margin: .25em;
      opacity: .5;
      -webkit-transition: opacity .3s;
              transition: opacity .3s;
    }

    .SocialList-item:hover {
      opacity: 1;
    }

/**
 * @Footer copyright text
 * ----------------------
 */

.wrap_CopyrightText {
  border-top-width: 1px;
  border-top-style: solid;
}

  .CopyrightText {
    display: inline-block;
    padding: 1.8em;
    opacity: .65;
  }


/* ------------------------------------------------ */
/* $Home page                                       */
/* ------------------------------------------------ */


/*

  > #Home page mutual components
  > #Home page about section
  > #Home page work section
  > #Home page team section
  > #Home page services section
  > #Home page blog section
  > #Home page contact section
  > #Home page about modals
  > #Home page team modals

*/


/* #Home page mutual components
/* ------------------------------ */

/**
 * This section contains elements that are common
 * between at least two sections.
 */

/**
 * @Section title
 * --------------
 */

.SectionTitle-title {
  line-height: 1;
}

.SectionTitle-describe {
  display: block;
  margin-top: .25em;
  margin-bottom: 1.2em;
}

.SectionTitle--inverted .SectionTitle-describe {
  opacity: .65;
}


/**
 * @Full page button
 * -----------------
 */

.Button--fullPage i {
  margin-left: 0.4em;
  -webkit-transition: margin .3s;
          transition: margin .3s;
}

.Button--fullPage:hover i {
  margin-left: 1.2em;
}


/* #Home page about section
/* ------------------------------ */

/**
 * @Feature boxes
 * --------------
 */

/**
 * 1. Used to stretch the features boxres container
 *    when applying padding to its childern.
 */

.FeaturesBoxes {
  margin: -3em /* [1] */
}

  /**
   * 1. Used to apply inner white space between features boxes.
   */

  .FeatureBox {
    padding: 3em /* [1] */
  }

    .FeatureBox-title {
      margin-top: 1.2em;
      margin-bottom: .7em;
    }

    .FeatureBox-describe {
      margin-top: 1.8em;
      margin-bottom: 1.8em;
    }


/* #Home page work section
/* ------------------------------ */

/*

  - @Work base
  - @Work caption

      o @@Work caption base
      o @@Work caption title
      o @@Work caption icons

  - @Work full button

*/

/**
 * @Work base
 * ----------
 */

.Thumbnails--withGutter {
  margin: -.7em;
}

  .Thumbnails--withGutter .Thumbnail {
    padding: .7em;
  }

  .Thumbnails--withGutter .wrap_Thumbnail-caption {
    margin: .7em;
  }

/**
 * @Work caption
 * -------------
 */

/* @@Work caption base */

.wrap_Thumbnail-caption {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(.7);
      -ms-transform: scale(.7);
          transform: scale(.7);
  -webkit-transition: all .3s;
          transition: all .3s;
}

/**
 * Hide project caption in case JavaScript is disabled
 */

.no-js .wrap_Thumbnail-caption {
  display: none;
}

.Thumbnail,
.Work {
  -webkit-transition: all .3s;
          transition: all .3s;  
}

.Thumbnail:hover .wrap_Thumbnail-caption {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

  .Thumbnail-caption {
    bottom: 0;
    padding: 2em;
  }

    /* @@Work caption title */

    .Thumbnail-title {
      position: relative;
      top: -2em;
      opacity: 0;
      text-align: left;
      -webkit-transition: all .3s .3s;
              transition: all .3s .3s;
    }

    .Thumbnail:hover .Thumbnail-title {
      top: 0;
      opacity: 1;
    }

    /* @@Work caption icons */

    .Thumbnail-linksList {
      margin-top: .7em;
    }

      .wrap_Thumbnail-link + .wrap_Thumbnail-link {
        margin-left: .5em
      }

        .Thumbnail-link {
          top: 2em;
          opacity: 0;
        }

        .Thumbnail:hover .Thumbnail-link {
          top: 0;
          opacity: 1;
        }

        .Thumbnail-link:hover {
          -webkit-box-shadow: inset 0 0 0 2px transparent;
                  box-shadow: inset 0 0 0 2px transparent;
        }

        .Thumbnail-link--zoom {
          -webkit-transition: all .3s, top .3s .3s,  opacity .3s .3s;
                  transition: all .3s, top .3s .3s,  opacity .3s .3s;
        }

        .Thumbnail-link--url {
          -webkit-transition: all .3s, top .3s .4s,  opacity .3s .4s;
                  transition: all .3s, top .3s .4s,  opacity .3s .4s;
        }

/**
 * @Work full button
 * -----------------
 */

/**
 * 1. Used to fix the small gap below the pojects wrapper.
 */

.Work-button {
  margin-top: -1px /* [1] */
}


/* #Home page team section
/* ------------------------------ */

.Members {
  margin: -1em !important;
}

  .Member {
    padding: 1em !important;
  }

    .Member-name {
      font-weight: bold;
    }

    .Member img {
      width: auto !important;
      margin: 0 auto;
    }


/* #Home page services section
/* ------------------------------ */

/*

  - @Splitted overlay
  - @Services title
  - @Services content
  - @Services responsive state
      o @@Splitted overlay responsive state
      o @@Services content responsive state

*/

/**
 * @Splitted overlay
 * -----------------
 */

.Section--splitted {
  padding: 8em 0;
}

  .splittedOverlay {
    display: none;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-position: -200px center;
    -webkit-background-size: cover;
            background-size: cover;
    background-attachment: fixed;
  }

/**
 * @Services title
 * ---------------
 */

.wrap_Services-SectionTitle {
  padding-right: 3em;
}

/**
 * @Services content
 * -----------------
 */

.wrap_Services {
  padding-top: 5em;
}

  .Services {
    margin: -2em;
  }

    .wrap_Service {
      padding: 2em;
    }

      .Service-content {
        padding-left: 2em;
      }

        .Service-title {
          padding-bottom: .7em;
          text-transform: capitalize;
        }

/**
 * @Services responsive state
 * --------------------------
 */

@media (min-width: 60em) {

  /* @@Splitted overlay responsive state */

  .Section--splitted {
    padding: 0;
  }

    .splittedOverlay {
      display: block;
    }

  /* @@Services content responsive state */

  .wrap_Services {
    padding: 8em 0 8em 5em;
  }
}


/* #Home page blog section
/* ------------------------------ */

/*

  - @Excerpt

      o @@Excerpt content
      o @@Excerpt image

  - @Blog responsive state

*/

/**
 * @Excerpt
 * --------
 */

/* @@Excerpt image */

.Excerpt-image {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
          background-size: cover;
}

/* @@Excerpt content */

.Excerpt-content {
  position: relative;
  padding: 3em;
}

  .meta-item {
    margin-bottom: .2em;
  }

    .meta-item i {
      margin-right: .5em;
    }

  .Excerpt-title {
    margin-top: 1em;
  }

  .Excerpt-decribe {
    padding: 1.2em 0;
  }

  .Excerpt-link:hover {
    -webkit-box-shadow: inset 0 0 0 2px transparent;
            box-shadow: inset 0 0 0 2px transparent;
  }

/**
 * @Blog responsive states
 * -----------------------
 */

/**
 * Make the excerpt image take the whole width
 * on Phones only.
 */

@media (max-width: 48em) {
  .Excerpt-image::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%;
  }
}

/**
 * Achieve zigzag effect between excerpt image and excerpt content
 * for portrait tablets only.
 */

@media (min-width: 48em) and (max-width: 75em) {
  .wrap_Excerpt:nth-child(even) .Excerpt-image {
    left: 50%;
  }

  .wrap_Excerpt:nth-child(even) .Excerpt-content {
    right: 50%;
  }
}

/**
 * 1. Unbox the excepts container on large devices.
 *
 * 2. Inverse the order of excerpt image and excerpt content
 *    each 2 excerpts on desktop devices.
 */

@media (min-width: 75em) {

  /* [1] */
  .Excerpts {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

    /* [2] */
    .wrap_Excerpt:nth-child(4n-1) .Excerpt-image,
    .wrap_Excerpt:nth-child(4n-1) + .wrap_Excerpt .Excerpt-image {
      left: 50%;
    }

    .wrap_Excerpt:nth-child(4n-1) .Excerpt-content,
    .wrap_Excerpt:nth-child(4n-1) + .wrap_Excerpt .Excerpt-content {
      right: 50%;
    }
}


/* #Home page contact section
/* ------------------------------ */

/*

  - @Contact responsive state
  - @Contact form
  - @Contact info

*/

/**
 * @Contact info
 * -------------
 */

/**
 * 1. Used to stretch the contact info boxes container
 *    when applying padding to its childern.
 */

.ContactInfo {
  margin: -1.8em /* [1] */
}

  /**
   * 1. Used to apply inner white space between contact info boxes.
   */

  .wrap_ContactInfo-item {
    padding: 1.8em /* [1] */
  }

    .wrap_ContactInfo-icon {
      padding-right: 1em;
    }

    .ContactInfo-title {
      line-height: 1;
    }

    .ContactInfo-describe {
      margin-top: 0.4em;
    }

/**
 * @Contact form
 * -------------
 */

/**
 * 1. Used to make the borders override each other.
 */

.ContactForm-input {
  margin-bottom: -2px /* [1] */
}

textarea.ContactForm-input {
  margin-top: 0;
  resize: none;
}

/**
 * 1. Used to make the focused input on top of all surrounding
 *    inputs so the border color of the current focused input
 *    is the same color for all sides.
 */

.ContactForm-input:focus {
  z-index: 1 /* [1] */
}

/**
 * 1. Used to move the icon from the top distace equal to the
 *    top border width.
 * 2. Used to move the icon from the right distace equal to the
 *    right border width.
 * 3. Vertical align center the icon.
 * 4. Bring the icon on top of the input text.
 */

.ContactForm-addon {
  padding: 0 .42em;
  font-size: 2em;
  right: 2px;         /* [1] */
  top: 2px;           /* [2] */
  margin-top: .42em;  /* [3] */
  z-index: 2;         /* [4] */
  opacity: .4;
}

.ContactForm-cell:nth-child(2) {
  min-height: 140px;
}

.ContactForm-submit {
  font-family: 'Icon Font';
  font-size: 2.55em;
  z-index: 2;
}

/**
 * @Contact responsive state
 * -------------------------
 */

 @media (min-width: 48em) {

   /* @@Contact form responsive state */

   .ContactForm-form {
     margin-right: -2px;
   }

     .ContactForm-cell {
       margin-right: -2px;
     }
 }


/* #Home page about modals
/* ------------------------------ */

/*

  - @About modal base
  - @Story modal
  - @Approach modal
  - @Strategy modal
  - @About modal responsive state

*/

/**
 * @About modal base
 * -----------------
 */

.Modal--about .Modal-header {
  padding: 11em 0 8em;
}

#about-modal .Panel {
  position: absolute;
  top: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(.8);
      -ms-transform: scale(.8);
          transform: scale(.8);
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: -webkit-transform .75s ease-in-out, opacity .75s ease-in-out, visibility .75s ease-in-out;
          transition: transform .75s ease-in-out, opacity .75s ease-in-out, visibility .75s ease-in-out;
}

#about-modal .Panel.is-active {
  position: relative;
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/**
 * @Story modal
 * ------------
 */

.Story-content h4 {
  margin-bottom: 1em;
}

.Story-content p {
  padding-bottom: 3em;
  margin-bottom: 3em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.Story-content p + p {
  margin-top: 1.5em;
}

.Story-content :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/**
 * @Approach modal
 * ---------------
 */

.Approach-description {
  padding: 3em;
}

.Approach-description h6 {
  font-style: italic;
}

.Approach-description h4 {
  margin-bottom: .7em;
}

/**
 * @Strategy modal
 * ---------------
 */

.Strategy-item:first-child .Strategy-component {
  padding-top: 0;
}

.Strategy-item:last-child .Strategy-component {
  padding-bottom: 0;
  border-bottom: 0;
}

.Strategy-component {
  padding: 5em 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

  .Strategy-number {
    margin: 0 1em;
    font-size: 5em;
    font-style: italic;
    font-weight: 900;
    opacity: .2;
  }

  .Strategy-content h4 {
    margin-bottom: .7em;
  }

  .Strategy-content p + p {
    margin-top: 1em;
  }

/**
 * @About modal responsive state
 * -----------------------------
 */

/**
 * Inverse the order of image and content each list item.
 */

.TabsList {
  z-index: 3;
  position: relative;
}

@media (min-width: 48em) {
  .wrap_Approach-image:nth-child(4n-1) {
    position: relative;
    left: 50%;
  }

  .wrap_Approach-image:nth-child(4n-1) + .Approach-description {
    position: relative;
    right: 50%;
  }
}

/**
 * Hide strategy numbering on mobile devices.
 */

@media (max-width: 48em) {
  .wrap_Strategy-number {
    display: none;
  }
}


/* #Home page team modals
/* ------------------------------ */

/*

  - @Image tabs
  - @Member Intro
  - @Member skills
  - @Member experience

*/

/**
 * @Image tabs
 * -----------
 */

.Member-tabs a {
  opacity: .5;
}

.Member-tabs a:hover,
.Member-tabs .is-active {
  opacity: 1;
}

#members-modal .Panel.Container {
  position: absolute;
  top: 8em;
  padding-left: inherit;
  padding-right: inherit;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 20em);
      -ms-transform: translate(-50%, 20em);
          transform: translate(-50%, 20em);
  z-index: 1;
  -webkit-transition: -webkit-transform .75s ease-in-out, opacity .75s ease-in-out, visibility .75s ease-in-out;
          transition: transform .75s ease-in-out, opacity .75s ease-in-out, visibility .75s ease-in-out;
}

#members-modal .Panel.is-active {
  position: relative;
  top: 0;
  padding-left: 0;
  padding-right: 0;
  visibility: visible;
  opacity: 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
}

/**
 * @Member Intro
 * -------------
 */

.Member-intro {
  margin: -1.8em;
}

  .Intro-item {
    padding: 1.8em;
  }

    .Member-info h4 {
      margin-bottom: .4em;
    }

    .Member-socials {
      margin-top: 1.2em;
      margin-bottom: 1.8em;
    }

      .Member-socials a:hover {
        opacity: 1;
      }

    .Member-info p {
      margin-top: 1em;
    }

/**
 * @Member skills
 * --------------
 */

.Skills {
  margin: -2em;
}

  .Skill {
    padding: 2em;
  }

    .Skill-percent {
      margin-left: 1em;
    }

    .Skill-rail {
      width: 100%;
      height: 2px;
      position: relative;
      margin-top: .7em;
      overflow: hidden;
    }

      .Skill-meter {
        width: 0;
        height: 100%;
        position: absolute;
        left: 0;
        -webkit-transition: width .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
                transition: width .4s cubic-bezier(0.785, 0.135, 0.150, 0.860);
      }

/**
 * @Member experience
 * ------------------
 */

.Experience-content :first-child {
  padding-top: 0;
}

.Experience-content :last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

  .Experience-item {
    padding: 3em 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

    .Experience-content h6 {
      text-transform: uppercase;
      font-weight: bold;
    }

    .Experience-content p {
      margin-top: 1em;
    }

    .Member-title .Line {
      margin-top: .7em;
    }


/* ------------------------------------------------ */
/* $Work page                                       */
/* ------------------------------------------------ */


/*

  > #Work page category filter
  > #Work page work
  > #Work page load more button

*/


/* #page mutual components
/* ------------------------------ */

/**
 * This section contains elements that are common
 * between at least two sections.
 */


/* #Work page category filter
/* ------------------------------ */

/**
 * @
 * -
 */

@media (max-width: 48em) {
  .Work-filter li {
    width: 100%;
  }

  .Work-filter li + li {
    margin-top: .7em;
  }

    .Work-filter li:before {
      display: none;
    }
}


/* #Work page work
/* ------------------------------ */

.Work {
  margin: -1.8em;
}

.Work + .Work {
  padding-top: 3em;
}

  .Work > div {
    padding: 1.8em;
  }

    .Work-category {
      top: 0;
      left: 0;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }

    /**
     * Fix for bottom space in some icons
     */

    .Work-category [class*="icon-"]:before {
      display: block;
      margin-top: 2px;
    }

    .Work-date {
      top: 0;
      right: 0;
      cursor: auto;
    }

    .Work-info h5 {}

    .Work-info .Line {
      margin-top: .7em;
    }

    .Work-info p {
      margin: 1.8em 0;
    }

    .Work-info .ShareList {
      margin-bottom: 1.8em;
    }

    .Work-info .ShareList a {
      opacity: .7;
    }

    .Work-info .ShareList a:hover {
      opacity: 1;
    }

/**
 * @Work resposive state
 * ---------------------
 */

@media (max-width: 48em) {
  .Work-category {
    display: none;
  }
}


/* #Work page load more button
/* ------------------------------ */

/**
 * @
 * -
 */


/* ------------------------------------------------ */
/* $Work item page                                  */
/* ------------------------------------------------ */


/* #page mutual components
/* ------------------------------ */

/**
 * This section contains elements that are common
 * between at least two sections.
 */

.Project-nav a {
  opacity: .7;
}

.Project-nav a:hover {
  opacity: 1;
}

@media (max-width: 48em) {
  .Project-nav h6 {
    display: none;
  }
}

.FullProject-titleLine {
  margin: .7em 0 1.8em;
}

.FullProject-description {
  margin: -3em;
}

  .FullProject-description > .Grid-cell {
    padding: 3em;
  }

  .FullProject-description p + p {
	margin-top: 1.6em;
  }

.Thumbnails-grid {
  margin: -.7em;
}


  .Thumbnails-grid > .Grid-cell {
    padding: .7em;
  }

.Thumbnails--workItem .Icon {
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .3s, opacity .3s;
          transition: transform .3s, opacity .3s;
}

.Thumbnails--workItem .FlexEmbed:hover .Icon {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* ------------------------------------------------ */
/* $Blog                                            */
/* ------------------------------------------------ */


/*

  > #Blog base
  > #Posts

    - @Post base
    - @Post header
    - @Post content
    - @Post footer
    - @Post navigation
    - @Post author info
    - @Post formats

  > #Comments

    - @Comment author
    - @Comment title
    - @Comment meta data
    - @Comment content
    - @Comment reply link

  > #Comment form
  > #Sidebar & Widgets

    - @Sidebar base
    - @Widget base
    - @Social widget
    - @Search widget
    - @Categories widget
    - @Recent entries widget
    - @Recent comments widget
    - @Tags widget
    - @Calendar widget
    - @RSS widget
    - @Archive widget
    - @Twitter widget

*/


/* #Blog base
/* ------------------------------ */

/**
 * @Alignments
 * -----------
 */

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft,
blockquote.alignright,
.wp-caption.alignright,
img.alignright,
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  margin: 1.8em;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin-left: 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin-right: 0;
}

img.alignleft,
img.alignright {
  margin-bottom: 1.8em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
}

figcaption {
  margin-top: .5em;
}

/**
 * @White space
 * ------------
 */

.Blog-content {
  margin: -3em;
}

  .Blog-content > .Grid-cell {
    padding: 3em;
  }

  .Main > *:not(:first-child) {
    margin-top: 5em;
  }

    .post > *:not(:first-child),
    .comments-area > *:not(:first-child),
    .comment-respond > *:not(:first-child) {
      margin-top: 3em;
    }

    .entry-content > *:not(:first-child),
    .comment-content > *:not(:first-child) {
      margin-top: 1.8em;
    }

/**
 * @Pager
 * ------
 */

.pager {
  text-align: center;
  list-style: none;
  overflow: hidden
}

  .pager li {
    display: inline;
  }

    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      border-width: 1px;
      border-style: solid;
      -webkit-border-radius: 15px;
              border-radius: 15px;
    }

    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
    }

    .pager .next > a,
    .pager .next > span {
      float: right;
    }

    .pager .next > span {
      margin-right: .25em;
    }

    .pager .previous > span {
      margin-left: .25em;
    }

    .pager .previous > a,
    .pager .previous > span {
      float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
      opacity: .5;
      cursor: default;
    }

      .pager .next > a::after {
        content: "→";
      }

      .pager .previous > a::before {
        content: "←";
      }

      .pager .next a span {
        margin-right: .25em;
      }

      .pager .previous a span {
        margin-left: .25em;
      }

.says,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}


/* #Posts
/* ------------------------------ */

/**
 * @Post base
 * ----------
 */

.post {
  position: relative;
}

body:not(.single) .post:not(:first-child) {
  padding-top: 3em;
  border-top-width: 1px;
  border-top-style: solid;
}

body:not(.single) .post:not(:last-child) {
  padding-bottom: 3em;
}

/* @@Sticky post */

.post.sticky::before {
  content: "✸";
  display: none;
  padding: .7em;
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-132%);
      -ms-transform: translateX(-132%);
          transform: translateX(-132%);
  margin-top: .5ex;
}

@media (min-width: 48em) {
  .post.sticky::before {
    display: block;
  }
}

/**
 * @Post header
 * ------------
 */

/* @@Post title */

.entry-title {
  font-weight: bold;
  text-transform: capitalize;
}

/* @@Post meta */

.entry-meta {
  margin: .4em 0 -.7em -.7em;
  font-style: italic;
  font-weight: bold;
}

  .entry-meta > span {
    margin: .7em;
  }

    .entry-meta span a,
    .entry-meta span span {
      margin-left: .25em;
      font-style: normal;
      font-weight: normal;
    }

/* @@Post meta responsivity */

@media (max-width: 48em) {
  .entry-meta > span {
    display: block;
  }
}

/**
 * @Post content
 * -------------
 */

.single-post .entry-content {
  font-size: 1rem;
}

/* @@More link */

.more-link {
  display: block;
  font-weight: bold;
  margin-top: 1.8em;
}

  .more-link::after {
    content: " →";
  }

/* @@Lists */

.entry-content ol,
.entry-content ul {
  margin-left: 1em;
}

.entry-content ol ol,
.entry-content ul ul,
.entry-content ol ul,
.entry-content ul ol {
  margin-left: 1.8em;
}

  .entry-content li {
    margin: .25em 0;
  }

/* @@Iframes */

.entry-content iframe {
  width: 100% !important;
}

.twitter-tweet-rendered {
  width: 100% !important;
}

.entry-content .twitter-tweet-rendered {
  margin-top: 2.4em !important;
}

/* @@Images */


/**
 * @Post footer
 * ------------
 */


/**
 * @Post navigation
 * ----------------
 */


/**
 * @Post author info
 * -----------------
 */


/**
 * @Post formats
 * -------------
 */

/* @@Password Protected */

.post-password-form {}

  .post-password-form [type="password"] {
    display: inline-block;
    min-width: 200px;
    position: relative;
    width: 100%;
    padding: 1em;
    border-width: 2px;
    border-style: solid;
    background: transparent;
  }

  .post-password-form [type="submit"] {
    display: inline-block;
    position: relative;
    font-size: .9em;
    letter-spacing: .025em;       /* [1] */
    line-height: normal;          /* [2] */
    text-align: center;
    text-transform: capitalize;
    padding: 1em 1.618em;
    text-decoration: none;
    white-space: normal;          /* [3] */
    cursor: pointer;
    -webkit-appearance: none;     /* [4] */
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;  /* [5] */
  }


/* #Comments
/* ------------------------------ */

.comment-list,
.comment-list .children {
  list-style: none;
}

  .comment-list li {
    border-top-width: 1px;
    border-top-style: solid;
  }

  .comment-list > li:first-child {
    border-top: 0;
  }

  .comment-list .children {
    margin-left: 2em;
  }

    .comment-list .comment-body {
      padding: 2em 2em 2em 0;
    }

    .bypostauthor > .comment-body {
      border-right-width: 3px;
      border-right-style: solid;
    }

/**
 * @Comment author
 * ---------------
 */

.comment-author {
  margin-bottom: 0.2em;
}

  .comment-author .avatar {
    float: left;
    height: 4em;
    width: 4em;
    margin-right: 1.8em;
  }

/**
 * @Comment title
 * --------------
 */


/**
 * @Comment meta data
 * ------------------
 */

.comment-metadata {
  font-size: .9em;
  font-style: italic;
}

  .comment-metadata > a,
  .comment-metadata > span {
    margin-right: 1.8em;
  }

/**
 * @Comment content
 * ----------------
 */

.comment-content {
  margin: 1.2em 0 1.2em 5.8em;
}

/**
 * @Comment reply link
 * -------------------
 */

.reply {
  margin-left: 5.8em;
}


/* #Comment form
/* ------------------------------ */

.comment-form .Input {
  margin-bottom: -2px;
}

.comment-form .Input:focus {
  z-index: 1;
}

.comment-form textarea {
  min-height: 10em;
}

#comment-submit {
  z-index: 2;
}


/* #Sidebar & Widgets
/* ------------------------------ */

/**
 * @Sidebar base
 * -------------
 */


/**
 * @Widget base
 * ------------
 */

/**
 * Set the inner white space between widgets.
 */

.widget {
  margin-bottom: 3em;
}

.widget:last-child {
  margin-bottom: 0;
}

  /**
   * Set the inner white space between widget direct children
   * like widget title and widget content.
   */

  .widget > * {
    margin-top: 1.5em;
  }
  .widget > :first-child {
    margin-top: 0;
  }

/* @@Widget title */

.widget-title {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

  .widget-title::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 0;
    color: inherit;
    border: 1px solid;
    margin-top: .4em;
  }

/* @@Widget list */

.widget ul {
  list-style: none;
}

  .widget ul li {
    padding: .7em 0;
    position: relative;
  }

  .widget ul li:not(:last-child) {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }

    .widget li:before {

    }

    .widget li a {
      display: inline-block;
    }

/**
 * Prepare specific widgets for inserting cutom bulltes
 */

.widget_categories ul li,
.widget_recent_entries ul li,
.widget_recent_comments ul li,
.widget_archive ul li {
  padding-left: 2em;
}

.widget_categories li::before,
.widget_recent_entries li::before,
.widget_recent_comments li::before,
.widget_archive li::before,
.widget_twitter li::before {
  display: inline-block;
  vertical-align: middle;
  font-family: "Icon Font";
  font-size: .9em;
  position: absolute;
  left: 0;
}

/**
 * @Social widget
 * --------------
 */

.widget_social ul li {
  border-bottom-width: 0 !important;
}

/**
 * @Search widget
 * --------------
 */

.widget_search form,
.no-results form {
  position: relative;
}

.no-results form {
  margin-top: 2em;
}

  .widget_search form::after,
  .no-results form::after {
    content: "\e7c2";
    display: block;
    position: absolute;
    top: 50%;
    right: 1.2em;
    font-family: "Icon Font";
    padding-left: 1.2em;
    background: #fff;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }

  .widget_search input[type="text"],
  .no-results input[type="text"] {
    border-width: 2px;
    border-style: solid;
    padding: 1.2em;
    display: block;
    width: 100%;
  }

/**
 * @Categories widget
 * ------------------
 */

.widget_categories li::before {
  content: "\e792";
}

/**
 * @Recent entries widget
 * ----------------------
 */

.widget_recent_entries li::before {
  content: "\e7d0";
}

/**
 * @Recent comments widget
 * -----------------------
 */

.widget_recent_comments li {
  font-weight: bold;
  font-style: italic;
}

  .widget_recent_comments li a,
  .widget_recent_comments li::before {
    font-weight: normal;
    font-style: normal;
  }

  .widget_recent_comments li::before {
    content: "\e7c9";
  }

/**
 * @Tags widget
 * ------------
 */

.widget_tag_cloud a {
  display: inline-block;
  position: relative;
  font-size: .9em;
  letter-spacing: .025em;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  padding: 1em 1.618em;
  margin-bottom: 4px;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  background: transparent;
  -webkit-box-shadow: inset 0 0 0 2px;
          box-shadow: inset 0 0 0 2px;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.widget_tag_cloud a:hover {
  -webkit-box-shadow: inset 0 0 0 2px transparent;
          box-shadow: inset 0 0 0 2px transparent;
}

/**
 * @Calendar widget
 * ----------------
 */

.widget_calendar td,
.widget_calendar th {
  border-left: 0;
  border-right: 0;
  border-width: 2px;
}

  .widget_calendar a:hover {
    text-decoration: underline;
  }

.widget_calendar caption {
  padding: .7em 0;
}

/**
 * @RSS widget
 * -----------
 */

.widget_rss ul li {
  padding: 1.2em 0;
}

.widget_rss ul li:first-child {
  padding-top: 0;
}

.widget_rss ul li:last-child {
  padding-bottom: 0;
}

/**
 * @Archive widget
 * ---------------
 */

.widget_archive li::before {
  content: "\e7cf";
}

/**
 * @Twitter widget
 * ---------------
 */

.widget_twitter ul li {
  padding: 1.8em 0 1.8em 2em;
}

.widget_twitter ul li:first-child {
  padding-top: 0;
}

.widget_twitter ul li:last-child {
  padding-bottom: 0;
}

  .widget_twitter li::before {
    content: "\e67f";
  }

/* @@Iframe type widget */

.widget .twitter-tweet-rendered {
  margin-top: 1.5em !important;
}

/* ------------------------------------------------ */
/* $404 page                                        */
/* ------------------------------------------------ */


/* #page mutual components
/* ------------------------------ */

/**
 * This section contains elements that are common
 * between at least two sections.
 */

.wrap_Lost-title {
  padding: 1.2em 3em;
  position: relative;
  -webkit-transform: translateY(50%) skewX(-30deg);
      -ms-transform: translateY(50%) skewX(-30deg);
          transform: translateY(50%) skewX(-30deg);
}

.Lost-title {
  -webkit-transform: skewX(30deg);
      -ms-transform: skewX(30deg);
          transform: skewX(30deg);
}

.Lost-body {
  padding: 5em;
}

  .Lost-explain {
    margin-bottom: 2em;
  }


/* ------------------------------------------------ */
/* $Plugins custom styles                           */
/* ------------------------------------------------ */


/*

  > #Perfect scrollbar
  > #Magnific popup
  > #Owl carousel

*/


/**
 * This section contains custom styles for the plugins used.
 *
 * You can delete the whole plugin section if you want to use its
 * default styles found on `plugins.min.css`.
 */
 /* perfect-scrollbar v0.6.2 */

#scrollbar {
  position: relative;
  height: 100%;
}

.ps-container {
  overflow: hidden !important;
}

.ps-in-scrolling {
  pointer-events: none;
}

  .ps-active-x > .ps-scrollbar-x-rail,
  .ps-active-y > .ps-scrollbar-y-rail {
    display: block;
  }

  .ps-scrollbar-y-rail,
  .ps-scrollbar-x-rail {
    display: none;
    background-color: hsla(0, 0%, 0%, 0);
  }

  .ps-scrollbar-x-rail,
  .ps-scrollbar-x {
    position: absolute;
    bottom: 0;
    height: 3px;
  }

  .ps-scrollbar-y-rail,
  .ps-scrollbar-y {
    position: absolute;
    right: 0;
    width: 3px;
  }

  .ps-scrollbar-x-rail,
  .ps-scrollbar-y-rail,
  .ps-scrollbar-x,
  .ps-scrollbar-y {
    -webkit-transition: background-color .2s linear;
            transition: background-color .2s linear;
  }

  .ps-scrollbar-y-rail:hover,
  .ps-scrollbar-x-rail:hover {
    background-color: hsla(0, 0%, 0%, 0.15);;
  }

  .ps-container:hover .ps-scrollbar-x,
  .ps-container:hover .ps-scrollbar-y {
    background-color: hsla(0, 0%, 0%, 1);
  }


/* #Magnific popup
/* ------------------------------ */

/* bg */
.mfp-bg {
  -webkit-background-size: 4px 4px;
          background-size: 4px 4px;
}

  /* close */
  .mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    position: fixed;
    width: 48px;
    right: 0;
    padding-right: 0;
    text-align: center;
    height: 48px;
  }

    /* image caption */
    .mfp-bottom-bar {
      margin-top: -74px;
      padding: 0 1em;
    }

    .mfp-title {
      position: absolute;
      left: 0;
      top: 0;
      padding: .6em 1em;
      font-size: 14px;
    }

    .mfp-counter {
      padding: .6em 1em;
      font-size: 14px;
    }

/* prev */
.mfp-arrow  {
  text-align: center;
}
.mfp-arrow:before {
  display: none;
}
.mfp-arrow:after {
  border: 0;
  font-family: 'Icon Font';
  font-size: 3em;
  position: relative;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  width: auto;
  height: auto;
  line-height: 110px;
}
.mfp-arrow-left:after {
  content: '\e69c';
}
.mfp-arrow-right:after {
  content: '\e69e';
}


/* #Owl carousel
/* ------------------------------ */

.owl-carousel {
  overflow: hidden;
}


.owl-theme .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3em;
}

  .owl-theme .owl-nav > div {
    position: absolute;
    width: 1.5em;
    height: 3em;
    line-height: 3em;
    font-size: 2em;
    text-align: center;
    background: #fff;
    color: #000;
    font-family: "Icon Font";
    opacity: .6;
    -webkit-transition: opacity 350ms ease-in-out, left 350ms ease-in-out, right 350ms ease-in-out;
            transition: opacity 350ms ease-in-out, left 350ms ease-in-out, right 350ms ease-in-out;
  }

  .owl-theme .owl-nav > div:hover {
    opacity: 1;
  }

  .owl-prev { left: -1.5em; }
  .owl-carousel:hover .owl-prev { left: 0 }

  .owl-next { right: -1.5em; }
  .owl-carousel:hover .owl-next { right: 0 }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 1em;
  height: 1em;
  margin: 1.66em .33em;
  background: #000;
  opacity: .2;
  display: block;
  -webkit-transform: rotate(-45deg) scale(0.707);
      -ms-transform: rotate(-45deg) scale(0.707);
          transform: rotate(-45deg) scale(0.707);
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
          transition: opacity 200ms ease;
}

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

  .inner-dots .owl-dots .owl-dot span {
    display: inline-block;
  }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  opacity: 1;
}

/*************DEMO******************/

/**
 * $Landing page
 */

/* @Base */
.intro,
.main {
  padding: 8em 0;
  text-align: center;
}

.intro h1,
.main h5,
.main h6 {
  font-weight: bold;
  text-transform: capitalize;
}


/* @Intro */
.intro {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

  .intro h1 {
    color: #fff;
  }

  .intro .Button {
    margin-top: 3em;
  }


/* @Main */
.main h5:not(:first-of-type) {
  margin-top: 5em;
}

.main .Grid {
  margin: 3em -2em -2em -2em;
}

  .main .Grid-cell {
    padding: 2em;
    text-align: center;
  }

  .main a {
    display: block;
    transition: opacity 300ms;
  }

  .main a:hover,
  .main a:visited {
    opacity: .5
  }

    .main h6 {
      margin-top: 3em;
    }


/* @Footer */
.footer {
  text-align: center;
  padding: 3em 0;
}



#schemer
{
  position: fixed;
  width: 286px;
  top: 20%;
  left: -246px;
  z-index: 50;
  text-align: center;
}

#schemer.opened
{ left: 0 !important; }

  .schemer-content
  {
    width: 246px;
    background-color: #fff;
    padding: 15px 20px 20px;
    border: 1px solid #e5e5e5;
  }

  #schemer .btn
  {
    font-size: 11px;
    height: 33px;
    padding: 0;
    line-height: 33px;
    min-width: 206px;
    margin-top: 5px;
  }


  .schemer-opener
  {
    width: 40px;
    float: right;
    clear: both;
  }

    .schemer-opener a
    {
      display: block;
      line-height: 40px;
      background-color: #fff;
      border-top-right-radius: 2px;
      border-bottom-right-radius: 2px;
      border: 1px solid #e5e5e5;
      border-left: 0;
    }

  .schemer-skins-list
  {
    margin-top: 20px;
    margin-left: -5px;
  }

    .schemer-skins-list li
    {
      width: 33.333%;
      padding-left: 5px;
      padding-bottom: 5px;
      vertical-align: middle;
      list-style: none;
    }

      .schemer-skins-list li a
      {
        display: block;
        width: 100%;
        height: 40px;
      }

      .blue   { background-color: #0aadff; }
      .yellow { background-color: #ffad0a; }
      .purple { background-color: #7f70cb; }
      .mint   { background-color: #1abb93; }
      .green  { background-color: #2ecb71; }
      .black  { background-color: #171717; }
      .coffee { background-color: #a38570; }
      .pink   { background-color: #f179bf; }
      .red    { background-color: #ff470a; }

/* buy button */

#wrap_buy {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

#wrap_buy::before,
#buy_content::before,
#close_buy::before
 {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9em 0 0 9em;
  border-color: transparent transparent transparent #ed5a5a;
}

#buy_content {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  line-height: 13.5em;
  text-indent: .6em;
}
#buy_content::before {
    position: absolute;
  top: 0;
  left: 0;
  opacity: 0;

}

#buy_content::after {
    position: absolute;
  top: 0;
  left: 0;
  opacity: .2;
  content: "";
  font-family: "Icon Font";
  font-size: 4em;
  transform: rotate(-30deg);
}

.icon {

}

#close_buy {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

#close_buy::after {
      position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-family: "Icon Font";
  font-size: 2.5em;
  line-height: 2.35em;

}

#close_buy::before {
  border-width: 4.5em 0 0 4.5em;
  border-left-color: rgba(0,0,0,.12);
}


@media (max-width: 768px) {
  #wrap_buy {
    display: none;
  }
}