/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* Color */
/* Typography */
/* Header */
/* Socials Color */
/* Responsive Size */
/* overlay position  */
/* ANIMATION */
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300italic,300,400italic,700,700italic,900,900italic);
/* Header Top Section */
/* entry Media */
/* Images */
/* Default Button */
/* CMS Filter */
/* all style for extensions used in this theme */
/* REV Slider */
/* Global Style
 * Style use for all class name, element 
*/
/* min width 1280px and max width 1599px */
@-webkit-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

@-moz-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

@-ms-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

@-o-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

@keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

@keyframes left {
  25% {
    transform: translateX(-250%);
    animation-timing-function: ease-in; }

  50% {
    transform: translateX(-150%); } }

@keyframes right {
  /* wave */
  50% {
    transform: translateX(150%); }

  75% {
    transform: translateX(250%);
    animation-timing-function: ease-in; }

  100% {
    transform: translateX(150%); } }

@keyframes jump1 {
  12% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  24% {
    transform: translate(40px, 0); }

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

@keyframes jump2 {
  12% {
    transform: translate(0, 0); }

  24% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  36% {
    transform: translate(40px, 0); }

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

@keyframes jump3 {
  24% {
    transform: translate(0, 0); }

  36% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  48% {
    transform: translate(40px, 0); }

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

@keyframes wipe {
  /* circus */
  48% {
    transform: translateX(-120px); }

  100% {
    transform: translateX(-120px); } }

@keyframes position {
  50% {
    left: 100%; } }

@keyframes size {
  /* Atom */
  50% {
    transform: scale(0.5, 0.5); } }

@keyframes AtomPosition {
  50% {
    top: 80px;
    left: 80px; } }

@keyframes size {
  50% {
    transform: scale(0.5, 0.5); } }

@keyframes zindex {
  100% {
    z-index: 10; } }

@keyframes shrink {
  /* Fusstion */
  50% {
    transform: scale(0.9, 0.9); } }

@keyframes ball1 {
  50% {
    top: -100%;
    left: 200%;
    background: rgba(127, 127, 0, .5); }

  100% {
    top: 50%;
    left: 100%;
    background: rgba(0, 255, 0, .5);
    z-index: 2; } }

@keyframes ball2 {
  50% {
    top: 200%;
    left: 200%;
    background: rgba(0, 255, 255, .5); }

  100% {
    top: 100%;
    left: 50%;
    background: rgba(0, 0, 255, .5);
    z-index: 1; } }

@keyframes ball3 {
  50% {
    top: 200%;
    left: -100%;
    background: rgba(255, 0, 255, .5); }

  100% {
    top: 50%;
    left: 0%;
    background: rgba(255, 255, 0, .5);
    z-index: 2; } }

@keyframes ball4 {
  /* Mitosis */
  50% {
    top: -100%;
    left: -100%;
    background: rgba(255, 127, 0, .5); }

  100% {
    top: 0%;
    left: 50%;
    background: rgba(255, 0, 0, .5);
    z-index: 1; } }

@keyframes invert {
  100% {
    transform: rotate(180deg); } }

@keyframes Mitosisball1 {
  12% {
    transform: none; }

  26% {
    transform: translateX(25%) scale(1, 0.8); }

  40% {
    transform: translateX(50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(50%) scale(0.8, 0.8); }

  74% {
    transform: translate(50%, 25%) scale(0.6, 0.8); }

  88% {
    transform: translate(50%, 50%) scale(0.6, 0.6); }

  100% {
    transform: translate(50%, 50%) scale(0.6, 0.6); } }

@keyframes Mitosisball2 {
  12% {
    transform: none; }

  26% {
    transform: translateX(25%) scale(1, 0.8); }

  40% {
    transform: translateX(50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(50%) scale(0.8, 0.8); }

  74% {
    transform: translate(50%, -25%) scale(0.6, 0.8); }

  88% {
    transform: translate(50%, -50%) scale(0.6, 0.6); }

  100% {
    transform: translate(50%, -50%) scale(0.6, 0.6); } }

@keyframes Mitosisball3 {
  12% {
    transform: none; }

  26% {
    transform: translateX(-25%) scale(1, 0.8); }

  40% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  74% {
    transform: translate(-50%, 25%) scale(0.6, 0.8); }

  88% {
    transform: translate(-50%, 50%) scale(0.6, 0.6); }

  100% {
    transform: translate(-50%, 50%) scale(0.6, 0.6); } }

@keyframes Mitosisball4 {
  /* Flower */
  12% {
    transform: none; }

  26% {
    transform: translateX(-25%) scale(1, 0.8); }

  40% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  74% {
    transform: translate(-50%, -25%) scale(0.6, 0.8); }

  88% {
    transform: translate(-50%, -50%) scale(0.6, 0.6); }

  100% {
    transform: translate(-50%, -50%) scale(0.6, 0.6); } }

@keyframes Flowerball1 {
  6.25% {
    transform: rotate(90deg); }

  12.5% {
    transform: rotate(90deg); }

  18.75% {
    transform: rotate(180deg); }

  25% {
    transform: rotate(180deg); }

  31.25% {
    transform: rotate(270deg); }

  37.5% {
    transform: rotate(270deg); }

  43.75% {
    transform: rotate(360deg); }

  50% {
    transform: rotate(360deg); }

  56.25% {
    transform: rotate(450deg); }

  75% {
    transform: rotate(450deg); }

  87.5% {
    transform: rotate(405deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(360deg) scale(1, 1); } }

@keyframes Flowerball2 {
  12.5% {
    transform: rotate(0); }

  18.75% {
    transform: rotate(90deg); }

  25% {
    transform: rotate(90deg); }

  31.25% {
    transform: rotate(180deg); }

  37.5% {
    transform: rotate(180deg); }

  43.75% {
    transform: rotate(270deg); }

  50% {
    transform: rotate(270deg); }

  56.25% {
    transform: rotate(360deg); }

  62.5% {
    transform: rotate(360deg); }

  68.75% {
    transform: rotate(450deg); }

  75% {
    transform: rotate(450deg); }

  87.5% {
    transform: rotate(405deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(360deg) scale(1, 1); } }

@keyframes Flowerball3 {
  25% {
    transform: rotate(0); }

  31.25% {
    transform: rotate(90deg); }

  75% {
    transform: rotate(90deg); }

  87.5% {
    transform: rotate(45deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(0) scale(1, 1); } }

@keyframes Flowerball4 {
  /* Clock */
  37.5% {
    transform: rotate(0); }

  43.75% {
    transform: rotate(90deg); }

  75% {
    transform: rotate(90deg); }

  87.5% {
    transform: rotate(45deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(0) scale(1, 1); } }

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

@keyframes clock1 {
  0% {
    transform: rotate(-135deg); }

  30% {
    transform: rotate(-450deg); }

  100% {
    transform: rotate(-450deg); } }

@keyframes clock2 {
  5% {
    transform: rotate(-90deg); }

  35% {
    transform: rotate(-405deg); }

  100% {
    transform: rotate(-405deg); } }

@keyframes clock3 {
  10% {
    transform: rotate(-45deg); }

  40% {
    transform: rotate(-360deg); }

  100% {
    transform: rotate(-360deg); } }

@keyframes clock4 {
  /* Washing Machine */
  15% {
    transform: rotate(0); }

  45% {
    transform: rotate(-315deg); }

  100% {
    transform: rotate(-315deg); } }

@keyframes wash {
  /* Pulse */
  100% {
    transform: rotate(1800deg); } }

@keyframes pulse {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
    border-width: 50px; }

  100% {
    transform: scale(1, 1);
    opacity: 0;
    border-width: 0; } }

body {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1.4px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  word-wrap: break-word;
  color: #666; }

.cms-boxed {
  position: relative; }
  @media (min-width: 1280px) {
  .cms-boxed {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; } }

#cms-loading {
  position: relative;
  width: 100vw;
  height: 100vh; }
  #cms-loading .loader {
    width: 100px;
    height: 100px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    -webkit-animation: CMSSpin 0.5s linear infinite;
    -khtml-animation: CMSSpin 0.5s linear infinite;
    -moz-animation: CMSSpin 0.5s linear infinite;
    -ms-animation: CMSSpin 0.5s linear infinite;
    -o-animation: CMSSpin 0.5s linear infinite;
    animation: CMSSpin 0.5s linear infinite;
    /* BACKGROUND GRADIENT */ }
  #cms-loading .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px; }
  #cms-loading .newton .ball {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%; }
    #cms-loading .newton .ball:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: #f90;
      border-radius: 50%;
      position: absolute;
      margin-left: -50%;
      margin-top: -50%; }
    #cms-loading .newton .ball-1:before {
      transform: translateX(-150%);
      animation: 1s ease-out 0s infinite left; }
    #cms-loading .newton .ball-2:before {
      transform: translateX(-50%); }
    #cms-loading .newton .ball-3:before {
      transform: translateX(50%); }
    #cms-loading .newton .ball-4:before {
      transform: translateX(150%);
      animation: 1s ease-out 0s infinite right; }
  #cms-loading .wave.spinner {
    width: 150px;
    height: 30px; }
    #cms-loading .wave .ball {
      height: 30px;
      width: 30px;
      float: left;
      background: #f90;
      border-radius: 50%;
      margin-right: 10px; }
    #cms-loading .wave .ball-1 {
      animation: jump3 1.8s infinite ease-out; }
    #cms-loading .wave .ball-2 {
      animation: jump2 1.8s infinite ease-out; }
    #cms-loading .wave .ball-3 {
      animation: jump1 1.8s infinite ease-out; }
    #cms-loading .wave .ball-4 {
      margin-right: 0;
      animation: wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1); }
  #cms-loading .circus .ball {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%; }
    #cms-loading .circus .ball:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: #f90;
      border-radius: 50%;
      margin-left: -50%;
      margin-top: -50%;
      left: -100%;
      animation: position 2s infinite cubic-bezier(0.25, 0, 0.75, 1), size 2s infinite cubic-bezier(0.25, 0, 0.75, 1); }
    #cms-loading .circus .ball-1:before {
      animation-delay: 0s, -0.5s; }
    #cms-loading .circus .ball-2:before {
      animation-delay: -0.5s, -1s; }
    #cms-loading .circus .ball-3:before {
      animation-delay: -1s, -1.5s; }
    #cms-loading .circus .ball-4:before {
      animation-delay: -1.5s, -2s; }
    #cms-loading .circus .spinner {
      height: 100%;
      width: 100%;
      position: absolute; }
  #cms-loading .atom.spinner {
    width: 100px;
    height: 100px; }
    #cms-loading .atom .ball-1 {
      height: 50%;
      width: 50%;
      left: 50%;
      top: 50%;
      position: absolute;
      z-index: 1;
      animation: shrink 4.5s infinite linear; }
    #cms-loading .atom .ball-1:before {
      content: '';
      background: #333;
      border-radius: 50%;
      height: 100%;
      width: 100%;
      position: absolute;
      top: -50%;
      left: -50%; }
    #cms-loading .atom .ball-2, #cms-loading .atom .ball-3, #cms-loading .atom .ball-4 {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 0; }
    #cms-loading .atom .ball-2:before, #cms-loading .atom .ball-3:before, #cms-loading .atom .ball-4:before {
      content: '';
      height: 20px;
      width: 20px;
      border-radius: 50%;
      background: #f90;
      top: 0;
      left: 0;
      margin: 0 auto;
      position: absolute; }
    #cms-loading .atom .ball-2 {
      animation: zindex 1.5s 0.75s infinite steps(2, end); }
    #cms-loading .atom .ball-3 {
      transform: rotate(120deg);
      animation: zindex 1.5s -0.25s infinite steps(2, end); }
    #cms-loading .atom .ball-4 {
      transform: rotate(240deg);
      animation: zindex 1.5s 0.25s infinite steps(2, end); }
    #cms-loading .atom .ball-2:before {
      transform: rotate(0);
      animation: AtomPosition 1.5s infinite ease, size 1.5s -1.125s infinite ease; }
    #cms-loading .atom .ball-3:before {
      animation: AtomPosition 1.5s -1s infinite ease, size 1.5s -0.75s infinite ease; }
    #cms-loading .atom .ball-4:before {
      animation: AtomPosition 1.5s -0.5s infinite ease, size 1.5s -0.125s infinite ease; }
  #cms-loading .fussion.spinner {
    width: 30px;
    height: 30px; }
    #cms-loading .fussion .ball {
      height: 50px;
      width: 50px;
      left: 50%;
      top: 50%;
      background: rgba(0, 255, 0, .5);
      border-radius: 50%;
      float: left;
      position: absolute; }
    #cms-loading .fussion .ball-1 {
      background: rgba(255, 0, 0, .5);
      top: 0;
      left: 50%;
      animation: ball1 1s 0s ease infinite;
      z-index: 1; }
    #cms-loading .fussion .ball-2 {
      background: rgba(0, 255, 0, .5);
      top: 50%;
      left: 100%;
      animation: ball2 1s 0s ease infinite;
      z-index: 2; }
    #cms-loading .fussion .ball-3 {
      background: rgba(0, 0, 255, .5);
      top: 100%;
      left: 50%;
      animation: ball3 1s 0s ease infinite;
      z-index: 1; }
    #cms-loading .fussion .ball-4 {
      background: rgba(255, 255, 0, .5);
      top: 50%;
      left: 0%;
      animation: ball4 1s 0s ease infinite;
      z-index: 2; }
  #cms-loading .mitosis.spinner {
    height: 50px;
    width: 50px;
    animation: invert 2s infinite steps(2, end); }
    #cms-loading .mitosis .ball {
      height: 100%;
      width: 100%;
      position: absolute;
      border-radius: 50%;
      top: 0;
      left: 0;
      background: #f90; }
    #cms-loading .mitosis .ball-1 {
      animation: Mitosisball1 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-2 {
      animation: Mitosisball2 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-3 {
      animation: Mitosisball3 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-4 {
      animation: Mitosisball4 1s infinite alternate linear; }
  #cms-loading .flower.spinner {
    width: 26.25px;
    height: 26.25px; }
    #cms-loading .flower .ball {
      height: 30px;
      width: 30px;
      position: absolute;
      background: #f90;
      border-radius: 50%; }
    #cms-loading .flower .ball-1 {
      left: -15px;
      top: -15px;
      transform-origin: 28.125px 28.125px;
      animation: Flowerball1 6s infinite linear; }
    #cms-loading .flower .ball-2 {
      left: 11.25px;
      top: -15px;
      transform-origin: 1.875px 28.125px;
      animation: Flowerball2 6s infinite linear; }
    #cms-loading .flower .ball-3 {
      left: 11.25px;
      top: 11.25px;
      transform-origin: 1.875px 1.875px;
      animation: Flowerball3 6s infinite linear; }
    #cms-loading .flower .ball-4 {
      left: -15px;
      top: 11.25px;
      transform-origin: 28.125px 1.875px;
      animation: Flowerball4 6s infinite linear; }
  #cms-loading .clock.spinner {
    width: 50px;
    height: 50px;
    animation: clock 8s infinite steps(8); }
    #cms-loading .clock .ball {
      height: 50px;
      width: 50px;
      position: absolute; }
    #cms-loading .clock .ball:before {
      content: '';
      border-radius: 50%;
      height: 18.31502px;
      width: 18.31502px;
      position: absolute;
      background: #f90; }
    #cms-loading .clock .ball-1 {
      transform: rotate(-135deg);
      animation: clock1 1s ease-in infinite; }
    #cms-loading .clock .ball-2 {
      transform: rotate(-90deg);
      animation: clock2 1s ease-in infinite; }
    #cms-loading .clock .ball-3 {
      transform: rotate(-45deg);
      animation: clock3 1s ease-in infinite; }
    #cms-loading .clock .ball-4 {
      animation: clock4 1s ease-in infinite; }
  #cms-loading .washing-machine.spinner {
    width: 80px;
    height: 80px;
    animation: wash 2s infinite alternate cubic-bezier(0.5, 0, 0.5, 1); }
    #cms-loading .washing-machine .ball-1 {
      height: 100%;
      width: 100%;
      left: 50%;
      top: 50%;
      position: absolute;
      z-index: 1; }
    #cms-loading .washing-machine .ball-1:before {
      content: '';
      border-radius: 50%;
      border: 15px solid #f90;
      height: 100%;
      width: 100%;
      position: absolute;
      top: -50%;
      left: -50%;
      box-sizing: border-box; }
    #cms-loading .washing-machine .ball-2, #cms-loading .washing-machine .ball-3, #cms-loading .washing-machine .ball-4 {
      width: 80px;
      height: 80px;
      position: absolute;
      z-index: 2; }
    #cms-loading .washing-machine .ball-2:before, #cms-loading .washing-machine .ball-3:before, #cms-loading .washing-machine .ball-4:before {
      border: 5px solid #f90;
      background: #fff;
      content: '';
      border-radius: 50%;
      width: 15px;
      height: 15px;
      position: absolute;
      left: 27.5px;
      top: -5px; }
    #cms-loading .washing-machine .ball-2 {
      transform: rotate(120deg); }
    #cms-loading .washing-machine .ball-3 {
      transform: rotate(240deg); }
  #cms-loading .pulse.spinner {
    width: 100px;
    height: 100px; }
    #cms-loading .pulse .spinner * {
      box-sizing: border-box; }
    #cms-loading .pulse .ball {
      height: 100%;
      width: 100%;
      background: #f90;
      position: absolute;
      border-radius: 50%;
      border: 0px solid #f90;
      animation: pulse 3s infinite; }
    #cms-loading .pulse .ball-2 {
      animation-delay: -0.75s; }
    #cms-loading .pulse .ball-3 {
      animation-delay: -1.5s; }
    #cms-loading .pulse .ball-4 {
      animation-delay: -2.25s; }

#cms-page {
  overflow-x: hidden; }

.overlay, .overlay-pos {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Vertical Align */ }

.vertical-align {
  top: 50%;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* BACKGROUND GRADIENT */
  /* Horizontal Align */
  /* Overlay content */ }

