/* -------------------------------------------------------------
  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 */
/* ==========================================================================
    Style Button
========================================================================== */
/* Comment */
/*------------------------------------------------------------------
[All Style Shortcode]

  1. CMS Heading
  2. CMS Carousel
  3. CMS Fancybox Single
  4. CMS Counter Single
  5. CMS Grid
  6. Pie Chart
  7. CMS Progressbar
  8. CMS Cta
  9. Tab
  10. CMS Countdown


-------------------------------------------------------------------*/
/* ==========================================================================
   [Start] 1. CMS Heading
========================================================================== */
/* ==========================================================================
   [Start] All Style Footer 
========================================================================== */
/* ==========================================================================
   [Start] All Style Form
========================================================================== */
/* ==========================================================================
   [Start] All style header
   /* 1. Header Main
========================================================================== */
/* ==========================================================================
   [1. Header Main
========================================================================== */
/*------------------------------------------------------------------
[Main of contents]

1. Reset HTML/CSS, Unitest, Body
2. Page Title
3. Primary
3. Footer
-------------------------------------------------------------------*/
/* ==========================================================================
   [Start] 1. Reset HTML/CSS, Unitest, Body, @Extend
========================================================================== */
/* Text Align */
.btn, button, .button, input[type="submit"] {
  -webkit-border-radius: 52px;
  -khtml-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  /* BACKGROUND GRADIENT */
  font-size: 19px;
  line-height: 25px;
  margin: 0;
  padding: 11px 50px;
  position: relative;
  text-transform: capitalize;
  background-color: #e1e1e1;
  letter-spacing: 0.05em;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 2px 0 #c7c7c7;
  -moz-box-shadow: 0 2px 0 #c7c7c7;
  -ms-box-shadow: 0 2px 0 #c7c7c7;
  box-shadow: 0 2px 0 #c7c7c7;
  color: #696969; }

.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus {
  outline: medium none;
  text-decoration: none;
  color: #fff;
  background-color: #f90;
  border-color: transparent;
  cursor: pointer; }

.btn {
  /* ==========================================================================
    End Style Button
========================================================================== */ }
  .btn i {
    padding-left: 10px; }
  .btn.btn-lg {
    padding: 17px 46px; }
  .btn.btn-md {
    padding: 17px 36px; }
  .btn.btn-xs {
    padding: 17px 20px; }
  .btn.btn-block {
    display: block; }
  .btn.btn-primary {
    background-color: #f90;
    color: #fff;
    border: none; }
    .btn.btn-primary:hover, .btn.btn-primary:focus {
      background-color: #000;
      color: #fff;
      border: none;
      outline: none; }
  .btn.btn-default-alt {
    background-color: #fff; }
    .btn.btn-default-alt:hover, .btn.btn-default-alt:focus {
      background-color: #e1e1e1;
      outline: none;
      border-color: none;
      color: #696969; }

.blog-admin {
  background: #f1f1f1;
  margin-bottom: 20px;
  position: relative; }
  .blog-admin:before {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    display: block;
    z-index: 1; }
  .blog-admin:after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    display: block;
    z-index: 1; }

.blog-admin-post {
  padding: 40px 0 40px 40px; }
  .blog-admin-post .admin-bottom {
    border-top: 1px solid #cecece;
    padding-top: 25px;
    margin-top: 25px; }
  .blog-admin-post .entry-meta {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.05em; }
    .blog-admin-post .entry-meta ul li:after {
      content: "/"; }

.admin-avt {
  max-width: 270px;
  width: 100%;
  float: left;
  -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 */ }
  .admin-avt img {
    width: 270px;
    width: 100%;
    -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 */ }

.admin-title {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  margin: 40px 0 5px 0;
  line-height: 27px;
  letter-spacing: 0.05em; }

.admin-position {
  color: #f90;
  font-size: 17px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.05em; }

.admin-des {
  font-size: 23px;
  line-height: 32px; }

.admin-info {
  padding-left: 310px;
  position: relative;
  top: -20px; }

.admin-info-wrapper {
  padding-right: 40px; }

.entry-content p {
  margin-bottom: 30px;
  line-height: 23px; }
  .entry-content h2 {
    font-size: 19px;
    line-height: 23px;
    color: #000;
    margin-top: 8px; }
  .entry-content ol li {
    margin-bottom: 15px; }

.ft-black {
  color: #000; }

ul.cms-author-social li {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #969696;
  line-height: 30px;
  background: #fff;
  text-align: center;
  margin: 0 5px;
  font-size: 13px;
  -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 */ }
  ul.cms-author-social li a {
    color: #969696; }
  ul.cms-author-social li:hover {
    background: #f90; }
    ul.cms-author-social li:hover a {
      color: #fff; }
  ul.cms-author-social li:last-child {
    margin-right: 0; }

.single-post .entry-header {
  margin-top: 40px;
  margin-bottom: 5px; }
  .single-post .navigation {
    margin-top: 40px; }
  .single-post.post-sidebar-acitve {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px; }
  .single-post.post-sidebar-acitve .container {
    width: 100%; }
  .single-post.post-sidebar-acitve .blog-admin:after, .single-post.post-sidebar-acitve .blog-admin:before {
    width: 15px; }
  .single-post.post-sidebar-acitve .blog-admin-post {
    padding: 40px; }
  .single-post.post-sidebar-acitve .entry-footer-wrapper, .single-post.post-sidebar-acitve .post-navigation, .single-post.post-sidebar-acitve #comments {
    padding-right: 0;
    padding-left: 0; }
  .single-post .wpb_revslider_element {
    margin-bottom: 20px; }

.cms-related-post {
  margin-top: 40px; }
  .cms-related-post .item .item-inner {
    position: relative; }
    .cms-related-post .item .item-inner:hover .related-hover {
      background: rgba(0, 0, 0, 0.8); }
      .cms-related-post .item .item-inner:hover .related-hover h3.title {
        -webkit-transform: translateX(0px);
        -khtml-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        /* BACKGROUND GRADIENT */
        /* TRANSFORM STYLE */
        opacity: 1;
        filter: alpha(opacity=1);
        color: #f90; }
  .cms-related-post .item .related-image img {
    width: 100%; }
  .cms-related-post .item .related-hover {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 50px; }
    .cms-related-post .item .related-hover h3.title {
      -webkit-transform: translateX(-100px);
      -khtml-transform: translateX(-100px);
      -moz-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
      -o-transform: translateX(-100px);
      transform: translateX(-100px);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */
      -webkit-transition: all 290ms linear 0ms;
      -moz-transition: all 290ms linear 0ms;
      -ms-transition: all 290ms linear 0ms;
      transition: all 290ms linear 0ms;
      opacity: 0;
      filter: alpha(opacity=0);
      color: #fff; }
      .cms-related-post .item .related-hover h3.title a {
        color: #fff; }
  .cms-related-post .item.no-feature-img .related-hover {
    padding: 20px;
    text-align: center;
    position: relative; }
    .cms-related-post .item.no-feature-img .related-hover h3.title {
      opacity: 1;
      filter: alpha(opacity=1);
      margin-bottom: 0;
      -webkit-transform: translateX(0);
      -khtml-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    .cms-related-post .item.no-feature-img .related-hover h3.title a {
      color: #343434;
      text-decoration: underline; }
    .cms-related-post .item.no-feature-img .item-inner:hover .related-hover {
      background-color: transparent; }
      .cms-related-post .item.no-feature-img .item-inner:hover .related-hover h3.title a {
        color: #f90; }

.entry-footer-wrapper {
  margin-top: 60px;
  text-align: center; }

.entry-footer-padding {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding: 40px 0 35px 0; }

.post-share-buttons {
  margin-bottom: 15px; }
  .post-share-buttons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #969696;
    -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 */
    background: #f1f1f1;
    font-size: 13px;
    display: inline-block;
    text-align: center; }
  .post-share-buttons a:hover {
    background-color: #f90;
    color: #fff; }

.tag-links {
  color: #969696; }
  .tag-links a {
    color: #969696; }
  .tag-links a:hover {
    color: #f90; }

article:not(.sticky) .entry-header i {
  display: none; }

.is-sidebar-left, .is-sidebar-right {
  max-width: 1170px;
  margin: 100px auto 100px; }
  .is-sidebar-left .container, .is-sidebar-right .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .is-sidebar-left .blog-admin, .is-sidebar-right .blog-admin {
    margin: 0; }
  .is-sidebar-left .entry-footer-wrapper, .is-sidebar-right .entry-footer-wrapper, .is-sidebar-left #comments, .is-sidebar-right #comments {
    padding-left: 0;
    padding-right: 0; }
  .is-sidebar-left .blog-admin:before, .is-sidebar-right .blog-admin:before, .is-sidebar-left .blog-admin:after, .is-sidebar-right .blog-admin:after {
    display: none; }
  .is-sidebar-left .blog-admin-post, .is-sidebar-right .blog-admin-post {
    padding: 40px; }

#comments {
  font-size: 13px; }
  #comments .st-comments-wrap {
    margin-bottom: 5px; }
  #comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0; }
  #comments .comment-list > .comment {
    margin-bottom: 40px;
    border-bottom: 1px solid #cecece; }
    #comments .comment-list > .comment:last-child {
      margin-bottom: 0; }
    #comments .comment-list > .comment:last-child .comment-content {
      padding-bottom: 0;
      border-bottom: none; }
    #comments .comment-list > .comment .comment-body {
      padding-bottom: 40px; }
    #comments .comment-list > .comment ul.children > li .comment-body {
      margin-left: 130px;
      padding-top: 40px;
      border-top: 1px solid #cecece; }
    #comments .comment-list > .comment ul.children ul {
      margin-left: 130px; }
  #comments .comment-list .comment-author-image {
    max-width: 100px;
    float: left;
    width: 100%; }
    #comments .comment-list .comment-author-image img {
      width: 100%;
      max-width: 100px;
      -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 */ }
  #comments .comment-list .comment-main {
    padding-left: 130px;
    position: relative; }
    #comments .comment-list .comment-main .reply {
      float: right;
      margin-top: -45px; }
    #comments .comment-list .comment-main .reply a {
      display: inline-block;
      color: #969696;
      font-size: 15px;
      text-transform: capitalize; }
    #comments .comment-list .comment-main .reply a:hover {
      color: ; }
    #comments .comment-list .comment-main .comment-meta {
      position: relative;
      line-height: 20px;
      letter-spacing: 0; }
    #comments .comment-list .comment-main .comment-meta .comment-author {
      display: block;
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      text-transform: capitalize;
      color: #000; }
    #comments .comment-list .comment-main .comment-meta .comment-date {
      color: #969696;
      display: block;
      font-size: 13px;
      margin: 0 0 5px; }
    #comments .comment-list .comment-main .comment-content p {
      margin: 0 0 -6px;
      color: #696969; }
  #comments textarea {
    max-width: 100%;
    width: 100%; }

h3#reply-title {
  color: #000; }

#commentform p {
  margin-bottom: 20px; }
  #commentform p.form-submit {
    margin-top: 10px;
    margin-bottom: 25px;
    float: right;
    text-transform: uppercase; }
  #commentform #form-allowed-tags {
    display: none; }
  #commentform input[type="text"]:focus, #commentform textarea:focus {
    border-bottom-color: #f90; }
  #commentform #submit {
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700; }
  #commentform label {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px; }

.comment-awaiting-moderation {
  display: none; }

#cancel-comment-reply-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  background-color: #e1e1e1;
  float: right;
  -webkit-border-radius: 25px;
  -khtml-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  /* BACKGROUND GRADIENT */
  color: #343434; }
  #cancel-comment-reply-link:hover {
    background-color: #f90;
    color: #fff; }

.cms-heading-wrapper {
  /* ==========================================================================
   [End] 1. CMS Heading
========================================================================== */
  /* ==========================================================================
   [Start] 2. CMS Carousel 
========================================================================== */ }
  .cms-heading-wrapper h3.title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 25px;
    padding: 0 100px;
    position: relative; }
  .cms-heading-wrapper h3.title:before {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 100%;
    border-bottom: 1px solid #cecece;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
    -khtml-transform: translate(-50%, 0px);
    -moz-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    -o-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-heading-wrapper .align-left h3.title {
    padding-left: 0; }
  .cms-heading-wrapper .align-right h3.title {
    padding-right: 0; }
  .cms-heading-wrapper .description p {
    line-height: 22px; }

.cms-carousel {
  /*layout team*/ }
  .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
    font-size: 50px;
    color: #969696;
    width: 50px;
    height: 50px;
    margin-top: -64px;
    position: absolute;
    top: 50%;
    text-align: center;
    letter-spacing: 0.05em; }
    .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
      color: #f90; }
    .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
      left: -50px; }
    .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      left: auto;
      right: -50px; }
    .cms-carousel.owl-carousel .owl-controls .owl-dots {
      text-align: center;
      margin-top: 25px; }
    .cms-carousel.owl-carousel .owl-controls .owl-dots .owl-dot {
      width: 20px;
      height: 8px;
      margin: 0 5px;
      background-color: #cecece;
      -webkit-border-radius: 8px;
      -khtml-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
      border-radius: 8px;
      /* BACKGROUND GRADIENT */
      display: inline-block; }
    .cms-carousel.owl-carousel .owl-controls .owl-dots .owl-dot.active, .cms-carousel.owl-carousel .owl-controls .owl-dots .owl-dot:hover {
      background-color: #f90; }

.team-title {
  font-size: 23px;
  line-height: 27px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 2px;
  color: #000;
  letter-spacing: 0.05em; }

.team-position {
  color: #f90;
  font-size: 17px;
  line-height: 27px;
  font-weight: 700;
  letter-spacing: 0.05em; }

.team-des {
  margin-top: 15px; }

.layout-team {
  position: relative;
  margin-top: -109px; }
  .layout-team .team-wrapper {
    margin: 109px 50px 0 50px;
    background-color: #f1f1f1; }
  .layout-team .team-wrapper .container {
    padding: 0; }
  .layout-team .owl-item {
    z-index: 1; }
  .layout-team .team-content {
    padding: 67px 45px 70px 60px; }
  .layout-team .team-sub {
    font-size: 23px;
    line-height: 32px;
    background: url(../images/quote-sub.png) no-repeat left center;
    margin-left: -47px;
    padding-left: 47px; }
  .layout-team .team-sub:before {
    content: ""; }
  .layout-team .team-img {
    position: absolute;
    right: 90px;
    margin-top: -109px; }
  .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav {
    position: absolute;
    bottom: 30px;
    right: 230px; }
    .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      width: 100px;
      height: 52px;
      background: #e1e1e1;
      margin: 0 5px;
      -webkit-box-shadow: 0px 2px 0 rgba(225, 225, 225, 0.75);
      -moz-box-shadow: 0px 2px 0 rgba(225, 225, 225, 0.75);
      -ms-box-shadow: 0px 2px 0 rgba(225, 225, 225, 0.75);
      box-shadow: 0px 2px 0 rgba(225, 225, 225, 0.75);
      position: relative;
      display: inline-block; }
      .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i {
        color: #696969;
        font-size: 19px;
        line-height: 52px;
        text-align: center;
        display: block;
        font-family: Inconsolata;
        font-weight: bold; }
      .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
        background-color: #f90; }
        .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover i, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover i {
          color: #fff; }
    .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
      -webkit-border-radius: 50px 0 0 50px;
      -khtml-border-radius: 50px 0 0 50px;
      -moz-border-radius: 50px 0 0 50px;
      -ms-border-radius: 50px 0 0 50px;
      -o-border-radius: 50px 0 0 50px;
      border-radius: 50px 0 0 50px;
      /* BACKGROUND GRADIENT */
      left: 0; }
      .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i:before {
        content: "PREV"; }
    .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      -webkit-border-radius: 0 50px 50px 0;
      -khtml-border-radius: 0 50px 50px 0;
      -moz-border-radius: 0 50px 50px 0;
      -ms-border-radius: 0 50px 50px 0;
      -o-border-radius: 0 50px 50px 0;
      border-radius: 0 50px 50px 0;
      /* BACKGROUND GRADIENT */
      left: auto;
      right: 0; }
      .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i:before {
        content: "NEXT"; }

.team-feature-work-wrapper {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #cecece;
  /* Layout team2*/ }
  .team-feature-work-wrapper h3 {
    color: #000;
    font-size: 23px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 0; }
  .team-feature-work-wrapper a {
    color: #969696;
    padding: 0 9px 0 0;
    position: relative;
    margin: 0 5px 0 0;
    letter-spacing: 0.05em;
    line-height: 27px; }
  .team-feature-work-wrapper a:last-child:after {
    content: ""; }
  .team-feature-work-wrapper a:hover:after {
    color: #969696; }
  .team-feature-work-wrapper a:after {
    content: "/";
    position: absolute;
    right: 0; }

.layout-team2 {
  /*layout team 3 */ }
  .layout-team2 .team-wrapper {
    padding-top: 55px; }
  .layout-team2 .team-img img {
    position: absolute;
    left: 0; }
  .layout-team2 .team-title {
    margin-top: 65px; }
  .layout-team2 .team-des p {
    font-size: 19px;
    line-height: 28px; }
  .layout-team2 .team-more {
    border-top: 1px solid #cecece;
    margin-top: 30px;
    padding: 22px 0 40px 0;
    font-weight: 700;
    line-height: 27px; }
  .layout-team2 .team-more a {
    color: #343434; }
    .layout-team2 .team-more a:hover {
      color: #f90; }

.layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
  width: 50px;
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 100px;
  margin-top: -72px; }
  .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    background: #f90; }
  .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0; }
  .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0; }
  .layout-team3.cms-carousel.owl-carousel .owl-controls .owl-dots, .layout-portfolio.cms-carousel.owl-carousel .owl-controls .owl-dots {
    margin-top: 22px; }