.overlay-wrap {
  position: relative;
  overflow: hidden;
  /* Back to Top */ }
  .overlay-wrap .overlay {
    background: rgba(255, 153, 0, 0.7);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */
    /* Hover state */ }
    .overlay-wrap .overlay .overlay-inner {
      padding: 20px;
      color: #fff;
      /* Effect  */ }
      .overlay-wrap .overlay .overlay-inner * {
        color: #fff; }
    .overlay-wrap .overlay.left-right {
      left: -100%;
      right: 100%; }
      .overlay-wrap .overlay.left-right .overlay-inner {
        left: 200%;
        right: auto; }
    .overlay-wrap .overlay.right-left {
      left: 100%;
      right: -100%; }
      .overlay-wrap .overlay.right-left .overlay-inner {
        right: 200%;
        left: -200%; }
    .overlay-wrap .overlay.top-bottom {
      bottom: 100%;
      top: -100%; }
      .overlay-wrap .overlay.top-bottom .overlay-inner {
        top: 200%;
        bottom: -200%; }
    .overlay-wrap .overlay.bottom-top {
      bottom: -100%;
      top: 100%; }
      .overlay-wrap .overlay.bottom-top .overlay-inner {
        top: -200%;
        bottom: 200%; }
    .overlay-wrap .overlay.style4 {
      background-color: rgba(255, 255, 255, 0.8);
      color: #333; }
      .overlay-wrap .overlay.style4 a {
        color: #333; }
      .overlay-wrap .overlay.style4 .overlay-content {
        color: #333;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px; }
  .overlay-wrap:hover .overlay, .overlay-wrap:active .overlay, .overlay-wrap:focus .overlay {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ }
    .overlay-wrap:hover .overlay.left-right, .overlay-wrap:active .overlay.left-right, .overlay-wrap:focus .overlay.left-right, .overlay-wrap:hover .overlay.right-left, .overlay-wrap:active .overlay.right-left, .overlay-wrap:focus .overlay.right-left {
      left: 0;
      right: 0; }
      .overlay-wrap:hover .overlay.left-right .overlay-inner, .overlay-wrap:active .overlay.left-right .overlay-inner, .overlay-wrap:focus .overlay.left-right .overlay-inner, .overlay-wrap:hover .overlay.right-left .overlay-inner, .overlay-wrap:active .overlay.right-left .overlay-inner, .overlay-wrap:focus .overlay.right-left .overlay-inner {
        left: 0;
        right: 0;
        -webkit-transition: all 300ms ease-out 100ms;
        -khtml-transition: all 300ms ease-out 100ms;
        -moz-transition: all 300ms ease-out 100ms;
        -ms-transition: all 300ms ease-out 100ms;
        -o-transition: all 300ms ease-out 100ms;
        transition: all 300ms ease-out 100ms;
        /* BACKGROUND GRADIENT */
        /* TRIPLE BORDERS */ }
    .overlay-wrap:hover .overlay.top-bottom, .overlay-wrap:active .overlay.top-bottom, .overlay-wrap:focus .overlay.top-bottom, .overlay-wrap:hover .overlay.bottom-top, .overlay-wrap:active .overlay.bottom-top, .overlay-wrap:focus .overlay.bottom-top {
      top: 0;
      bottom: 0; }
      .overlay-wrap:hover .overlay.top-bottom .overlay-inner, .overlay-wrap:active .overlay.top-bottom .overlay-inner, .overlay-wrap:focus .overlay.top-bottom .overlay-inner, .overlay-wrap:hover .overlay.bottom-top .overlay-inner, .overlay-wrap:active .overlay.bottom-top .overlay-inner, .overlay-wrap:focus .overlay.bottom-top .overlay-inner {
        top: 50%;
        bottom: auto;
        -webkit-transition: all 300ms ease-out 100ms;
        -khtml-transition: all 300ms ease-out 100ms;
        -moz-transition: all 300ms ease-out 100ms;
        -ms-transition: all 300ms ease-out 100ms;
        -o-transition: all 300ms ease-out 100ms;
        transition: all 300ms ease-out 100ms;
        /* BACKGROUND GRADIENT */
        /* TRIPLE BORDERS */ }

#cms-backtotop {
  position: fixed;
  right: 20px;
  background: #f90;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  z-index: 1;
  /* Social */ }
  #cms-backtotop.off {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */
    bottom: -100%; }
  #cms-backtotop.on {
    bottom: 15px; }

.cms-social {
  margin: 0 -12px;
  /* Error  Page */ }
  .cms-social a {
    color: #d6d6d6;
    font-size: 28px;
    display: inline-block;
    margin: 0 12px; }
    .cms-social a:hover {
      color: #f90; }
  .cms-social.colored a {
    margin: 10px 8px; }
    .cms-social.colored a i {
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      font-size: 20px;
      color: #fff;
      background-color: #333;
      display: block; }
      .cms-social.colored a i[class*="facebook"], .cms-social.colored a i[class^="facebook"] {
        background-color: #4c70b7; }
      .cms-social.colored a i[class*="pinterest"], .cms-social.colored a i[class^="pinterest"] {
        background: #e13138; }
      .cms-social.colored a i[class*="twitter"], .cms-social.colored a i[class^="twitter"] {
        background: #4cdbff; }
      .cms-social.colored a i[class*="rss"], .cms-social.colored a i[class^="rss"] {
        background: #faa33d; }
      .cms-social.colored a i[class*="vimeo"], .cms-social.colored a i[class^="vimeo"] {
        background: #35c6ea; }
      .cms-social.colored a i[class*="dribbble"], .cms-social.colored a i[class^="dribbble"] {
        background: #ff70b7; }
      .cms-social.colored a i[class*="tumblr"], .cms-social.colored a i[class^="tumblr"] {
        background: #426d9b; }
      .cms-social.colored a i[class^="behance"], .cms-social.colored a i[class*="behance"] {
        background: #1879fd; }
      .cms-social.colored a i[class^="stumbleupon"], .cms-social.colored a i[class*="stumbleupon"] {
        background: #ff5c30; }
      .cms-social.colored a i[class^="dropbox"], .cms-social.colored a i[class*="dropbox"] {
        background: #17a3eb; }
      .cms-social.colored a i[class^="soundcloud"], .cms-social.colored a i[class*="soundcloud"] {
        background: #ff7e30; }
      .cms-social.colored a i[class^="lastfm"], .cms-social.colored a i[class*="lastfm"] {
        background: #f34320; }
      .cms-social.colored a i[class^="flickr"], .cms-social.colored a i[class*="flickr"] {
        background: #ff48a3; }
      .cms-social.colored a i[class^="deviantart"], .cms-social.colored a i[class*="deviantart"] {
        background: #6a8a7b; }
      .cms-social.colored a i[class^="linkedin"], .cms-social.colored a i[class*="linkedin"] {
        background: #4c94db; }
      .cms-social.colored a i[class^="digg"], .cms-social.colored a i[class*="digg"] {
        background: #75788d; }
      .cms-social.colored a i[class^="xing"], .cms-social.colored a i[class*="xing"] {
        background: #1a8e8c; }
      .cms-social.colored a i[class^="github"], .cms-social.colored a i[class*="github"] {
        background: #3f91cb; }
      .cms-social.colored a i[class^="instagram"], .cms-social.colored a i[class*="instagram"] {
        background: #db944c; }
      .cms-social.colored a i[class^="yahoo"], .cms-social.colored a i[class*="yahoo"] {
        background: #ab47ac; }
      .cms-social.colored a i[class^="youtube"], .cms-social.colored a i[class*="youtube"] {
        background: #db4c4c; }
      .cms-social.colored a i[class^="skype"], .cms-social.colored a i[class*="skype"] {
        background: #13c1f3; }
      .cms-social.colored a i[class^="share"], .cms-social.colored a i[class*="share"] {
        background: #25a774; }
      .cms-social.colored a i[class^="wordpress"], .cms-social.colored a i[class*="wordpress"] {
        background: #2592c3; }
      .cms-social.colored a i[class^="plus"], .cms-social.colored a i[class*="plus"] {
        background: ; }
      .cms-social.colored a i[class^="delicious"], .cms-social.colored a i[class*="delicious"] {
        background: #ff9233; }
      .cms-social.colored a i[class^="reddit"], .cms-social.colored a i[class*="reddit"] {
        background: #377bda; }
      .cms-social.colored a i[class^="apple"], .cms-social.colored a i[class*="apple"] {
        background: #b3b5b8; }
      .cms-social.colored a i[class^="vk"], .cms-social.colored a i[class*="vk"] {
        background: #4778ac; }
      .cms-social.colored a i[class^="google-plus"], .cms-social.colored a i[class*="google-plus"] {
        background: #ff4c4c; }
    .cms-social.colored a:hover i {
      background-color: #f90; }

.error404 {
  color: #333;
  /* Search page */ }
  .error404 .content-area {
    margin-top: 200px; }
    @media (min-width: 1600px) {
  .error404 .content-area {
    padding-left: 10px;
    padding-right: 10px; } }
    .error404 .content-area header {
      font-size: 24px;
      letter-spacing: 2.4px;
      margin-bottom: 46px; }
    .error404 .content-area header h1 {
      font-size: 48px;
      letter-spacing: 4.8px; }
    .error404 .content-area .entry-content {
      margin-bottom: 0; }
    .error404 .content-area .btn-primary {
      margin-top: 38px; }

.search-results .paging-navigation .pagination {
  margin-top: 8px; }

#cms-header-top {
  /* Main Header */ }
  #cms-header-top .contact-top {
    list-style: none;
    padding: 0;
    margin: 0 -15px; }
    #cms-header-top .contact-top li {
      padding: 7px 15px;
      display: inline-block; }
    #cms-header-top .contact-top li i {
      font-size: 20px;
      margin-right: 10px;
      display: inline-block;
      -webkit-transform: translateY(4px);
      -khtml-transform: translateY(4px);
      -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
      -o-transform: translateY(4px);
      transform: translateY(4px);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    @media (min-width: 992px) {
    #cms-header-top .contact-top li {
      float: left; } }
  #cms-header-top .cms-social a {
    font-size: 22px;
    margin-top: 7px;
    margin-bottom: 8px; }
  #cms-header-top .widget {
    margin-top: 30px; }
    #cms-header-top .widget:first-child {
      margin-top: 0; }
  @media (min-width: 992px) {
    #cms-header-top .cms-header-top2-wg {
      position: relative;
      -webkit-transform: translateY(50%);
      -khtml-transform: translateY(50%);
      -moz-transform: translateY(50%);
      -ms-transform: translateY(50%);
      -o-transform: translateY(50%);
      transform: translateY(50%);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
      #cms-header-top .cms-header-top2-wg > div {
        float: left; }
        #cms-header-top .cms-header-top2-wg > div:last-child {
          margin-left: 70px; } }

.cms-header {
  z-index: 2;
  /* Logo */ }
  .cms-header.has-shadow {
    -webkit-box-shadow: 2px 2px 3px #e5e5e5;
    -khtml-box-shadow: 2px 2px 3px #e5e5e5;
    -moz-box-shadow: 2px 2px 3px #e5e5e5;
    -ms-box-shadow: 2px 2px 3px #e5e5e5;
    -o-box-shadow: 2px 2px 3px #e5e5e5;
    box-shadow: 2px 2px 3px #e5e5e5;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }

#cms-header-logo {
  height: 120px;
  display: table;
  width: 100px;
  max-width: 100px; }
  @media (max-width: 1200px) {
  #cms-header-logo {
    text-align: left;
    width: auto;
    max-width: 100px; } }
  #cms-header-logo a {
    display: table-cell;
    vertical-align: middle; }
    #cms-header-logo a.default {
      padding-right: 20px; }
    #cms-header-logo a.v2 {
      padding-right: 10px;
      padding-left: 10px; }
  #cms-header-logo .logo-text {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1; }

.ontop-logo, .sticky-logo {
  display: none;
  /* Ontop Header */ }

.header-ontop {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  /* Sticky Header */ }
  .header-ontop .main-logo, .header-ontop .sticky-logo {
    display: none; }
  .header-ontop .ontop-logo {
    display: inline-block; }
  @media (min-width: 1201px) {
  .header-ontop .cms-nav-extra.has-extra .cms-header-popup:before {
    background: #333; } }

.header-sticky {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  /* Extra attribute */ }
  .header-sticky .main-logo, .header-sticky .ontop-logo {
    display: none; }
  .header-sticky .sticky-logo {
    display: inline-block; }
  @media (min-width: 1201px) {
  .header-sticky .cms-nav-extra.has-extra .cms-header-popup:before {
    background: #333; } }

.cms-nav-extra {
  /* Header V3 */ }
  .cms-nav-extra .cms-header-popup {
    height: 120px;
    line-height: 120px; }
    .cms-nav-extra .cms-header-popup *:not(.button) {
      line-height: 24px !important; }
    .cms-nav-extra .cms-header-popup .header-icon {
      cursor: pointer;
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center; }
    .cms-nav-extra .cms-header-popup .popup {
      display: none;
      width: 320px;
      position: absolute;
      top: 100%;
      z-index: 21;
      background: #fff;
      padding: 10px;
      vertical-align: inherit; }
  @media (min-width: 1201px) {
  .cms-nav-extra.has-extra .cms-header-popup:before {
    height: 14px;
    width: 2px;
    margin-right: 13px;
    margin-left: 30px;
    display: inline-block;
    background: #666;
    -webkit-transform: translateY(3px);
    -khtml-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }

.cms-header-v3 {
  /* Header V4 */ }
  .cms-header-v3 #cms-header {
    text-align: center; }
    .cms-header-v3 #cms-header #cms-header-logo {
      display: block;
      height: 120px;
      line-height: 118px;
      border-bottom: 2px solid #ebebeb;
      width: auto;
      max-width: inherit; }
    .cms-header-v3 #cms-header #cms-header-logo a {
      display: block; }
    .cms-header-v3 #cms-header #cms-navigation, .cms-header-v3 #cms-header .cms-nav-extra {
      display: inline-block;
      vertical-align: top;
      text-align: start; }

.cms-header-v4 {
  /* Front page  */ }
  @media (max-width: 767px) {
    .cms-header-v4 .cms-header-top2 .cms-header-top2-wg {
      float: none !important; }

    .cms-header-v4 .cms-header-top2 + #cms-header #cms-header-logo {
      padding: 5px 0; }
      .cms-header-v4 .cms-header-top2 + #cms-header #cms-header-logo img {
        background-color: #333; } }

.zaria-home.page #cms-main, .zaria-home.page #cms-page-title-wrapper {
  padding-top: 0 !important; }

.cms-menu-toggle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 3px;
  right: 0; }

div.cms-main-navigation > ul, ul.cms-main-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Header Ontop */ }
  div.cms-main-navigation > ul li, ul.cms-main-navigation li {
    position: relative;
    display: block;
    /* First Level */ }
    div.cms-main-navigation > ul li a, ul.cms-main-navigation li a {
      display: block;
      /* Has Children */ }
    div.cms-main-navigation > ul li.menu-item-has-children, ul.cms-main-navigation li.menu-item-has-children, div.cms-main-navigation > ul li.page_item_has_children, ul.cms-main-navigation li.page_item_has_children {
      /* Show Level 2+ */ }
    div.cms-main-navigation > ul li:hover > ul, ul.cms-main-navigation li:hover > ul {
      visibility: visible;
      top: 100%;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      /* BACKGROUND GRADIENT */
      /* OUTLINE RADIUS */ }
    div.cms-main-navigation > ul li > ul, ul.cms-main-navigation li > ul {
      border-top: 6px solid #333; }
  div.cms-main-navigation > ul > li, ul.cms-main-navigation > li {
    margin-right: 40px;
    float: left;
    /* Level 2+ */ }
    div.cms-main-navigation > ul > li > a, ul.cms-main-navigation > li > a {
      line-height: 120px;
      /* Hover State */ }
    div.cms-main-navigation > ul > li:hover, ul.cms-main-navigation > li:hover {
      /* Active State */ }
    div.cms-main-navigation > ul > li:hover > a, ul.cms-main-navigation > li:hover > a {
      color: #333; }
    div.cms-main-navigation > ul > li.current_page_item, ul.cms-main-navigation > li.current_page_item, div.cms-main-navigation > ul > li.current-menu-ancestor, ul.cms-main-navigation > li.current-menu-ancestor, div.cms-main-navigation > ul > li:active, ul.cms-main-navigation > li:active, div.cms-main-navigation > ul > li:focus, ul.cms-main-navigation > li:focus {
      /* Has Childrent */ }
    div.cms-main-navigation > ul > li.current_page_item > a, ul.cms-main-navigation > li.current_page_item > a, div.cms-main-navigation > ul > li.current-menu-ancestor > a, ul.cms-main-navigation > li.current-menu-ancestor > a, div.cms-main-navigation > ul > li:active > a, ul.cms-main-navigation > li:active > a, div.cms-main-navigation > ul > li:focus > a, ul.cms-main-navigation > li:focus > a {
      color: #333; }
    div.cms-main-navigation > ul > li.menu-item-has-children, ul.cms-main-navigation > li.menu-item-has-children, div.cms-main-navigation > ul > li.page_item_has_children, ul.cms-main-navigation > li.page_item_has_children {
      /* Last Item */ }
    div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle, ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle, div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle, ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle {
      display: none;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -khtml-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
      div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle i:before, ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle i:before, div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle i:before, ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle i:before {
        content: "\f107"; }
    div.cms-main-navigation > ul > li:last-child, ul.cms-main-navigation > li:last-child {
      margin-right: 0; }
  div.cms-main-navigation > ul ul, ul.cms-main-navigation ul {
    padding: 25px 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 200%;
    z-index: 2;
    visibility: hidden;
    background-color: #fff;
    min-width: 200px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }
    div.cms-main-navigation > ul ul li, ul.cms-main-navigation ul li {
      padding: 5px 20px;
      /* Sublevel touched right */ }
    div.cms-main-navigation > ul ul li > a, ul.cms-main-navigation ul li > a, div.cms-main-navigation > ul ul li > .cms-menu-toggle, ul.cms-main-navigation ul li > .cms-menu-toggle {
      color: #333;
      /* Has Children */ }
      div.cms-main-navigation > ul ul li > a:hover, ul.cms-main-navigation ul li > a:hover, div.cms-main-navigation > ul ul li > .cms-menu-toggle:hover, ul.cms-main-navigation ul li > .cms-menu-toggle:hover {
        color: #333; }
    div.cms-main-navigation > ul ul li.menu-item-has-children, ul.cms-main-navigation ul li.menu-item-has-children, div.cms-main-navigation > ul ul li.page_item_has_children, ul.cms-main-navigation ul li.page_item_has_children {
      position: relative;
      /* Hover State */ }
      div.cms-main-navigation > ul ul li.menu-item-has-children > .cms-menu-toggle i:before, ul.cms-main-navigation ul li.menu-item-has-children > .cms-menu-toggle i:before, div.cms-main-navigation > ul ul li.page_item_has_children > .cms-menu-toggle i:before, ul.cms-main-navigation ul li.page_item_has_children > .cms-menu-toggle i:before {
        content: "\f105"; }
    div.cms-main-navigation > ul ul li:hover, ul.cms-main-navigation ul li:hover {
      /* Active State */ }
      div.cms-main-navigation > ul ul li:hover > a, ul.cms-main-navigation ul li:hover > a, div.cms-main-navigation > ul ul li:hover > .cms-menu-toggle, ul.cms-main-navigation ul li:hover > .cms-menu-toggle {
        color: #333;
        font-weight: 700;
        /* Show Level 3 */ }
      @media (min-width: 1200px) {
      div.cms-main-navigation > ul ul li:hover > ul, ul.cms-main-navigation ul li:hover > ul {
        top: 0;
        left: 100%; }
        div.cms-main-navigation > ul ul li:hover > ul.back, ul.cms-main-navigation ul li:hover > ul.back {
          right: 100%; } }
    div.cms-main-navigation > ul ul li.current-menu-item, ul.cms-main-navigation ul li.current-menu-item, div.cms-main-navigation > ul ul li.current_page_item, ul.cms-main-navigation ul li.current_page_item, div.cms-main-navigation > ul ul li.current-menu-ancestor, ul.cms-main-navigation ul li.current-menu-ancestor, div.cms-main-navigation > ul ul li:active, ul.cms-main-navigation ul li:active, div.cms-main-navigation > ul ul li:focus, ul.cms-main-navigation ul li:focus, div.cms-main-navigation > ul ul li.actived, ul.cms-main-navigation ul li.actived {
      /* Level 3+ */ }
      div.cms-main-navigation > ul ul li.current-menu-item > a, ul.cms-main-navigation ul li.current-menu-item > a, div.cms-main-navigation > ul ul li.current_page_item > a, ul.cms-main-navigation ul li.current_page_item > a, div.cms-main-navigation > ul ul li.current-menu-ancestor > a, ul.cms-main-navigation ul li.current-menu-ancestor > a, div.cms-main-navigation > ul ul li:active > a, ul.cms-main-navigation ul li:active > a, div.cms-main-navigation > ul ul li:focus > a, ul.cms-main-navigation ul li:focus > a, div.cms-main-navigation > ul ul li.actived > a, ul.cms-main-navigation ul li.actived > a, div.cms-main-navigation > ul ul li.current-menu-item > .cms-menu-toggle, ul.cms-main-navigation ul li.current-menu-item > .cms-menu-toggle, div.cms-main-navigation > ul ul li.current_page_item > .cms-menu-toggle, ul.cms-main-navigation ul li.current_page_item > .cms-menu-toggle, div.cms-main-navigation > ul ul li.current-menu-ancestor > .cms-menu-toggle, ul.cms-main-navigation ul li.current-menu-ancestor > .cms-menu-toggle, div.cms-main-navigation > ul ul li:active > .cms-menu-toggle, ul.cms-main-navigation ul li:active > .cms-menu-toggle, div.cms-main-navigation > ul ul li:focus > .cms-menu-toggle, ul.cms-main-navigation ul li:focus > .cms-menu-toggle, div.cms-main-navigation > ul ul li.actived > .cms-menu-toggle, ul.cms-main-navigation ul li.actived > .cms-menu-toggle {
        color: #333;
        font-weight: 700; }
    @media (min-width: 1200px) {
      div.cms-main-navigation > ul ul li ul, ul.cms-main-navigation ul li ul {
        top: 0;
        left: calc(100% + 20px); }
        div.cms-main-navigation > ul ul li ul.back, ul.cms-main-navigation ul li ul.back {
          right: calc(100% + 20px); } }
    @media (min-width: 1200px) {
    div.cms-main-navigation > ul ul.back, ul.cms-main-navigation ul.back {
      right: 0;
      left: auto; } }

.header-ontop .cms-main-navigation > ul > li {
  /* Header Sticky */ }
  .header-ontop .cms-main-navigation > ul > li.current-menu-item > a, .header-ontop .cms-main-navigation > ul > li.current_page_item > a, .header-ontop .cms-main-navigation > ul > li.current-menu-ancestor > a {
    color: #f90; }

.header-sticky .cms-main-navigation > ul > li {
  /* Mobile menu */ }
  .header-sticky .cms-main-navigation > ul > li.current-menu-item > a, .header-sticky .cms-main-navigation > ul > li.current_page_item > a, .header-sticky .cms-main-navigation > ul > li.current-menu-ancestor > a {
    color: #f90; }

@media (min-width: 1201px) {
    #cms-menu-mobile {
      display: none; } }

@media (max-width: 1200px) {
  .cms-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    visibility: hidden;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ } }

.cms-header .mobile-nav {
  /* Mega Menu */ }
  .cms-header .mobile-nav.open {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ }
  .cms-header .mobile-nav .cms-main-navigation li {
    float: none;
    position: relative;
    margin: 0; }
    .cms-header .mobile-nav .cms-main-navigation li > a {
      height: auto;
      padding: 5px 20px; }
      .cms-header .mobile-nav .cms-main-navigation li > a:hover, .cms-header .mobile-nav .cms-main-navigation li > a:active, .cms-header .mobile-nav .cms-main-navigation li > a:focus {
        font-weight: 700; }
    .cms-header .mobile-nav .cms-main-navigation li > .cms-menu-toggle {
      display: block !important;
      margin: 0;
      top: 0 !important;
      -webkit-transform: translateY(0) !important;
      -khtml-transform: translateY(0) !important;
      -moz-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
      -o-transform: translateY(0) !important;
      transform: translateY(0) !important;
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    .cms-header .mobile-nav .cms-main-navigation li.current-menu-item, .cms-header .mobile-nav .cms-main-navigation li.current_page_item, .cms-header .mobile-nav .cms-main-navigation li.current-menu-ancestor {
      /* Level 2+ */ }
      .cms-header .mobile-nav .cms-main-navigation li.current-menu-item > a, .cms-header .mobile-nav .cms-main-navigation li.current_page_item > a, .cms-header .mobile-nav .cms-main-navigation li.current-menu-ancestor > a {
        font-weight: 700;
        color: #333; }
    .cms-header .mobile-nav .cms-main-navigation li ul {
      position: relative;
      border: none;
      max-height: 0;
      margin-left: 10px;
      padding: 0;
      left: 0 !important;
      right: auto !important; }
      .cms-header .mobile-nav .cms-main-navigation li ul:not(.submenu-open) {
        visibility: hidden;
        filter: alpha(opacity=0);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-opacity: 0;
        -khtml-opacity: 0;
        -moz-opacity: 0;
        -ms-opacity: 0;
        -o-opacity: 0;
        opacity: 0;
        /* BACKGROUND GRADIENT */
        /* OUTLINE RADIUS */ }
      .cms-header .mobile-nav .cms-main-navigation li ul > li > a {
        padding-left: 0; }
      .cms-header .mobile-nav .cms-main-navigation li ul.submenu-open {
        max-height: 10000px;
        visibility: visible;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1;
        /* BACKGROUND GRADIENT */
        /* OUTLINE RADIUS */ }

li.has_full_width {
  position: static !important; }

.multicolumn {
  min-width: auto;
  /* Drop to right */ }
  @media (min-width: 1200px) {
    .multicolumn > li {
      float: left !important; } }
  .multicolumn.columns2 > li {
    width: 50%; }
  .multicolumn.columns3 > li {
    width: 33.333%; }
  .multicolumn.columns4 > li {
    width: 25%; }
  .multicolumn.columns5 {
    /* GROUP */ }
    .multicolumn.columns5 > li {
      width: 20%; }
  .multicolumn .group {
    /* Dropdown Postision */ }
    @media (min-width: 1200px) {
  .multicolumn .group > ul {
    position: relative;
    left: auto;
    top: auto;
    visibility: visible;
    border: none;
    padding: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ } }
  @media (min-width: 1200px) {
  .multicolumn.drop_to_right {
    right: 0;
    left: auto !important;
    /* Drop to center */ }
  .multicolumn.drop_to_center {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ } }
  @media (max-width: 767px) {
  .multicolumn.columns4 > li, .multicolumn.columns5 > li {
    width: 50%; } }
  @media (max-width: 480px) {
  .multicolumn.columns2 > li, .multicolumn.columns3 > li, .multicolumn.columns4 > li, .multicolumn.columns5 > li {
    width: 100%; } }

#cms-page-title-wrapper {
  position: relative;
  padding: 30px 0; }
  #cms-page-title-wrapper:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block; }
  #cms-page-title-wrapper.layout1 #cms-breadcrumb {
    margin-bottom: 14px; }
  #cms-page-title-wrapper.layout2 #cms-breadcrumb {
    margin-top: 14px; }

#cms-page-title h2 {
  padding: 0;
  margin: 0; }

#cms-breadcrumb {
  position: relative; }
  #cms-breadcrumb ul.breadcrumbs {
    list-style: none; }
    #cms-breadcrumb ul.breadcrumbs li {
      display: inline-block;
      vertical-align: top;
      position: relative; }
    #cms-breadcrumb ul.breadcrumbs li:after {
      font-family: 'FontAwesome';
      content: "\f105";
      color: #f90;
      padding: 0 10px; }
    #cms-breadcrumb ul.breadcrumbs li:last-child:after {
      display: none; }
  #cms-breadcrumb.cms-breadcrumb {
    display: table; }
    #cms-breadcrumb.cms-breadcrumb ul.breadcrumbs {
      display: table-cell;
      vertical-align: middle; }

.entry-media {
  margin-bottom: 42px; }

.entry-header {
  margin-bottom: 45px;
  /* Entry Title */ }

.entry-title {
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding: 0;
  /* Entry Meta */ }

.entry-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  /* Entry Share */ }
  .entry-meta li {
    display: inline;
    margin-right: 30px; }
    .entry-meta li:last-child {
      margin-right: 0; }
    .entry-meta li i {
      font-size: 20px;
      display: inline-block;
      margin-right: 10px;
      -webkit-transform: translateY(3px);
      -khtml-transform: translateY(3px);
      -moz-transform: translateY(3px);
      -ms-transform: translateY(3px);
      -o-transform: translateY(3px);
      transform: translateY(3px);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }

.entry-socials-share-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Entry Content */ }
  .entry-socials-share-list li {
    float: left;
    margin-right: 20px; }
    .entry-socials-share-list li:last-child {
      margin-right: 0; }
    .entry-socials-share-list li i {
      font-size: 24px;
      color: #d6d6d6; }
    .entry-socials-share-list li:hover i {
      color: #f90; }

.entry-content {
  /* List Style */
  margin-bottom: 35px;
  /* Entry Footer */ }
  .entry-content > ul, .entry-content > ol, .entry-content > dl {
    margin-left: 30px;
    /* password form */ }
  .entry-content .post-password-form {
    margin-bottom: 30px; }
  .entry-content div, .entry-content [id*="attachment_"], .entry-content [id^="attachment_"] {
    max-width: 100%; }
  .entry-content .page-links {
    margin-top: 30px; }

.entry-footer .entry-meta {
  margin-bottom: 20px; }

.entry-readmore {
  display: inline-block;
  background: #f90;
  color: #fff;
  padding: 10px 30px 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 225px;
  text-align: center;
  /* Sticky Post */ }
  .entry-readmore:hover {
    background: #333; }

.sticky {
  background: transparent;
  /* Blog style */ }

.entry-blog {
  margin-bottom: 110px;
  /* Single */ }

.single #cms-main {
  margin-top: 30px; }
  .single .entry-header {
    margin-bottom: 25px; }
    .single .entry-header .entry-title {
      border-bottom: 1px solid #ccc;
      padding-bottom: 24px;
      margin-bottom: 27px; }
    @media (max-width: 991px) {
  .single .entry-header .entry-socials-share-list {
    float: none !important;
    margin-bottom: 20px; } }
  .single .entry-media {
    margin-bottom: 60px; }
  .single .entry-content {
    margin-bottom: 42px; }
    .single .entry-content .wpb_content_element:last-child {
      margin-bottom: 0; }
  .single .entry-author {
    border: 3px solid #eee;
    padding: 40px 20px; }
    .single .entry-author h6 {
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 1.4px; }
    .single .entry-author .author-avatar img {
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      /* BACKGROUND GRADIENT */ }
  .single .entry-footer {
    margin-top: 45px; }
  .single #content-area {
    /* Single Portfolio */ }
    @media (min-width: 1448px) {
  .single #content-area {
    padding-right: 60px; } }
  .single.single-portfolio {
    /* Single Member */ }
    .single.single-portfolio #cms-page-title-wrapper {
      margin-bottom: 31px; }
    .single.single-portfolio .entry-title .detail-tags {
      padding-top: 8px;
      padding-bottom: 6px;
      text-transform: capitalize;
      font-weight: 300;
      font-size: 18px;
      letter-spacing: 1.8px; }
    .single.single-portfolio .portfolio-details > div {
      border-bottom: 1px solid #ccc;
      padding: 18px 0;
      color: #333; }
    .single.single-portfolio .portfolio-details span {
      font-weight: 900;
      text-transform: uppercase; }
    .single.single-portfolio .sidebar-area {
      margin-top: 164px; }
    .single.single-portfolio .sidebar-area .widget {
      margin-bottom: 48px; }
      .single.single-portfolio .sidebar-area .widget .wg-title {
        margin-bottom: 48px; }
    .single.single-portfolio .cms-single-portfolio-related > .portfolio {
      margin-bottom: 34px; }
      .single.single-portfolio .cms-single-portfolio-related > .portfolio:nth-child(2n+1) {
        clear: left; }
      .single.single-portfolio .cms-single-portfolio-related > .portfolio .entry-title {
        font-size: 14px;
        line-height: 24px;
        color: #666;
        margin-top: 18px; }
        .single.single-portfolio .cms-single-portfolio-related > .portfolio .entry-title a {
          color: #666; }
          .single.single-portfolio .cms-single-portfolio-related > .portfolio .entry-title a:hover {
            color: #f90; }
    .single.single-portfolio #comments {
      margin-top: 36px; }
  .single.single-member #cms-main {
    margin-top: 0; }
    .single.single-member #cms-page-title-wrapper {
      padding-top: 38px;
      padding-bottom: 38px; }
    .single.single-member .content-area {
      margin-top: 30px; }
    .single.single-member .entry-header {
      margin-bottom: 60px; }
    .single.single-member .entry-header .entry-title {
      border-bottom: none;
      padding: 0 0 6px;
      margin: 0; }
    .single.single-member .entry-header span {
      font-size: 18px;
      color: #666; }
      .single.single-member .entry-header span a {
        color: #666; }
    .single.single-member .entry-content .entry-media {
      margin-bottom: 82px; }
    @media (min-width: 992px) {
    .single.single-member .entry-content {
      padding-right: 60px; } }
    .single.single-member .member-expertise, .single.single-member .member-contact {
      margin-top: -7px;
      margin-bottom: 48px; }
    .single.single-member .member-education, .single.single-member .member-social {
      margin-bottom: 52px; }
    @media (min-width: 768px) {
    .single.single-member .member-education {
      padding-right: 40px; } }
    .single.single-member .member-education ul li {
      margin-bottom: 23px; }
      .single.single-member .member-education ul li:last-child {
        margin-bottom: 0; }
    .single.single-member .member-slogan blockquote {
      color: #fff;
      font-style: normal;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 1.4px; }
      @media (min-width: 1600px) {
    .single.single-member .member-slogan blockquote {
      padding-left: 95px;
      padding-right: 95px; } }
    .single.single-member .entry-title {
      margin-bottom: 20px; }
    .single.single-member ul.member-attr-list {
      list-style: none;
      padding: 0;
      margin: 0; }
    .single.single-member ul.member-attr-list li {
      position: relative;
      padding-left: 28px;
      color: #333; }
      .single.single-member ul.member-attr-list li:before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #f90;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        /* BACKGROUND GRADIENT */
        position: absolute;
        top: 9px;
        left: 0; }
    .single.single-member ul.member-attr-list.contact li {
      padding: 0 0 20px 0; }
      .single.single-member ul.member-attr-list.contact li:last-child {
        padding-bottom: 0; }
      .single.single-member ul.member-attr-list.contact li:before {
        display: none; }
      .single.single-member ul.member-attr-list.contact li i {
        font-size: 20px;
        color: #f90;
        margin-right: 15px; }
    .single.single-member .cms-single-member-related {
      padding-top: 100px;
      margin-top: 87px;
      position: relative; }
    .single.single-member .cms-single-member-related:before {
      content: "";
      display: block;
      width: 4000px;
      height: 8px;
      position: absolute;
      left: -2000px;
      top: 0;
      background-color: #f3f3f3;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#fdfdfd));
      background-image: -webkit-linear-gradient(top, #f3f3f3, #fdfdfd);
      background-image: -moz-linear-gradient(top, #f3f3f3, #fdfdfd);
      background-image: -ms-linear-gradient(top, #f3f3f3, #fdfdfd);
      background-image: -o-linear-gradient(top, #f3f3f3, #fdfdfd);
      background-image: linear-gradient(top, #f3f3f3, #fdfdfd);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f3f3f3', endColorStr='#fdfdfd');
      /* BACKGROUND HORIZONTAL */ }
    @media (max-width: 991px) {
    .single.single-member .cms-single-member-related article.member {
      margin-bottom: 40px; }
      .single.single-member .cms-single-member-related article.member:last-child {
        margin-bottom: 0; } }

.post-password-form input[type="password"] {
  margin-bottom: 15px;
  /* Portfolios list */ }

.entry-portfolio {
  margin-bottom: 60px;
  /* Archive */ }
  .entry-portfolio .cms-grid-media {
    position: relative; }
    .entry-portfolio .cms-grid-media > a {
      display: block;
      position: relative;
      overflow: hidden; }
    .entry-portfolio .cms-grid-media > a > .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      background: rgba(255, 153, 0, 0.7);
      -webkit-transform: scale(2);
      -khtml-transform: scale(2);
      -moz-transform: scale(2);
      -ms-transform: scale(2);
      -o-transform: scale(2);
      transform: scale(2);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      /* BACKGROUND GRADIENT */
      /* OUTLINE RADIUS */ }
      .entry-portfolio .cms-grid-media > a > .overlay > .overlay-inner {
        width: 160px;
        height: 120px;
        top: 50%;
        left: 50%;
        position: absolute;
        -webkit-transform: translate(-50%,-50%);
        -khtml-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        /* BACKGROUND GRADIENT */
        /* Spin */ }
        .entry-portfolio .cms-grid-media > a > .overlay > .overlay-inner:before, .entry-portfolio .cms-grid-media > a > .overlay > .overlay-inner:after {
          position: absolute;
          content: "";
          display: block;
          width: 60px;
          height: 60px; }
        .entry-portfolio .cms-grid-media > a > .overlay > .overlay-inner:before {
          top: 0;
          left: 0;
          border-top: 24px solid #fff;
          border-left: 24px solid #fff; }
        .entry-portfolio .cms-grid-media > a > .overlay > .overlay-inner:after {
          right: 0;
          bottom: 0;
          border-bottom: 24px solid #fff;
          border-right: 24px solid #fff; }
  .entry-portfolio .cms-grid-content {
    padding-top: 32px; }
    @media (min-width: 992px) {
  .entry-portfolio .cms-grid-content {
    padding-left: 60px;
    padding-right: 60px; } }
  .entry-portfolio .cms-grid-title {
    margin-bottom: 8px; }
  .entry-portfolio .cms-grid-categories {
    font-size: 18px;
    font-weight: 400; }
    .entry-portfolio .cms-grid-categories a {
      color: #666;
      text-transform: capitalize; }
    .entry-portfolio .cms-grid-categories a:hover {
      color: #f90; }
  .entry-portfolio .entry-excerpt {
    margin-top: 33px; }
  .entry-portfolio .cms-grid-readmore {
    margin-top: 50px; }
    .entry-portfolio .cms-grid-readmore a {
      font-weight: 700; }
  .entry-portfolio .cms-grid-meta {
    margin-top: 50px;
    border-top: 1px solid #ccc;
    padding-top: 30px;
    position: relative;
    /* Grid style */ }
    .entry-portfolio .cms-grid-meta .detail-date {
      text-transform: uppercase; }
    @media (min-width: 768px) {
    .entry-portfolio .cms-grid-meta .detail-date {
      margin-right: 0; } }
  .entry-portfolio.entry-portfolio-grid {
    /* Hover state */ }
    .entry-portfolio.entry-portfolio-grid .cms-grid-content {
      padding-top: 62px; }
    @media (min-width: 992px) {
    .entry-portfolio.entry-portfolio-grid .cms-grid-content {
      padding-left: 0px;
      padding-right: 0px; } }
  .entry-portfolio:hover .cms-grid-media > a > .overlay {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }

.tax-member_cat {
  /* Search / Search result page */ }
  .tax-member_cat .entry-blog {
    margin-bottom: 40px; }
    @media (min-width: 992px) {
    .tax-member_cat .entry-blog .entry-media {
      margin-bottom: 0; } }

.search, .search-results {
  /* Page Template */ }
  .search #cms-main, .search-results #cms-main {
    margin-top: 96px; }
  .search .search-header, .search-results .search-header {
    padding: 0 0 50px 0;
    margin: 0 0 40px 0;
    border-bottom: 1px solid #ccc; }
    .search .search-header h1, .search-results .search-header h1 {
      font-size: 48px;
      letter-spacing: 4.8px;
      padding: 0;
      margin: 0 0 20px; }
    .search .search-header p, .search-results .search-header p {
      margin-bottom: 32px; }
  .search .entry-search.entry-blog, .search-results .entry-search.entry-blog {
    padding: 0 0 42px 0;
    margin: 0 0 42px 0;
    border-bottom: 1px solid #ccc; }
    .search .entry-search.entry-blog .entry-header, .search-results .entry-search.entry-blog .entry-header {
      margin-bottom: 18px; }
    .search .entry-search.entry-blog .entry-header .entry-title, .search-results .entry-search.entry-blog .entry-header .entry-title {
      margin-bottom: 6px; }
    .search .entry-search.entry-blog .entry-content, .search-results .entry-search.entry-blog .entry-content {
      margin-bottom: 22px; }
    .search .entry-search.entry-blog .entry-readmore, .search-results .entry-search.entry-blog .entry-readmore {
      padding: 0;
      background: transparent;
      color: #f90;
      min-width: inherit; }

.page-template-blog-no-sidebar .cms-grid-wraper .cms-grid-masonry .cms-grid-item .entry-blog {
  margin-bottom: 115px; }

#comments {
  margin-top: 73px; }
  #comments .comment-reply-title {
    text-transform: uppercase; }
  #comments .comments-title {
    margin-bottom: 57px; }

#respond {
  margin-top: 93px; }
  #respond #reply-title {
    margin-bottom: 62px; }
  #respond textarea, #respond input {
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #ccc;
    margin-bottom: 28px;
    padding-left: 0; }
  #respond input[type="submit"] {
    background: #f90;
    width: 125px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 0;
    letter-spacing: 1px; }
  #respond p.form-submit {
    margin-bottom: 0; }

.comment-list {
  list-style: none;
  /* Pagination */ }
  .comment-list > li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 48px;
    margin-bottom: 48px; }
    .comment-list > li:last-child {
      margin-bottom: 30px; }
    .comment-list > li .comment-wrap {
      padding-left: 165px;
      padding-top: 8px;
      /* First reply */ }
    @media (min-width: 768px) {
    .comment-list > li > .children {
      margin: 0 0 0 165px; } }
    .comment-list > li .entry-content {
      margin-bottom: 13px; }
  .comment-list .children {
    list-style: none; }
    .comment-list .children > li {
      margin-top: 50px; }
    .comment-list .children > li .author-avatar {
      max-width: 90px; }
    .comment-list .children > li .comment-wrap {
      padding-left: 125px; }
  .comment-list .comment-header {
    color: #999;
    margin-bottom: 15px; }
    .comment-list .comment-header .author-name {
      text-transform: uppercase;
      font-weight: 900;
      color: #666;
      margin-right: 35px; }
    .comment-list .comment-header .author-name + a {
      color: #999; }
      .comment-list .comment-header .author-name + a:hover {
        color: #f90; }
  .comment-list .comment-reply-link, .comment-list .comment-edit-link {
    text-transform: uppercase;
    color: #f90;
    font-weight: 900; }
  .comment-list .comment-reply-link {
    margin-right: 35px; }

.cms-comment-pagination .page-numbers {
  padding-right: 24px;
  font-weight: 900; }
  .cms-comment-pagination .page-numbers:last-child {
    padding-right: 0; }
  .cms-comment-pagination .page-numbers * {
    font-weight: 900; }
  .cms-comment-pagination a.page-numbers {
    color: #666; }
  .cms-comment-pagination a.page-numbers:hover {
    color: #f90; }
  .cms-comment-pagination span.page-numbers {
    color: #f90; }

.wp-caption {
  background: transparent; }

.wp-caption-text {
  font-style: italic; }

.gallery-caption {
  font-style: italic; }

.screen-reader-text {
  /* AlignMent */ }

.alignleft {
  float: left;
  margin-right: 15px;
  max-width: 100%; }

.alignright {
  float: right;
  margin-left: 15px;
  max-width: 100%; }

.aligncenter {
  margin: 0 auto 15px;
  max-width: 100%; }

.bypostauthor {
  visibility: visible;
  /* Image alignment */ }

img {
  max-width: 100%;
  height: auto; }
  img[style="visibility:hidden"], img.ajax-loading[style="visibility:hidden"] {
    display: none !important; }

.carousel .carousel-control {
  height: 84px;
  line-height: 78px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  /* BACKGROUND GRADIENT */
  /* OUTLINE RADIUS */
  top: 50%;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* BACKGROUND GRADIENT */
  /* Horizontal Align */
  width: 84px;
  text-shadow: none;
  font-size: 60px;
  color: #333; }
  .carousel .carousel-control:hover {
    background: rgba(255, 153, 0, 0.8);
    color: #fff; }
  .carousel .open-gal {
    position: absolute;
    right: 20px;
    bottom: 20px; }
  .carousel img {
    width: 100%; }

.owl-carousel .owl-controls {
  text-align: center; }
  .owl-carousel .owl-controls .owl-nav {
    margin: 0 -10px; }
  .owl-carousel .owl-controls .owl-nav > div {
    display: inline-block;
    padding: 0 10px; }
  .owl-carousel .owl-controls .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
    background-color: #ccc;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
    .owl-carousel .owl-controls .owl-dots .owl-dot:last-child {
      margin-right: 0; }
    .owl-carousel .owl-controls .owl-dots .owl-dot.active {
      background-color: #f90; }

.btn, .btn-default, button, .button {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ddd;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.4px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  /* BACKGROUND GRADIENT */
  /* Primary Button */ }

.btn-primary, input[type="submit"] {
  display: inline-block;
  padding: 11px 30px;
  border: none;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  /* BACKGROUND GRADIENT */
  min-width: 125px;
  background: #f90;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.4px; }
  .btn-primary:hover, input[type="submit"]:hover {
    color: #fff; }

.btn-block {
  display: block;
  text-align: center;
  padding: 0 30px;
  line-height: 60px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  /* Button Custom */ }

.btn-custom {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1.8px;
  font-weight: 700;
  line-height: 61px;
  white-space: nowrap;
  text-transform: uppercase;
  /* Button icon */ }
  .btn-custom .btn-text, .btn-custom .btn-icon {
    float: left;
    display: inline-block;
    color: #333;
    background: #fff; }
  .btn-custom .btn-text {
    padding: 0 44px; }
  .btn-custom .btn-icon {
    width: 61px;
    height: 61px;
    text-align: center; }
  .btn-custom .btn-icon:before {
    font-size: 30px;
    line-height: 61px; }
  .btn-custom:hover .btn-text, .btn-custom:hover .btn-icon {
    background: #f90;
    color: #fff; }
  .btn-custom.icon-left .btn-icon {
    margin-right: 1px; }
  .btn-custom.icon-right .btn-icon {
    margin-left: 1px; }

.btn > i, .btn-primary > i {
  font-size: 30px;
  margin-right: 20px;
  -webkit-transform: translateY(4px);
  -khtml-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  /* BACKGROUND GRADIENT */
  /* TRANSFORM STYLE */ }
  .btn.icon-right > i, .btn-primary.icon-right > i {
    margin-right: 0;
    margin-left: 20px; }

input {
  padding: 5px 10px;
  vertical-align: middle;
  border: 3px solid #ccc; }
  input[type="text"], input[type="email"], input[type="password"], input[type="phone"], input[type="tel"] {
    width: 100%;
    max-width: 100%; }

select, textarea {
  width: 100%;
  max-width: 100%;
  padding: 5px 10px;
  border: 3px solid #ccc; }

textarea {
  vertical-align: top;
  /* Custom Select tag style  */ }

.select2.select2-container--default .select2-selection--single {
  border: 3px solid #ccc;
  height: 60px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */ }
  .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 54px;
    padding: 0 20px; }

.select2-container .select2-dropdown {
  border: 3px solid #ccc;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */ }
  .select2-container .select2-dropdown .select2-results__option {
    padding: 6px 50px; }
  .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 54px;
    height: 54px;
    top: 3px;
    right: 3px; }
  .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    margin: 0;
    height: auto;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
      font-family: 'FontAwesome';
      content: "\f107";
      display: block;
      color: #ccc;
      font-size: 30px; }
  .select2-container.select2-container--default .select2-results__option[aria-selected=true] {
    background: transparent; }
  .select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: transparent;
    color: #f90; }

* {
  outline: none;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  /* BACKGROUND GRADIENT */
  /* TRIPLE BORDERS */ }
  *:hover, *:active, *:focus {
    outline: none; }

.accent-color {
  color: #f90; }

.accent-bg {
  background-color: #f90;
  color: #fff; }

.regular-bg {
  background-color: #333;
  color: #fff; }

.available {
  color: #7db701; }

.unavailable {
  color: red;
  /* HTML tag and Formating */
  /* Heading */ }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 15px 0;
  font-weight: 900; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: #333; }
  h1:hover, .h1:hover, h2:hover, .h2:hover, h3:hover, .h3:hover, h4:hover, .h4:hover, h5:hover, .h5:hover, h6:hover, .h6:hover, h1 a:hover, .h1 a:hover, h2 a:hover, .h2 a:hover, h3 a:hover, .h3 a:hover, h4 a:hover, .h4 a:hover, h5 a:hover, .h5 a:hover, h6 a:hover, .h6 a:hover, h1:active, .h1:active, h2:active, .h2:active, h3:active, .h3:active, h4:active, .h4:active, h5:active, .h5:active, h6:active, .h6:active, h1 a:active, .h1 a:active, h2 a:active, .h2 a:active, h3 a:active, .h3 a:active, h4 a:active, .h4 a:active, h5 a:active, .h5 a:active, h6 a:active, .h6 a:active, h1:focus, .h1:focus, h2:focus, .h2:focus, h3:focus, .h3:focus, h4:focus, .h4:focus, h5:focus, .h5:focus, h6:focus, .h6:focus, h1 a:focus, .h1 a:focus, h2 a:focus, .h2 a:focus, h3 a:focus, .h3 a:focus, h4 a:focus, .h4 a:focus, h5 a:focus, .h5 a:focus, h6 a:focus, .h6 a:focus {
    color: #f90; }

h1, .h1 {
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 3.6px; }

h2, .h2 {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 3px; }

h3, .h3 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 2.4px; }

h4, .h4 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px; }

h5, .h5 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.8px; }

h6, .h6 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1.6px;
  /* link */ }

a {
  color: #333;
  text-decoration: none;
  outline: none;
  /* Table */ }
  a:hover, a:active, a:focus {
    color: #f90;
    text-decoration: none;
    outline: none; }
  a:active, a.active, a.actived {
    color: #f90;
    text-decoration: none;
    outline: none; }

table, .table {
  width: 100%;
  /* List */ }
  table thead, .table thead {
    text-transform: uppercase;
    color: #333;
    font-weight: 900; }
  table thead th, .table thead th {
    border-top: 5px solid #f90; }
  table thead th:nth-child(2), .table thead th:nth-child(2) {
    border-top-color: #0c9; }
  table thead th:nth-child(3), .table thead th:nth-child(3) {
    border-top-color: #f69; }
  table thead th:nth-child(4), .table thead th:nth-child(4) {
    border-top-color: #06c; }
  table th, .table th {
    padding: 25px 5px 25px 0;
    text-align: left;
    font-weight: 900;
    border-bottom: 1px solid #ccc; }
  @media (max-width: 991px) {
    table th, .table th {
      padding: 15px 5px; } }
  table td, .table td {
    padding: 27px 5px 27px 0;
    border-bottom: 1px solid #ccc; }
  @media (max-width: 991px) {
    table td, .table td {
      padding: 15px 5px; } }
  @media (max-width: 767px) {
    table.cms-table-responsive tr, .table.cms-table-responsive tr {
      border: 1px solid #ccc;
      border-top: 5px solid #f90;
      display: block;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      /* BACKGROUND GRADIENT */ }
      table.cms-table-responsive tr + tr, .table.cms-table-responsive tr + tr {
        margin-top: 30px; }

    table.cms-table-responsive td, .table.cms-table-responsive td {
      display: block; }
      table.cms-table-responsive td:before, .table.cms-table-responsive td:before {
        content: attr(data-title) ":";
        display: inline-block;
        font-weight: 700;
        min-width: 25%;
        text-transform: uppercase;
        color: #333;
        font-weight: 900;
        padding-right: 20px; }
      table.cms-table-responsive td:last-child, .table.cms-table-responsive td:last-child {
        border-bottom: none; } }
  @media (max-width: 480px) {
    table.cms-table-responsive td:before, .table.cms-table-responsive td:before {
      display: block;
      width: 100%; } }
  table.contact-info td, .table.contact-info td {
    border-bottom: none;
    padding: 0 0 14px 0;
    vertical-align: top; }
  table.contact-info td strong, .table.contact-info td strong {
    color: #333;
    font-weight: 900; }
  @media (max-width: 991px) {
      table.contact-info td, .table.contact-info td {
        padding: 5px; } }

ul, ol {
  padding: 0;
  margin: 0;
  list-style-position: inside;
  /* Definition Lists */ }
  ul ul, ol ul, ul ol, ol ol {
    margin-left: 15px; }

dl {
  margin: 0;
  /* p */ }
  dl dt {
    font-weight: 700;
    font-size: 125%; }
  dl dd {
    padding: 0;
    margin: 0; }
  dl dd + dt {
    margin-top: 20px; }

p {
  margin: 0 0 22px 0;
  /* Blockquote */ }
  p:last-child {
    margin-bottom: 0; }

blockquote, .blockquote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1.8px;
  color: #f90;
  padding: 0;
  margin: 0;
  /* Text Alignment */ }
  blockquote:before, .blockquote:before {
    display: block;
    clear: both;
    content: '“';
    margin-bottom: 10px;
    font-size: 48px; }
  blockquote cite, .blockquote cite {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    display: block;
    clear: both;
    font-size: 14px;
    letter-spacing: 1.4px;
    margin-top: 26px;
    /* Layout 2*/ }
  blockquote cite span, .blockquote cite span, blockquote cite small, .blockquote cite small, blockquote cite .small, .blockquote cite .small {
    text-transform: capitalize;
    font-weight: 300;
    color: #ccc; }
  blockquote cite span a, .blockquote cite span a, blockquote cite small a, .blockquote cite small a, blockquote cite .small a, .blockquote cite .small a {
    color: #ccc; }
  blockquote.layout2, .blockquote.layout2, blockquote.style2, .blockquote.style2 {
    padding: 40px;
    text-align: center;
    margin: 0;
    letter-spacing: 1.4px; }
  blockquote.layout2:before, .blockquote.layout2:before, blockquote.style2:before, .blockquote.style2:before {
    font-family: 'FontAwesome';
    content: "\f10d";
    font-size: 25px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    background: #f90;
    color: #fff;
    text-align: center;
    font-style: normal;
    margin: 0 auto 35px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
  blockquote.layout2 cite h6, .blockquote.layout2 cite h6, blockquote.style2 cite h6, .blockquote.style2 cite h6 {
    margin-bottom: 0; }

.content-align-left, .text-left {
  text-align: left; }

.content-align-center, .text-center {
  text-align: center; }

.content-align-right, .text-right {
  text-align: right;
  /* loop-pagination */ }

.loop-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 900;
  background: #999;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 21px; }
  .loop-pagination .page-numbers:last-child {
    margin-right: 0; }
  .loop-pagination .page-numbers:hover {
    background: #f90; }
  .loop-pagination .page-numbers.dots {
    background: transparent;
    color: #999;
    min-width: inherit; }
  @media (max-width: 480px) {
    .loop-pagination .page-numbers {
      margin-right: 10px;
      margin-bottom: 10px; } }
  .loop-pagination span.page-numbers {
    background: #f90; }

.paging-dots {
  /* post-navigation */ }
  .paging-dots .paging-navigation {
    margin-top: 30px !important; }
  .paging-dots .loop-pagination .page-numbers {
    min-width: inherit;
    width: 10px;
    height: 10px;
    font-size: 0;
    background: #ccc;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    margin-right: 6px; }
  .paging-dots .loop-pagination .page-numbers.next, .paging-dots .loop-pagination .page-numbers.prev {
    display: none; }
  .paging-dots .loop-pagination span.page-numbers {
    background: #f90; }

.post-navigation {
  margin-top: 20px;
  /* page-links */ }
  .post-navigation a {
    margin-top: 10px; }

.page-links span:not(.page-links-title), .page-links a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  display: inline-block;
  text-align: center; }
  .page-links span:not(.page-links-title):hover, .page-links a:hover {
    background: #f90; }
  .page-links a {
    background: #999; }
  .page-links > span:not(.page-links-title) {
    background: #f90; }

.circle, .img-circle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  /* BACKGROUND GRADIENT */ }

.rounded, .rounded3 {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  /* BACKGROUND GRADIENT */ }

#cms-footer {
  margin-top: 240px;
  /* Footer Top */ }
  #cms-footer.remove-margin-top {
    margin-top: 0; }

#cms-footer-top {
  /* Footer Bottom */ }
  #cms-footer-top .wg-title {
    margin-bottom: 31px; }
  #cms-footer-top .contact-title {
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.4px; }
  #cms-footer-top .contact-title + p {
    margin-bottom: 18px; }
  #cms-footer-top .widget + .widget {
    margin-top: 48px; }
  @media (max-width: 991px) {
  #cms-footer-top {
    background-size: cover;
    background-attachment: fixed; } }

#cms-footer-bottom {
  background: #1a1a1a;
  color: #5f5f5f;
  padding: 27px; }
  #cms-footer-bottom .cms-social a {
    color: #767676;
    font-size: 22px; }
  #cms-footer-bottom .cms-social a:hover {
    color: #f90; }
  @media (max-width: 991px) {
  #cms-footer-bottom aside {
    margin-bottom: 40px; }
    #cms-footer-bottom aside:last-child {
      margin-bottom: 0; } }

.cms-grid-filter {
  margin-bottom: 80px;
  /* CMS Grid */ }
  .cms-grid-filter ul {
    padding: 0;
    margin: 0 -25px;
    list-style: none; }
  .cms-grid-filter ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 25px; }
  .cms-grid-filter ul li a {
    text-transform: uppercase;
    color: #999;
    font-weight: 900; }
    .cms-grid-filter ul li a.active, .cms-grid-filter ul li a:hover {
      color: #333; }
  .cms-grid-filter.layout4 {
    margin-bottom: 53px; }
  .cms-grid-filter.layout4 li a {
    font-size: 18px;
    letter-spacing: 1.8px; }

.cms-grid-item {
  position: relative;
  /* CMS Grid Custom Layout */ }
  .cms-grid-item .cms-grid-media {
    overflow: hidden;
    position: relative; }
  .cms-grid-item .cms-grid-media img {
    width: 100%; }
  .cms-grid-item .entry-meta i {
    color: #b3b3b3; }
  @media (min-width: 1600px) {
  .cms-grid-item.col-lg-6:nth-child(2n+1), .cms-grid-item.col-lg-4:nth-child(3n+1), .cms-grid-item.col-lg-3:nth-child(4n+1), .cms-grid-item.col-lg-2:nth-child(6n+1) {
    clear: left; } }
  @media (min-width: 992px) and (max-width: 1599px) {
  .cms-grid-item.col-md-6:nth-child(2n+1), .cms-grid-item.col-md-4:nth-child(3n+1), .cms-grid-item.col-md-3:nth-child(4n+1), .cms-grid-item.col-md-2:nth-child(6n+1) {
    clear: left; } }
  @media (min-width: 768px) and (max-width: 991px) {
  .cms-grid-item.col-sm-6:nth-child(2n+1), .cms-grid-item.col-sm-4:nth-child(3n+1), .cms-grid-item.col-sm-3:nth-child(4n+1), .cms-grid-item.col-sm-2:nth-child(6n+1) {
    clear: left; } }

.cms-grid-wraper {
  /* CMS Carousel */ }
  .cms-grid-wraper .cms-grid-item .entry-blog {
    margin-bottom: 40px; }
  .cms-grid-wraper .cms-grid-item .entry-blog .entry-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px; }
  .cms-grid-wraper .cms-grid-item .entry-blog .entry-date span {
    display: block; }
    .cms-grid-wraper .cms-grid-item .entry-blog .entry-date span.date {
      height: 110px;
      line-height: 110px;
      font-size: 48px;
      font-weight: 900;
      letter-spacing: 2.4px; }
    .cms-grid-wraper .cms-grid-item .entry-blog .entry-date span.month {
      line-height: 45px; }
  .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-content {
    padding: 60px 20px; }
  @media (min-width: 768px) {
      .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-content {
        padding: 60px; } }
  .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-content .cms-grid-title-wrap {
    margin-bottom: 25px; }
  .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-content .cms-grid-title {
    font-size: 14px;
    line-height: 24px; }
  .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-readmore {
    display: block;
    overflow: hidden;
    /* Layout 2 */ }
  .cms-grid-wraper .cms-grid-item .entry-blog .cms-grid-readmore a {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 26px;
    margin-bottom: 2px;
    display: block; }
  @media (min-width: 992px) {
      .cms-grid-wraper .cms-grid-item .entry-blog.layout2 {
        display: flex; }
        .cms-grid-wraper .cms-grid-item .entry-blog.layout2 .cms-grid-media:after {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          width: 20px;
          content: "";
          display: block;
          background-color: inherit; }
        .cms-grid-wraper .cms-grid-item .entry-blog.layout2 .cms-grid-media {
          width: 332px; }
        .cms-grid-wraper .cms-grid-item .entry-blog.layout2 .cms-grid-content {
          padding-top: 43px;
          padding-left: 40px;
          padding-bottom: 37px; } }
  @media (min-width: 1599px) {
      .cms-grid-wraper .cms-grid-item .entry-blog.layout2 .cms-grid-content {
        width: 372px;
        padding-left: 60px; } }
  .cms-grid-wraper.template-cms_grid .entry-excerpt {
    margin-bottom: 7px; }
  .cms-grid-wraper.template-cms_grid--portfolio {
    /* Layout Members */ }
  .cms-grid-wraper.template-cms_grid--portfolio .paging-navigation {
    margin-top: 50px;
    /* Layout 2*/ }
  .cms-grid-wraper.template-cms_grid--portfolio.layout2 {
    /* Layout 3 */ }
  .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item {
    margin-bottom: 70px; }
    @media (min-width: 992px) {
      .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item.col-lg-6:nth-child(2n+1), .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item.col-md-6:nth-child(2n+1) {
        padding-right: 60px; }
        .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item.col-lg-6:nth-child(2n), .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item.col-md-6:nth-child(2n) {
          padding-left: 60px; } }
    .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item .cms-grid-meta {
      margin-top: 50px;
      border-top: none; }
      .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item .cms-grid-meta:before, .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item .cms-grid-meta:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        width: 50%;
        height: 1px; }
      .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item .cms-grid-meta:before {
        left: 0;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(#ccc));
        background-image: -webkit-linear-gradient(left, transparent, #ccc);
        background-image: -moz-linear-gradient(left, transparent, #ccc);
        background-image: -ms-linear-gradient(left, transparent, #ccc);
        background-image: -o-linear-gradient(left, transparent, #ccc);
        background-image: linear-gradient(left, transparent, #ccc);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#ccc', gradientType='1');
        /* BACKGROUND RADIAL */ }
      .cms-grid-wraper.template-cms_grid--portfolio.layout2 .cms-grid-item .cms-grid-meta:after {
        right: 0;
        background-color: transparent !important;
        background-color: #ccc;
        background-image: -webkit-gradient(linear, left top, right top, from(#ccc), to(transparent));
        background-image: -webkit-linear-gradient(left, #ccc, transparent);
        background-image: -moz-linear-gradient(left, #ccc, transparent);
        background-image: -ms-linear-gradient(left, #ccc, transparent);
        background-image: -o-linear-gradient(left, #ccc, transparent);
        background-image: linear-gradient(left, #ccc, transparent);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ccc', endColorStr='transparent', gradientType='1');
        /* BACKGROUND RADIAL */ }
  .cms-grid-wraper.template-cms_grid--portfolio.layout2 .paging-navigation {
    margin-top: 20px; }
  .cms-grid-wraper.template-cms_grid--portfolio.layout3 {
    /* Layout 4 */ }
  .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio {
    margin-bottom: 0; }
    .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio .entry-excerpt, .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio .cms-grid-readmore, .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio .cms-grid-meta {
      margin-top: 10px; }
    .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio .cms-grid-categories {
      font-weight: 300; }
    .cms-grid-wraper.template-cms_grid--portfolio.layout3 .entry-portfolio .cms-grid-meta {
      padding-top: 6px;
      border-top: none; }
  .cms-grid-wraper.template-cms_grid--portfolio.layout3 .paging-navigation {
    margin-top: 75px; }
  .cms-grid-wraper.template-cms_grid--portfolio.layout4 {
    /* Layout 5 */ }
  .cms-grid-wraper.template-cms_grid--portfolio.layout4 article {
    margin-bottom: 40px; }
  .cms-grid-wraper.template-cms_grid--portfolio.layout5 .cms-grid {
    margin: 0 0 0 -5px; }
    .cms-grid-wraper.template-cms_grid--portfolio.layout5 .cms-grid article {
      margin-left: 5px;
      margin-bottom: 5px;
      /* Masonry */ }
    .cms-grid-wraper.template-cms_grid--portfolio.layout5 .cms-grid.cms-grid-masonry .cms-grid-item {
      width: 20%; }
      .cms-grid-wraper.template-cms_grid--portfolio.layout5 .cms-grid.cms-grid-masonry .cms-grid-item.x2 {
        width: 40%; }
      @media (max-width: 480px) {
        .cms-grid-wraper.template-cms_grid--portfolio.layout5 .cms-grid.cms-grid-masonry .cms-grid-item {
          width: 100% !important; } }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-item {
    margin-bottom: 60px; }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-content {
    padding-top: 30px; }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-content .entry-title {
    margin-bottom: 0; }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-content .cms-grid-categories a {
    font-weight: 400;
    color: #666; }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-content .entry-excerpt {
    margin-top: 18px; }
  .cms-grid-wraper.template-cms_grid--member .cms-grid-content .cms-grid-readmore a {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    display: block; }

.cms-carousel {
  /* CMS Single FancyBox */ }
  .cms-carousel .entry-portfolio {
    margin-bottom: 0; }

.cms-single-fancybox {
  /* CMS Counter */ }
  .cms-single-fancybox .cms-single-fancybox-img {
    margin-bottom: 23px; }
  .cms-single-fancybox .entry-title {
    margin-bottom: 16px; }
  .cms-single-fancybox .cms-single-fancybox-icon {
    display: inline-block; }
  .cms-single-fancybox .cms-fancybox-foot {
    margin-top: 47px;
    /* icon position */ }
  .cms-single-fancybox.left .cms-single-fancybox-content {
    padding-left: 84px; }
  .cms-single-fancybox.right .cms-single-fancybox-content {
    padding-right: 84px; }
  .cms-single-fancybox.layout2 .cms-single-fancybox-icon, .cms-single-fancybox.layout6 .cms-single-fancybox-icon {
    width: 84px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    font-size: 36px;
    background-color: #f90;
    color: #fff; }
  .cms-single-fancybox.layout2 .cms-single-fancybox-icon[class*='zk-'], .cms-single-fancybox.layout6 .cms-single-fancybox-icon[class*='zk-'] {
    line-height: 94px; }
  .cms-single-fancybox.layout5 {
    /* Layout 1 */ }
  .cms-single-fancybox.layout5 .cms-single-fancybox-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 36px;
    background-color: #f90;
    color: #fff; }
  .cms-single-fancybox.layout5 .cms-single-fancybox-icon[class*='zk-'] {
    line-height: 110px; }
  .cms-single-fancybox.layout1 {
    /* Layout 2 */ }
  .cms-single-fancybox.layout1 .cms-single-fancybox-media .cms-single-fancybox-icon {
    font-size: 50px; }
  .cms-single-fancybox.layout1 .entry-title {
    margin-bottom: 9px;
    -webkit-transform: translateY(-7px);
    -khtml-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-single-fancybox.layout2 {
    /* Layout 3 */ }
  .cms-single-fancybox.layout2.left .cms-single-fancybox-content {
    padding-left: 125px; }
  .cms-single-fancybox.layout2.right .cms-single-fancybox-content {
    padding-right: 125px; }
  .cms-single-fancybox.layout2 .entry-title {
    margin-bottom: 28px;
    line-height: 1; }
  .cms-single-fancybox.layout3 {
    /* Layout 4 */ }
  .cms-single-fancybox.layout3 .cms-single-fancybox-icon {
    margin-bottom: 24px;
    font-size: 82px;
    line-height: 1;
    color: #333; }
  .cms-single-fancybox.layout4 {
    /* Layout 5 */ }
  .cms-single-fancybox.layout4 .cms-single-fancybox-media .cms-single-fancybox-icon {
    font-size: 84px; }
  .cms-single-fancybox.layout4.left .cms-single-fancybox-content {
    padding-left: 124px; }
  .cms-single-fancybox.layout4.right .cms-single-fancybox-content {
    padding-right: 124px; }
  @media (max-width: 400px) {
    .cms-single-fancybox.layout4.left .cms-single-fancybox-media, .cms-single-fancybox.layout4.right .cms-single-fancybox-media {
      float: none !important; }
      .cms-single-fancybox.layout4.left .cms-single-fancybox-content, .cms-single-fancybox.layout4.right .cms-single-fancybox-content {
        padding-left: 0;
        padding-right: 0; } }
  .cms-single-fancybox.layout5 {
    /* Layout 6 */ }
  .cms-single-fancybox.layout5 .cms-single-fancybox-img {
    margin-bottom: 60px; }
  .cms-single-fancybox.layout5 .cms-single-fancybox-icon {
    margin-bottom: 53px; }
  .cms-single-fancybox.layout5 .entry-title {
    margin-bottom: 20px; }
  .cms-single-fancybox.layout5 .cms-fancybox-foot {
    margin-top: 37px; }
  .cms-single-fancybox.layout5 .cms-fancybox-foot a {
    text-transform: uppercase;
    color: #f90;
    font-weight: 900; }
  .cms-single-fancybox.layout6.has-shadow {
    -webkit-box-shadow: 0px 0px 15px 1px #ccc;
    -khtml-box-shadow: 0px 0px 15px 1px #ccc;
    -moz-box-shadow: 0px 0px 15px 1px #ccc;
    -ms-box-shadow: 0px 0px 15px 1px #ccc;
    -o-box-shadow: 0px 0px 15px 1px #ccc;
    box-shadow: 0px 0px 15px 1px #ccc;
    /* BACKGROUND GRADIENT */ }
  .cms-single-fancybox.layout6 .cms-single-fancybox-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 53px; }
  .cms-single-fancybox.layout6 .cms-single-fancybox-media .cms-single-fancybox-img {
    margin: 0;
    width: 100%; }
  .cms-single-fancybox.layout6 .cms-single-fancybox-media i {
    position: absolute;
    right: 0;
    bottom: 0; }
  .cms-single-fancybox.layout6 .cms-single-fancybox-content {
    padding: 0 20px; }
  @media (min-width: 1600px) {
      .cms-single-fancybox.layout6 .cms-single-fancybox-content {
        padding: 0 60px; } }
  .cms-single-fancybox.layout6.left .cms-single-fancybox-media i {
    left: 0;
    right: auto; }
  .cms-single-fancybox.layout6 .cms-fancybox-foot {
    margin-top: 37px; }
  .cms-single-fancybox.layout6 .cms-fancybox-foot a {
    text-transform: uppercase;
    color: #f90;
    font-weight: 900; }

.cms-counter-wraper {
  /* CMS Testimonial Carousel */ }
  .cms-counter-wraper * {
    color: #f90; }
  .cms-counter-wraper .cms-counter-description {
    margin-bottom: 23px; }
  .cms-counter-wraper .cms-icon {
    font-size: 40px; }
  .cms-counter-wraper .cms-counter {
    font-size: 72px;
    line-height: 1;
    letter-spacing: 7.2px;
    margin-bottom: 0; }
  .cms-counter-wraper .cms-counter span {
    display: block;
    text-transform: capitalize;
    font-size: 16px; }
  .cms-counter-wraper .cms-counter-title {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin: 10px 0 0 0;
    letter-spacing: 1.4px;
    font-weight: 300; }

.cms-testimonial-wrap {
  color: #333;
  /* CMS Clients */ }
  .cms-testimonial-wrap .icon-quote {
    display: inline-block;
    font-size: 25px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    background: #f90;
    color: #fff;
    text-align: center;
    font-style: normal;
    margin: 0 auto 47px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
  .cms-testimonial-wrap .description {
    margin-bottom: 33px;
    font-weight: 300; }
  .cms-testimonial-wrap .author-info {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 36px;
    color: #333; }
  .cms-testimonial-wrap.white {
    color: #fff; }
  .cms-testimonial-wrap.white .author-info {
    color: #f90; }
  .cms-testimonial-wrap.layout .description {
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1.8px; }

.cms-clients-wrap {
  /* CMS Team */ }
  .cms-clients-wrap .owl-carousel .owl-item {
    text-align: center;
    min-height: 89px; }
  .cms-clients-wrap .owl-carousel .owl-item img {
    width: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* Spin */ }
  .cms-clients-wrap .owl-controls .owl-dots {
    margin-top: 30px; }

.cms-team-wrap {
  /* CMS Heading */ }
  .cms-team-wrap .owl-stage .owl-item {
    padding-top: 47px; }
  .cms-team-wrap .owl-stage .owl-item img {
    width: auto;
    vertical-align: bottom;
    display: inline-block; }
  .cms-team-wrap .owl-stage .owl-item:nth-child(2n) {
    padding-top: 0; }
  @media (min-width: 768px) {
      .cms-team-wrap .owl-stage .owl-item:nth-child(n+1) .media {
        text-align: right; }
      .cms-team-wrap .owl-stage .owl-item:nth-child(n+3) .media {
        text-align: left; } }
  .cms-team-wrap .owl-stage .owl-item a {
    display: inline-block; }
  .cms-team-wrap .owl-stage .owl-item h6 {
    font-size: 15px;
    line-height: 25px;
    padding: 0;
    margin: 21px 0 0;
    color: #f90; }
  .cms-team-wrap .owl-stage .owl-item .position {
    font-size: 15px;
    font-weight: 900;
    color: #333; }
  .cms-team-wrap .owl-stage .owl-item .slogan {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 1.8px;
    color: #686868;
    padding-top: 10px; }

.cms-heading {
  position: relative;
  padding: 40px;
  /* CMS How We Work */ }
  .cms-heading:before, .cms-heading:after {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    border-style: solid;
    border-color: #f90; }
  .cms-heading:before {
    top: 0;
    left: 0;
    border-width: 40px 0 0 40px; }
  .cms-heading:after {
    right: 0;
    bottom: 0;
    border-width: 0 40px 40px 0; }
  .cms-heading .cms-heading-inner {
    padding: 50px;
    /* Layout 1 */ }
  @media (max-width: 480px) {
    .cms-heading .cms-heading-inner {
      padding: 30px 10px; } }
  .cms-heading .cms-heading-inner h2 {
    font-size: 60px;
    line-height: 82px;
    letter-spacing: 6px;
    margin: 0; }
  .cms-heading .cms-heading-inner h2.sub-heading {
    margin-top: 27px; }
  @media (max-width: 480px) {
      .cms-heading .cms-heading-inner h2 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 3px; } }
  .cms-heading .cms-heading-inner .description {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 22px; }
  .cms-heading.layout1 {
    /* Layout 2 */ }
  .cms-heading.layout1 .cms-heading-inner {
    padding-top: 35px;
    padding-bottom: 35px; }
  .cms-heading.layout1 h2.sub-heading {
    margin-top: 0; }
  @media (max-width: 480px) {
      .cms-heading.layout1 h2 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 3px; } }
  .cms-heading.layout2 {
    padding-bottom: 0; }
  .cms-heading.layout2 .cms-heading-inner {
    padding-bottom: 0; }
  .cms-heading.layout2 h2.sub-heading {
    margin-top: 16px; }
  @media (max-width: 480px) {
    .cms-heading.layout2 .description {
      padding-bottom: 15px; } }

.cms-how-we-work {
  /* CMS WorkSpace */ }
  .cms-how-we-work .el-title {
    font-size: 48px;
    letter-spacing: 4.8px;
    font-weight: 900;
    margin-bottom: 63px; }
  .cms-how-we-work .cms-how-we-work-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* White */ }
  .cms-how-we-work .cms-how-we-work-list li {
    width: 16.666%;
    float: left;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    color: #333;
    overflow-x: hidden;
    margin-bottom: 50px; }
  .cms-how-we-work .cms-how-we-work-list li:nth-child(6n):after, .cms-how-we-work .cms-how-we-work-list li:nth-child(6n+1):before {
    display: none; }
  @media (min-width: 481px) and (max-width: 767px) {
      .cms-how-we-work .cms-how-we-work-list li {
        width: 33.333%; }
        .cms-how-we-work .cms-how-we-work-list li:nth-child(3n):after, .cms-how-we-work .cms-how-we-work-list li:nth-child(3n+1):before {
          display: none; } }
  @media (max-width: 480px) {
      .cms-how-we-work .cms-how-we-work-list li {
        width: 50%; }
        .cms-how-we-work .cms-how-we-work-list li:nth-child(2n):after, .cms-how-we-work .cms-how-we-work-list li:nth-child(2n+1):before {
          display: none; } }
  .cms-how-we-work .cms-how-we-work-list li i {
    width: 84px;
    height: 84px;
    line-height: 84px;
    border: 1px solid #333;
    font-size: 38px;
    display: block;
    margin: 0 auto 20px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
  .cms-how-we-work .cms-how-we-work-list li:before, .cms-how-we-work .cms-how-we-work-list li:after {
    content: "";
    display: block;
    background-color: #333;
    width: 300px;
    height: 1px;
    position: absolute;
    top: 42px; }
  .cms-how-we-work .cms-how-we-work-list li:before {
    right: calc(50% + 42px); }
  .cms-how-we-work .cms-how-we-work-list li:after {
    left: calc(50% + 42px); }
  .cms-how-we-work .cms-how-we-work-list li:first-child:before, .cms-how-we-work .cms-how-we-work-list li:last-child:after {
    display: none; }
  .cms-how-we-work.white .el-title {
    color: #fff; }
  .cms-how-we-work.white .cms-how-we-work-list li {
    color: #fff; }
  .cms-how-we-work.white .cms-how-we-work-list li i {
    border-color: #fff; }
  .cms-how-we-work.white .cms-how-we-work-list li:before, .cms-how-we-work.white .cms-how-we-work-list li:after {
    background-color: #fff; }

.cms-workspace-wrap {
  position: relative;
  /* CMS History */ }
  .cms-workspace-wrap .cms-social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 99px;
    z-index: 2; }
  .cms-workspace-wrap .cms-social a {
    margin: 0 0 5px; }
  .cms-workspace-wrap .cms-social a i {
    width: 60px;
    height: 60px;
    line-height: 60px; }
  .cms-workspace-wrap .owl-controls {
    margin-top: 80px; }

.cms-history {
  /* CMS Pricing */ }
  .cms-history .cms-history-time {
    text-transform: uppercase;
    color: #333;
    font-size: 18px;
    width: 84px;
    float: left; }
  .cms-history .cms-history-time .year {
    font-weight: 700; }
  .cms-history .cms-history-time .month {
    font-size: 14px;
    letter-spacing: 0.7px; }
  .cms-history .cms-history-content {
    padding-left: 124px;
    position: relative; }
  .cms-history .cms-history-content:before, .cms-history .cms-history-content:after {
    content: "";
    display: block;
    position: absolute; }
  .cms-history .cms-history-content:before {
    width: 10px;
    height: 10px;
    background-color: #f90;
    left: 79px;
    top: 7px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
  .cms-history .cms-history-content:after {
    top: 19px;
    left: 83px;
    width: 2px;
    bottom: -5px;
    background-color: #ccc; }
  .cms-history .cms-history-content .entry-title {
    margin-bottom: 20px; }
  .cms-history .cms-history-content .description {
    padding-bottom: 48px; }
  .cms-history .cms-history-content.last:after {
    display: none; }

.cms-pricing {
  background-color: #f3f3f3;
  /* CMS Separator */ }
  .cms-pricing hgroup {
    padding: 7px 0; }
  .cms-pricing header {
    background: #666;
    color: #fff;
    display: block;
    overflow: hidden;
    padding: 24px 15px 28px; }
  .cms-pricing header .price {
    color: #fff;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 4.8px;
    padding: 0;
    margin: 0;
    white-space: nowrap; }
  .cms-pricing header .pricing-package {
    text-transform: uppercase;
    font-size: 18px; }
  .cms-pricing .pricing-icon {
    width: 84px;
    height: 84px;
    line-height: 84px;
    display: block;
    margin: 0 auto;
    background-color: #f90;
    color: #fff;
    font-size: 40px;
    margin-top: 10px; }
  .cms-pricing .pricing-feature {
    list-style: none;
    padding: 0 15px;
    margin: 15px 0 0 0; }
  @media (min-width: 992px) {
    .cms-pricing .pricing-feature {
      padding: 0 85px; } }
  .cms-pricing .pricing-feature li {
    padding: 18px 0;
    border-bottom: 1px solid #ccc;
    color: #333; }
  .cms-pricing .pricing-feature li:last-child {
    border-bottom: 0; }
  .cms-pricing .pricing-feature li > strong {
    font-weight: 900; }
  .cms-pricing .pricing-btn {
    padding: 20px 0 50px; }
  .cms-pricing .pricing-btn a {
    padding: 11px 38px;
    min-width: inherit; }
  .cms-pricing.layout1 header {
    background-color: #f90; }
  .cms-pricing.layout2 header {
    background-color: #333; }

.cms-separator {
  position: relative; }
  .cms-separator.horizontal .cms_sep_holder {
    width: 50%;
    float: left; }
  .cms-separator.horizontal .cms_sep_holder.cms_sep_holder_r {
    background-color: transparent !important;
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    /* BACKGROUND GRADIENT */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
    /* TEXT SHADOW */ }
  .cms-separator.vertical .cms_sep_holder {
    width: 50%;
    float: left; }

.sidebar-area .widget {
  margin-bottom: 60px; }
  .sidebar-area .widget:last-child {
    margin-bottom: 0; }
  .sidebar-area .widget .wg-title, .sidebar-area .widget .widgettitle, .sidebar-area .widget .widget-title {
    padding: 0;
    margin: 0 0 38px 0; }
  .sidebar-area .widget.widget_archive, .sidebar-area .widget.widget_custom_archives {
    margin-bottom: 70px; }
  .sidebar-area .widget.widget_archive .wg-title, .sidebar-area .widget.widget_custom_archives .wg-title, .sidebar-area .widget.widget_archive .widgettitle, .sidebar-area .widget.widget_custom_archives .widgettitle, .sidebar-area .widget.widget_archive .widget-title, .sidebar-area .widget.widget_custom_archives .widget-title {
    margin-bottom: 33px; }
  .sidebar-area .widget.widget_tag_cloud {
    margin-bottom: 48px; }
  .sidebar-area .widget.widget_tag_cloud .wg-title, .sidebar-area .widget.widget_tag_cloud .widgettitle, .sidebar-area .widget.widget_tag_cloud .widget-title {
    margin-bottom: 20px; }

.widget {
  /* Menu */ }
  .widget > ul {
    padding: 0;
    margin: 0;
    list-style: none; }

.widget_nav_menu, .widget_pages, .widget_categories, .widget_archive, .widget_meta {
  /* Search */ }
  .widget_nav_menu .screen-reader-text, .widget_pages .screen-reader-text, .widget_categories .screen-reader-text, .widget_archive .screen-reader-text, .widget_meta .screen-reader-text {
    display: none; }
  .widget_nav_menu ul, .widget_pages ul, .widget_categories ul, .widget_archive ul, .widget_meta ul {
    list-style: none;
    background: #eee; }
  .widget_nav_menu ul li, .widget_pages ul li, .widget_categories ul li, .widget_archive ul li, .widget_meta ul li {
    position: relative; }
  .widget_nav_menu ul li a, .widget_pages ul li a, .widget_categories ul li a, .widget_archive ul li a, .widget_meta ul li a {
    display: block;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    padding: 18px 10px; }
  .widget_nav_menu ul li:hover > a, .widget_pages ul li:hover > a, .widget_categories ul li:hover > a, .widget_archive ul li:hover > a, .widget_meta ul li:hover > a, .widget_nav_menu ul li.current-menu-item > a, .widget_pages ul li.current-menu-item > a, .widget_categories ul li.current-menu-item > a, .widget_archive ul li.current-menu-item > a, .widget_meta ul li.current-menu-item > a, .widget_nav_menu ul li.current_page_item > a, .widget_pages ul li.current_page_item > a, .widget_categories ul li.current_page_item > a, .widget_archive ul li.current_page_item > a, .widget_meta ul li.current_page_item > a {
    color: #f90; }
  .widget_nav_menu ul li .count, .widget_pages ul li .count, .widget_categories ul li .count, .widget_archive ul li .count, .widget_meta ul li .count {
    position: absolute;
    top: 15px;
    right: 10px; }
  .widget_nav_menu ul.menu > li > a, .widget_pages ul.menu > li > a, .widget_categories ul.menu > li > a, .widget_archive ul.menu > li > a, .widget_meta ul.menu > li > a {
    padding-left: 45px; }

.cms-searchform {
  position: relative; }
  .cms-searchform input {
    width: 100%;
    padding-right: 30px; }
  .cms-searchform button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    background: transparent; }

.search-header .cms-searchform {
  /* Archive */ }
  .search-header .cms-searchform input {
    padding-right: 142px; }
  .search-header .cms-searchform button {
    background: #f90;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    width: 130px; }
  .search-header .cms-searchform button:before {
    content: attr(value);
    display: block; }
  .search-header .cms-searchform button:after {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 3px solid #ccc;
    border-right: 7px solid #fff; }
  .search-header .cms-searchform button i {
    display: none; }

.widget_archive .screen-reader-text {
  display: none;
  /* Calendar */ }

.widget_calendar {
  text-align: center;
  /* Recent Post */ }
  .widget_calendar #today {
    background: #f90;
    color: #fff; }
  .widget_calendar #today a {
    display: block;
    color: #fff; }
  .widget_calendar #today a:hover {
    color: #fff; }
  .widget_calendar th {
    text-align: center; }

.widget_recent_comments {
  /* RSS */ }
  .widget_recent_comments .comment-author-link a {
    color: #f90; }

.widget_rss {
  /* tags cloud */ }
  .widget_rss > ul > li {
    margin-bottom: 15px; }
  .widget_rss > ul > li:last-child {
    margin-bottom: 0; }
  .widget_rss .rsswidget {
    font-weight: 700; }
  .widget_rss .rss-date {
    display: block;
    font-style: italic;
    font-size: 80%;
    color: #f90; }
  .widget_rss cite {
    color: #333; }

.tagcloud a {
  border: 1px solid #ccc;
  margin: 0 15px 15px 0;
  font-size: 14px !important;
  padding: 5px 22px;
  display: inline-block;
  /* CMS Recent Post */ }

.widget_cs_recent_post_v2 .cms-recent-item {
  padding: 33px 0;
  border-bottom: 1px solid #ccc; }
  .widget_cs_recent_post_v2 .cms-recent-item:nth-child(2) {
    padding-top: 0; }
  .widget_cs_recent_post_v2 .entry-media {
    margin: 0 20px 0 0;
    max-width: 94px; }
  .widget_cs_recent_post_v2 .entry-media img {
    margin-bottom: 0; }
  .widget_cs_recent_post_v2 .entry-media + .item-content {
    padding-left: 114px; }
  .widget_cs_recent_post_v2 .entry-title {
    margin-top: -5px;
    margin-bottom: 3px;
    font-size: 14px; }
  .widget_cs_recent_post_v2 .entry-meta li {
    margin: 0 24px 0 0; }
  .widget_cs_recent_post_v2 .entry-meta li:last-child {
    margin-right: 0; }
  .widget_cs_recent_post_v2 .entry-meta li i {
    margin-right: 0; }
  .widget_cs_recent_post_v2 .entry-desc, .widget_cs_recent_post_v2 .description {
    margin-top: 5px; }
  .widget_cs_recent_post_v2 .most-viewed .cms-recent-item, .widget_cs_recent_post_v2 .featured-post .cms-recent-item {
    position: relative;
    padding: 0;
    margin: 0;
    border: 0; }
  .widget_cs_recent_post_v2 .most-viewed .entry-media, .widget_cs_recent_post_v2 .featured-post .entry-media {
    max-width: 100%;
    margin-bottom: 0;
    margin-right: 0; }
  .widget_cs_recent_post_v2 .most-viewed .entry-media img, .widget_cs_recent_post_v2 .featured-post .entry-media img {
    width: 100%; }
  .widget_cs_recent_post_v2 .most-viewed .item-content, .widget_cs_recent_post_v2 .featured-post .item-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 35px 15px 20px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background-image: -webkit-linear-gradient(top, transparent, #000);
    background-image: -moz-linear-gradient(top, transparent, #000);
    background-image: -ms-linear-gradient(top, transparent, #000);
    background-image: -o-linear-gradient(top, transparent, #000);
    background-image: linear-gradient(top, transparent, #000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#000');
    /* BACKGROUND HORIZONTAL */ }
  .widget_cs_recent_post_v2 .most-viewed .item-content .detail-terms, .widget_cs_recent_post_v2 .featured-post .item-content .detail-terms {
    display: inline-block;
    margin-bottom: 13px;
    text-transform: uppercase;
    color: #fff; }
    .widget_cs_recent_post_v2 .most-viewed .item-content .detail-terms a, .widget_cs_recent_post_v2 .featured-post .item-content .detail-terms a {
      color: #fff; }
  .widget_cs_recent_post_v2 .most-viewed .item-content .entry-title, .widget_cs_recent_post_v2 .featured-post .item-content .entry-title {
    margin-bottom: 0; }
    .widget_cs_recent_post_v2 .most-viewed .item-content .entry-title a, .widget_cs_recent_post_v2 .featured-post .item-content .entry-title a {
      color: #fff; }
      @media (min-width: 1599px) and (max-width: 1440px) {
      .widget_cs_recent_post_v2 .most-viewed .item-content .entry-title a, .widget_cs_recent_post_v2 .featured-post .item-content .entry-title a {
        white-space: nowrap;
        width: 150px;
        overflow: hidden;
        text-overflow: ellipsis; } }
  .widget_cs_recent_post_v2 .most-viewed .item-content .entry-meta, .widget_cs_recent_post_v2 .featured-post .item-content .entry-meta {
    margin-top: 12px;
    color: #fff; }
    .widget_cs_recent_post_v2 .most-viewed .item-content .entry-meta a, .widget_cs_recent_post_v2 .featured-post .item-content .entry-meta a {
      color: #fff; }
  .widget_cs_recent_post_v2 .most-viewed .item-content .description, .widget_cs_recent_post_v2 .featured-post .item-content .description {
    margin-top: 10px;
    color: #fff; }
  .widget_cs_recent_post_v2 .most-viewed .owl-controls .owl-dots, .widget_cs_recent_post_v2 .featured-post .owl-controls .owl-dots {
    position: absolute;
    bottom: 16px;
    right: 10px;
    margin: 0; }
  .widget_cs_recent_post_v2 .most-viewed .owl-controls .owl-dots .owl-dot, .widget_cs_recent_post_v2 .featured-post .owl-controls .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    margin: 2px; }
    .widget_cs_recent_post_v2 .most-viewed .owl-controls .owl-dots .owl-dot.active, .widget_cs_recent_post_v2 .featured-post .owl-controls .owl-dots .owl-dot.active, .widget_cs_recent_post_v2 .most-viewed .owl-controls .owl-dots .owl-dot:hover, .widget_cs_recent_post_v2 .featured-post .owl-controls .owl-dots .owl-dot:hover {
      background: #fff; }
  .widget_cs_recent_post_v2 .featured-post .cms-recent-item {
    margin-bottom: 30px; }
  .widget_cs_recent_post_v2 .featured-post .cms-recent-item:last-child {
    margin-bottom: 0; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .cms-recent-item {
    padding-bottom: 40px;
    padding-top: 0;
    border: none; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .cms-recent-item:last-child {
    padding-bottom: 0; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .entry-media img {
    max-width: 65px; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .item-content {
    padding-left: 98px; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .item-content .entry-title {
    padding-bottom: 8px;
    border-bottom: 1px solid #393939;
    text-transform: capitalize !important;
    font-weight: 300;
    font-size: 14px; }
    .widget_cs_recent_post_v2 .style1:not(.most-viewed) .item-content .entry-title a {
      text-transform: capitalize !important;
      letter-spacing: 1.4px !important; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .entry-meta {
    text-transform: uppercase;
    font-size: 12px;
    color: #666; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .entry-meta a {
    color: #666 !important; }
  .widget_cs_recent_post_v2 .style1:not(.most-viewed) .entry-meta li:not(.detail-comment) i {
    display: none; }

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

.no-container {
  padding-left: 20px;
  padding-right: 20px;
  position: relative; }

.break-row {
  clear: left; }

.nopadding {
  padding: 0 !important; }

.nopaddingleft {
  padding-left: 0 !important; }

.nopaddingright {
  padding-right: 0 !important; }

.vc_row.wpb_row {
  margin-left: -20px;
  margin-right: -20px;
  background-attachment: fixed;
  background-size: cover;
  background-position: top center; }
  .vc_row.wpb_row.vc_custom_1465355891506, .vc_row.wpb_row.vc_custom_1465373999286 {
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: inherit;
    background-size: inherit; }
  @media (max-width: 992px) {
  .vc_row.wpb_row {
    background-size: inherit;
    /* Fancy Services Box */ } }
  .vc_row.wpb_row.our-services .fancy-service-box {
    margin-left: 0;
    margin-right: 0;
    padding: 80px 20px;
    /* Our Service 3 */ }
  @media (min-width: 992px) {
    .vc_row.wpb_row.our-services .fancy-service-box {
      padding-left: 85px;
      padding-right: 85px; } }
  .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container {
    margin-bottom: 60px; }
  .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container:last-child {
    margin-bottom: 0; }
  .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container > .vc_column-inner {
    padding-left: 0;
    padding-right: 0; }
  @media (min-width: 992px) {
      .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container:nth-child(1) {
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        padding-right: 100px;
        padding-bottom: 60px;
        margin-bottom: 0; }
      .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container:nth-child(2) {
        border-bottom: 1px solid #ccc;
        padding-left: 100px;
        padding-bottom: 60px;
        margin-bottom: 0; }
      .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container:nth-child(3) {
        border-right: 1px solid #ccc;
        padding-right: 100px;
        padding-top: 60px;
        margin-bottom: 0; }
      .vc_row.wpb_row.our-services .fancy-service-box .wpb_column.vc_column_container:nth-child(4) {
        padding-left: 100px;
        padding-top: 60px;
        margin-bottom: 0; } }
  .vc_row.wpb_row.fancy-service-box3 {
    /* Our Services 4 */ }
  @media (min-width: 992px) {
    .vc_row.wpb_row.fancy-service-box3 .cms-single-fancybox {
      position: relative; }
      .vc_row.wpb_row.fancy-service-box3 .cms-single-fancybox:before, .vc_row.wpb_row.fancy-service-box3 .cms-single-fancybox:after {
        position: absolute;
        right: -20px;
        content: "";
        width: 1px; }
      .vc_row.wpb_row.fancy-service-box3 .cms-single-fancybox:before {
        top: 0;
        bottom: 50%;
        background-color: rgba(255, 255, 255, 0.01);
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.01)), to(#cdcdcd));
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.01), #cdcdcd);
        background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.01), #cdcdcd);
        background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.01), #cdcdcd);
        background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.01), #cdcdcd);
        background-image: linear-gradient(top, rgba(255, 255, 255, 0.01), #cdcdcd);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255,255,255,0.01)', endColorStr='#cdcdcd'); }
      .vc_row.wpb_row.fancy-service-box3 .cms-single-fancybox:after {
        top: 50%;
        bottom: 0;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#cdcdcd), to(rgba(255, 255, 255, 0.01)));
        background-image: -webkit-linear-gradient(top, #cdcdcd, rgba(255, 255, 255, 0.01));
        background-image: -moz-linear-gradient(top, #cdcdcd, rgba(255, 255, 255, 0.01));
        background-image: -ms-linear-gradient(top, #cdcdcd, rgba(255, 255, 255, 0.01));
        background-image: -o-linear-gradient(top, #cdcdcd, rgba(255, 255, 255, 0.01));
        background-image: linear-gradient(top, #cdcdcd, rgba(255, 255, 255, 0.01));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cdcdcd', endColorStr='rgba(255,255,255,0.01)');
        background-color: rgba(255, 255, 255, 0.01); }

    .vc_row.wpb_row.fancy-service-box3 .wpb_column:last-child .cms-single-fancybox:before, .vc_row.wpb_row.fancy-service-box3 .wpb_column.vc_col-md-3:nth-child(5) .cms-single-fancybox:before, .vc_row.wpb_row.fancy-service-box3 .wpb_column:last-child .cms-single-fancybox:after, .vc_row.wpb_row.fancy-service-box3 .wpb_column.vc_col-md-3:nth-child(5) .cms-single-fancybox:after {
      display: none; } }
  .vc_row.wpb_row#our-services-4 {
    /* Our Services 7 */ }
  .vc_row.wpb_row#our-services-4 .cms-single-fancybox.layout3 .cms-single-fancybox-icon {
    margin-bottom: 44px; }
  .vc_row.wpb_row#our-services-4 .cms-single-fancybox.layout3 .cms-fancybox-foot {
    margin-top: 67px; }
  .vc_row.wpb_row.our-services-7 {
    /* Our Service 8 */ }
  .vc_row.wpb_row.our-services-7 .center-img {
    z-index: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* Center Align */ }
  .vc_row.wpb_row.our-services-7 .box-left, .vc_row.wpb_row.our-services-7 .box-left {
    z-index: 1; }
  @media (min-width: 1920px) {
    .vc_row.wpb_row.our-services-7 .box-left {
      margin-left: 70px; }

    .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 498px; } }
  @media (max-width: 1600px) {
    .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 500px; } }
  @media (max-width: 1440px) {
    .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 435px; } }
  @media (max-width: 1366px) {
    .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 420px; } }
  @media (max-width: 1280px) {
    .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 422px; } }
  @media (max-width: 1200px) {
    .vc_row.wpb_row.our-services-7 .box-left, .vc_row.wpb_row.our-services-7 .box-right {
      margin-left: 0; } }
  @media (max-width: 1024px) {
    .vc_row.wpb_row.our-services-7 .center-img {
      display: none; } }
  @media (min-width: 1024px) {
    .vc_row.wpb_row.our-services-7 .box-left > div, .vc_row.wpb_row.our-services-7 .box-right > div {
      padding-top: 95px !important; } }
  .vc_row.wpb_row#our-service8 {
    /* Our Service 9 */ }
  .vc_row.wpb_row#our-service8 .service-box {
    -webkit-box-shadow: 0 0px 8px #f3f3f3;
    -khtml-box-shadow: 0 0px 8px #f3f3f3;
    -moz-box-shadow: 0 0px 8px #f3f3f3;
    -ms-box-shadow: 0 0px 8px #f3f3f3;
    -o-box-shadow: 0 0px 8px #f3f3f3;
    box-shadow: 0 0px 8px #f3f3f3;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */
    background-color: #fff;
    margin-top: 30px; }
  @media (min-width: 992px) {
      .vc_row.wpb_row#our-service8 .service-box {
        margin-top: -40px;
        -webkit-box-shadow: 0 8px 8px #f3f3f3;
        -khtml-box-shadow: 0 8px 8px #f3f3f3;
        -moz-box-shadow: 0 8px 8px #f3f3f3;
        -ms-box-shadow: 0 8px 8px #f3f3f3;
        -o-box-shadow: 0 8px 8px #f3f3f3;
        box-shadow: 0 8px 8px #f3f3f3;
        /* BACKGROUND GRADIENT */
        /* BOX SIZING */ } }
  .vc_row.wpb_row#our-service8 .service-box .wpb_column:nth-child(1), .vc_row.wpb_row#our-service8 .service-box .wpb_column:nth-child(2) {
    border-bottom: 2px solid #f3f3f3; }
    @media (min-width: 768px) {
      .vc_row.wpb_row#our-service8 .service-box .wpb_column:nth-child(1), .vc_row.wpb_row#our-service8 .service-box .wpb_column:nth-child(3) {
        border-right: 2px solid #f3f3f3; } }
    @media (max-width: 767px) {
      .vc_row.wpb_row#our-service8 .service-box .wpb_column:nth-child(3) {
        border-bottom: 2px solid #f3f3f3; } }
  .vc_row.wpb_row#our-service8 .service-box .cms-single-fancybox.layout3 .cms-single-fancybox-icon {
    margin-bottom: 44px; }
  .vc_row.wpb_row.our-services-9 {
    /* About Company */ }
  .vc_row.wpb_row.our-services-9 .cms-single-fancybox {
    -webkit-box-shadow: 0 3px 12px #f4f4f4;
    -khtml-box-shadow: 0 3px 12px #f4f4f4;
    -moz-box-shadow: 0 3px 12px #f4f4f4;
    -ms-box-shadow: 0 3px 12px #f4f4f4;
    -o-box-shadow: 0 3px 12px #f4f4f4;
    box-shadow: 0 3px 12px #f4f4f4;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }
  .vc_row.wpb_row.our-services-9 .cms-single-fancybox.layout3 .cms-single-fancybox-icon {
    margin-bottom: 44px; }
    .vc_row.wpb_row.our-services-9 .cms-single-fancybox.layout3 .cms-fancybox-foot {
      margin-top: 64px; }
  .vc_row.wpb_row#about-company {
    /* About Company 3 */ }
  @media (min-width: 992px) {
    .vc_row.wpb_row#about-company .cms-single-fancybox.layout2 .cms-single-fancybox-icon {
      width: 100px;
      height: 100px;
      font-size: 50px;
      line-height: 110px; } }
  @media (min-width: 1600px) {
    .vc_row.wpb_row#about-company .cms-single-fancybox.layout2.left .cms-single-fancybox-content {
      padding-left: 190px; }

    .vc_row.wpb_row#about-company .wpb_column:last-child .vc_column-inner {
      padding-left: 50px; } }
  .vc_row.wpb_row#about-company3 {
    position: relative;
    /* Work with Us */ }
  @media (min-width: 992px) {
    .vc_row.wpb_row#about-company3 .image {
      position: absolute;
      left: -25px;
      top: 300px; }

    .vc_row.wpb_row#about-company3 .content {
      padding-left: 25px; }
      .vc_row.wpb_row#about-company3 .content .cms-single-fancybox.layout2 .cms-single-fancybox-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
        line-height: 110px; } }
  @media (min-width: 1600px) {
    .vc_row.wpb_row#about-company3 .content {
      padding-left: 50px; }
      .vc_row.wpb_row#about-company3 .content .cms-single-fancybox.layout2.left .cms-single-fancybox-content {
        padding-left: 194px; } }
  @media (min-width: 1599px) {
    .vc_row.wpb_row#work-with-us .cms-heading.layout1 h2, .vc_row.wpb_row#work-with-us2 .cms-heading.layout1 h2 {
      font-size: 60px;
      letter-spacing: 6px;
      line-height: 86px; } }
  @media (max-width: 991px) {
    .vc_row.wpb_row#work-with-us .wpb_wrapper, .vc_row.wpb_row#work-with-us2 .wpb_wrapper {
      padding-left: 0 !important;
      padding-right: 0 !important; } }
  .vc_row.wpb_row#work-with-us2 {
    /* Column Shadow */ }
  @media (min-width: 1600px) {
    .vc_row.wpb_row#work-with-us2 .cms-single-fancybox.layout2.right {
      padding-left: 84px; }

    .vc_row.wpb_row#work-with-us2 .cms-single-fancybox.layout2.left {
      padding-right: 84px; } }
  .vc_row.wpb_row .has-shadow.wpb_column > div > .wpb_wrapper {
    -webkit-box-shadow: 0 5px 12px #f3f3f3;
    -khtml-box-shadow: 0 5px 12px #f3f3f3;
    -moz-box-shadow: 0 5px 12px #f3f3f3;
    -ms-box-shadow: 0 5px 12px #f3f3f3;
    -o-box-shadow: 0 5px 12px #f3f3f3;
    box-shadow: 0 5px 12px #f3f3f3;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }

.wpb_column.vc_column_container > .vc_column-inner {
  padding-left: 20px;
  padding-right: 20px; }

.wpb_row {
  /* VC Custom Heading */ }
  .wpb_row .vc_col-has-fill > .vc_column-inner, .wpb_row .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .wpb_row .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
    padding-top: 0; }
  @media (max-width: 1599px) {
  .wpb_row .wpb_column > [class*='vc_custom_'], .wpb_row .wpb_column > [class^='vc_custom_'] {
    padding-left: 20px !important;
    padding-right: 20px !important; } }

.vc_custom_heading {
  margin: 0;
  line-height: 1;
  word-wrap: initial;
  /* VC Pie Chart */ }

.vc_pie_chart {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  /* VC Progress Bar */ }
  .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_back {
    border-color: #333 !important;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ }
  .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value {
    color: #333;
    font-weight: 900;
    font-size: 48px;
    line-height: 1 !important;
    white-space: nowrap;
    padding: 0 15px 0;
    letter-spacing: 4.8px;
    height: auto !important;
    top: 50%;
    width: 100%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* Horizontal Align */ }
  .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value:after {
    content: attr(data-title);
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1.4px;
    padding-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis; }
  .vc_pie_chart canvas {
    width: 100% !important;
    height: 100% !important; }
  .vc_pie_chart.white .vc_pie_chart_back {
    border-color: #fff !important; }
  .vc_pie_chart.white .vc_pie_chart_value {
    color: #fff; }

.wpb_content_element.vc_progress_bar .vc_general.vc_single_bar {
  background: transparent;
  margin-bottom: 33px;
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  /* BACKGROUND GRADIENT */
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */ }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar:last-child {
    margin-bottom: 0; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #333; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar .vc_label {
    text-transform: uppercase;
    padding: 0 0 12px 0;
    color: #333 !important;
    text-shadow: none !important;
    font-size: 14px; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar .vc_label .vc_label_units {
    float: right;
    font-size: 24px;
    letter-spacing: 2.4px;
    color: #f90; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar .vc_bar {
    position: relative;
    height: 10px;
    background-color: #f90;
    z-index: 1;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */ }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_bar {
    background-color: #0c9; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_bar {
    background-color: #f69; }
  .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_bar {
    background-color: #06c; }

.wpb_revslider_element.wpb_content_element {
  margin-bottom: 0;
  /* Newsletter */ }

.newsletter-widget {
  /* Contact form 7 */ }
  .newsletter-widget input.newsletter-email {
    border: 1px solid #666;
    background: transparent;
    height: 45px;
    padding-right: 50px; }
  .newsletter-widget input.newsletter-submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 45px;
    min-width: inherit;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ }
  .newsletter-widget form {
    position: relative; }
  .newsletter-widget form p + p:before {
    font-family: 'FontAwesome';
    content: "\f178";
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    text-indent: 7px; }

form.wpcf7-form > p {
  margin-bottom: 26px; }
  form.wpcf7-form input, form.wpcf7-form textarea {
    border-bottom: 1px solid #ccc;
    border-top: none;
    border-right: none;
    border-left: none;
    padding-left: 0;
    color: #333; }
  form.wpcf7-form input[type="submit"] {
    color: #fff;
    padding: 0 35px;
    min-width: 124px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    margin-top: 13px; }
  form.wpcf7-form .contact2 > div:last-child {
    margin-bottom: 0; }
  form.wpcf7-form .contact2 > div.row {
    margin-left: -10px;
    margin-right: -10px; }
  form.wpcf7-form .contact2 > div.row > div {
    padding: 0 10px; }
  form.wpcf7-form .contact2 > div .wpcf7-form-control-wrap {
    margin-bottom: 20px;
    display: block; }
  form.wpcf7-form .contact2 > div input, form.wpcf7-form .contact2 > div textarea {
    border: none;
    padding: 11px 24px; }
  form.wpcf7-form .contact2 > div input[type="submit"] {
    padding: 0 35px;
    margin-top: 0; }
  form.wpcf7-form .contact2 > div textarea {
    height: 160px; }

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
  background: #ccc; }

.woocommerce {
  /** Products list 
 * Archive, categories, category, search products layout 
 * @since: 1.0.0
 * @uthor: Chinh Duong Manh
*/ }
  .woocommerce span.onsale {
    background: #f90;
    color: #fff;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    font-size: 14px;
    min-height: inherit;
    min-width: inherit;
    padding: 0 10px;
    line-height: 30px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */ }
  .woocommerce .woocommerce-LoopProduct-link {
    position: relative;
    display: block;
    /* Price */ }
  .woocommerce .price {
    /* Rating */ }
  .woocommerce .price ins {
    text-decoration: inherit; }
  .woocommerce .price del {
    font-size: 80%; }
  .woocommerce .star-rating {
    margin: 0;
    font-size: 9px;
    color: #b5b5b5;
    width: 54px;
    height: 9px;
    line-height: 9px;
    /* Form */ }
  .woocommerce .star-rating span {
    color: #333;
    height: 0;
    overflow: hidden;
    padding-top: 9px; }
  .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    line-height: inherit;
    /* button */ }
  .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce a.button.alt, .woocommerce input.button, .woocommerce a.added_to_cart, .woocommerce .yith-wcwl-wishlistaddedbrowse > a, .woocommerce .yith-wcwl-wishlistexistsbrowse > a, .woocommerce .entry-summary a.add_to_wishlist {
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff !important;
    text-transform: none;
    background-color: #333;
    margin: 0 0 10px 0;
    padding: 0 20px 0 15px;
    border: none;
    display: inline-flex;
    font-weight: 700;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /* BACKGROUND GRADIENT */
    /* Remove icon */ }
  .woocommerce #respond input#submit.add_to_cart_button:before, .woocommerce a.button.add_to_cart_button:before, .woocommerce button.button.add_to_cart_button:before, .woocommerce button.button.alt.add_to_cart_button:before, .woocommerce input.button.alt.add_to_cart_button:before, .woocommerce a.button.alt.add_to_cart_button:before, .woocommerce input.button.add_to_cart_button:before, .woocommerce a.added_to_cart.add_to_cart_button:before, .woocommerce .yith-wcwl-wishlistaddedbrowse > a.add_to_cart_button:before, .woocommerce .yith-wcwl-wishlistexistsbrowse > a.add_to_cart_button:before, .woocommerce .entry-summary a.add_to_wishlist.add_to_cart_button:before {
    content: "\f217";
    font-family: 'FontAwesome';
    display: block;
    float: left;
    width: 30px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    margin-right: 20px; }
  .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce a.button.alt:hover, .woocommerce input.button:hover, .woocommerce a.added_to_cart:hover, .woocommerce .yith-wcwl-wishlistaddedbrowse > a:hover, .woocommerce .yith-wcwl-wishlistexistsbrowse > a:hover, .woocommerce .entry-summary a.add_to_wishlist:hover, .woocommerce #respond input#submit:active, .woocommerce a.button:active, .woocommerce button.button:active, .woocommerce button.button.alt:active, .woocommerce input.button.alt:active, .woocommerce a.button.alt:active, .woocommerce input.button:active, .woocommerce a.added_to_cart:active, .woocommerce .yith-wcwl-wishlistaddedbrowse > a:active, .woocommerce .yith-wcwl-wishlistexistsbrowse > a:active, .woocommerce .entry-summary a.add_to_wishlist:active, .woocommerce #respond input#submit:focus, .woocommerce a.button:focus, .woocommerce button.button:focus, .woocommerce button.button.alt:focus, .woocommerce input.button.alt:focus, .woocommerce a.button.alt:focus, .woocommerce input.button:focus, .woocommerce a.added_to_cart:focus, .woocommerce .yith-wcwl-wishlistaddedbrowse > a:focus, .woocommerce .yith-wcwl-wishlistexistsbrowse > a:focus, .woocommerce .entry-summary a.add_to_wishlist:focus {
    background-color: #f90; }
  .woocommerce a.remove {
    line-height: 1em;
    text-indent: 1px;
    font-size: 1em;
    /* Archive page */ }
  .woocommerce .woocommerce-ordering {
    /**
	 * All WooCommerce Widget Style
	*/
    /* Search */ }
  .woocommerce .woocommerce-ordering select {
    border-color: #f4f4f4;
    background-color: #fff; }
  .woocommerce .woocommerce-product-search {
    position: relative;
    padding-right: 76px;
    /* Products List */ }
  .woocommerce .woocommerce-product-search:before, .woocommerce .woocommerce-product-search input[type="submit"] {
    position: absolute;
    right: 0;
    top: 3px;
    width: 50px;
    min-width: inherit;
    padding: 0;
    height: 50px;
    line-height: 50px;
    text-align: center; }
  .woocommerce .woocommerce-product-search .screen-reader-text {
    display: none; }
  .woocommerce .woocommerce-product-search:before {
    content: "\f002";
    font-family: 'FontAwesome'; }
  .woocommerce .woocommerce-product-search input[type="search"] {
    border-color: #f4f4f4;
    background-color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 60px 0 10px;
    display: block;
    width: 100%; }
  .woocommerce .woocommerce-product-search input[type="submit"] {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* OUTLINE RADIUS */ }
  .woocommerce ul.cart_list, .woocommerce ul.product_list_widget {
    /* Mini Cart */ }
  .woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
    padding: 18px 0;
    border-top: 1px solid #f4f4f4;
    position: relative; }
  .woocommerce ul.cart_list li:first-child, .woocommerce ul.product_list_widget li:first-child {
    border-top: none; }
  .woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    float: left;
    margin: 0 15px 0 0;
    max-width: 68px;
    width: 68px; }
  .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
    padding: 0; }
  .woocommerce ul.cart_list li .star-rating, .woocommerce ul.product_list_widget li .star-rating {
    float: right;
    -webkit-transform: translateY(8px);
    -khtml-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .woocommerce ul.cart_list li .woocommerce-Price-amount, .woocommerce ul.product_list_widget li .woocommerce-Price-amount {
    color: #f90; }
  .woocommerce ul.cart_list li dl, .woocommerce ul.product_list_widget li dl {
    padding-left: 0;
    border-left: none;
    display: inline-block;
    /* Mini Cart */ }
    .woocommerce ul.cart_list li dl dt, .woocommerce ul.product_list_widget li dl dt {
      font-weight: 400;
      padding: 0;
      margin: 0 4px 0 0;
      clear: left;
      font-size: inherit; }
    .woocommerce ul.cart_list li dl dd, .woocommerce ul.product_list_widget li dl dd {
      display: inline-block;
      padding: 0;
      margin: 0; }
  .woocommerce ul.cart_list li.mini_cart_item, .woocommerce ul.product_list_widget li.mini_cart_item {
    padding: 18px 0; }
    .woocommerce ul.cart_list li.mini_cart_item a.remove, .woocommerce ul.product_list_widget li.mini_cart_item a.remove {
      position: absolute;
      top: 18px;
      left: 0;
      line-height: 1 !important; }
    .woocommerce ul.cart_list li.mini_cart_item .variation, .woocommerce ul.product_list_widget li.mini_cart_item .variation {
      display: block;
      clear: both; }
  .woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
    /* Layered Nav */ }
  .woocommerce .widget_layered_nav {
    /* widget_layered_nav_filters */ }
  .woocommerce .widget_layered_nav .wg-title {
    margin-bottom: 15px; }
  .woocommerce .widget_layered_nav .attr-name {
    text-transform: uppercase;
    font-size: 12px; }
  .woocommerce .widget_layered_nav + .widget_layered_nav {
    margin-top: 0; }
  .woocommerce .widget_layered_nav ul.wc-layered-nav {
    /* Custom style for widget_price_filter when it showed after widget_layered_nav */ }
  .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term {
    padding: 11.5px;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 3px 10px 7px 0;
    line-height: 18px;
    text-align: center;
    min-width: 45px;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    /* BACKGROUND GRADIENT */ }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:last-child, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term:last-child {
      margin-right: 0; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:after, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term:after, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term .count, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term .count {
      display: none; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:hover, .woocommerce .widget_layered_nav ul.wc-layered-nav.size .wc-layered-nav-term:hover {
      border-color: #f90; }
  .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term {
    font-size: 0; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.black a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.gray a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.grey a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.blue a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.green a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.orange a, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.red a {
      display: inline-block;
      padding: 0;
      font-size: 0;
      text-indent: -999999999px;
      line-height: 18px;
      width: 20px;
      height: 20px;
      position: relative; }
      .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.black a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.gray a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.grey a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.blue a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.green a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.orange a:before, .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.red a:before {
        position: absolute;
        top: 3px;
        left: 3px;
        font-size: 14px;
        text-indent: 0; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.black a {
      background: black; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.gray a {
      background: gray; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.grey a {
      background: #f2f2f2; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.blue a {
      background: #7da7d9; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.green a {
      background: #acd373; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.orange a {
      background: #f68e56; }
    .woocommerce .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.red a {
      background: #ff6565; }
  .woocommerce .widget_layered_nav + .widget_price_filter {
    margin-top: 0; }
  .woocommerce .widget_layered_nav + .widget_price_filter .wg-title {
    text-transform: uppercase;
    font-size: 12px;
    font-family: inherit; }
    .woocommerce .widget_layered_nav + .widget_price_filter .wg-title:after {
      display: none; }
  .woocommerce .widget_layered_nav_filters {
    /* Price Filter */ }
  .woocommerce .widget_layered_nav_filters ul li {
    padding: 11.5px;
    border: 1px solid #ccc !important;
    display: inline-block;
    margin: 3px 10px 7px 0;
    line-height: 18px;
    text-align: center;
    min-width: 45px;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    /* BACKGROUND GRADIENT */ }
  .woocommerce .widget_layered_nav_filters ul li:before {
    display: none; }
  .woocommerce .widget_layered_nav_filters ul li a {
    padding: 0;
    line-height: 18px; }
  .woocommerce .widget_price_filter {
    /* Cart  Page */ }
  .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #333; }
  .woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    background-color: #f90; }
  .woocommerce .widget_price_filter #min_price, .woocommerce .widget_price_filter #max_price {
    display: block !important; }
  .woocommerce .widget_price_filter .cms-price {
    float: left;
    width: calc(50% - 10px);
    margin-right: 10px;
    position: relative; }
  .woocommerce .widget_price_filter .cms-price input {
    background: #fff;
    border-color: #f2f2f2;
    padding-right: 25px; }
  .woocommerce .widget_price_filter .cms-price .cms-currency {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    background: #f8f8f8;
    border-left: 1px solid #f2f2f2;
    color: #a4a4a4;
    font-size: 11px;
    line-height: 41px;
    width: 23px;
    text-align: center; }
  .woocommerce .widget_price_filter .cms-price + button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    margin-bottom: 0;
    height: 43px;
    line-height: 43px; }
  .woocommerce .widget_price_filter .price_slider_amount {
    padding-right: 56px;
    position: relative; }
  .woocommerce .widget_price_filter .price_label {
    display: none !important; }
  .woocommerce table.cart td.product-name > a {
    font-size: 24px;
    color: #333; }
  .woocommerce table.cart td.product-name dl.variation {
    margin: 0; }
    .woocommerce table.cart td.product-name dl.variation dt {
      font-weight: 400;
      padding: 0;
      margin: 0 4px 0 0;
      font-size: inherit; }
    .woocommerce table.cart td.product-name dl.variation dd {
      margin: 0; }
  .woocommerce table.cart img {
    width: 120px; }
  .woocommerce table.cart .quantity .qty {
    padding-left: 0;
    padding-right: 0;
    text-align: center; }
  .woocommerce table.cart #coupon_code {
    min-width: 200px;
    height: 45px; }
  @media (max-width: 480px) {
    .woocommerce table.cart #coupon_code {
      width: 100%;
      margin-bottom: 10px; }

    .woocommerce table.cart input[name="apply_coupon"] {
      width: 100% !important; } }
  .woocommerce .cart-collaterals .cross-sells ul.products li {
    width: 50%;
    /* Extensions */
    /* YITH Compare */ }
  @media (min-width: 768px) and (max-width: 992px) {
    .woocommerce .cart-collaterals .cross-sells ul.products li {
      width: 100%; } }
  @media (max-width: 600px) {
    .woocommerce .cart-collaterals .cross-sells ul.products li {
      width: 100%; } }
  .woocommerce .button.compare {
    margin: 0 !important; }
  .woocommerce .yith-woocompare-widget {
    /* YITH Wishlist */ }
  .woocommerce .yith-woocompare-widget .products-list {
    margin-bottom: 20px; }
  .woocommerce .yith-woocompare-widget .products-list a.title {
    width: auto; }
  .woocommerce .add_to_wishlist.button {
    margin: 0 !important; }
  .woocommerce .wishlist_table tr td {
    text-align: start; }
  .woocommerce .wishlist_table td.product-name a.yith-wcqv-button {
    display: none; }
  .woocommerce .wishlist_table td.product-add-to-cart a {
    display: inline-block !important; }
  .woocommerce .yith-wcwl-add-to-wishlist {
    display: inline-block;
    margin: 0; }
  .woocommerce .yith-wcwl-add-to-wishlist + .clear {
    display: none; }
  .woocommerce .yith-wcwl-add-to-wishlist span {
    display: block; }
  .woocommerce .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a, .woocommerce .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a {
    margin: 0; }
  .woocommerce #yith-wcwl-form {
    /* YITH Multi Step Check Out */ }
  @media (max-width: 768px) {
    .woocommerce #yith-wcwl-form {
      overflow-y: auto; }
      .woocommerce #yith-wcwl-form .wishlist_table {
        min-width: 768px; } }
  .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline {
    padding: 0 65px;
    margin-bottom: 60px;
    text-align: center;
    position: relative; }
    @media (max-width: 1200px) {
      .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline {
        padding: 0 40px; } }
    @media (max-width: 1024px) {
      .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline {
        padding: 0 20px; } }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper {
      font-size: 22px;
      text-align: center;
      z-index: 1; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper .timeline-step {
      width: 80px;
      height: 80px;
      line-height: 60px;
      color: #333;
      background: #fff;
      border: 2px solid #f4f4f4;
      display: block;
      margin: 0 auto;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      /* BACKGROUND GRADIENT */ }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper .timeline-step:not(.with-icon):before {
      content: "0";
      margin-right: -4px; }
      .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper .timeline-step:not(.with-icon):after {
        display: none; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper .timeline-label {
      display: block;
      text-transform: capitalize;
      padding: 20px 0 0 0 !important; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline .timeline-wrapper:after {
      display: none; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:before, .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:after {
      content: "";
      display: block;
      height: 2px;
      background: #f4f4f4;
      width: 50%;
      position: absolute;
      top: 40px; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:before {
      left: -40px; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:after {
      right: -40px; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:first-child:before, .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline:last-child:after {
      display: none; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline.active:before, .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline.active:after {
      background: #7cc576; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline.active .timeline-step {
      color: #fff;
      background: #7cc576;
      border-color: #7cc576; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline.active .timeline-label {
      color: #7cc576;
      font-weight: 400; }
    .woocommerce .woocommerce_checkout_timeline.text#checkout_timeline .timeline.active:not(.next-step):after {
      background: #f4f4f4; }
  .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .form-row input.input-text, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .form-row textarea {
    background: #fff;
    border-width: 2px; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .form-row textarea {
      min-height: 170px; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .form-row .select2-container .select2-choice {
      border: 2px solid #f4f4f4; }
  @media (min-width: 992px) {
        .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login {
          width: 50%;
          margin-left: 25%;
          padding: 0 15px;
          clear: both; } }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login form.login {
      padding: 30px;
      position: relative;
      -webkit-border-radius: 0;
      -khtml-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      /* BACKGROUND GRADIENT */
      border: 1px solid #f4f4f4; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .form-row {
      width: 100%;
      position: relative; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .form-row input[name='login'] {
      margin-top: 40px;
      width: 100%;
      background: #7cc576; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .form-row label[for="rememberme"] {
      position: absolute;
      left: 3px;
      top: 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .form-row.form-row-first {
      margin-top: 10px; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .form-row.form-row-last {
      margin-bottom: 20px; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce_checkout_login .lost_password {
      padding: 0;
      margin: 0;
      position: absolute;
      right: 33px;
      bottom: 112px; }
  .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .checkout_billing.not-logged-in {
    display: none; }
  .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout {
    margin-bottom: 25px;
    /* Payment */ }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .form-row {
      padding: 0;
      margin: 0 0 10px 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .form-row.form-row-first, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .form-row.form-row-last {
      width: calc(50% - 15px); }
    @media (max-width: 480px) {
          .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .form-row.form-row-first, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .form-row.form-row-last {
            width: 100%; } }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-billing-fields > h3 {
      display: none; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-shipping-fields > h3 {
      font-size: 16px;
      font-weight: 400;
      padding: 0;
      margin: 0 0 10px 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-shipping-fields > h3 > label, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-shipping-fields > h3 > input {
      display: inline-block;
      padding: 0;
      margin: 0;
      font-weight: 400; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-shipping-fields #order_comments_field {
      margin: 35px 0 0 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-billing-fields, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper form.woocommerce-checkout .woocommerce-shipping-fields {
      border: 1px solid #f4f4f4;
      padding: 30px; }
  .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment {
    margin-bottom: -70px;
    background: transparent; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods, .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment .place-order {
      background: transparent;
      padding: 0;
      border: none; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method {
      width: 100%;
      float: left;
      padding: 15px 30px;
      margin: 0 0 30px;
      border: 1px solid #f4f4f4; }
    @media (min-width: 992px) {
          .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method {
            width: calc(50% - 15px); }
            .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method:nth-child(2n) {
              float: right; }
            .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method:nth-child(2n+1) {
              clear: left; } }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method > label {
      font-size: 24px;
      font-weight: 400;
      padding: 0;
      margin: 0; }
      .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method > label a.about_paypal {
        font-size: 14px; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .wc_payment_method > input {
      -webkit-transform: translateY(-4px);
      -khtml-transform: translateY(-4px);
      -moz-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
      -o-transform: translateY(-4px);
      transform: translateY(-4px);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .payment_box {
      display: block !important;
      background: transparent;
      color: inherit;
      border-top: 2px solid #f4f4f4;
      font-size: inherit;
      padding: 20px 0 0;
      margin: 13px 0 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment ul.payment_methods .payment_box:before {
      width: 75px;
      height: 2px;
      border: none;
      background: #ef3c30;
      left: 0;
      top: -2px;
      margin: 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment .place-order {
      border: none;
      margin: 25px 0 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper .woocommerce-checkout-payment .place-order .button {
      margin: 0; }
  .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper #form_actions .button {
    margin: 0; }
    .woocommerce .woocommerce_checkout_timeline + #checkout-wrapper #form_actions .prev {
      float: left; }

.woocommerce .content-area, .woocommerce {
  /* Single product */ }
  .woocommerce .content-area ul.products, .woocommerce ul.products {
    margin: 0 -15px; }
  .woocommerce .content-area ul.products > li.product, .woocommerce ul.products > li.product {
    width: 33.33%;
    padding: 0 15px;
    margin: 0 0 30px;
    float: left; }
  .woocommerce .content-area ul.products > li.product.first, .woocommerce ul.products > li.product.first {
    clear: left; }
  .woocommerce .content-area ul.products > li.product a, .woocommerce ul.products > li.product a {
    vertical-align: top; }
    .woocommerce .content-area ul.products > li.product a.added_to_cart, .woocommerce ul.products > li.product a.added_to_cart {
      margin-bottom: 23px;
      font-weight: 700; }
  @media (max-width: 1024px) {
      .woocommerce .content-area ul.products > li.product, .woocommerce ul.products > li.product {
        width: 50%; }
        .woocommerce .content-area ul.products > li.product.first, .woocommerce ul.products > li.product.first {
          clear: none; } }
  @media (max-width: 480px) {
      .woocommerce .content-area ul.products > li.product, .woocommerce ul.products > li.product {
        width: 100%;
        clear: both; } }
  .woocommerce .content-area .products .product, .woocommerce .products .product, .woocommerce .content-area ul.products .product, .woocommerce ul.products .product, .woocommerce .content-area .products li.product, .woocommerce .products li.product, .woocommerce .content-area ul.products li.product, .woocommerce ul.products li.product {
    /* Up Sells & Related Product */ }
  .woocommerce .content-area .products .product h3, .woocommerce .products .product h3, .woocommerce .content-area ul.products .product h3, .woocommerce ul.products .product h3, .woocommerce .content-area .products li.product h3, .woocommerce .products li.product h3, .woocommerce .content-area ul.products li.product h3, .woocommerce ul.products li.product h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    padding: 0; }
  .woocommerce .content-area .products .product .price, .woocommerce .products .product .price, .woocommerce .content-area ul.products .product .price, .woocommerce ul.products .product .price, .woocommerce .content-area .products li.product .price, .woocommerce .products li.product .price, .woocommerce .content-area ul.products li.product .price, .woocommerce ul.products li.product .price {
    font-size: 18px;
    color: #f90;
    font-weight: 400;
    display: block;
    clear: both; }
    .woocommerce .content-area .products .product .price ins, .woocommerce .products .product .price ins, .woocommerce .content-area ul.products .product .price ins, .woocommerce ul.products .product .price ins, .woocommerce .content-area .products li.product .price ins, .woocommerce .products li.product .price ins, .woocommerce .content-area ul.products li.product .price ins, .woocommerce ul.products li.product .price ins {
      text-decoration: none; }
  .woocommerce .content-area .products .product .star-rating, .woocommerce .products .product .star-rating, .woocommerce .content-area ul.products .product .star-rating, .woocommerce ul.products .product .star-rating, .woocommerce .content-area .products li.product .star-rating, .woocommerce .products li.product .star-rating, .woocommerce .content-area ul.products li.product .star-rating, .woocommerce ul.products li.product .star-rating {
    margin: 0 auto 15px;
    font-size: 9px; }
  .woocommerce .content-area .products .product .button, .woocommerce .products .product .button, .woocommerce .content-area ul.products .product .button, .woocommerce ul.products .product .button, .woocommerce .content-area .products li.product .button, .woocommerce .products li.product .button, .woocommerce .content-area ul.products li.product .button, .woocommerce ul.products li.product .button {
    margin: 0;
    /* Extension: Wishlist, Compare, Quick View */ }
    .woocommerce .content-area .products .product .button.add_to_cart_button, .woocommerce .products .product .button.add_to_cart_button, .woocommerce .content-area ul.products .product .button.add_to_cart_button, .woocommerce ul.products .product .button.add_to_cart_button, .woocommerce .content-area .products li.product .button.add_to_cart_button, .woocommerce .products li.product .button.add_to_cart_button, .woocommerce .content-area ul.products li.product .button.add_to_cart_button, .woocommerce ul.products li.product .button.add_to_cart_button {
      margin-bottom: 23px; }
  .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist, .woocommerce .products .product .yith-wcwl-add-to-wishlist, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist, .woocommerce .products li.product .yith-wcwl-add-to-wishlist, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist {
    margin-top: 0; }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div.show, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div.show, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div.show, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div.show, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div.show, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div.show, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div.show, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div.show {
      display: inline-block !important; }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist .feedback, .woocommerce .products .product .yith-wcwl-add-to-wishlist .feedback, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist .feedback, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist .feedback, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist .feedback, .woocommerce .products li.product .yith-wcwl-add-to-wishlist .feedback, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist .feedback, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .feedback {
      display: none; }
  .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area .products .product .yith-wcqv-button, .woocommerce .products .product .yith-wcqv-button, .woocommerce .content-area ul.products .product .yith-wcqv-button, .woocommerce ul.products .product .yith-wcqv-button, .woocommerce .content-area .products li.product .yith-wcqv-button, .woocommerce .products li.product .yith-wcqv-button, .woocommerce .content-area ul.products li.product .yith-wcqv-button, .woocommerce ul.products li.product .yith-wcqv-button, .woocommerce .content-area .products .product .compare, .woocommerce .products .product .compare, .woocommerce .content-area ul.products .product .compare, .woocommerce ul.products .product .compare, .woocommerce .content-area .products li.product .compare, .woocommerce .products li.product .compare, .woocommerce .content-area ul.products li.product .compare, .woocommerce ul.products li.product .compare {
    width: 12px;
    height: 12px;
    font-size: 0 !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    overflow: inherit;
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
    /* BACKGROUND GRADIENT */
    position: absolute;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area .products .product .yith-wcqv-button:before, .woocommerce .products .product .yith-wcqv-button:before, .woocommerce .content-area ul.products .product .yith-wcqv-button:before, .woocommerce ul.products .product .yith-wcqv-button:before, .woocommerce .content-area .products li.product .yith-wcqv-button:before, .woocommerce .products li.product .yith-wcqv-button:before, .woocommerce .content-area ul.products li.product .yith-wcqv-button:before, .woocommerce ul.products li.product .yith-wcqv-button:before, .woocommerce .content-area .products .product .compare:before, .woocommerce .products .product .compare:before, .woocommerce .content-area ul.products .product .compare:before, .woocommerce ul.products .product .compare:before, .woocommerce .content-area .products li.product .compare:before, .woocommerce .products li.product .compare:before, .woocommerce .content-area ul.products li.product .compare:before, .woocommerce ul.products li.product .compare:before {
      display: block;
      color: #333;
      font-family: 'FontAwesome';
      font-size: 12px;
      line-height: 1; }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a:hover:before, .woocommerce .content-area .products .product .yith-wcqv-button:hover:before, .woocommerce .products .product .yith-wcqv-button:hover:before, .woocommerce .content-area ul.products .product .yith-wcqv-button:hover:before, .woocommerce ul.products .product .yith-wcqv-button:hover:before, .woocommerce .content-area .products li.product .yith-wcqv-button:hover:before, .woocommerce .products li.product .yith-wcqv-button:hover:before, .woocommerce .content-area ul.products li.product .yith-wcqv-button:hover:before, .woocommerce ul.products li.product .yith-wcqv-button:hover:before, .woocommerce .content-area .products .product .compare:hover:before, .woocommerce .products .product .compare:hover:before, .woocommerce .content-area ul.products .product .compare:hover:before, .woocommerce ul.products .product .compare:hover:before, .woocommerce .content-area .products li.product .compare:hover:before, .woocommerce .products li.product .compare:hover:before, .woocommerce .content-area ul.products li.product .compare:hover:before, .woocommerce ul.products li.product .compare:hover:before {
      color: #f90; }
  .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a:after, .woocommerce .content-area .products .product .yith-wcqv-button:after, .woocommerce .products .product .yith-wcqv-button:after, .woocommerce .content-area ul.products .product .yith-wcqv-button:after, .woocommerce ul.products .product .yith-wcqv-button:after, .woocommerce .content-area .products li.product .yith-wcqv-button:after, .woocommerce .products li.product .yith-wcqv-button:after, .woocommerce .content-area ul.products li.product .yith-wcqv-button:after, .woocommerce ul.products li.product .yith-wcqv-button:after, .woocommerce .content-area .products .product .compare:after, .woocommerce .products .product .compare:after, .woocommerce .content-area ul.products .product .compare:after, .woocommerce ul.products .product .compare:after, .woocommerce .content-area .products li.product .compare:after, .woocommerce .products li.product .compare:after, .woocommerce .content-area ul.products li.product .compare:after, .woocommerce ul.products li.product .compare:after {
    display: none;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    padding: 5px;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /* BACKGROUND GRADIENT */ }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a:hover:after, .woocommerce .content-area .products .product .yith-wcqv-button:hover:after, .woocommerce .products .product .yith-wcqv-button:hover:after, .woocommerce .content-area ul.products .product .yith-wcqv-button:hover:after, .woocommerce ul.products .product .yith-wcqv-button:hover:after, .woocommerce .content-area .products li.product .yith-wcqv-button:hover:after, .woocommerce .products li.product .yith-wcqv-button:hover:after, .woocommerce .content-area ul.products li.product .yith-wcqv-button:hover:after, .woocommerce ul.products li.product .yith-wcqv-button:hover:after, .woocommerce .content-area .products .product .compare:hover:after, .woocommerce .products .product .compare:hover:after, .woocommerce .content-area ul.products .product .compare:hover:after, .woocommerce ul.products .product .compare:hover:after, .woocommerce .content-area .products li.product .compare:hover:after, .woocommerce .products li.product .compare:hover:after, .woocommerce .content-area ul.products li.product .compare:hover:after, .woocommerce ul.products li.product .compare:hover:after {
      display: block; }
  .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a {
    left: calc(50% - 20px); }
    .woocommerce .content-area .products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area ul.products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce ul.products .product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area .products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce .content-area ul.products li.product .yith-wcwl-add-to-wishlist > div > a:before, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist > div > a:before {
      content: "\f067"; }
  .woocommerce .content-area .products .product .yith-wcwl-add-button a:after, .woocommerce .products .product .yith-wcwl-add-button a:after, .woocommerce .content-area ul.products .product .yith-wcwl-add-button a:after, .woocommerce ul.products .product .yith-wcwl-add-button a:after, .woocommerce .content-area .products li.product .yith-wcwl-add-button a:after, .woocommerce .products li.product .yith-wcwl-add-button a:after, .woocommerce .content-area ul.products li.product .yith-wcwl-add-button a:after, .woocommerce ul.products li.product .yith-wcwl-add-button a:after {
    content: "Add to Wishlist"; }
  .woocommerce .content-area .products .product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce .products .product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce .content-area ul.products .product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce ul.products .product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce .content-area .products li.product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce .products li.product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce .content-area ul.products li.product .yith-wcwl-wishlistaddedbrowse a:after, .woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a:after {
    content: "Product added to Wishlist!"; }
  .woocommerce .content-area .products .product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce .products .product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce .content-area ul.products .product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce ul.products .product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce .content-area .products li.product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce .products li.product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce .content-area ul.products li.product .yith-wcwl-wishlistexistsbrowse a:after, .woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a:after {
    content: "The product is already in the wishlist!";
    min-width: 150px; }
  .woocommerce .content-area .products .product .compare, .woocommerce .products .product .compare, .woocommerce .content-area ul.products .product .compare, .woocommerce ul.products .product .compare, .woocommerce .content-area .products li.product .compare, .woocommerce .products li.product .compare, .woocommerce .content-area ul.products li.product .compare, .woocommerce ul.products li.product .compare {
    left: 50%; }
    .woocommerce .content-area .products .product .compare:before, .woocommerce .products .product .compare:before, .woocommerce .content-area ul.products .product .compare:before, .woocommerce ul.products .product .compare:before, .woocommerce .content-area .products li.product .compare:before, .woocommerce .products li.product .compare:before, .woocommerce .content-area ul.products li.product .compare:before, .woocommerce ul.products li.product .compare:before {
      content: "\f079"; }
    .woocommerce .content-area .products .product .compare:after, .woocommerce .products .product .compare:after, .woocommerce .content-area ul.products .product .compare:after, .woocommerce ul.products .product .compare:after, .woocommerce .content-area .products li.product .compare:after, .woocommerce .products li.product .compare:after, .woocommerce .content-area ul.products li.product .compare:after, .woocommerce ul.products li.product .compare:after {
      content: "Compare"; }
  .woocommerce .content-area .products .product .yith-wcqv-button, .woocommerce .products .product .yith-wcqv-button, .woocommerce .content-area ul.products .product .yith-wcqv-button, .woocommerce ul.products .product .yith-wcqv-button, .woocommerce .content-area .products li.product .yith-wcqv-button, .woocommerce .products li.product .yith-wcqv-button, .woocommerce .content-area ul.products li.product .yith-wcqv-button, .woocommerce ul.products li.product .yith-wcqv-button {
    right: calc(50% - 35px); }
    .woocommerce .content-area .products .product .yith-wcqv-button:before, .woocommerce .products .product .yith-wcqv-button:before, .woocommerce .content-area ul.products .product .yith-wcqv-button:before, .woocommerce ul.products .product .yith-wcqv-button:before, .woocommerce .content-area .products li.product .yith-wcqv-button:before, .woocommerce .products li.product .yith-wcqv-button:before, .woocommerce .content-area ul.products li.product .yith-wcqv-button:before, .woocommerce ul.products li.product .yith-wcqv-button:before {
      content: "\f002"; }
    .woocommerce .content-area .products .product .yith-wcqv-button:after, .woocommerce .products .product .yith-wcqv-button:after, .woocommerce .content-area ul.products .product .yith-wcqv-button:after, .woocommerce ul.products .product .yith-wcqv-button:after, .woocommerce .content-area .products li.product .yith-wcqv-button:after, .woocommerce .products li.product .yith-wcqv-button:after, .woocommerce .content-area ul.products li.product .yith-wcqv-button:after, .woocommerce ul.products li.product .yith-wcqv-button:after {
      content: "Quick View"; }
  .woocommerce .content-area .products.upsells:before, .woocommerce .products.upsells:before, .woocommerce .content-area ul.products.upsells:before, .woocommerce ul.products.upsells:before, .woocommerce .content-area .products.related:before, .woocommerce .products.related:before, .woocommerce .content-area ul.products.related:before, .woocommerce ul.products.related:before {
    content: "";
    display: block;
    height: 1px;
    background: #ededed;
    width: 10000px;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    margin: 80px 0 50px 0; }
  .woocommerce .content-area .products.upsells > h2, .woocommerce .products.upsells > h2, .woocommerce .content-area ul.products.upsells > h2, .woocommerce ul.products.upsells > h2, .woocommerce .content-area .products.related > h2, .woocommerce .products.related > h2, .woocommerce .content-area ul.products.related > h2, .woocommerce ul.products.related > h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 47px; }
  .woocommerce .content-area .products.upsells ul.products > li.product, .woocommerce .products.upsells ul.products > li.product, .woocommerce .content-area ul.products.upsells ul.products > li.product, .woocommerce ul.products.upsells ul.products > li.product, .woocommerce .content-area .products.related ul.products > li.product, .woocommerce .products.related ul.products > li.product, .woocommerce .content-area ul.products.related ul.products > li.product, .woocommerce ul.products.related ul.products > li.product {
    width: 25%; }
    @media (max-width: 1024px) {
      .woocommerce .content-area .products.upsells ul.products > li.product, .woocommerce .products.upsells ul.products > li.product, .woocommerce .content-area ul.products.upsells ul.products > li.product, .woocommerce ul.products.upsells ul.products > li.product, .woocommerce .content-area .products.related ul.products > li.product, .woocommerce .products.related ul.products > li.product, .woocommerce .content-area ul.products.related ul.products > li.product, .woocommerce ul.products.related ul.products > li.product {
        width: 50%; }
        .woocommerce .content-area .products.upsells ul.products > li.product.first, .woocommerce .products.upsells ul.products > li.product.first, .woocommerce .content-area ul.products.upsells ul.products > li.product.first, .woocommerce ul.products.upsells ul.products > li.product.first, .woocommerce .content-area .products.related ul.products > li.product.first, .woocommerce .products.related ul.products > li.product.first, .woocommerce .content-area ul.products.related ul.products > li.product.first, .woocommerce ul.products.related ul.products > li.product.first {
          clear: none; } }
    @media (max-width: 480px) {
      .woocommerce .content-area .products.upsells ul.products > li.product, .woocommerce .products.upsells ul.products > li.product, .woocommerce .content-area ul.products.upsells ul.products > li.product, .woocommerce ul.products.upsells ul.products > li.product, .woocommerce .content-area .products.related ul.products > li.product, .woocommerce .products.related ul.products > li.product, .woocommerce .content-area ul.products.related ul.products > li.product, .woocommerce ul.products.related ul.products > li.product {
        width: 100%;
        clear: both; } }

.cms-single-product-header {
  position: relative;
  line-height: 80px;
  margin-bottom: 46px;
  margin-top: -60px; }
  .cms-single-product-header:after {
    content: "";
    display: block;
    height: 1px;
    width: 10000px;
    background: #f2f2f2;
    bottom: 4px;
    left: 50%;
    position: relative;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* Center Align */ }
  .cms-single-product-header .cms-single-product-cat .cat-icon {
    font-size: 28px;
    color: #ccc;
    margin-right: 15px;
    -webkit-transform: translateY(5px);
    -khtml-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-single-product-header .cms-single-product-cat a {
    font-size: 18px;
    color: #4f4f4f; }
  .cms-single-product-header .cms-single-product-cat a:hover {
    color: #f90; }
  .cms-single-product-header .cms-single-product-nav a {
    width: 80px;
    font-size: 24px;
    text-align: center;
    color: #c7c7c7;
    border-right: 1px solid #f2f2f2; }
  .cms-single-product-header .cms-single-product-nav a:hover {
    color: #333; }
  .cms-single-product-header .cms-single-product-nav a:first-child {
    border-left: 1px solid #f2f2f2; }

.woocommerce .cms-woocommerce-wrapper div.product div.images, #yith-quick-view-content div.product div.images {
  vertical-align: top;
  position: relative; }
  .woocommerce .cms-woocommerce-wrapper div.product div.images > a, #yith-quick-view-content div.product div.images > a {
    vertical-align: top;
    margin-bottom: 2.5px; }
  .woocommerce .cms-woocommerce-wrapper div.product div.images .thumbnails, #yith-quick-view-content div.product div.images .thumbnails {
    padding-top: 0;
    margin: 0 -2.5px; }
  .woocommerce .cms-woocommerce-wrapper div.product div.images .thumbnails.columns-5 a, #yith-quick-view-content div.product div.images .thumbnails.columns-5 a {
    width: calc(20% - 5px); }
  .woocommerce .cms-woocommerce-wrapper div.product div.images .thumbnails a, #yith-quick-view-content div.product div.images .thumbnails a {
    margin: 2.5px; }
  .woocommerce .cms-woocommerce-wrapper div.product div.summary, #yith-quick-view-content div.product div.summary {
    text-align: start; }
  .woocommerce .cms-woocommerce-wrapper div.product .product_title, #yith-quick-view-content div.product .product_title {
    font-size: 24px;
    line-height: 28px;
    padding: 0;
    margin: 0 0 8px; }
  .woocommerce .cms-woocommerce-wrapper div.product p.price, #yith-quick-view-content div.product p.price, .woocommerce .cms-woocommerce-wrapper div.product span.price, #yith-quick-view-content div.product span.price {
    color: #f90;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px; }
  .woocommerce .cms-woocommerce-wrapper div.product .product_meta, #yith-quick-view-content div.product .product_meta, .woocommerce .cms-woocommerce-wrapper div.product .cart, #yith-quick-view-content div.product .cart {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #f4f4f4; }
  .woocommerce .cms-woocommerce-wrapper div.product .product_meta > span, #yith-quick-view-content div.product .product_meta > span, .woocommerce .cms-woocommerce-wrapper div.product .cart > span, #yith-quick-view-content div.product .cart > span {
    display: block;
    color: #333; }
  .woocommerce .cms-woocommerce-wrapper div.product .product_meta > span *, #yith-quick-view-content div.product .product_meta > span *, .woocommerce .cms-woocommerce-wrapper div.product .cart > span *, #yith-quick-view-content div.product .cart > span * {
    color: inherit; }
  .woocommerce .cms-woocommerce-wrapper div.product form.cart, #yith-quick-view-content div.product form.cart {
    /* Tabs */ }
  .woocommerce .cms-woocommerce-wrapper div.product form.cart .quantity, #yith-quick-view-content div.product form.cart .quantity {
    width: calc(100% - 130px);
    float: left; }
  .woocommerce .cms-woocommerce-wrapper div.product form.cart .quantity .qty, #yith-quick-view-content div.product form.cart .quantity .qty {
    width: 100%;
    text-align: start;
    height: 45px; }
  .woocommerce .cms-woocommerce-wrapper div.product form.cart .variations td.label, #yith-quick-view-content div.product form.cart .variations td.label, .woocommerce .cms-woocommerce-wrapper div.product form.cart .variations td.value, #yith-quick-view-content div.product form.cart .variations td.value {
    padding: 5px; }
    .woocommerce .cms-woocommerce-wrapper div.product form.cart .variations td.label label, #yith-quick-view-content div.product form.cart .variations td.label label, .woocommerce .cms-woocommerce-wrapper div.product form.cart .variations td.value label, #yith-quick-view-content div.product form.cart .variations td.value label {
      display: block;
      margin: 0; }
  .woocommerce .cms-woocommerce-wrapper div.product form.cart .variations td .reset_variations[style="visibility: hidden;"], #yith-quick-view-content div.product form.cart .variations td .reset_variations[style="visibility: hidden;"] {
    display: none; }
  .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs {
    overflow: inherit;
    margin-bottom: 45px; }
  .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs:before, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs:before {
    border-bottom: none;
    height: 1px;
    background: #ededed;
    width: 10000px;
    bottom: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* Spin */ }
  .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs li, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: 0;
    margin: 0;
    padding: 0 25px;
    font-size: 16px; }
    .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs li:before, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs li:before, .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs li:after, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs li:after {
      display: none; }
    .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs li:hover a, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs li:hover a, .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs ul.tabs li.active a, #yith-quick-view-content div.product .woocommerce-tabs ul.tabs li.active a {
      color: #f90; }
  .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel, #yith-quick-view-content div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    text-align: start;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .woocommerce .cms-woocommerce-wrapper div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel > h2, #yith-quick-view-content div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel > h2 {
    display: none; }
  @media (min-width: 992px) {
  .woocommerce .cms-woocommerce-wrapper div.product div.images, #yith-quick-view-content div.product div.images {
    width: calc(58.33333333% - 15px); }
  .woocommerce .cms-woocommerce-wrapper div.product div.summary, #yith-quick-view-content div.product div.summary {
    width: calc(41.66666667% - 15px); } }

.single-product .compare.button {
  vertical-align: top; }

@media (max-width: 768px) {
  .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    width: auto;
    float: right;
    margin-bottom: 0; } }

@media (min-width: 1280px) and (max-width: 1599px) {
  /* Min width 1200 */
    .container {
      width: 1200px; } }

@media (min-width: 1200px) {
  /* Min width 992 */
    .hidden-desktop {
      display: none !important;
      /* Left Right Menu */ }
    #cms-navigation-left, #cms-navigation-right {
      width: calc(50% - 50px);
      min-height: 1px; } }

@media (min-width: 992px) {
  /* max width 991 */
    .text-md-right {
      text-align: right; }
    .width-md-50 {
      width: 50%;
      float: left; }
    .wpb_column.full-left {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0; }
      .wpb_column.full-left > div {
        position: absolute;
        bottom: -3px; }
        .wpb_column.full-left > div[class*='vc_custom_'] {
          padding-left: 0 !important;
          padding-right: 0 !important; } }

@media (max-width: 991px) {
  /* min width 768 */
    html body {
      padding: 0; }
    .text-sm-center {
      text-align: center; }
    .content-area + .sidebar-area, .sidebar-area + .content-area {
      margin-top: 30px; } }

@media (min-width: 768px) {
  /* Max width 767px */
    .sm-pull-right {
      float: right; } }