.layout-team3 {
  /*layout client*/ }
  .layout-team3 .team-wrapper {
    position: relative; }
  .layout-team3 .team-wrapper:hover .team-img img {
    -webkit-transform: rotateY(180deg);
    -khtml-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .layout-team3 .team-wrapper:hover .team-content {
    -webkit-transform: rotateY(0);
    -khtml-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    visibility: visible; }
  .layout-team3 .team-wrapper .team-img img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: block;
    backface-visibility: hidden;
    width: 100%; }
  .layout-team3 .team-wrapper .team-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    visibility: hidden;
    -webkit-transform: rotateY(-180deg);
    -khtml-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    backface-visibility: hidden;
    padding: 20px; }
  .layout-team3 .team-wrapper .team-content .team-title {
    color: #fff; }
  .layout-team3 .team-wrapper .team-social {
    position: absolute;
    right: 20px;
    bottom: 30px; }
  .layout-team3 .team-wrapper .team-social ul {
    list-style: none;
    display: inline-block;
    padding: 0; }
  .layout-team3 .team-wrapper .team-social ul li {
    display: inline-block; }
  .layout-team3 .team-wrapper .team-social ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #969696;
    -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 */
    background: #f1f1f1;
    font-size: 13px;
    display: inline-block;
    text-align: center; }
  .layout-team3 .team-wrapper .team-social ul li a:hover {
    background-color: #f90;
    color: #fff; }

.layout-client {
  /*layout testimonials*/ }
  .layout-client .cms-carousel-item {
    position: relative; }
  .layout-client .cms-carousel-item a img {
    opacity: 1; }
  .layout-client .cms-carousel-item a img + img {
    opacity: 0;
    position: absolute;
    top: 0; }
  .layout-client .cms-carousel-item:hover a img {
    opacity: 0; }
  .layout-client .cms-carousel-item:hover a img + img {
    opacity: 1;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }

.layout-testimonials {
  /* Layout Fullscreen */ }
  .layout-testimonials .cms-testimonial-body {
    max-width: 870px;
    margin: 0 auto 35px;
    text-align: center;
    color: #000;
    font-size: 19px;
    line-height: 25px;
    position: relative;
    letter-spacing: 0.05em; }
  .layout-testimonials .cms-testimonial-body p {
    line-height: 25px; }
  .layout-testimonials .cms-testimonial-body:after {
    content: "---";
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -khtml-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .layout-testimonials .cms-carousel-footer h3.author {
    font-size: 19px;
    color: #000;
    text-align: center;
    margin: 0;
    padding-top: 39px; }

.layout-fullscreen {
  max-width: 284px;
  text-align: center;
  /* ==========================================================================
   [End] 2. CMS Carousel 
========================================================================== */
  /* ==========================================================================
   [Start] 3. CMS Fancybox Single
========================================================================== */ }
  .layout-fullscreen .cms-carousel-item {
    background: #343434;
    padding: 40px 30px !important;
    color: #fff; }
  .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0 auto 18px !important;
    font-size: 20px !important;
    line-height: 25px !important;
    color: #fff;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important; }
  .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 strong {
    color: #f90;
    font-size: 20px !important;
    line-height: 20px !important;
    font-weight: 700 !important; }
  .layout-fullscreen .cms-carousel-item .cms-carousel-des {
    font-size: 15px !important;
    line-height: 20px !important;
    white-space: initial;
    word-wrap: break-word;
    max-width: 223px;
    letter-spacing: 0.02em !important; }
  .layout-fullscreen .cms-carousel-item .entry-readmore {
    margin-top: 25px !important; }
  .layout-fullscreen .cms-carousel-item a.read-more {
    color: #fff;
    font-size: 17px !important; }
  .layout-fullscreen .cms-carousel-item a.read-more i {
    font-size: 17px !important; }
  .layout-fullscreen .cms-carousel-item a.read-more:hover {
    color: #f90; }
  .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
    font-size: 30px !important;
    color: #000;
    background: #fff;
    margin: 0 !important;
    line-height: 50px !important;
    top: auto;
    bottom: -51px; }
  .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    color: #f90; }
  .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i {
    font-size: 30px !important;
    line-height: 50px !important; }
  .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: auto;
    right: 51px; }
  .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0; }

.cms-fancyboxes-wraper {
  /* ==========================================================================
   [End] 3. CMS Fancybox Single
========================================================================== */
  /* ==========================================================================
   [Start] 4. CMS Counter Single
========================================================================== */ }
  .cms-fancyboxes-wraper h3.cms-fancybox-title {
    font-size: 23px;
    line-height: 35px;
    text-transform: none;
    color: #000;
    margin-bottom: 35px;
    margin-top: 45px; }
  .cms-fancyboxes-wraper .cms-fancyboxes-footer {
    margin-top: 31px; }
  .cms-fancyboxes-wraper .cms-fancyboxes-footer a {
    font-size: 17px;
    font-weight: 700;
    color: #343434; }
  .cms-fancyboxes-wraper .cms-fancyboxes-footer a:hover {
    color: #f90; }
  .cms-fancyboxes-wraper .cms-fancyboxes-footer a i {
    margin-left: 5px; }

.cms-counter-wraper .cms-counter-header {
  margin-bottom: 20px; }
  .cms-counter-wraper .cms-counter-header h3 {
    text-transform: uppercase; }

.cms-counter-default {
  position: relative;
  /* ==========================================================================
   [End] 4. CMS Counter Single
========================================================================== */
  /* ==========================================================================
   [Start] 5. CMS Grid
========================================================================== */
  /*Layout Recent Work*/ }
  .cms-counter-default .cms-counter-body-inner {
    position: relative;
    width: 270px;
    height: 270px;
    margin: 0 auto; }
  .cms-counter-default .cms-counter-body-inner:hover .cms-counter-content {
    -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 */
    opacity: 1;
    filter: alpha(opacity=1); }
  .cms-counter-default .cms-counter-image {
    width: 100%;
    height: 100%;
    -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-counter-default .cms-counter-content {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -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-counter-default .cms-counter-content .cms-counter-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -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 */ }
  .cms-counter-default .cms-counter {
    font-size: 74px;
    font-weight: 700;
    line-height: 74px; }
  .cms-counter-default .cms-counter-title {
    font-size: 23px;
    line-height: 23px;
    font-weight: 700;
    margin-top: 28px; }
  .cms-counter-default .cms-counter-sub-title {
    font-size: 17px; }
  .cms-counter-default .cms-counter-icon-image img {
    width: 30px;
    height: 30px; }

.cms-portfolio-inner {
  position: relative;
  overflow: hidden; }
  .cms-portfolio-inner .cms-portfolio-image img {
    width: 100%; }
  .cms-portfolio-inner .cms-portfolio-content {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    margin: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-portfolio-inner .cms-portfolio-content.cms-portfolio-content-video {
    background: rgba(0, 0, 0, 0.55);
    margin: 0; }
  .cms-portfolio-inner .cms-portfolio-content .cms-portfolio-content-inner {
    position: absolute;
    bottom: 32px;
    left: 40px; }
  .cms-portfolio-inner:hover .cms-portfolio-content {
    -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 */
    opacity: 1;
    filter: alpha(opacity=1); }
  .cms-portfolio-inner h3.cms-portfolio-title {
    letter-spacing: 0.02em;
    margin-bottom: 3px; }
  .cms-portfolio-inner h3.cms-portfolio-title a {
    font-size: 23px;
    line-height: 23px;
    color: #fff;
    margin: 0;
    text-transform: uppercase; }
  .cms-portfolio-inner h3.cms-portfolio-title a:hover {
    color: #f90; }
  .cms-portfolio-inner .cms-portfolio-category a {
    color: #fff;
    padding: 0 7px 0 5px;
    position: relative;
    line-height: 23px; }
  .cms-portfolio-inner .cms-portfolio-category a:hover {
    color: #f90; }
  .cms-portfolio-inner .cms-portfolio-category a:hover:after {
    color: #fff; }
  .cms-portfolio-inner .cms-portfolio-category a:after {
    content: "|";
    position: absolute;
    right: -3px;
    top: -3px; }
  .cms-portfolio-inner .cms-portfolio-category a:last-child:after {
    content: ""; }
  .cms-portfolio-inner .cms-portfolio-category a:first-child {
    padding-left: 0; }
  .cms-portfolio-inner .post-share-buttons {
    position: absolute;
    right: 40px;
    bottom: 25px; }
  .cms-portfolio-inner .post-share-buttons a {
    width: 35px;
    height: 35px;
    background: #fff;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: #343434;
    margin-left: 3px; }
  .cms-portfolio-inner .post-share-buttons a i {
    line-height: 35px; }
  .cms-portfolio-inner .post-share-buttons a:hover {
    background-color: #3b5998;
    color: #fefefe; }
  .cms-portfolio-inner .post-share-buttons a:nth-child(2):hover {
    background-color: #00aeef; }
  .cms-portfolio-inner .post-share-buttons a:nth-child(3):hover {
    background-color: #cb2027; }

.layout-recentwork {
  /*Layout portfolio*/ }
  .layout-recentwork .view-all {
    margin-top: 40px; }
  .layout-recentwork .button-video {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    position: absolute;
    left: 0;
    right: 0; }

.layout-portfolio .cms-portfolio-inner .cms-portfolio-content {
  text-align: center; }
  .layout-portfolio .cms-portfolio-inner .cms-portfolio-content .cms-portfolio-content-inner {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -khtml-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    bottom: 30px; }

.layout-portfolio2 {
  /* Layout gallery */ }
  .layout-portfolio2 ul.cms-filter-category {
    margin-bottom: 23px; }

.layout-gallery .cms-grid-item-inner, .cms-gallery-item-inner .cms-grid-item-inner {
  position: relative;
  overflow: hidden; }
  .layout-gallery .cms-grid-item-inner .cms-gallery-image img, .cms-gallery-item-inner .cms-grid-item-inner .cms-gallery-image img {
    width: 100%; }
  .layout-gallery .cms-grid-item-inner .cms-gallery-content, .cms-gallery-item-inner .cms-grid-item-inner .cms-gallery-content {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0.8);
    -khtml-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .layout-gallery .cms-grid-item-inner .cms-gallery-content .cms-gallery-content-inner, .cms-gallery-item-inner .cms-grid-item-inner .cms-gallery-content .cms-gallery-content-inner {
    left: 50%;
    -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 */
    top: 50%;
    position: absolute; }
  .layout-gallery .cms-grid-item-inner .cms-gallery-content .cms-gallery-content-inner .cms-gallery-image-zoom i, .cms-gallery-item-inner .cms-grid-item-inner .cms-gallery-content .cms-gallery-content-inner .cms-gallery-image-zoom i {
    color: #fff;
    font-size: 40px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 44px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .layout-gallery .cms-grid-item-inner:hover .cms-gallery-content, .cms-gallery-item-inner .cms-grid-item-inner:hover .cms-gallery-content {
    -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 */
    opacity: 1;
    filter: alpha(opacity=1); }
  .layout-gallery .view-all, .cms-gallery-item-inner .view-all {
    margin-top: 50px; }

.view-all {
  margin-top: 20px; }
  .view-all a {
    font-size: 19px;
    font-weight: 700; }

.button-video {
  height: 150px;
  width: 150px;
  line-height: 150px;
  background: rgba(255, 255, 255, 0.75);
  color: #000;
  text-align: center;
  margin: auto;
  font-size: 90px;
  display: block;
  -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 */
  /*Service*/ }
  .button-video:hover {
    background-color: #f90;
    opacity: 0.75; }
  .button-video:hover i {
    color: #fff; }
  .button-video i {
    position: relative;
    color: #000;
    left: 2px; }

.layout-service .cms-grid-item {
  margin-bottom: 80px; }
  .layout-service .cms-grid-item .service-wrapper {
    margin: 0 0 0 50px;
    background-color: #f1f1f1; }
  .layout-service .cms-grid-item .service-wrapper .container {
    padding: 0; }
  .layout-service .cms-grid-item:nth-child(2n) .service-wrapper {
    margin: 0 50px 0 0; }
  .layout-service .cms-grid-item:nth-child(2n) .service-image .image-icon {
    left: auto;
    right: 35px; }
  .layout-service .cms-grid-item:nth-child(2n) .service-image-wrap {
    float: left;
    left: 0;
    right: auto; }
  .layout-service .cms-grid-item:nth-child(2n) .service-content {
    float: right;
    padding-left: 15px; }
  .layout-service .cms-grid-item:nth-child(2n) .service-content .service-content-inner {
    padding: 75px 0 74px 0; }

.service-content {
  padding-left: 0; }
  .service-content .service-content-inner {
    padding: 75px 0 74px 0;
    margin: 0; }
  .service-content .service-content-inner h3 {
    font-size: 23px;
    text-transform: uppercase;
    color: #000; }
  .service-content .service-content-inner h3 a {
    color: #000; }
  .service-content .service-content-inner p {
    margin-bottom: 25px;
    line-height: 23px; }
  .service-content .service-content-inner a.read-more {
    font-size: 17px;
    line-height: 25px;
    font-weight: 700;
    color: #343434;
    position: relative; }
  .service-content .service-content-inner a.read-more:hover {
    color: #f90; }
  .service-content .service-content-inner a.read-more:after {
    content: "\f178";
    font-family: FontAwesome;
    position: absolute;
    right: -27px;
    top: -1px; }

.service-image-wrap {
  position: absolute;
  right: 0; }

.service-image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  /* Layout Blog */ }
  .service-image .image-icon {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top: 20px;
    left: 35px;
    background: #f90;
    line-height: 50px;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.25); }
  .service-image .image-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -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 */ }
  .service-image .image-icon i {
    font-size: 35px;
    line-height: 50px; }

.entry-blog {
  margin-bottom: 30px; }
  .entry-blog ul {
    padding: 0 !important; }
  .entry-blog p {
    margin-bottom: 13px;
    line-height: 19px; }
  .entry-blog .entry-header .detail-comment i {
    display: inherit;
    position: relative;
    right: auto; }
  .entry-blog:hover {
    -webkit-box-shadow: 0px 0px 13px #ddd;
    -moz-box-shadow: 0px 0px 13px #ddd;
    -ms-box-shadow: 0px 0px 13px #ddd;
    box-shadow: 0px 0px 13px #ddd;
    cursor: pointer; }

.entry-content-wrapper {
  border: 1px solid #e1e1e1;
  padding: 35px 30px 30px 30px;
  overflow: hidden;
  position: relative; }

.entry-header i {
  position: absolute;
  right: 30px; }

.post-thumbnail img {
  width: 100%;
  margin-bottom: 30px; }

.entry-title {
  color: #000;
  font-size: 19px;
  line-height: 20px;
  margin-bottom: 2px; }
  .entry-title a {
    color: #000; }
  .entry-title a:hover {
    color: #f90; }

.entry-meta {
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.04em; }
  .entry-meta ul li {
    display: inline;
    color: #969696; }
  .entry-meta ul li a {
    color: #969696; }
  .entry-meta ul li a:hover {
    color: #f90; }
  .entry-meta ul li:after {
    content: ","; }
  .entry-meta ul li:last-child:after {
    content: ""; }
  .entry-meta ul li.detail-terms a {
    padding-right: 5px; }

.entry-content-des {
  font-size: 13px;
  color: #696969;
  letter-spacing: 0.04em; }

a.read-more {
  color: #343434;
  font-weight: 700;
  letter-spacing: 0.05em; }
  a.read-more:hover {
    color: #f90; }
  a.read-more i {
    margin-left: 5px; }

#page-blog-standard {
  margin-bottom: 100px;
  /* Layout Blog 2 */ }

.cms-grid-blog-layout2 {
  /*layout recent post */ }
  .cms-grid-blog-layout2 .cms-grid-item:hover .cms-grid-item-wrapper {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px #ddd;
    -moz-box-shadow: 0px 0px 10px #ddd;
    -ms-box-shadow: 0px 0px 10px #ddd;
    box-shadow: 0px 0px 10px #ddd;
    cursor: pointer; }
  .cms-grid-blog-layout2 .cms-grid-item:hover .blog-image-wrapper:after {
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
    background-image: linear-gradient(left, rgba(255, 255, 255, 0), #fff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0)', endColorStr='#fff', gradientType='1'); }
  .cms-grid-blog-layout2 .cms-grid-item-wrapper {
    margin-bottom: 20px;
    background: #f1f1f1; }
  .cms-grid-blog-layout2 .blog-image {
    padding-left: 0; }
  .cms-grid-blog-layout2 .blog-image-wrapper {
    min-height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .cms-grid-blog-layout2 .blog-image-wrapper:after {
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#f1f1f1));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #f1f1f1);
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #f1f1f1);
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #f1f1f1);
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #f1f1f1);
    background-image: linear-gradient(left, rgba(255, 255, 255, 0), #f1f1f1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0)', endColorStr='#f1f1f1', gradientType='1');
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%; }
  .cms-grid-blog-layout2 .blog-content {
    padding-top: 25px;
    padding-bottom: 19px;
    color: #696969;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0.04em; }
  .cms-grid-blog-layout2 h3.blog-title {
    font-size: 19px;
    line-height: 25px;
    margin-bottom: 6px; }
  .cms-grid-blog-layout2 h3.blog-title a {
    color: #696969; }
  .cms-grid-blog-layout2 h3.blog-title a:hover {
    color: #f90; }
  .cms-grid-blog-layout2 .blog-readmore {
    margin-top: 12px; }
  .cms-grid-blog-layout2 .blog-readmore a {
    color: #343434;
    font-weight: 700;
    font-size: 15px; }
  .cms-grid-blog-layout2 .blog-readmore a:hover {
    color: #f90; }
  .cms-grid-blog-layout2 .blog-readmore a i {
    margin-left: 5px; }

.layout-recent-post {
  line-height: 20px;
  /* ==========================================================================
   [End] 5. CMS Grid
========================================================================== */
  /* ==========================================================================
   [Start] 6. Pie Chart
========================================================================== */ }
  .layout-recent-post .cms-grid-item-wrapper {
    padding: 12px 0;
    border-bottom: 1px solid #cecece; }
  .layout-recent-post .cms-grid-item:first-child .cms-grid-item-wrapper {
    padding-top: 0; }
  .layout-recent-post .post-date {
    color: #969696; }
  .layout-recent-post h3.entry-title a {
    font-size: 15px;
    color: #343434;
    text-transform: none; }
  .layout-recent-post h3.entry-title a:hover {
    color: #f90; }
  .layout-recent-post .view-all {
    margin-top: 15px; }
  .layout-recent-post a.read-more {
    font-size: 15px;
    line-height: 25px;
    float: right; }

.vc_pie_chart {
  /* ==========================================================================
   [End] 6. Pie Chart
========================================================================== */
  /* ==========================================================================
   [Start] 7. CMS Progressbar
========================================================================== */ }
  .vc_pie_chart.wpb_content_element {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 190px;
    height: 190px;
    position: relative;
    margin: 0 auto;
    letter-spacing: 0; }
  .vc_pie_chart.wpb_content_element .vc_pie_wrapper {
    width: 190px !important;
    height: 190px !important;
    background: rgba(255, 255, 255, 0.5);
    -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 */
    padding: 10px; }
  .vc_pie_chart.wpb_content_element .vc_pie_wrapper .vc_pie_chart_back {
    width: 170px !important;
    height: 170px !important;
    border-width: 8px;
    top: 50%;
    left: 50%;
    -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 */ }
  .vc_pie_chart.wpb_content_element .vc_pie_chart_value {
    width: 170px !important;
    height: 170px !important;
    top: 47%;
    left: 50%;
    -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 */
    font-size: 60px;
    color: #000;
    font-weight: 700; }
  .vc_pie_chart.wpb_content_element canvas {
    width: 170px !important;
    height: 170px !important; }
  .vc_pie_chart.wpb_content_element h4.wpb_pie_chart_heading {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%); }

.cms-progress-layout1 {
  /* ==========================================================================
   [End] 7. CMS Progressbar
========================================================================== */
  /* ==========================================================================
   [Start] 8. CMS Cta
========================================================================== */ }
  .cms-progress-layout1 .cms-progress-item-wrap {
    position: relative; }
  .cms-progress-layout1 .cms-progress-item-wrap .cms-progress-title {
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 12px;
    overflow: hidden; }
  .cms-progress-layout1 .cms-progress-item-wrap .cms-progress-title i {
    padding-right: 5px; }
  .cms-progress-layout1 .cms-progress-item-wrap .progress-bar {
    background: #f90;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 0;
    overflow: visible; }
  .cms-progress-layout1 .cms-progress-item-wrap .cms-progress.progress {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: 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 */
    margin-bottom: 23px;
    overflow: visible; }
  .cms-progress-layout1 .cms-progress-item-wrap .progress-couter {
    position: absolute;
    right: 0;
    font-size: 17px;
    overflow: visible;
    top: -25px;
    z-index: 1000;
    color: #343434; }

.cms-cta-default {
  background-color: #f90;
  margin: 0 50px;
  padding: 45px 0;
  text-align: center;
  /* ==========================================================================
   [End] 8. CMS Cta
========================================================================== */
  /* ==========================================================================
   [Start] 9. Tab
========================================================================== */ }
  .cms-cta-default .cms-cta-text {
    display: inline-block;
    font-size: 37px;
    font-weight: 700;
    line-height: 37px;
    text-transform: uppercase; }
  .cms-cta-default .cms-cta-text .text {
    margin-top: 8px; }
  .cms-cta-default .cms-cta-button .btn {
    display: inline-block;
    margin: 0 15px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 15px; }

.wpb_wrapper {
  /* ==========================================================================
   [End] 9. Tab
========================================================================== */
  /* ==========================================================================
   [Start] 10. CMS Countdown
========================================================================== */ }
  .wpb_wrapper .vc_tta-container {
    margin-bottom: 20px; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel-title {
    font-size: 15px;
    line-height: 25px; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel-title > a {
    padding: 5px 50px 5px 20px;
    color: #696969; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-heading {
    background-color: #f1f1f1;
    border-color: #fff;
    -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_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-body {
    background-color: #fff;
    border: none;
    padding: 20px; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-body p {
    font-size: 13px;
    color: #343434;
    margin-bottom: 0; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    color: #f90; }
    .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title > a i:before {
      content: "-"; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title > a i {
    position: absolute;
    top: 17px;
    right: 0px;
    display: inline-block;
    width: 30px;
    height: 35px;
    background: #f90; }
    .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title > a i:before {
      content: "+";
      border: none;
      color: #fff;
      font-style: normal;
      font-size: 17px;
      text-align: center; }
    .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title > a i:after {
      display: none; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-accordion .vc_tta-panel-title > a:before {
    content: "";
    z-index: 1;
    right: 30px;
    top: 0;
    border-style: solid;
    border-width: 0 0 35px 18px;
    border-color: transparent transparent #f90 transparent;
    position: absolute;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-tabs .vc_tta-panel .vc_tta-panel-body {
    padding: 25px 30px 20px 30px;
    background-color: #f1f1f1; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_general.vc_tta-tabs .vc_tta-panel-title > a:before {
    display: none; }
  .wpb_wrapper .vc_tta-container .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
    left: auto;
    right: 0; }
  .wpb_wrapper .vc_tta-container .vc_tta-tabs-list .vc_tta-tab a {
    padding: 4px 20px;
    color: #696969;
    text-transform: uppercase;
    font-weight: 700;
    -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: #f1f1f1;
    border-color: #fff;
    letter-spacing: 0.05em;
    line-height: 25px; }
  .wpb_wrapper .vc_tta-container .vc_tta-tabs-list .vc_tta-tab a:hover {
    background-color: #fff;
    color: #f90;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom: 3px solid #f90; }
  .wpb_wrapper .vc_tta-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    background-color: #fff;
    color: #f90;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom: 3px solid #f90; }
  .wpb_wrapper .vc_tta-container .vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab.vc_active > a {
    border-bottom-color: #f90; }

.cms-countdown-wraper {
  padding: 0 50px;
  text-align: center;
  line-height: 27px;
  letter-spacing: 0.015em;
  /* ==========================================================================
   [End] 10. CMS Countdown
========================================================================== */ }
  .cms-countdown-wraper .countdown-item-container span {
    display: block;
    color: #000;
    font-size: 19px; }
  .cms-countdown-wraper .countdown-item-container span.countdown-amount {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 5px; }

#cms-footer-wrapper {
  overflow: hidden;
  margin-top: 75px; }

.footer-col {
  float: left; }

.footer-left {
  width: 54.43%;
  color: #fff;
  background-color: #38393b; }
  .footer-left span.copyright {
    color: #696969;
    margin-top: 40px;
    display: block; }

.footer-center {
  width: 19.69%;
  background-color: #2c2c2e;
  color: #fff;
  text-align: center; }
  .footer-center a {
    color: #f90; }
  .footer-center a:hover {
    color: #f90; }

.footer-right {
  width: 25.88%;
  background-color: #f1f1f1; }

.footer-left-inner {
  padding: 44px 0 40px 35px;
  position: relative; }
  .footer-left-inner:before {
    background-color: #38393b;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1000px;
    height: 1000px;
    content: "";
    display: block; }
  .footer-left-inner .widget {
    margin-bottom: 38px; }

.footer-center-inner {
  padding: 85px 40px 80px 40px;
  line-height: 23px;
  position: relative; }
  .footer-center-inner:before {
    background-color: #2c2c2e;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1000px;
    height: 1000px;
    content: "";
    display: block; }
  .footer-center-inner .widget a {
    color: #f90; }

.footer-right-inner {
  padding: 90px 35px;
  position: relative; }
  .footer-right-inner:before {
    background-color: #f1f1f1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1000px;
    height: 1000px;
    content: "";
    display: block; }

.cms-footer-social {
  float: right; }
  .cms-footer-social li {
    width: 50%;
    float: left; }
  .cms-footer-social li a {
    color: #fff; }
  .cms-footer-social li a:hover {
    color: #f90; }

#back_to_top.on {
  bottom: 30px;
  right: 20px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  position: fixed;
  text-decoration: none;
  z-index: 9999;
  font-size: 0;
  color: transparent;
  background-color: rgba(51, 51, 51, 0.9);
  border: 1px solid #333;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out 0s;
  -moz-transition: 0.3s ease-in-out 0s;
  -ms-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s; }
  #back_to_top.on:hover {
    background-color: #f90;
    border-color: #f90;
    bottom: 35px;
    -webkit-transition: all 150ms linear 0ms;
    -moz-transition: all 150ms linear 0ms;
    -ms-transition: all 150ms linear 0ms;
    transition: all 150ms linear 0ms; }
  #back_to_top.on:after {
    color: #fff;
    content: '\f106';
    font-size: 18px;
    line-height: 42px;
    font-family: 'FontAwesome';
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 150ms linear 0ms;
    -moz-transition: all 150ms linear 0ms;
    -ms-transition: all 150ms linear 0ms;
    transition: all 150ms linear 0ms; }

.cms-get-touch {
  margin: 25px 0;
  /* Request Form */ }
  .cms-get-touch p {
    padding: 9px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0; }
  .cms-get-touch p i {
    padding-right: 4px;
    color: ; }
  .cms-get-touch p a {
    color: #f90; }
  .cms-get-touch p a:hover {
    color: #fff; }
  .cms-get-touch p:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }

.quote-form-popup-wrapper {
  background-color: rgba(34, 34, 34, 0.95);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  visibility: hidden; }
  .quote-form-popup-wrapper .quote-form-popup-inner {
    left: 0;
    margin: auto;
    max-width: 370px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -khtml-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    padding-top: 36px;
    width: 100%; }
  .quote-form-popup-wrapper .quote-form-popup-inner .form-close {
    color: #fff;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    cursor: pointer; }
  .quote-form-popup-wrapper .quote-form-popup-inner .request-form .request-form-content {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  .quote-form-popup-wrapper.open {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=1); }

input[type='text'], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], textarea, select {
  position: relative;
  z-index: 1;
  height: 45px;
  font-size: 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -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 */
  -webkit-transition: border-color ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s;
  -ms-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
  line-height: 1.42857;
  color: #343434;
  padding: 10px 20px;
  width: 100%;
  border: none;
  background: #f1f1f1; }
  input[type='text']:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, textarea:focus, select:focus {
    outline: 0; }

textarea {
  height: 165px;
  max-width: 100%; }

input[type='text']:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, textarea:focus {
  /** Contact Form 7 */ }

.wpcf7-form label {
  font-weight: 400;
  margin-bottom: 10px; }
  .wpcf7-form .form-group {
    margin-bottom: 20px; }
  .wpcf7-form .wpcf7-form-item {
    margin-bottom: 20px; }
  .wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    right: 15px;
    top: -45px; }
  .wpcf7-form textarea + .wpcf7-not-valid-tip {
    top: -10px; }
  .wpcf7-form .wpcf7-validation-errors {
    border: medium none;
    display: block;
    text-align: left;
    margin: 20px 0 0; }
  .wpcf7-form select {
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
  .wpcf7-form select option {
    color: #000; }
  .wpcf7-form .wpcf7-submit {
    margin: 23px 0 15px 0;
    display: block;
    font-size: 19px;
    font-weight: 700;
    float: right; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #343434;
  opacity: 1; }

input::-webkit-input-placeholder, textarea::-webkit-placeholder {
  color: #343434;
  opacity: 1; }

input::-o-placeholder, textarea::-o-placeholder {
  color: #343434;
  opacity: 1; }

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #343434;
  opacity: 1; }

.element-form-post {
  position: relative; }
  .element-form-post i {
    left: 20px;
    position: absolute;
    top: 16px; }

.wpcf7-form .wpcf7-response-output, .wpcf7-not-valid-tip {
  font-size: 13px;
  font-style: italic; }
  .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-not-valid-tip.wpcf7-validation-errors {
    color: #f90; }
  .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7-not-valid-tip.wpcf7-mail-sent-ng {
    border: none;
    padding: 0;
    color: #f90; }

.wpcf7-not-valid-tip {
  color: #f90 !important; }

.request-form .request-form-header {
  background-color: #f90;
  color: #fff;
  padding: 26px 30px 30px;
  position: relative; }
  .request-form .request-form-header .get-form-quote {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 1; }
  .request-form .request-form-header .scroll-to-content {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }
  .request-form .request-form-header .lnr {
    float: left;
    font-size: 40px;
    position: relative;
    top: 8px;
    width: 65px; }
  .request-form .request-form-header h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    margin: 5px 0 0; }
  .request-form .request-form-header p {
    margin: 0; }
  .request-form .request-form-header .request-form-inner {
    position: relative;
    padding-left: 65px; }
  .request-form .request-form-header .request-form-inner:before {
    background-color: #ff8600;
    content: "";
    height: 22px;
    left: 51px;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    width: 2px; }
  .request-form .request-form-content {
    background-color: #f9f9f9;
    padding: 30px 50px 50px;
    -webkit-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    -moz-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    -ms-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    border: 1px solid #f7f7f7; }
  .request-form .request-form-content div {
    margin-bottom: 19px; }
  .request-form .request-form-content div:last-child {
    margin-bottom: 0;
    padding-top: 11px; }
  .request-form .request-form-content p {
    margin: 0; }
  .request-form .request-form-content .wpcf7-textarea {
    margin-top: 11px; }
  .request-form .ajax-loader {
    display: none; }
  .request-form .request-form-content-vc {
    background-color: #f90;
    border-top: 2px solid #fff;
    padding: 50px; }
  .request-form .request-form-content-vc .btn:hover {
    border-color: ;
    background-color: transparent;
    color: ; }

.fr-bg-white .request-form .request-form-content {
  background-color: #fff;
  /* ==========================================================================
   [End] All Style Form
========================================================================== */ }

.date-time .date:after, .date-time .hh:after {
  color: #fff;
  position: absolute;
  bottom: 0;
  right: -17px; }
  .date-time .date:after {
    content: "-"; }
  .date-time .hh:after {
    content: ":"; }

#searchform {
  position: relative; }
  #searchform:before {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 14px;
    color: #333;
    z-index: 99; }
  #searchform .screen-reader-text {
    display: none; }
  #searchform input[type="text"] {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    color: #333;
    border: 2px solid #eee;
    height: 51px;
    padding-right: 42px; }
  #searchform #searchsubmit {
    background-color: transparent;
    border: medium none;
    font-size: 0;
    max-width: 50px;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    z-index: 99;
    -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 */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }

#cshero-header-inner {
  position: absolute;
  width: 100%; }
  #cshero-header-inner #cshero-header-top {
    background-color: #000;
    padding: 8px 0 9px 0;
    position: relative;
    z-index: 1001; }
  #cshero-header-inner #cshero-header {
    position: relative;
    z-index: 1000;
    padding: 40px 50px;
    line-height: 48px;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  #cshero-header-inner #cshero-header .cshero-header-main {
    position: relative; }
  #cshero-header-inner #cshero-header #cshero-header-logo {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  #cshero-header-inner .cms-menu-widget {
    text-align: right;
    font-size: 13px;
    color: #696969;
    position: absolute;
    bottom: 55px;
    right: 50px; }
  #cshero-header-inner .copyright-hidden {
    margin-top: 10px; }

ul.info-top {
  text-align: center;
  color: #969696;
  font-size: 13px;
  line-height: 25px; }
  ul.info-top li {
    display: inline-block;
    padding: 0 30px;
    position: relative; }
  ul.info-top li:after {
    content: "|";
    position: absolute;
    top: 0;
    right: -5px; }
  ul.info-top li:last-child:after {
    content: ""; }
  ul.info-top li a {
    color: #969696; }
  ul.info-top li a:hover {
    color: #969696; }

@media (min-width: 992px) {
  #cshero-header-inner #cshero-header-wrapper {
    height: 130px; } }

@media (max-width: 991px) {
  /* ==========================================================================
   [End] 1. Header Main
========================================================================== */
  /* Header 2*/
    header #cshero-header-inner {
      position: relative; }
    #cshero-header-inner {
      z-index: 1000;
      background-color: #fff; }
      #cshero-header-inner #cshero-header #cshero-header-logo a {
        line-height: 70px;
        display: block; }
      #cshero-header-inner #cshero-menu-mobile {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0px, -50%);
        -khtml-transform: translate(0px, -50%);
        -moz-transform: translate(0px, -50%);
        -ms-transform: translate(0px, -50%);
        -o-transform: translate(0px, -50%);
        transform: translate(0px, -50%);
        /* BACKGROUND GRADIENT */
        /* TRANSFORM STYLE */ }
        #cshero-header-inner #cshero-menu-mobile i {
          background-color: #f90;
          -webkit-border-radius: 2px;
          -khtml-border-radius: 2px;
          -moz-border-radius: 2px;
          -ms-border-radius: 2px;
          -o-border-radius: 2px;
          border-radius: 2px;
          /* BACKGROUND GRADIENT */
          -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
          -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
          -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
          color: #fff;
          cursor: pointer;
          font-size: 23px;
          height: 36px;
          line-height: 36px;
          text-align: center;
          -webkit-transition: all 300ms linear 0ms;
          -moz-transition: all 300ms linear 0ms;
          -ms-transition: all 300ms linear 0ms;
          transition: all 300ms linear 0ms;
          width: 46px;
          margin-top: 9px; }
          #cshero-header-inner #cshero-menu-mobile i:hover {
            background-color: #222; }
      #cshero-header-inner .cms-menu-wrapper {
        display: none; }
      #cshero-header-inner.navigation-open .cms-menu-wrapper {
        display: block;
        background: rgba(34, 34, 34, 0.9) none repeat scroll 0 0;
        left: 0;
        position: absolute;
        right: 0;
        width: inherit;
        -webkit-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms; }
      #cshero-header-inner .cms-menu-padding {
        padding-top: 15px;
        padding-bottom: 15px; }
      #cshero-header-inner ul.nav-menu li {
        line-height: 31px; }
        #cshero-header-inner ul.nav-menu li a {
          background: transparent none repeat scroll 0 0;
          color: #fff;
          font-size: 15px;
          font-weight: normal;
          font-family: Montserrat; }
          #cshero-header-inner ul.nav-menu li a:hover {
            color: #f90; }
        #cshero-header-inner ul.nav-menu li .cs-menu-toggle {
          cursor: pointer;
          display: inline-block;
          height: 30px;
          line-height: 30px;
          position: absolute;
          right: 0;
          text-align: center;
          top: 6px;
          width: 30px; }
          #cshero-header-inner ul.nav-menu li .cs-menu-toggle:before {
            color: #f90;
            content: "+";
            font-size: 16px;
            -webkit-transition: all 300ms linear 0ms;
            -moz-transition: all 300ms linear 0ms;
            -ms-transition: all 300ms linear 0ms;
            transition: all 300ms linear 0ms; }
        #cshero-header-inner ul.nav-menu li ul.sub-menu {
          margin: 0;
          padding-left: 20px;
          width: 100% !important; }
          #cshero-header-inner ul.nav-menu li ul.sub-menu.submenu-open {
            max-height: 1000px; }
            #cshero-header-inner ul.nav-menu li ul.sub-menu.submenu-open + .cs-menu-toggle:before {
              content: "-"; }
        #cshero-header-inner ul.nav-menu > li {
          padding: 0 8px;
          position: relative; }
        #cshero-header-inner ul.nav-menu > li a {
          border-bottom: medium none;
          display: block;
          font-size: 14px !important;
          margin: 0 0 10px;
          text-transform: none; }
        #cshero-header-inner ul.nav-menu > li ul.sub-menu {
          max-height: 0;
          overflow: hidden;
          padding-left: 10px;
          -webkit-transition: max-height 600ms linear 0ms;
          -moz-transition: max-height 600ms linear 0ms;
          -ms-transition: max-height 600ms linear 0ms;
          transition: max-height 600ms linear 0ms; }
        #cshero-header-inner ul.nav-menu > li li {
          position: relative; }
      #cshero-header-inner.header-2 {
        background-color: #000; } }

.header-2 .cms-button-menu {
  border-color: #fff; }
  .header-2 .cms-button-menu .cms-button-menu-wrapper span {
    background-color: #fff; }
  .header-2 .cms-button-menu:hover {
    border-color: #f90; }
  .header-2 .cms-button-menu:hover span {
    background-color: #f90; }

.cms-menu-widget-wrapper {
  padding: 0 0 0 110px; }

body {
  overflow-x: hidden;
  font-family: Open Sans;
  letter-spacing: 0.02em; }
  body.hd-scroll-fixed #cshero-header {
    position: fixed !important;
    width: 100%;
    top: -200px;
    opacity: 0;
    visibility: hidden; }
  body.hd-fixed #cshero-header {
    position: fixed !important;
    width: 100%;
    top: 30px;
    visibility: visible;
    opacity: 1; }
  body.hd-fixed #cshero-header #cshero-header-logo {
    opacity: 0;
    visibility: hidden; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

img.aligncenter {
  margin: 5px auto; }

.alignleft {
  float: left; }

img.alignleft {
  margin: 5px 30px 15px 0; }

.alignright {
  float: right; }

img.alignright {
  margin-left: 15px;
  margin-bottom: 20px; }

.wp-caption {
  opacity: 1; }
  .wp-caption.alignnone {
    width: 100% !important; }

.media-left img {
  max-width: inherit; }

.wp-caption-text {
  opacity: 1; }

.gallery-caption {
  opacity: 1; }

.left {
  float: left; }

.right {
  float: right; }

.text-upper {
  text-transform: uppercase; }

.entry-page-image {
  margin-bottom: 14px; }

#main #page-default {
  position: relative;
  z-index: 1; }

.block {
  display: block; }

.b-ra img {
  -webkit-border-radius: 2px 2px 0 0;
  -khtml-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  -o-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  /* BACKGROUND GRADIENT */ }

.sl-italic {
  font-style: italic;
  letter-spacing: 0 !important; }

a, a:hover, a:focus, a:before, a:after {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms; }

a:hover {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.05em; }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }

p {
  margin: 0 0 10px; }

img {
  height: auto;
  max-width: 100%; }

body .wpb_content_element, body .wpb_button {
  margin-bottom: 0; }

[data-vc-full-width="true"] > .wpb_column > .vc_column-inner {
  padding: 0 50px; }

[data-vc-full-width="true"].custom-bg-arrow > .wpb_column > .vc_column-inner {
  padding: 0 15px; }

.entry-content > .vc_row-fluid {
  position: relative; }

.entry-content > .wpb_row .wpb_row {
  margin-left: -15px;
  margin-right: -15px; }

.entry-content > .wpb_row .padding-30 .wpb_row {
  margin-left: 0;
  margin-right: 0; }

.vc_row-fluid .container .container, .vc_row-fluid .vc_row-fluid .container {
  width: 100%; }

.entry-content > .vc_row-fluid {
  background-color: #fff; }

.media-body {
  width: inherit; }

.cms-title, #comments #reply-title, #comments .comments-title, #sidebar .widget-title, .wpb_widgetised_column .widget-title, .sg-services-sidebar .widget-title, #sidebar .wg-title, .wpb_widgetised_column .wg-title, .sg-services-sidebar .wg-title {
  font-size: 19px;
  margin: 55px 0 30px 0;
  position: relative;
  line-height: 23px; }

.is-sidebar-left {
  /*
================> Unit Test
*/ }
  .is-sidebar-left [class*="col-"] {
    float: right; }
  .is-sidebar-left [class*="col-"] + [class*="col-"] {
    float: left; }

table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
  -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 */ }
  table th {
    color: #000; }

caption, td {
  font-weight: normal;
  text-align: left; }

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 13px 8px; }

th {
  font-weight: 700; }

td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0; }

h3.title {
  white-space: pre-wrap;
  word-wrap: break-word;
  /*--- Definition Lists ---*/ }

dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000; }

dl dd {
  line-height: normal;
  margin-bottom: 20px; }
  dl dd a {
    color: #f90; }
  dl dd a:hover {
    color: ; }

code, kbd {
  background-color: transparent;
  border-radius: 4px;
  color: inherit;
  font-size: 100%;
  padding: 2px 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

ins {
  color: #fff;
  border: none;
  padding: 2px;
  text-decoration: none;
  background-color: #f90; }

pre {
  background: #f5f5f5;
  color: #666;
  font-family: monospace;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word; }

.woocommerce ins {
  background-color: transparent; }

.entry-content {
  /* ==========================================================================
   [End] 1. Reset HTML/CSS, Unitest, Body
========================================================================== */
  /* ==========================================================================
   [Start] 2. Page Title
========================================================================== */ }
  .entry-content ul {
    padding: 0 0 0 35px;
    list-style-type: square; }
  .entry-content ul.list-style-check {
    list-style: none;
    padding: 0; }

#page-title {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  line-height: 27px;
  padding: 173px 0 45px 0;
  margin: 0 0 100px 0;
  /* ==========================================================================
   [End] 2. Page Title
========================================================================== */
  /* ==========================================================================
   [Start] 3. Primary
========================================================================== */ }
  #page-title > .container {
    position: relative;
    z-index: 1; }
  #page-title:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  #page-title:after {
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  #page-title .background-overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1); }
  #page-title #page-title-text h1 {
    color: #010101;
    font-size: 37px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    position: relative; }
  #page-title #page-title-text.s2 {
    color: #fff; }
  #page-title #page-title-text.s2 h1 {
    color: #fff;
    font-size: 57px;
    line-height: 38px;
    margin-bottom: 0; }
  #page-title #page-title-text.s3 h1 {
    color: #fff;
    font-size: 57px;
    line-height: 38px;
    margin-bottom: 0; }
  #page-title #breadcrumb-text.line-white {
    position: relative; }
  #page-title #breadcrumb-text ul.breadcrumbs {
    font-size: 19px;
    font-weight: normal;
    line-height: normal;
    list-style: outside none none;
    text-transform: capitalize; }
  #page-title #breadcrumb-text ul.breadcrumbs li {
    display: inline-block;
    margin: 0; }
  #page-title #breadcrumb-text ul.breadcrumbs li + li:before {
    padding: 0 15px;
    font-family: FontAwesome;
    content: '/'; }
  #page-title #breadcrumb-text ul.breadcrumbs li a {
    color: #343434; }
  #page-title #breadcrumb-text ul.breadcrumbs li a:hover {
    color: #343434;
    text-decoration: none; }

#page-wrapper.cs-boxed {
  background-color: #fff; }

#main {
  /* Column Overlay */ }
  #main .sidebar-left-active #primary.sidebar-active {
    float: right; }

.column-bg-overlay {
  color: #fff;
  /* End Column Overlay */ }
  .column-bg-overlay .overlay-color-column {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .column-bg-overlay .wpb_wrapper {
    position: relative;
    z-index: 1; }
  .column-bg-overlay ul li {
    border-color: rgba(255, 255, 255, 0.2) !important; }

#content footer.entry-meta {
  padding: 0;
  text-align: center;
  margin: 0; }

.sider-page .wpb_row .container {
  padding: 0;
  width: 100%; }
  .sider-page.sd-left #primary {
    float: right; }
  .sider-page.sd-right #primary {
    float: left; }

#page-blog-standard #primary.page-full-width, .single-post-wrap #primary.full-width {
  float: none;
  margin: auto;
  max-width: 870px;
  /* Sidebar */ }

#sidebar, .wpb_widgetised_column, .sg-services-sidebar {
  margin-bottom: 50px;
  /* Background Image Fixed vs Background Overlay Color */ }
  #sidebar aside, .wpb_widgetised_column aside, .sg-services-sidebar aside, #sidebar .slidingbar-widget-col, .wpb_widgetised_column .slidingbar-widget-col, .sg-services-sidebar .slidingbar-widget-col {
    margin-bottom: 51px; }
  #sidebar ul.children, .wpb_widgetised_column ul.children, .sg-services-sidebar ul.children, #sidebar ul.sub-menu, .wpb_widgetised_column ul.sub-menu, .sg-services-sidebar ul.sub-menu {
    padding-left: 15px; }

#content .wpb_row {
  /* Page 404 */ }
  #content .wpb_row.row-background-fixed {
    position: inherit;
    background-attachment: fixed;
    background-repeat: no-repeat; }
  #content .wpb_row.row-background-fixed .overlay-color {
    height: 3000px;
    left: -50%;
    position: relative;
    margin-bottom: -3000px;
    width: 200%;
    -webkit-transform: translateY(-20%);
    -khtml-transform: translateY(-20%);
    -moz-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    -o-transform: translateY(-20%);
    transform: translateY(-20%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  #content .wpb_row.row-bg-overlay {
    overflow: hidden; }
  #content .wpb_row .overlay-color {
    position: absolute;
    height: 100%;
    width: 200%;
    top: 0;
    left: -50%; }

.error404 {
  letter-spacing: 0.015em;
  /*page coming soon*/ }
  .error404 .page-404-inner {
    background-size: cover;
    height: 977px;
    position: relative; }
  .error404 .page-404-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9); }
  .error404 .page-404-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 17px;
    padding: 100px 0;
    max-width: 370px; }
  .error404 #page-title {
    display: none; }
  .error404 #cshero-header-inner #cshero-header-top {
    display: none; }
  .error404 h1 {
    color: #fff;
    font-size: 125px;
    line-height: 100px;
    margin: -25px 0 0;
    letter-spacing: 0.015em; }
  .error404 h2 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: 0.015em;
    font-weight: 400; }
  .error404 .btn {
    font-size: 19px;
    font-weight: 700;
    margin-top: 45px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }

[data-vc-full-width="true"] > .wpb_column.page-coming-soon > .vc_column-inner {
  padding: 0; }

.page-coming-soon {
  margin: 219px auto 243px !important;
  background: #fff;
  -webkit-border-radius: 35px;
  -khtml-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  border-radius: 35px;
  /* BACKGROUND GRADIENT */
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  max-width: 570px; }
  .page-coming-soon h2 {
    -webkit-border-radius: 35px 35px 0 0;
    -khtml-border-radius: 35px 35px 0 0;
    -moz-border-radius: 35px 35px 0 0;
    -ms-border-radius: 35px 35px 0 0;
    -o-border-radius: 35px 35px 0 0;
    border-radius: 35px 35px 0 0;
    /* BACKGROUND GRADIENT */
    margin: 0; }

form {
  /* Page Loading */ }
  form .contact-coming-soon {
    position: relative;
    z-index: 1; }
  form .contact-coming-soon:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    right: 16px;
    top: 0;
    font-size: 13px;
    color: #fff;
    z-index: 9;
    font-weight: 400;
    line-height: 45px; }
  form .contact-coming-soon:after {
    background: #f90;
    color: #fff;
    font-size: 0;
    width: 40px;
    height: 40px;
    -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 */
    line-height: 40px;
    margin: 0;
    position: absolute;
    top: 2px;
    right: 3px;
    padding: 0;
    z-index: 8;
    content: ""; }
  form .contact-coming-soon span {
    padding-right: 47px;
    z-index: 1; }
  form .contact-coming-soon input[type="email"] {
    background: transparent;
    border: 1px solid #e2e2e2;
    border-radius: 45px;
    color: #969696;
    padding-right: 47px; }
  form .contact-coming-soon input::-moz-placeholder, form .contact-coming-soon textarea::-moz-placeholder {
    color: #969696; }
  form .contact-coming-soon input::-webkit-input-placeholder, form .contact-coming-soon textarea::-webkit-placeholder {
    color: #969696; }
  form .contact-coming-soon input::-o-placeholder, form .contact-coming-soon textarea::-o-placeholder {
    color: #969696; }
  form .contact-coming-soon input::-ms-placeholder, form .contact-coming-soon textarea::-ms-placeholder {
    color: #969696; }
  form .contact-coming-soon input[type="submit"] {
    background: transparent;
    color: #fff;
    font-size: 0;
    width: 40px;
    height: 40px;
    -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 */
    line-height: 40px;
    margin: 0;
    position: absolute;
    top: 2px;
    right: 3px;
    padding: 0;
    z-index: 99;
    opacity: 0; }
  form .contact-coming-soon span.wpcf7-not-valid-tip {
    top: auto;
    left: 0;
    right: auto;
    margin-top: 10px;
    padding: 0.2em 1em; }

#cms-loadding {
  background: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
  /* Page Contact - Gettouch */ }

.page-get-contact {
  /* Custom - Row background image */ }
  .page-get-contact ul {
    margin-bottom: 20px; }
  .page-get-contact ul li {
    padding-left: 23px;
    position: relative;
    margin-bottom: 7px;
    margin-top: 4px; }
  .page-get-contact ul li i {
    font-size: 16px;
    color: ;
    padding-right: 14px;
    left: 0;
    position: absolute;
    top: 3px; }
  .page-get-contact ul li a {
    display: block; }

.custom-row-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%; }
  .custom-row-image:before {
    background-color: rgba(34, 34, 34, 0.15);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.overlay-none .custom-row-image:before {
  background: transparent; }

.row-image-holder {
  border: 2px solid #f9f9f9;
  bottom: 90px;
  left: 15px;
  position: absolute;
  right: 165px;
  text-align: center;
  top: 90px; }
  .row-image-holder img {
    left: 50%;
    position: absolute;
    top: 50%;
    -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 */ }

.custom-row-image-right .custom-row-image {
  left: initial;
  right: 0; }
  .custom-row-image-right .custom-row-image:before {
    background-color: transparent; }

.bg-border-custom .custom-row-image:after {
  border: 2px solid rgba(255, 255, 255, 0.5);
  bottom: 100px;
  content: "";
  left: 100px;
  position: absolute;
  right: 100px;
  top: 100px; }

.bg-fixed-image {
  background-attachment: fixed;
  /* Custom Slider */ }

.rev_slider_wrapper .tp-bullets.custom {
  /*
  .tp-thumbs{
    position: absolute;
    top: auto;
    bottom: -80px;
  }
  .tp-thumb {
    .tp-thumb-image{
      bottom: 0;
      position: relative;
    }
    &.selected{
      .tp-thumb-image{
        @include transition(all 150ms linear 0ms);
        bottom: 10px;
        &:before{
          background-color: $primary_color;
          opacity: 0.7;
          content:"";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
        }
      }
    }
    .tp-thumb-image{
      @include transition(all 150ms linear 0ms);
      bottom: 10px;
      &:hover{
        &:before{
          background-color: $primary_color;
          opacity: 0.7;
          content:"";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
        }
      }
    }
  }
  */ }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet {
    width: 20px;
    height: 8px;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    /* BACKGROUND GRADIENT */ }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet.selected, .rev_slider_wrapper .tp-bullets.custom .tp-bullet:hover {
    background-color: #f90; }

.tp-thumbs {
  -webkit-transition: 0.3s ease-in-out 0s;
  -moz-transition: 0.3s ease-in-out 0s;
  -ms-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
  top: -80px !important;
  /* End Custom Slider */ }
  .tp-thumbs .tp-thumb-mask {
    overflow: visible !important; }
  .tp-thumbs .tp-tab, .tp-thumbs .tp-thumb {
    opacity: 1;
    bottom: 0; }
  .tp-thumbs .tp-tab.selected, .tp-thumbs .tp-thumb.selected, .tp-thumbs .tp-tab:hover, .tp-thumbs .tp-thumb:hover {
    bottom: 10px;
    top: -10px !important;
    -webkit-transition: all 150ms ease 0ms;
    -moz-transition: all 150ms ease 0ms;
    -ms-transition: all 150ms ease 0ms;
    transition: all 150ms ease 0ms; }
  .tp-thumbs .tp-tab.selected .tp-thumb-image:before, .tp-thumbs .tp-thumb.selected .tp-thumb-image:before, .tp-thumbs .tp-tab:hover .tp-thumb-image:before, .tp-thumbs .tp-thumb:hover .tp-thumb-image:before {
    background-color: #f90;
    opacity: 0.7;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

.vc_row {
  /* ==========================================================================
   [End] 3. Primary
========================================================================== */ }
  .vc_row.custom-bg-size {
    background-size: -webkit-calc(100% - 100px) !important;
    background-size: -moz-calc(100% - 100px) !important;
    background-size: calc(100% - 100px) !important;
    background-position: center !important; }
  .vc_row.custom-bg-arrow:before {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    display: block !important;
    z-index: 1; }
  .vc_row.custom-bg-arrow:after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    display: block !important;
    z-index: 1; }
  .vc_row.custom-bg-arrow-left:before {
    z-index: 2; }
  .vc_row.custom-bg-arrow-left:after {
    width: 1000px;
    left: 0;
    right: auto;
    background-color: #f1f1f1; }
  .vc_row.bg-overlay:before, .vc_row.bg-overlay .vc_row:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: inherit;
    content: "";
    z-index: 1; }
  .vc_row > .wpb_column {
    z-index: 2;
    position: relative; }
  .vc_row.custom-bg-overlay .custom-bg-overlay-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: inherit;
    content: "";
    z-index: 1;
    margin: 0 50px; }
  .vc_row.style-image-top {
    overflow: visible !important; }

.paging-navigation {
  text-align: center;
  color: #696969; }
  .paging-navigation .pagination {
    margin: 10px 0; }
  .paging-navigation .pagination .page-numbers {
    width: 25px;
    height: 25px;
    line-height: 25px;
    -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 */
    display: inline-block; }
  .paging-navigation .pagination .page-numbers.current, .paging-navigation .pagination .page-numbers:hover {
    background: #ececec;
    color: #f90;
    cursor: pointer; }
  .paging-navigation .pagination a {
    color: #696969; }

.cms_pagination {
  margin-top: 30px; }
  .cms_pagination p {
    margin-bottom: 25px; }
  .cms_pagination i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #e1e1e1;
    -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 */
    display: inline-block;
    font-size: 16px;
    color: #343434; }
  .cms_pagination i:hover {
    color: #fff;
    background-color: #f90; }
  .cms_pagination i.hide {
    color: #969696;
    font-size: 15px; }
  .cms_pagination a {
    font-size: 0; }
  .cms_pagination span {
    color: #969696;
    margin-top: 10px;
    display: block;
    font-size: 15px; }

.post-navigation .post-prev i {
  padding: 0 10px 0 0; }
  .post-navigation a.btn {
    margin: 5px 0; }

ul.cms-filter-category {
  text-align: center;
  margin-bottom: 12px;
  padding: 0;
  text-transform: capitalize; }
  ul.cms-filter-category.list-inline > li {
    padding: 0 20px 0 5px;
    position: relative; }
  ul.cms-filter-category.list-inline > li:after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0; }
  ul.cms-filter-category.list-inline > li:last-child:after {
    content: ""; }
  ul.cms-filter-category.list-inline > li a.active {
    color: #f90; }

.reset-padding-xs {
  padding: 0 100px;
  /* Single Portfolio*/ }

.sg-portfolio .cms-carousel.owl-carousel .owl-controls .owl-dots {
  position: absolute;
  bottom: 23px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -khtml-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  /* BACKGROUND GRADIENT */
  /* TRANSFORM STYLE */ }
  .sg-portfolio .sg-portfolio-body {
    margin: 55px 0 43px 0; }
  .sg-portfolio .sg-portfolio-body p {
    line-height: 23px; }
  .sg-portfolio h3.portfolio-title {
    color: #000;
    font-size: 23px;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 15px; }
  .sg-portfolio .sg-portfolio-services {
    margin-top: 41px; }
  .sg-portfolio .sg-portfolio-services span {
    font-weight: 700; }
  .sg-portfolio .sg-portfolio-services .post-share-buttons {
    display: inline; }
  .sg-portfolio .sg-portfolio-services .post-share-buttons a {
    font-size: 15px;
    background-color: transparent;
    width: 20px; }
  .sg-portfolio .sg-portfolio-services .post-share-buttons a:hover {
    color: #f90;
    background-color: transparent; }
  .sg-portfolio.portfolio-layout2 h3.portfolio-title {
    font-size: 19px; }
  .sg-portfolio.portfolio-layout2 .sg-portfolio-services {
    margin-top: 27px; }
  .sg-portfolio.portfolio-layout2 .sg-portfolio-body {
    margin-top: 0;
    margin-bottom: 50px; }
  .sg-portfolio.portfolio-layout2 #sg-portfolio-gallery .sg-portfolio-gallery-item {
    margin-bottom: 30px; }
  .sg-portfolio.portfolio-layout2 #sg-portfolio-gallery .sg-portfolio-gallery-item img {
    width: 100%; }

.sg-portfolio-footer {
  background-color: #f1f1f1;
  color: #696969;
  text-align: center;
  text-transform: uppercase;
  padding: 13px 0 14px 0; }
  .sg-portfolio-footer a {
    color: #696969; }
  .sg-portfolio-footer .main-portfolio-item {
    display: inline-block;
    padding: 0 40px;
    margin: 0 40px;
    position: relative;
    line-height: 23px;
    letter-spacing: 0.07em; }
  .sg-portfolio-footer .main-portfolio-item:before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0; }
  .sg-portfolio-footer .main-portfolio-item:after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0; }

body.single-portfolio #cms-footer-wrapper {
  margin-top: 0; }

.portfolio-layout1 .cms-gallery-item {
  min-height: 977px;
  background-size: cover; }

.portfolio-layout2 .sg-portfolio-left {
  position: relative; }

.ft-radikal {
  font-family: 'radikalw01-blackregular'; }

.lt-15 {
  letter-spacing: 0.015em; }

@media screen and (min-width: 992px) {
  #cshero-menu-mobile {
    display: none; }

  .cms-button-menu {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #343434;
    border-radius: 100%;
    display: block;
    position: absolute;
    padding: 15px 0;
    cursor: pointer;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -khtml-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    .cms-button-menu .cms-button-menu-wrapper {
      opacity: 1; }
      .cms-button-menu .cms-button-menu-wrapper span {
        height: 2px;
        width: 22px;
        background: #343434;
        display: block;
        margin: 0 auto 5px; }
        .cms-button-menu .cms-button-menu-wrapper span:nth-child(2) {
          width: 28px; }
    .cms-button-menu:hover {
      border-color: #f90;
      -webkit-transition: all 0.15s ease-out 0s;
      -moz-transition: all 0.15s ease-out 0s;
      -ms-transition: all 0.15s ease-out 0s;
      transition: all 0.15s ease-out 0s; }
      .cms-button-menu:hover span {
        background-color: #f90; }
    .cms-button-menu .button-close {
      opacity: 0; }

  #cshero-header-inner .cms-menu-wrapper {
    width: 545px;
    height: 100vh;
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    background: #020406;
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -ms-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
    opacity: 0;
    -webkit-transform: translateX(545px);
    -khtml-transform: translateX(545px);
    -moz-transform: translateX(545px);
    -ms-transform: translateX(545px);
    -o-transform: translateX(545px);
    transform: translateX(545px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    #cshero-header-inner #cshero-header-wrapper {
      position: relative;
      z-index: 10000; }
    #cshero-header-inner .cms-main-menu .menu-main-menu {
      float: right;
      text-align: right;
      z-index: 10000;
      position: absolute;
      top: 225px;
      right: 50px; }
      #cshero-header-inner .cms-main-menu .menu-main-menu > li {
        display: block; }
        #cshero-header-inner .cms-main-menu .menu-main-menu > li > a {
          color: #fefefe;
          text-transform: uppercase;
          display: block; }
        #cshero-header-inner .cms-main-menu .menu-main-menu > li > ul {
          border-bottom: 2px solid #fff;
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          -webkit-transition: all 300ms linear 0ms;
          -moz-transition: all 300ms linear 0ms;
          -ms-transition: all 300ms linear 0ms;
          transition: all 300ms linear 0ms; }
        #cshero-header-inner .cms-main-menu .menu-main-menu > li:hover > ul {
          max-height: 2000px;
          opacity: 1;
          overflow: visible; }
      #cshero-header-inner .cms-main-menu .menu-main-menu li.current-menu-item > a {
        color: #f90; }
      #cshero-header-inner .cms-main-menu .menu-main-menu a {
        color: #fff; }
        #cshero-header-inner .cms-main-menu .menu-main-menu a:hover {
          color: #f90; }
      #cshero-header-inner .cms-main-menu .menu-main-menu ul {
        width: 100% !important;
        -webkit-transition: all 400ms ease 0ms;
        -moz-transition: all 400ms ease 0ms;
        -ms-transition: all 400ms ease 0ms;
        transition: all 400ms ease 0ms; }
        #cshero-header-inner .cms-main-menu .menu-main-menu ul:before {
          content: "\f0d8";
          font-family: FontAwesome;
          color: #fff; }
        #cshero-header-inner .cms-main-menu .menu-main-menu ul li {
          display: inline-block;
          padding: 0 17px 0 8px;
          position: relative; }
          #cshero-header-inner .cms-main-menu .menu-main-menu ul li:after {
            content: "/";
            position: absolute;
            top: 0;
            right: 0;
            color: #fff; }
          #cshero-header-inner .cms-main-menu .menu-main-menu ul li:last-child {
            padding-right: 0; }
            #cshero-header-inner .cms-main-menu .menu-main-menu ul li:last-child:after {
              content: ""; }
    #cshero-header-inner.nav-menu-open .cms-menu-wrapper {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateX(0);
      -khtml-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
      #cshero-header-inner.nav-menu-open .cshero-header-navigation {
        z-index: 10000; }
      #cshero-header-inner.nav-menu-open .cms-button-menu {
        border-color: #fff; }
        #cshero-header-inner.nav-menu-open .cms-button-menu .button-close {
          opacity: 1;
          position: absolute;
          right: 57px;
          top: 0;
          color: #fff; }
          #cshero-header-inner.nav-menu-open .cms-button-menu .button-close span {
            position: absolute;
            right: -23px;
            top: 20px; }
            #cshero-header-inner.nav-menu-open .cms-button-menu .button-close span:before, #cshero-header-inner.nav-menu-open .cms-button-menu .button-close span:after {
              height: 3px;
              width: 23px;
              display: block;
              -webkit-transition: all 0.15s ease-out 0s;
              -moz-transition: all 0.15s ease-out 0s;
              -ms-transition: all 0.15s ease-out 0s;
              transition: all 0.15s ease-out 0s;
              content: "";
              position: absolute;
              background-color: #000; }
            #cshero-header-inner.nav-menu-open .cms-button-menu .button-close span:before {
              top: 0;
              -webkit-transform: rotate(-45deg);
              -khtml-transform: rotate(-45deg);
              -moz-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
              -o-transform: rotate(-45deg);
              transform: rotate(-45deg);
              /* BACKGROUND GRADIENT */
              /* TRANSFORM STYLE */ }
            #cshero-header-inner.nav-menu-open .cms-button-menu .button-close span:after {
              top: 0;
              -webkit-transform: rotate(45deg);
              -khtml-transform: rotate(45deg);
              -moz-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
              -o-transform: rotate(45deg);
              transform: rotate(45deg);
              /* BACKGROUND GRADIENT */
              /* TRANSFORM STYLE */ }
      #cshero-header-inner.nav-menu-open .cms-button-menu-wrapper {
        opacity: 0; }
      #cshero-header-inner.nav-menu-open .cms-button-menu {
        background-color: #fff; } }

@media screen and (max-width: 991px) {
  #cshero-header-inner {
    position: static; }
    #cshero-header-inner #cshero-menu-mobile {
      display: block; }
    #cshero-header-inner .cms-menu-widget, #cshero-header-inner .button-close {
      display: none; } }

.widget {
  margin-bottom: 50px; }
  .widget h3.wg-title {
    color: #f90;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    line-height: 22px;
    position: relative; }
  .widget h3.wg-title a {
    color: #f90; }
  .widget.widget_rss a.rsswidget img {
    margin-bottom: 5px; }
  .widget.widget_rss ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid #cecece;
    padding-bottom: 20px; }
  .widget ul ul {
    padding-left: 10px; }
  .widget:last-child {
    margin-bottom: 0; }
  .widget a {
    color: #222; }
  .widget a:hover {
    color: #f90; }

.widget_categories > ul, .widget_archive > ul, .widget_product_categories > ul, .widget_meta > ul {
  margin-top: 48px; }
  .widget_categories > ul > li, .widget_archive > ul > li, .widget_product_categories > ul > li, .widget_meta > ul > li {
    border: 1px solid #efefef; }
  .widget_categories ul li, .widget_archive ul li, .widget_product_categories ul li, .widget_meta ul li {
    padding: 10px 15px;
    color: #222;
    margin-top: 5px; }
  .widget_categories ul li a, .widget_archive ul li a, .widget_product_categories ul li a, .widget_meta ul li a {
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 22px;
    font-size: 13px; }
  .widget_categories ul li a:hover, .widget_archive ul li a:hover, .widget_product_categories ul li a:hover, .widget_meta ul li a:hover {
    color: #f90; }

.widget_text p img {
  margin: 10px 0; }

@media screen and (max-width: 1280px) {
  .vc_row.custom-bg-size {
    padding: 0 0 35px 0; }

  .service-content {
    padding-left: 15px; }

  .cms-footer-social li {
    width: 100%; }

  .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav {
    right: 145px; }

  .vc_row.custom-bg-arrow-left::after {
    width: 700px; } }

@media screen and (max-width: 1200px) {
  .service-content .service-content-inner {
    padding: 52px 0; }

  .layout-service .cms-grid-item .service-wrapper {
    margin-left: 15px; }
    .layout-service .cms-grid-item:nth-child(2n) .service-wrapper {
      margin-right: 15px; }

  .cms-heading-wrapper h3.title {
    padding-right: 50px; }

  [data-vc-full-width="true"] > .wpb_column > .vc_column-inner {
    padding: 0 15px; }

  .vc_row.custom-bg-overlay .custom-bg-overlay-inner {
    margin: 0 15px; }

  #cshero-header-inner #cshero-header {
    padding-left: 15px;
    padding-right: 15px; }
    #cshero-header-inner .cms-menu-padding {
      padding-left: 15px;
      padding-right: 15px; }
    #cshero-header-inner .cms-menu-widget {
      right: 15px; }
    #cshero-header-inner .cms-main-menu .menu-main-menu {
      right: 15px; }

  .layout-team .team-wrapper {
    margin: 0 15px; }
    .layout-team .team-img {
      right: 15px; }

  .cms-cta-default {
    margin: 0 15px; }

  .vc_row.custom-bg-size {
    background-size: -webkit-calc(100% - 30px) !important;
    background-size: -moz-calc(100% - 30px) !important;
    background-size: calc(100% - 30px) !important; }
    .vc_row.custom-bg-arrow:before, .vc_row.custom-bg-arrow:after {
      width: 15px; }

  .blog-admin:after, .blog-admin:before {
    width: 15px; }

  .footer-left {
    width: 50%; }

  .footer-center {
    width: 25%; }

  .footer-right {
    width: 25%; }

  #comments .comment-list > .comment ul.children ul {
    margin-left: 50px; }
    #comments .comment-list > .comment ul.children > li .comment-body {
      margin-left: 50px; }

  body #cshero-header-inner .cms-main-menu .menu-main-menu > li > a {
    font-size: 30px;
    line-height: 30px; }

  #cshero-header-inner .cms-main-menu .menu-main-menu > li {
    padding: 5px 0; }

  .layout-team {
    margin-top: 0; }
    .layout-team .team-img {
      margin-top: 0; }

  .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav {
    right: 75px; } }

@media screen and (max-width: 1024px) {
  .cms-cta-default .cms-cta-text {
    font-size: 30px; }
    .cms-cta-default .cms-cta-button .btn {
      margin: 0; } }

@media screen and (min-width: 992px) {
  .text-right-md {
    text-align: right !important; }

  .text-left-md {
    text-align: left !important; }

  .entry-footer-wrapper {
    padding-left: 200px;
    padding-right: 200px; }

  #comments {
    padding: 0 200px; }

  .post-navigation {
    padding: 0 200px; }

  #commentform .comment-form-author {
    padding-left: 0; }
    #commentform .comment-form-email {
      padding-right: 0; }

  .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav {
    right: 60px; } }

@media screen and (max-width: 992px) {
  .text-rp-center {
    text-align: center !important; }
    .text-rp-center .wpb_single_image.vc_align_left {
      text-align: center; }

  .cms-carousel.owl-carousel .owl-controls .owl-nav {
    /* ==========================================================================
      Header Mobile
  ========================================================================== */ }
    .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
      left: -30px; }
    .cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      right: -30px; }

  body #cshero-header {
    position: static !important;
    /* ==========================================================================
     End Header Mobile
  ========================================================================== */ }
    body #cshero-header > .container {
      position: relative;
      z-index: 99; }

  .button-video {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px; }
    .button-video i {
      line-height: 50px;
      left: 2px; }

  .cms-portfolio-inner .cms-portfolio-content .cms-portfolio-content-inner {
    bottom: auto;
    top: 20px; } }

@media (max-width: 991px) {
  .vc_row > .wpb_column {
    margin-top: 35px; }
    .vc_row > .wpb_column:first-child {
      margin-top: 0; }

  .layout-service .cms-grid-item {
    margin-bottom: 20px; }
    .layout-service .cms-grid-item:nth-child(2n) .service-wrapper {
      margin: 0; }
      .layout-service .cms-grid-item:nth-child(2n) .service-content .service-content-inner {
        padding-right: 15px;
        padding-left: 15px; }
    .layout-service .cms-grid-item .service-wrapper {
      margin: 0;
      background: none; }

  .service-image-wrap {
    position: relative;
    height: 308px; }

  .service-content .service-content-inner {
    padding-right: 15px;
    padding-left: 15px;
    background: #f1f1f1;
    margin-bottom: 20px; }

  .layout-team .team-img {
    position: relative;
    top: 0; }
    .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav {
      right: auto;
      left: 50%;
      -webkit-transform: translate(-50%, 0px);
      -khtml-transform: translate(-50%, 0px);
      -moz-transform: translate(-50%, 0px);
      -ms-transform: translate(-50%, 0px);
      -o-transform: translate(-50%, 0px);
      transform: translate(-50%, 0px);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }

  .layout-team2 .team-wrapper {
    padding: 0 15px; }
    .layout-team2 .team-wrapper .team-content img, .layout-team2 .team-wrapper .team-img img {
      position: relative; }

  .cms-cta-default .cms-cta-text {
    margin-bottom: 15px; }

  #commentform .comment-form-author {
    padding: 0; }
    #commentform .comment-form-email {
      padding: 0; }

  .cms-related-post .item {
    margin-bottom: 20px; }
    .cms-related-post .item:last-child {
      margin-bottom: 0; }
    .cms-related-post .item .related-image img {
      width: 100%; } }

@media (max-width: 768px) {
  #cshero-header-inner .cms-main-menu .menu-main-menu ul:before {
    display: none; }
    #cshero-header-inner .cms-main-menu .menu-main-menu ul li {
      display: block;
      padding: 0; }
      #cshero-header-inner .cms-main-menu .menu-main-menu ul li:after {
        content: ""; }

  .cms-countdown-wraper [class*="col-"] {
    margin-bottom: 20px; }

  #cms-fancy-box-single {
    padding: 0 15px; }

  .admin-bottom {
    margin-right: 15px; }

  .layout-fullscreen .cms-carousel-item {
    padding: 20px !important; }
    .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 {
      max-width: auto;
      font-size: 15px !important;
      line-height: 22px !important; }
    .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 strong {
      font-size: 15px !important;
      line-height: 22px !important; }
    .layout-fullscreen .cms-carousel-item .cms-carousel-des {
      font-size: 12px !important;
      line-height: 20px !important; }
    .layout-fullscreen .cms-carousel-item .entry-readmore {
      margin-top: 10px !important; }
    .layout-fullscreen .cms-carousel-item a.read-more {
      font-size: 13px !important; }
    .layout-fullscreen .cms-carousel-item a.read-more i {
      font-size: 13px !important; }
    .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      font-size: 30px !important;
      color: #000;
      background: #fff;
      margin: 0 !important;
      line-height: 50px !important;
      top: auto;
      bottom: -51px; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
        color: #f90; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i {
        font-size: 30px !important;
        line-height: 50px !important; }
    .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
      left: auto;
      right: 51px; }
    .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      right: 0; }

  .footer-left, .footer-center, .footer-right {
    width: 100%; }

  .footer-left-inner:before, .footer-center-inner:before, .footer-right-inner:before {
    display: none; }

  .footer-center-inner, .footer-right-inner {
    padding-top: 40px;
    padding-bottom: 40px; }

  .footer-right {
    text-align: center; } }

@media (max-width: 767px) {
  ul.info-top li {
    display: block; }
    ul.info-top li:after {
      content: ""; }

  .admin-avt {
    max-width: 150px; }

  .admin-info {
    padding-left: 200px; }

  .error404 h1 {
    font-size: 50px;
    line-height: 50px; }
    .error404 h2 {
      font-size: 17px;
      line-height: 17px;
      margin-bottom: 20px; }
    .error404 .btn {
      margin-top: 20px; }

  .reset-padding-xs {
    padding: 0 15px; }

  .sg-portfolio .sg-portfolio-body {
    margin: 55px 30px; }

  .sg-portfolio-footer {
    margin: 0 30px; }

  .font-sm {
    font-size: 30px !important;
    line-height: 30px !important; }

  .tp-thumbs {
    display: none; } }

@media (max-width: 640px) {
  .page-coming-soon {
    max-width: 300px; }

  #page-title #page-title-text.s2 h1 {
    font-size: 30px; }

  .layout-fullscreen {
    max-width: 200px; }
    .layout-fullscreen .owl-item {
      width: 200px !important; } }

@media (max-width: 480px) {
  .cms-heading-wrapper h3.title {
    padding: 0 50px; }

  .cms-cta-default .cms-cta-button .btn {
    margin: 10px; }

  #cshero-header-inner #cshero-header {
    padding-top: 34px;
    padding-bottom: 34px; }

  .cms-heading-wrapper h3.title {
    padding: 0 20px; }

  .cms-portfolio-inner .post-share-buttons {
    bottom: 10px;
    right: 10px; }
    .cms-portfolio-inner .cms-portfolio-content .cms-portfolio-content-inner {
      left: 10px; }

  #comments .comment-list .comment-author-image {
    max-width: 50px; }
    #comments .comment-list .comment-author-image img {
      max-width: 50px; }
    #comments .comment-list .comment-main {
      padding-left: 70px; }

  .admin-avt {
    max-width: 50px; }

  .admin-info {
    padding-left: 70px; }

  ul.cms-author-social li {
    margin: 5px; }

  .post-navigation a {
    margin: 10px; }

  .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
    width: 70px; }
    .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i, .layout-team.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i {
      font-size: 15px; }

  #comments .comment-list > .comment ul.children ul {
    margin-left: 10px; }
    #comments .comment-list > .comment ul.children > li .comment-body {
      margin-left: 10px; }

  .wpb_wrapper .vc_tta-container .vc_tta.vc_general .vc_tta-panel-title {
    font-size: 13px; }

  ul.info-top {
    font-size: 9px;
    line-height: 12px; }

  .btn, button, .button, input[type="submit"] {
    font-size: 13px;
    line-height: 15px;
    padding: 11px 30px; }

  .padding-xs .vc_column-inner {
    padding-right: 15px !important;
    padding-left: 15px !important; }

  .wpcf7-form .wpcf7-not-valid-tip {
    top: auto; } }

@media (max-width: 320px) {
  #cshero-header-inner #cshero-header {
    padding-top: 23px;
    padding-bottom: 23px; }

  .layout-fullscreen .cms-carousel-item {
    padding: 20px !important; }
    .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 {
      max-width: auto;
      font-size: 10px !important;
      line-height: 15px !important; }
      .layout-fullscreen .cms-carousel-item .cms-carousel-title h3 strong {
        font-size: 10px !important;
        line-height: 15px !important; }
    .layout-fullscreen .cms-carousel-item .cms-carousel-des {
      font-size: 10px !important;
      line-height: 15px !important; }
    .layout-fullscreen .cms-carousel-item .entry-readmore {
      margin-top: 10px !important; }
    .layout-fullscreen .cms-carousel-item a.read-more {
      font-size: 13px !important; }
      .layout-fullscreen .cms-carousel-item a.read-more i {
        font-size: 13px !important; }
    .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
      font-size: 30px !important;
      color: #000;
      background: #fff;
      margin: 0 !important;
      line-height: 50px !important;
      top: auto;
      bottom: -51px; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next:hover {
        color: #f90; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev i, .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next i {
        font-size: 30px !important;
        line-height: 50px !important; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-prev {
        left: auto;
        right: 51px; }
      .layout-fullscreen.cms-carousel.owl-carousel .owl-controls .owl-nav .owl-next {
        right: 0; }

  .team-feature-work-wrapper a {
    display: block;
    padding: 0;
    margin: 0; }
    .team-feature-work-wrapper a:after {
      display: none; }

  .cms-progress-layout1 .cms-progress-item-wrap .cms-progress-title {
    font-size: 13px; }

  .cms-progress-layout1 .cms-progress-item-wrap .progress-couter {
    font-size: 13px; } }
