/* -------------------------------------------------------------
  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 and 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: transition (all 2s ease-in-out);
    -                                        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
========================================================================== */
/*------------------------------------------------------------------
[All Style Shortcode]

  1. Blog Standard
  2. Single Details
  3. Single Portfolio

-------------------------------------------------------------------*/
/* ==========================================================================
   [Start] All Style Footer Top & Footer Bottom
========================================================================== */
/* ==========================================================================
   [Start] All Style Form
========================================================================== */
/* ==========================================================================
   [Start] All style header
   /* 1. Header Main
========================================================================== */
/* 1. Header Main */
/*------------------------------------------------------------------
[Main of contents]

1. Page Title
2. Primary
-------------------------------------------------------------------*/
/* ==========================================================================
   [Start] 1. Page Title
========================================================================== */
/*------------------------------------------------------------------
[All Style RTL]
-------------------------------------------------------------------*/
/* ==========================================================================
    Style Main Menu
========================================================================== */
/*
-----> Minimum width of 992 pixels.
*/
/* ==========================================================================
   [Start] 1. Reset HTML/CSS, Unitest, Body, @Extend
========================================================================== */
/*------------------------------------------------------------------
[All Style Widgets]

  1. Newletter
  2. Search
  3. Tags
  4. Categories

-------------------------------------------------------------------*/
/* ==========================================================================
  [Start] Large devices (desktops, 992px and up)
========================================================================== */
/* 
     [Start] Header
     +-----------------------------------+
  */
/*------------------------------------------------------------------
[Woo of contents]

1. Navigation
2. Typo
3. Sidebar
4. Archive Product
5. Single Product
6. Cart Search

-------------------------------------------------------------------*/
body #cms-page-title:before {
  background-color: rgba(84, 75, 81, 0.83); }

@media screen and (min-width: 992px) {
  #cshero-header-inner #cshero-header-logo img, body #cshero-header-inner #cshero-header-logo-top a img {
    max-height: px; } }

@media screen and (min-width: 992px) {
  #cshero-header-inner .header-fixed #cshero-header-logo img, body #cshero-header-inner .header-fixed #cshero-header-logo-top a img {
    max-height: px; } }

body.error404 .site-content {
  background-image: url(https://demo.themenovo.com/kinglaw/wp-content/themes/kinglaw/assets/images/pt-404.jpg); }

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7; }

  50% {
    transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(0.95);
    opacity: 0.7; } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7; }

  50% {
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7; } }

.btn, button, .button, input[type="submit"] {
  background-color: #222;
  font-size: 15px;
  font-weight: 700;
  border: none;
  color: #fff;
  padding: 16px 45px 16px;
  line-height: 1;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  -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 */
  position: relative;
  border: 1px solid #222; }

.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;
  background-color: #aa8533;
  border-color: #aa8533;
  color: #fff; }

.btn-icon {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  margin-left: 30px;
  line-height: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 63px;
  position: relative;
  -webkit-transition: all 300ms linear 0ms !important;
  -moz-transition: all 300ms linear 0ms !important;
  -ms-transition: all 300ms linear 0ms !important;
  transition: all 300ms linear 0ms !important;
  /* Button Styles */ }
  .btn-icon:hover {
    color: #aa8533; }
  .btn-icon i {
    font-size: 48px;
    position: absolute;
    left: 0;
    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 */ }

.btn {
  /* Button Size */ }
  .btn i {
    padding-right: 9px; }
  .btn span {
    display: inline-block; }
    .btn span + i {
      padding-right: 0;
      padding-left: 9px; }
  .btn.btn-primary {
    background-color: #aa8533;
    border-color: #aa8533; }
    .btn.btn-primary:hover {
      background-color: #222;
      border-color: #222; }
  .btn.btn-white-alt {
    color: #aa8533;
    border-color: #aa8533; }
    .btn.btn-white-alt:hover {
      background-color: #222;
      border-color: #222;
      color: #fff; }
  .btn.btn-primary-alt {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }
    .btn.btn-primary-alt:hover {
      background-color: #aa8533;
      color: #fff;
      border-color: #aa8533; }
  .btn.btn-tranparent-alt {
    background-color: transparent;
    color: #fff;
    border-color: #aa8533; }
    .btn.btn-tranparent-alt:hover {
      color: #222;
      border-color: #222; }

.btn.btn-lg {
  padding-left: 60px;
  padding-right: 60px; }
  .btn.btn-sm {
    padding-left: 23px;
    padding-right: 23px; }
  .btn.btn-tiny {
    padding-left: 17px;
    padding-right: 17px; }

@-webkit-keyframes btn-whole1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1); }

  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1); }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes btn-whole1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1); }

  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1); }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes btn-whole2 {
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes btn-whole2 {
  /* Button slider */
  to {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rev_slider_wrapper .btn {
  -webkit-transition: all 300ms linear 0ms !important;
  -moz-transition: all 300ms linear 0ms !important;
  -ms-transition: all 300ms linear 0ms !important;
  transition: all 300ms linear 0ms !important; }
  .rev_slider_wrapper .btn.btn-md {
    padding: 11px 34px !important; }

@media (min-width: 768px) and (max-width: 1280px) {
  /* ==========================================================================
    End Style Button
========================================================================== */
    .rev_slider_wrapper .btn {
      padding: 13px 30px !important;
      line-height: 1 !important;
      font-size: 11px !important; } }

.carousel {
  /* 
   [Start] 1. Blog Standard
   +-----------------------------------+
*/ }
  .carousel .carousel-control {
    background: transparent;
    bottom: 26px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 50%;
    cursor: pointer;
    font-size: 24px;
    -webkit-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -ms-text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -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 */
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 1px solid #fff; }
  .carousel .carousel-control.left {
    left: 15px;
    right: 70px; }
  .carousel .carousel-control:hover {
    color: #fff;
    border-color: #aa8533;
    background-color: #aa8533; }
  .carousel .carousel-control.left {
    left: 50px; }
  .carousel .carousel-control.right {
    right: 50px; }

.is-left-sidebar #content {
  float: right; }

.post-like, .single .entry-social-shared {
  display: inline-block; }
  @media (max-width: 575px) {
  .post-like, .single .entry-social-shared {
    display: block;
    text-align: center; } }

.single .entry-social-shared {
  margin-top: 15px;
  margin-bottom: 15px; }

.post-like {
  margin-right: 22px; }
  @media (max-width: 575px) {
  .post-like {
    margin-top: 20px; } }
  .post-like i {
    font-size: 20px;
    color: #aa8533;
    margin-right: 10px; }

.box-blog {
  background-color: #fff;
  margin-bottom: 13px; }

.page-template-blog-standard .content-full-width, .archive.category .content-full-width, .single-post .content-full-width {
  margin: auto;
  float: none; }

.single-post .post-thumbnail {
  overflow: hidden; }
  .single-post .post-thumbnail img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .single-post .post-thumbnail img:hover {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }

.category .entry-blog {
  margin-bottom: 0; }

article.post .entry-blog-style2 {
  padding-top: 40px;
  padding-bottom: 35px;
  position: relative; }
  article.post .entry-blog-style2 .post-thumbnail {
    overflow: hidden; }
    article.post .entry-blog-style2 .post-thumbnail img {
      -moz-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      article.post .entry-blog-style2 .post-thumbnail img:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
  article.post .entry-blog-style2:before {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 425px;
    content: " ";
    height: 1px;
    background-color: #e4e4e4; }
    @media (max-width: 1599px) {
    article.post .entry-blog-style2:before {
      max-width: 100%; } }
  article.post:first-child .entry-blog-style2 {
    padding-top: 0; }
    article.post:first-child .entry-blog-style2:before {
      background-color: transparent; }
  article.post:last-child .entry-blog-style2 {
    padding-bottom: 0; }

.entry-blog .entry-title {
  font-weight: bold;
  font-family: 'Playfair Display', serif; }
  .entry-blog .entry-title a {
    color: #333; }
    .entry-blog .entry-title a:hover {
      color: #aa8533; }
  .entry-blog .entry-meta {
    margin-bottom: 0;
    list-style: none; }
  .entry-blog .entry-body .entry-thumbnail {
    margin-bottom: 25px; }
  .entry-blog.hidden-feature-image {
    padding-top: 35px; }
  .entry-blog.hidden-feature-image .entry-header {
    display: none; }
  .entry-blog.entry-blog-style1 {
    background-color: #fff;
    margin-bottom: 50px;
    padding: 45px 70px 55px;
    border: 1px solid #ddd;
    overflow: hidden;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms; }
  @media (max-width: 991px) {
    .entry-blog.entry-blog-style1 {
      padding: 25px 20px 55px; } }
  @media (max-width: 767px) {
    .entry-blog.entry-blog-style1 {
      padding-left: 15px;
      padding-right: 15px; }
      .entry-blog.entry-blog-style1 .post-thumbnail img {
        width: 100%; } }
  .entry-blog.entry-blog-style1:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.11);
    border-color: #fff; }
  .entry-blog.entry-blog-style1 .post-thumbnail {
    overflow: hidden; }
    .entry-blog.entry-blog-style1 .post-thumbnail img {
      -moz-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      .entry-blog.entry-blog-style1 .post-thumbnail img:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
  .entry-blog.entry-blog-style1 .entry-title {
    font-size: 35px;
    margin-bottom: 22px;
    margin-top: 0px; }
    @media (max-width: 767px) {
    .entry-blog.entry-blog-style1 .entry-title {
      font-size: 25px; } }
  .entry-blog.entry-blog-style1 .entry-footer .read-more {
    color: #aa8533; }
  .entry-blog.entry-blog-style2 .entry-thumbnail {
    margin-bottom: 20px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    overflow: hidden; }
    @media (max-width: 767px) {
    .entry-blog.entry-blog-style2 .entry-thumbnail {
      margin-bottom: 40px;
      -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 */ }
      .entry-blog.entry-blog-style2 .entry-thumbnail a {
        display: block; }

      .entry-blog.entry-blog-style2 .entry-thumbnail img {
        width: 100%; } }
  .entry-blog.entry-blog-style2 .entry-meta {
    margin-top: -7px; }
  .entry-blog.entry-blog-style2 .entry-title {
    margin-top: 6px;
    margin-bottom: 17px;
    font-size: 30px; }
  .entry-blog.entry-blog-style2 .entry-content {
    margin-bottom: 45px; }
  .single .entry-meta-style1 ul {
    margin-top: -7px;
    list-style: none;
    padding-left: 0; }
  .single .entry-social-shared {
    list-style: none;
    padding-left: 0; }
  .single .entry-social-shared li.social-label {
    color: #565656;
    font-weight: 600;
    font-size: 20px; }
  .single .entry-social-shared li {
    margin-right: 10px; }
  .single .entry-social-shared li:first-child {
    margin-right: 25px; }

.entry-meta ul {
  display: table;
  width: 100%;
  padding-left: 0; }
  .entry-meta ul li {
    display: inline-block;
    font-size: 12px;
    padding-left: 0;
    padding-right: 5px;
    color: #999; }
    .entry-meta ul li:first-child {
      padding-left: 0;
      color: #aa8533; }
      .entry-meta ul li:first-child a {
        padding-left: 0 !important; }
    .entry-meta ul li a {
      color: #565656; }
      .entry-meta ul li a:hover {
        color: #aa8533; }
  .entry-meta.entry-meta-style1 ul {
    margin-bottom: 12px; }
    .entry-meta.entry-meta-style1 ul li {
      float: left; }
      .entry-meta.entry-meta-style1 ul li:last-child {
        float: right;
        padding-right: 0; }
    .entry-meta.entry-meta-style1 ul li.detail-comment i {
      margin-right: 5px; }
  .entry-meta.entry-meta-style2 ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    overflow: hidden; }
    .entry-meta.entry-meta-style2 ul li {
      float: right; }
      .entry-meta.entry-meta-style2 ul li:first-child {
        text-transform: uppercase;
        float: left; }
      .entry-meta.entry-meta-style2 ul li:last-child {
        margin-right: 0; }
      .entry-meta.entry-meta-style2 ul li.counter-view {
        margin-right: 9px; }
    .entry-meta.entry-meta-style2 ul li.detail-comment {
      padding-right: 0; }
  .entry-meta.entry-meta-style3 ul li {
    margin-right: 30px;
    padding-right: 0; }
    .entry-meta.entry-meta-style3 ul li:first-child {
      color: #bbb; }
    .entry-meta.entry-meta-style3 ul li:last-child {
      margin-right: 0; }
    .entry-meta.entry-meta-style3 ul li i, .entry-meta.entry-meta-style3 ul li a {
      color: #bbb; }
    .entry-meta.entry-meta-style3 ul li i {
      margin-right: 10px; }
    .entry-meta.entry-meta-style3 ul li a:hover {
      color: #aa8533; }

.read-more.read-more-style1 {
  font-size: 15px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  line-height: 12px;
  margin-top: 40px; }
  .read-more.read-more-style1:hover {
    color: #aa8533; }
    .read-more.read-more-style1:hover:before {
      width: 100%;
      opacity: 1; }
  .read-more.read-more-style1:before, .read-more.read-more-style1:after {
    position: absolute; }
  .read-more.read-more-style1:before {
    display: block;
    content: "";
    background-color: #aa8533;
    height: 1px;
    width: 100%;
    opacity: 0;
    bottom: -6px; }
  .read-more.read-more-style1:after {
    content: "\f178";
    top: 1px;
    right: -25px;
    font-size: 15px;
    color: #aa8533;
    font-family: "FontAwesome"; }
  .read-more.read-more-style2 {
    text-transform: capitalize;
    display: inline-block;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    width: 120px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border: 1px solid #aa8533;
    color: #aa8533; }
  .read-more.read-more-style2:hover {
    background-color: #aa8533;
    color: #fff; }

.single .entry-blog {
  margin-bottom: 38px; }
  .single .entry-blog .post-thumbnail {
    margin-bottom: 50px;
    overflow: hidden; }
    .single .entry-blog .post-thumbnail img {
      -moz-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
    .single .entry-blog .post-thumbnail img:hover {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  .single .entry-blog .entry-title {
    font-weight: bold;
    font-size: 35px;
    color: #565656;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 22px; }
  .single .entry-blog .entry-body {
    padding-left: 0;
    padding-right: 0;
    border: none;
    padding-bottom: 15px;
    position: relative; }
    .single .entry-blog .entry-body:before, .single .entry-blog .entry-body:after {
      position: absolute;
      display: block;
      content: "";
      height: 1px;
      width: 100%;
      left: 0;
      bottom: -5px; }
    .single .entry-blog .entry-body:before {
      background-color: #ddd; }
    .single .entry-blog .entry-body:after {
      z-index: 3;
      width: 60px;
      background-color: #aa8533; }
  .single .comments-area .comment-list-wrap .wg-title {
    padding-left: 0; }
  .single .entry-social-shared {
    margin-top: 35px;
    margin-bottom: 27px; }

.entry-social-shared li {
  display: inline-block; }
  .entry-social-shared li a {
    display: block;
    text-align: center; }
    .entry-social-shared li a i {
      width: 39px;
      height: 39px;
      -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: 39px;
      color: #fff; }
    .entry-social-shared li a i.fa-facebook {
      background-color: #3b5998; }
    .entry-social-shared li a i.fa-twitter {
      background-color: #00acee; }
    .entry-social-shared li a i.fa-google-plus {
      background-color: #ca1f27; }
    .entry-social-shared li a i.fa-pinterest {
      background-color: #dd4b39; }

.widget_cs_social_widget li, .single-attorney .social-team-bottom li, .widget_cs_social_widget_sv li {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px; }
  .widget_cs_social_widget li:last-child, .single-attorney .social-team-bottom li:last-child, .widget_cs_social_widget_sv li:last-child {
    margin-right: 0; }
  .widget_cs_social_widget li a, .single-attorney .social-team-bottom li a, .widget_cs_social_widget_sv li a {
    display: block;
    text-align: center; }
    .widget_cs_social_widget li a i, .single-attorney .social-team-bottom li a i, .widget_cs_social_widget_sv li a i {
      -webkit-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      width: 39px;
      height: 39px;
      -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: 39px;
      color: #fff;
      background-color: #222; }
    .widget_cs_social_widget li a i:hover, .single-attorney .social-team-bottom li a i:hover, .widget_cs_social_widget_sv li a i:hover {
      background-color: #aa8533; }
  .widget_cs_social_widget li:first-child a, .single-attorney .social-team-bottom li:first-child a, .widget_cs_social_widget_sv li:first-child a {
    padding-left: 0; }

.widget_cs_social_widget_sv .wg-title {
  margin-bottom: 27px !important; }
  .widget_cs_social_widget_sv li a i {
    background-color: #fff;
    color: #565656;
    border: 1px solid #565656; }
    .widget_cs_social_widget_sv li a i:hover {
      color: #fff;
      border-color: #aa8533; }

.social-team-bottom li:first-child > a {
  padding-left: 0; }

.pagination {
  margin: 20px 0 0;
  width: 100%;
  text-align: center; }
  @media (max-width: 767px) {
  .pagination {
    text-align: left; } }
  .pagination .page-numbers {
    border: 1px solid ;
    background-color: #fff;
    display: inline-block;
    height: 53px;
    line-height: 51px;
    text-align: center;
    width: 53px;
    font-family: 'Montserrat', sans-serif;
    color: #777;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 12px;
    -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 */
    font-size: 20px;
    font-weight: bold; }
  @media (max-width: 767px) {
    .pagination .page-numbers {
      height: 40px;
      width: 40px;
      line-height: 38px; } }
  .pagination .page-numbers:first-child {
    margin-left: 0; }
  .pagination .page-numbers:hover, .pagination .page-numbers.current {
    background-color: #aa8533;
    border-color: #aa8533;
    color: #fff; }
  .pagination .page-numbers + .page-numbers {
    margin-right: 12px; }
  .pagination .page-numbers i {
    font-size: 20px;
    font-weight: bold; }
  .page-template-blog-standard2 .pagination {
    margin-top: 40px; }
  @media (max-width: 767px) {
    .page-template-blog-standard2 .pagination {
      padding-bottom: 40px; } }
  .page-template-blog-standard2 .pagination .page-numbers {
    height: 39px;
    line-height: 37px;
    text-align: center;
    width: 39px;
    font-family: 'Montserrat', sans-serif;
    color: #777;
    -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 */
    font-weight: normal;
    font-size: 15px; }
    .page-template-blog-standard2 .pagination .page-numbers:hover, .page-template-blog-standard2 .pagination .page-numbers.current {
      background-color: #aa8533;
      border-color: #aa8533;
      color: #fff; }
    .page-template-blog-standard2 .pagination .page-numbers + .page-numbers {
      margin-left: 8px; }
    .page-template-blog-standard2 .pagination .page-numbers i {
      font-size: 15px; }

.cms-related-post {
  position: relative;
  /* 
   [Start] 2. Single Details
   +-----------------------------------+
*/ }
  .cms-related-post:before, .cms-related-post:after {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    max-width: 753px;
    left: 0;
    top: 20px; }
  @media (max-width: 767px) {
    .cms-related-post:before, .cms-related-post:after {
      max-width: 100%; } }
  .cms-related-post:before {
    background-color: #ddd; }
  .cms-related-post:after {
    z-index: 3;
    width: 60px;
    background-color: #aa8533; }

blockquote {
  padding: 0px 15px;
  background: transparent;
  margin: 43px 0 45px;
  font-style: italic;
  border-left: 4px solid #aa8533;
  font-size: 15px;
  line-height: 25px;
  color: #333; }
  blockquote cite {
    color: #222;
    display: block;
    font-weight: 600;
    font-size: 13px;
    font-style: normal;
    margin-top: 8px; }
  blockquote.st1 {
    border: none;
    position: relative; }
  blockquote.st1:before, blockquote.st1:after {
    content: "\f10d";
    font-family: FontAwesome;
    font-style: normal;
    font-size: 16px;
    color: #222;
    position: absolute;
    top: 0;
    left: 0; }
  blockquote.st1:after {
    content: "\f10e";
    top: inherit;
    bottom: 0;
    left: inherit;
    right: 0; }
  blockquote.st2 {
    border: none;
    background-color: #f4f4f4;
    -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 */
    color: #aa8533; }
  blockquote.st3 {
    border: none;
    background-color: #2f2f2f;
    color: #fff;
    -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 */ }
  blockquote.st3 cite {
    color: #fff; }

#cms-page-title .cms-page-title-inner h1 {
  font-size: 40px;
  text-transform: uppercase; }
  #cms-page-title .cms-page-title-inner span {
    margin-top: 15px; }

.entry-author {
  border: 1px solid #ddd;
  -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 */
  padding: 34px 15px 35px;
  margin-bottom: 65px; }
  @media (max-width: 575px) {
  .entry-author {
    background: #f8f8f8; } }
  .entry-author .admin-avt {
    max-width: 90px;
    float: left;
    max-height: 90px;
    width: 100%; }
  .entry-author .wg-title {
    font-style: italic;
    font-size: 18px; }
  .entry-author .admin-info {
    padding-left: 120px; }
  .entry-author .user-social {
    padding-top: 10px;
    padding-left: 0; }
  .entry-author .user-social li {
    display: inline-block;
    padding-right: 21px; }
    .entry-author .user-social li a {
      font-size: 15px;
      color: #5d5d5d; }
    .entry-author .user-social li a:hover {
      color: #aa8533; }

.related-post .cms-related-post {
  padding-top: 58px;
  margin-top: 60px; }
  .related-post .wg-title {
    text-transform: uppercase;
    color: #333;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 46px; }
  .related-post .feature-image {
    display: block; }
  .related-post .feature-image span {
    display: block;
    min-height: 178px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -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 */ }
  .related-post .no-feature-img .feature-image {
    display: none; }
  .related-post .title {
    font-size: 15px;
    line-height: 23px;
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 16px; }
  .related-post .title a {
    color: #222; }
    .related-post .title a:hover {
      color: #aa8533; }
  .related-post .detail-date {
    font-size: 13px;
    color: #616161;
    text-transform: uppercase; }
  .related-post .row {
    margin: 0 -11px; }
  .related-post .row .item {
    padding: 0 11px; }

.single-attorney .site-content {
  padding-bottom: 150px; }
  .single-attorney .single-attorney-image {
    padding-bottom: 95px; }
  @media (max-width: 767px) {
    .single-attorney .col-single-attorney-thumnail {
      margin-bottom: 50px; }
      .single-attorney .col-single-attorney-thumnail .post-thumbnail {
        text-align: center; } }
  .single-attorney .col-single-attorney-thumnail .post-thumbnail {
    border: 1px solid #fff;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
    .single-attorney .col-single-attorney-thumnail .post-thumbnail img {
      -webkit-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms; }
    .single-attorney .col-single-attorney-thumnail .post-thumbnail:hover {
      border: 1px solid #ededed; }
    .single-attorney .col-single-attorney-thumnail .post-thumbnail:hover img {
      padding: 5px; }
  .single-attorney .wg-title {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-top: 5px;
    margin-bottom: 20px; }
  .single-attorney .entry-position {
    color: #aa8533;
    margin-bottom: 45px;
    font-size: 20px; }
  .single-attorney .entry-attorney-info li {
    padding: 8px 0;
    font-size: 15px; }
    .single-attorney .entry-attorney-info li i {
      margin-right: 17px;
      color: #aa8533;
      font-size: 20px; }
    .single-attorney .entry-attorney-info li a {
      color: #777; }
    .single-attorney .entry-attorney-info li a:hover {
      color: #aa8533;
      margin-left: 10px; }
  .single-attorney .entry-meta-social {
    margin-top: 12px;
    margin-bottom: 35px; }
  .single-attorney .entry-attorney-excerpt {
    margin-bottom: 43px;
    color: #777; }
  .single-attorney .readmore {
    display: inline-block;
    background-color: #aa8533;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 30px;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: relative; }
  .single-attorney .readmore:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    hidden: 100%;
    height: 0px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 300ms ease; }
  .single-attorney .readmore:hover:before {
    height: 100%; }

.tax-attorney_categories .site-content {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }

.single-service .site-content {
  padding-bottom: 100px !important; }
  .single-service #sidebar .widget_nav_menu {
    margin-top: -5px; }
  @media (max-width: 767px) {
    .single-service .page-title {
      text-align: center; } }
  .single-service .single-service-image {
    margin-bottom: 60px;
    position: relative;
    overflow: hidden; }
  .single-service .single-service-image:before, .single-service .single-service-image:after {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: absolute;
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0; }
  .single-service .single-service-image:before {
    background: url(../images/mask-overlay-top.png) center center / 100% 100%;
    top: -100%; }
  .single-service .single-service-image:after {
    background: url(../images/mask-overlay-bottom.png) center center / 100% 100%;
    bottom: -100%; }
  .single-service .single-service-image:hover:after, .single-service .single-service-image:hover:before {
    opacity: 1; }
    .single-service .single-service-image:hover:before {
      top: 0; }
    .single-service .single-service-image:hover:after {
      bottom: 0; }
  @media (max-width: 767px) {
      .single-service .single-service-image img {
        width: 100%; } }

.comment-reply-title {
  color: #333;
  position: relative;
  padding-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0; }

.entry-attorney-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; }

.entry-meta-style1 ul {
  margin: 0;
  padding-left: 0;
  list-style: none; }

#comments #respond #reply-title {
  font-size: 20px;
  color: #565656;
  margin-bottom: 45px; }
  #comments .comment-list-wrap .wg-title {
    color: #333;
    padding-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0; }
    #comments .comment-list-wrap .wg-title span {
      display: inline-block; }
  #comments .comment-list {
    list-style: none;
    padding: 0; }
  #comments .comment-list > li:first-child {
    margin-top: -13px; }
  #comments .comment-list .comment-body {
    border-bottom: 1px solid #ddd;
    padding-top: 35px;
    margin-top: 4px; }
    #comments .comment-list .comment-body .bg-reply-comment {
      position: relative; }
    #comments .comment-list .comment-body .bg-reply-comment .comment-holder {
      max-width: 97px;
      max-height: 97px;
      float: left; }
    #comments .comment-list .comment-body .bg-reply-comment .commetn-meta {
      padding-left: 100px; }
      #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner {
        padding: 0 20px 38px;
        position: relative; }
        #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner p {
          font-size: 15px; }
        #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date {
          display: table;
          width: 100%;
          color: #aa8533;
          margin-bottom: 10px; }
          #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date .fn {
            display: block;
            font-style: normal;
            font-size: 20px;
            color: #333; }
          #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date .comment-date {
            margin-top: -15px; }
    #comments .comment-list .comment-body .bg-reply-comment .comment-author {
      overflow: hidden; }
      #comments .comment-list .comment-body .bg-reply-comment .comment-author .avatar {
        max-width: 97px;
        max-height: 97px;
        -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 */
        width: 100%;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
        #comments .comment-list .comment-body .bg-reply-comment .comment-author .avatar:hover {
          -moz-transform: scale(1.02);
          -webkit-transform: scale(1.02);
          transform: scale(1.02); }
      #comments .comment-list .comment-body .bg-reply-comment .comment-author cite {
        font-size: 14px;
        text-transform: uppercase;
        color: #222;
        font-style: normal;
        font-weight: 600; }
        #comments .comment-list .comment-body .bg-reply-comment .comment-author cite a {
          color: #222; }
          #comments .comment-list .comment-body .bg-reply-comment .comment-author cite a:hover {
            color: #aa8533; }
      #comments .comment-list .comment-body .bg-reply-comment .comment-author .says {
        display: none; }
    #comments .comment-list .comment-body .bg-reply-comment .comment-meta {
      line-height: 1;
      font-size: 13px;
      margin-top: 9px;
      margin-bottom: 18px; }
      #comments .comment-list .comment-body .bg-reply-comment .comment-meta a {
        color: #616161; }
        #comments .comment-list .comment-body .bg-reply-comment .comment-meta a:hover {
          color: #aa8533; }
    #comments .comment-list .comment-body .reply {
      position: absolute;
      top: 0;
      right: 0; }
    #comments .comment-list .comment-body .reply a {
      position: relative;
      font-size: 13px;
      font-weight: 500;
      padding-left: 20px;
      color: #777; }
      #comments .comment-list .comment-body .reply a:hover {
        color: #aa8533; }
      #comments .comment-list .comment-body .reply a:before {
        content: "\f112";
        font-family: FontAwesome;
        font-style: normal;
        font-size: 13px;
        color: #aa8533;
        position: absolute;
        top: -3px;
        left: 0; }
  #comments .comment-list > li:last-child .comment-body {
    border-bottom: 1px solid #fff; }
  #comments .comment-list > li:first-child > .comment-body {
    padding-top: 0;
    margin-top: 40px; }
    #comments .comment-list > li:first-child > .comment-body .avatar {
      top: 0 !important; }
  #comments .comment-list .children {
    list-style: none;
    padding: 0 0 0 90px;
    overflow: hidden; }
  #comments .comment-list .pingback > .comment-body {
    padding-left: 0; }
    #comments .comment-list .pingback > .comment-body a.url {
      color: #222; }
    #comments .comment-list .pingback > .comment-body a.url:hover {
      color: #aa8533; }
  #comments #commentform .form-submit {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 0px;
    overflow: hidden;
    width: 100%;
    float: left; }
    #comments #commentform .form-submit #submit {
      display: block;
      text-align: center;
      text-transform: capitalize;
      font-size: 15px;
      font-family: 'Montserrat', sans-serif;
      font-weight: normal;
      display: inline-block;
      padding: 15px 30px;
      border: none;
      -webkit-border-radius: 0px;
      -khtml-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      /* BACKGROUND GRADIENT */
      background-color: #aa8533;
      color: #fff; }
    #comments #commentform .form-submit #submit:hover {
      background-color: #333; }
  #comments #commentform .comment-form-comment {
    margin-bottom: 19px;
    margin-top: 26px; }
    #comments #commentform .comment-form-comment #comment {
      min-height: 290px; }
  #comments #commentform .row-inputs-comment {
    padding: 0; }
  #comments #commentform .comment-form-author, #comments #commentform .comment-form-email {
    margin-bottom: 20px; }
    #comments #commentform .comment-form-author label, #comments #commentform .comment-form-email label {
      margin-bottom: 10px; }
    #comments #commentform .comment-form-author input, #comments #commentform .comment-form-email input {
      width: 100%;
      border: 1px solid #ebebeb;
      -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 */
      display: block;
      background-color: #fff; }

@media (max-width: 360px) {
  #comments #commentform .form-submit #submit {
    margin: 0 auto; } }

fg .mfp-wrap img.mfp-img {
  padding: 0; }

.box-need-help {
  background-color: #aa8533;
  padding: 50px 25px;
  color: #fff;
  text-align: center; }
  .box-need-help h3 {
    color: #fff;
    position: relative;
    font-size: 14px;
    line-height: 1;
    padding-bottom: 22px;
    margin-bottom: 25px; }
  .box-need-help h3:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 2px;
    width: 40px;
    background-color: #fff; }
  .box-need-help p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 25px; }

.icon-check {
  font-size: 15px;
  font-weight: bold;
  color: #aa8533;
  margin-right: 10px; }

.media.box-icon {
  font-size: 13px;
  color: #757575;
  line-height: 1; }
  .media.box-icon .media-left {
    padding-right: 32px; }
  .media.box-icon h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'loraitalic';
    margin-bottom: 10px;
    margin-top: 3px; }

.wpb_column.col-fixed-right {
  position: absolute;
  top: 0;
  right: 0; }

.arrow-right {
  overflow: hidden; }
  .arrow-right .wpb_wrapper {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset; }
  .arrow-right:before {
    background-color: #fff;
    content: "";
    height: 40px;
    position: absolute;
    right: -20px;
    bottom: 155px;
    -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 */
    width: 40px;
    z-index: 99; }

.bg-image-default {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.cms-load-posts i {
  padding: 0;
  display: none; }
  .cms-load-posts span {
    display: inline-block;
    padding: 0 6px; }
  .cms-load-posts a.run-loading i {
    display: inline-block; }

.link-about {
  display: inline-block;
  text-align: left;
  /* Slick Carousel */ }
  .link-about li {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    line-height: 23px;
    padding-right: 22px;
    margin-bottom: 18px;
    position: relative; }
  .link-about li a {
    color: rgba(255, 255, 255, 0.67); }
    .link-about li a span {
      text-transform: none;
      color: #333;
      display: block; }
    .link-about li a i {
      position: absolute;
      right: 0;
      top: 3px; }
    .link-about li a:hover {
      color: #fff; }

.slick-prev:before, .slick-next:before {
  color: #aa8533;
  /* OWL Carousel */ }

.cms-carousel-wrap, .owl-carousel {
  opacity: 0; }

body .owl-carousel .owl-item img {
  transform-style: inherit; }

.owl-controls .owl-nav .owl-prev, .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 46px;
  height: 46px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  font-size: 33px; }
  @media (max-width: 767px) {
      .owl-controls .owl-nav .owl-prev, .owl-controls .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        line-height: 40px; } }
  .owl-controls .owl-nav .owl-prev:after, .owl-controls .owl-nav .owl-next:after {
    font-size: 33px;
    font-family: 'FontAwesome';
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 33; }
  @media (max-width: 767px) {
        .owl-controls .owl-nav .owl-prev:after, .owl-controls .owl-nav .owl-next:after {
          font-size: 25px; } }
  .owl-controls .owl-nav .owl-prev:hover, .owl-controls .owl-nav .owl-next:hover {
    background-color: #404040;
    border-color: #404040; }
  .owl-controls .owl-nav .owl-prev i, .owl-controls .owl-nav .owl-next i {
    font-size: 0;
    position: absolute;
    left: -900000px; }
  .owl-controls .owl-nav .owl-prev {
    left: 0px; }
  @media (min-width: 1599px) {
      .owl-controls .owl-nav .owl-prev {
        left: -77px; } }
  .owl-controls .owl-nav .owl-prev:after {
    content: "\f104"; }
  .owl-controls .owl-nav .owl-next {
    right: 0px; }
  @media (min-width: 1599px) {
      .owl-controls .owl-nav .owl-next {
        right: -77px; } }
  .owl-controls .owl-nav .owl-next:after {
    content: "\f105"; }
  @media (max-width: 1199px) {
    .owl-controls .owl-nav {
      position: absolute;
      bottom: -50px;
      width: 100%;
      text-align: center;
      display: block; }
      .owl-controls .owl-nav .owl-prev, .owl-controls .owl-nav .owl-next {
        position: static;
        transform: translate(0%, 0%);
        display: inline-block; }
      .owl-controls .owl-nav .owl-prev {
        margin-right: 1px; } }
  .owl-controls .owl-dots {
    position: absolute;
    width: 100%;
    text-align: center; }
  .owl-controls .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px; }
  .owl-controls .owl-dots .owl-dot span {
    display: block;
    background-color: #abc;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    position: relative; }
  .owl-controls .owl-dots .owl-dot span:before {
    content: "";
    height: 15px;
    width: 15px;
    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 */ }
  .owl-controls .owl-dots .owl-dot.active span:before {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  @media (max-width: 1199px) {
    .owl-controls .owl-dots {
      display: none !important; } }

.dot-style-white .owl-controls .owl-dots .owl-dot span {
  background-color: transparent !important; }
  .dot-style-white .owl-controls .owl-dots .owl-dot span:before {
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    background-color: transparent !important; }
  .dot-style-white .owl-controls .owl-dots .owl-dot.active span, .dot-style-white .owl-controls .owl-dots .owl-dot:hover span {
    background-color: #fff !important; }
  .dot-style-white .owl-controls .owl-dots .owl-dot.active span:before, .dot-style-white .owl-controls .owl-dots .owl-dot:hover span:before {
    border-color: #fff;
    background-color: #fff !important; }

.dot-style-gray .owl-controls .owl-dots .owl-dot span {
  background-color: #686868; }
  .dot-style-gray .owl-controls .owl-dots .owl-dot span:after {
    border: 3px solid #686868;
    background-color: #686868; }
  .dot-style-gray .owl-controls .owl-dots .owl-dot span:before {
    border: 3px solid #686868;
    background-color: #686868; }

.dot-style-dark .owl-controls .owl-dots .owl-dot span {
  background-color: #000; }
  .dot-style-dark .owl-controls .owl-dots .owl-dot span:after {
    border: 3px solid #000;
    background-color: #000; }
  .dot-style-dark .owl-controls .owl-dots .owl-dot span:before {
    border: 3px solid #000;
    background-color: #000; }

.dot-style-col-tranparent .owl-controls .owl-dots .owl-dot span {
  background-color: transparent !important; }
  .dot-style-col-tranparent .owl-controls .owl-dots .owl-dot span:after {
    border: 1px solid #999;
    background-color: transparent !important; }
  .dot-style-col-tranparent .owl-controls .owl-dots .owl-dot span:before {
    border: 1px solid #999;
    background-color: transparent !important; }

.dot-style-color-999 .owl-controls .owl-dots .owl-dot span {
  background-color: #999; }
  .dot-style-color-999 .owl-controls .owl-dots .owl-dot span:after {
    border: 3px solid #999;
    background-color: #999; }
  .dot-style-color-999 .owl-controls .owl-dots .owl-dot span:before {
    border: 3px solid #999;
    background-color: #999; }

.cms-carousel .owl-controls .owl-dots .owl-dot.active span {
  background-color: #aa8533; }
  .cms-carousel .owl-controls .owl-dots .owl-dot.active span:after {
    border-color: #aa8533;
    background-color: #aa8533; }
  .cms-carousel .owl-controls .owl-dots .owl-dot.active span:before {
    border-color: #aa8533;
    background-color: #aa8533; }
  .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-next {
    background-color: transparent;
    border: 1px solid #999; }
  .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-next:after {
    color: #999; }
  .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-prev:hover, .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-next:hover {
    border: 1px solid #aa8533; }
    .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-prev:hover:after, .cms-carousel.nav-style-color-overlay .owl-controls .owl-nav .owl-next:hover:after {
      color: #aa8533; }
  .cms-carousel.nav-style-dark .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-dark .owl-controls .owl-nav .owl-next {
    background-color: #000; }
  .cms-carousel.nav-style-dark .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-dark .owl-controls .owl-nav .owl-next:after {
    color: #fff; }
  .cms-carousel.nav-style-white .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-white .owl-controls .owl-nav .owl-next {
    background-color: #fff; }
  .cms-carousel.nav-style-white .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-white .owl-controls .owl-nav .owl-next:after {
    color: #333; }
  .cms-carousel.nav-style-gray .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-gray .owl-controls .owl-nav .owl-next {
    background-color: transparent; }
  .cms-carousel.nav-style-gray .owl-controls .owl-nav .owl-prev:before, .cms-carousel.nav-style-gray .owl-controls .owl-nav .owl-next:before {
    background: rgba(0, 0, 0, 0.35) !important;
    content: " ";
    display: block;
    height: inherit;
    width: inherit; }
  .cms-carousel.nav-style-color-575 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-575 .owl-controls .owl-nav .owl-next {
    background-color: #575757; }
  .cms-carousel.nav-style-color-686 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-686 .owl-controls .owl-nav .owl-next {
    background-color: #686868; }
  .cms-carousel.nav-style-color-0d0 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-0d0 .owl-controls .owl-nav .owl-next {
    background-color: #0d0d0d; }
  .cms-carousel.nav-style-color-151 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-151 .owl-controls .owl-nav .owl-next {
    background-color: #151515; }
  .cms-carousel.nav-style-color-171 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-171 .owl-controls .owl-nav .owl-next {
    background-color: #171717; }
  .cms-carousel.nav-style-color-191 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-191 .owl-controls .owl-nav .owl-next {
    background-color: #191919; }
  .cms-carousel.nav-style-color-212 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-212 .owl-controls .owl-nav .owl-next {
    background-color: #212121; }
  .cms-carousel.nav-style-color-222 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-222 .owl-controls .owl-nav .owl-next {
    background-color: #222; }
  .cms-carousel.nav-style-color-333 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-333 .owl-controls .owl-nav .owl-next {
    background-color: #333; }
  .cms-carousel.nav-style-color-404 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-404 .owl-controls .owl-nav .owl-next {
    background-color: #404040; }
  .cms-carousel.nav-style-color-444 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-444 .owl-controls .owl-nav .owl-next {
    background-color: #444; }
  .cms-carousel.nav-style-color-666 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-666 .owl-controls .owl-nav .owl-next {
    background-color: #666; }
  .cms-carousel.nav-style-color-8b8 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-8b8 .owl-controls .owl-nav .owl-next {
    background-color: #8b8b8b; }
  .cms-carousel.nav-style-color-999 .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-999 .owl-controls .owl-nav .owl-next {
    background-color: #999; }
  .cms-carousel.nav-style-color-999 .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-999 .owl-controls .owl-nav .owl-next:after {
    color: ; }
  .cms-carousel.nav-style-color-f5f .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-f5f .owl-controls .owl-nav .owl-next {
    background-color: #f5f5f5; }
  .cms-carousel.nav-style-color-f5f .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-f5f .owl-controls .owl-nav .owl-next:after {
    color: ; }
  .cms-carousel.nav-style-color-f8f .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-f8f .owl-controls .owl-nav .owl-next {
    background-color: #f8f8f8; }
  .cms-carousel.nav-style-color-f8f .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-f8f .owl-controls .owl-nav .owl-next:after {
    color: ; }
  .cms-carousel.nav-style-color-f9f .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-f9f .owl-controls .owl-nav .owl-next {
    background-color: #f9f9f9; }
  .cms-carousel.nav-style-color-f9f .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-f9f .owl-controls .owl-nav .owl-next:after {
    color: ; }
  .cms-carousel.nav-style-color-ebe .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-ebe .owl-controls .owl-nav .owl-next {
    background-color: #ebebeb; }
  .cms-carousel.nav-style-color-ebe .owl-controls .owl-nav .owl-prev:after, .cms-carousel.nav-style-color-ebe .owl-controls .owl-nav .owl-next:after {
    color: ; }
  .cms-carousel.nav-style-color-e0e .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-e0e .owl-controls .owl-nav .owl-next {
    background-color: #e0e0e0; }
  .cms-carousel.nav-style-color-e0e .owl-controls .owl-nav .owl-prev i:after, .cms-carousel.nav-style-color-e0e .owl-controls .owl-nav .owl-next i:after {
    color: ; }
  .cms-carousel.nav-style-color-ovelay .owl-controls .owl-nav .owl-prev, .cms-carousel.nav-style-color-ovelay .owl-controls .owl-nav .owl-next {
    background-color: rgba(0, 0, 0, 0.55); }
  .cms-carousel.margin-top-20 .owl-controls .owl-dots {
    bottom: -40px; }
  .cms-carousel.margin-top-25 .owl-controls .owl-dots {
    bottom: -44px; }
  .cms-carousel.margin-top-30 .owl-controls .owl-dots {
    bottom: -50px; }
  .cms-carousel.margin-top-35 .owl-controls .owl-dots {
    bottom: -55px; }
  .cms-carousel.margin-top-40 .owl-controls .owl-dots {
    bottom: -60px; }
  .cms-carousel.margin-top-42 .owl-controls .owl-dots {
    bottom: -62px; }
  .cms-carousel.margin-top-45 .owl-controls .owl-dots {
    bottom: -65px; }
  .cms-carousel.margin-top-50 .owl-controls .owl-dots {
    bottom: -70px; }
  .cms-carousel.margin-top-55 .owl-controls .owl-dots {
    bottom: -75px; }
  .cms-carousel.margin-top-60 .owl-controls .owl-dots {
    bottom: -80px; }
  .cms-carousel.margin-top-65 .owl-controls .owl-dots {
    bottom: -85px; }
  .cms-carousel.margin-top-70 .owl-controls .owl-dots {
    bottom: -90px; }
  .cms-carousel.margin-top-75 .owl-controls .owl-dots {
    bottom: -95px; }
  .cms-carousel.margin-top-80 .owl-controls .owl-dots {
    bottom: -100px; }

.social-page {
  text-align: center;
  /* 
   [Start] 1. Custom Heading
   +-----------------------------------+
*/
  /* 
   [Start] 2. Counter
   +-----------------------------------+
*/ }
  .social-page li {
    display: inline-block;
    margin: 0 23px; }
  .social-page li a {
    color: rgba(0, 0, 0, 0.45);
    font-size: 20px; }
  .social-page li a:hover {
    color: #333; }

.cms-counter-wraper {
  /* 
   [Start] 8. Testimonial
   +-----------------------------------+
*/ }
  .cms-counter-wraper .cms-counter-body {
    margin: 40px 0 35px; }
  @media (max-width: 767px) {
    .cms-counter-wraper .cms-counter-body {
      margin: 20px 0;
      padding-bottom: 20px;
      border-bottom: 1px solid #fff; } }
  .cms-counter-wraper .counter-icon {
    float: left;
    text-align: center;
    max-width: 65px;
    max-height: 80px;
    overflow: hidden; }
  @media (max-width: 767px) {
    .cms-counter-wraper .counter-icon {
      float: none;
      max-width: 100%;
      margin-bottom: 20px; } }
  .cms-counter-wraper .counter-icon img {
    max-width: 100%;
    height: auto;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .cms-counter-wraper .counter-icon img:hover {
    -moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    transform: scale(1.08); }
  .cms-counter-wraper .counter-icon i {
    font-size: 50px;
    color: #aa8533; }
  .cms-counter-wraper .counter-icon i:hover {
    -webkit-animation: pulse 0.9s infinite;
    -moz-animation: pulse 0.9s infinite;
    -ms-animation: pulse 0.9s infinite;
    -o-animation: pulse 0.9s infinite;
    animation: pulse 0.9s infinite; }
  .cms-counter-wraper .counter-content {
    padding-left: 85px;
    padding-top: 5px;
    font-weight: 600; }
  @media (max-width: 991px) {
    .cms-counter-wraper .counter-content {
      padding-top: 0; } }
  @media (max-width: 767px) {
    .cms-counter-wraper .counter-content {
      padding-left: 0;
      text-align: center; } }
  .cms-counter-wraper .counter-content .number-counter {
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
    color: #333; }
  .cms-counter-wraper .counter-content .counter-title {
    font-size: 13px;
    color: #787878;
    font-weight: normal;
    text-transform: capitalize;
    display: block;
    margin-top: 3px; }
  .cms-counter-wraper.counter-style-2 .counter-content {
    padding-left: 65px; }

.cms-testimonial .cms-testimonial-wrapper .testimonial-title {
  font-size: 14px;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif; }
  .cms-testimonial .cms-testimonial-wrapper .testimonial-position {
    font-size: 13px;
    line-height: 23px;
    color: #616161; }
  .cms-testimonial .cms-testimonial-wrapper .testimonial-icon {
    background-size: contain;
    width: 26px;
    height: 20px;
    margin: auto;
    position: relative; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-image, .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-image {
    max-width: 80px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-image img, .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-image img {
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */ }
  @media (max-width: 767px) {
    .cms-testimonial.cms-testimonial-layout1 {
      margin-bottom: 100px;
      text-align: center; } }
  .cms-testimonial.cms-testimonial-layout1 .testimonial-image .entry-title {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif; }
  .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-slogan {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 22px;
    margin-top: -3px; }
  @media (max-width: 767px) {
        .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-slogan {
          margin-top: 30px; } }
  .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-meta {
    margin-bottom: 32px; }
  .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-excerpt {
    display: table;
    font-style: italic;
    width: 100%;
    color: #565656;
    margin-bottom: 23px; }
  .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-excerpt i {
    font-weight: bold;
    font-size: 20px;
    float: left;
    color: #aa8533;
    margin-right: 15px; }
  @media (max-width: 767px) {
          .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-excerpt i {
            float: none; } }
  .cms-testimonial.cms-testimonial-layout1 .entry-content .entry-description {
    font-style: italic;
    color: #565656;
    clear: both; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev i, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-next i {
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-right: 0;
    line-height: 40px;
    display: none; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev i:hover, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-next i:hover {
    color: #fff; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-next, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-prev {
    top: 33% !important;
    border: 1px solid #dcdcdc !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-next:hover, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-prev:hover {
    background-color: #aa8533 !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span {
    background-color: transparent; }
    .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span:after {
      border: 1px solid #999; }
    .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span:before {
      border: 1px solid #999; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span {
    background-color: #aa8533 !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span:after {
    border: 1px solid #aa8533; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span:before {
    border: 1px solid #aa8533; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-item {
    padding-top: 50px;
    margin-bottom: 30px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper {
    position: relative;
    -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 */ }
  @media (max-width: 991px) {
      .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper {
        min-height: auto; } }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .testimonial-image {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 81px;
    height: 81px;
    -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 */
    overflow: hidden; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .testimonial-image img {
    -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 */ }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .entry-content {
    text-align: center;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .entry-content .entry-description {
    margin-top: 12px;
    font-size: 13px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .entry-content .testimonial-title {
    margin-top: 40px;
    margin-bottom: 27px;
    font-weight: normal; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .entry-content .testimonial-title a:hover {
    color: #aa8533 !important; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-tranparent {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: rgba(255, 255, 255, 0.25); }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-tranparent .entry-content, .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-tranparent .testimonial-title {
    color: #fff; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-tranparent:hover {
    background-color: rgba(255, 255, 255, 0.50); }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-color {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-color .entry-content {
    color: #565656; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-color .testimonial-title {
    color: #aa8533; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper.background-color:hover {
    background-color: #fff;
    border: 1px solid #aa8533;
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.15); }
  .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot {
    margin-top: 45px; }
  .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot span:before {
    width: 9px;
    height: 9px; }
  .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-next, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-prev {
    color: #fff;
    opacity: 0.3; }
  .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-next:hover, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-prev:hover {
    opacity: 1; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-next, .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-prev {
    background: transparent;
    color: #cecece; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-next:after, .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-prev:after {
    font-size: 50px;
    color: #cecece; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-next:hover, .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-prev:hover {
    background-color: transparent; }
    .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-next:hover:after, .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-prev:hover:after {
      color: #fff; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-prev {
    left: -150px; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium .owl-nav .owl-next {
    right: -150px; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-medium:hover .owl-nav .owl-next, .cms-testimonial.cms-testimonial-layout2.nav-position-medium:hover .owl-nav .owl-prev {
    opacity: 1; }
    .cms-testimonial.cms-testimonial-layout2.nav-position-medium:hover .owl-nav .owl-next:after, .cms-testimonial.cms-testimonial-layout2.nav-position-medium:hover .owl-nav .owl-prev:after {
      color: #fff !important; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-stage-outer {
    padding-left: 25px;
    padding-right: 25px;
    margin-left: -25px;
    margin-right: -25px; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav {
    max-width: 200px;
    top: -53px;
    right: 0 !important;
    position: absolute;
    text-align: right;
    width: 60px; }
  @media (max-width: 767px) {
        .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav {
          max-width: 100%;
          position: static;
          text-align: center;
          width: 100%; } }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-next, .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-prev {
    width: 28px;
    height: 28px;
    -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 */
    line-height: 26px; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-next:after, .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-prev:after {
    font-size: 18px; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-next:hover, .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-prev:hover {
    background-color: #aa8533; }
    .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-next:hover:after, .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-prev:hover:after {
      color: #fff; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-prev {
    left: 0 !important; }
  .cms-testimonial.cms-testimonial-layout2.nav-position-top-right .owl-nav .owl-next {
    right: 0 !important; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta {
    text-align: center;
    padding: 10px;
    padding-bottom: 0; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-image {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px solid #aa8533;
    border-radius: 50%;
    text-align: center; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-image span {
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin: 5px auto;
    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 */ }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-image span img {
    -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 */ }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-icon {
    width: auto;
    height: auto;
    margin: 25px auto 28px;
    text-align: center; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-icon span {
    display: inline-block;
    -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 */
    padding: 6px 23px 6px 50px;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    background-color: #aa8533;
    position: relative; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-icon span i {
    margin-right: 20px;
    font-size: 15px;
    position: absolute;
    bottom: 10px;
    left: 25px; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .testimonial-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 23px;
    margin-bottom: 45px; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .entry-description {
    font-size: 20px;
    line-height: 32px;
    color: #fff; }
  @media (min-width: 767px) {
        .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .entry-description {
          padding-left: 35px;
          padding-right: 35px; } }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .entry-description span.quoter {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px; }
  .cms-testimonial.cms-testimonial-layout3 .testimonial-meta .entry-description span.quoter i {
    position: absolute;
    font-size: 10px;
    left: 4px;
    font-style: italic; }
  .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot span {
    background-color: transparent !important; }
    .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot span:after {
      border: 2px solid #fff; }
    .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot span:before {
      border: 2px solid #fff;
      width: 10px;
      height: 10px; }
  .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot.active span {
    background-color: #fff !important; }
  .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot.active span:after {
    border: 2px solid #fff; }
  .cms-testimonial.cms-testimonial-layout3 .owl-controls .owl-dots .owl-dot.active span:before {
    border: 2px solid #fff; }

.testimonial-star {
  display: block;
  position: relative; }
  @media (max-width: 767px) {
  .testimonial-star {
    display: inline-block; } }
  .testimonial-star:before, .testimonial-star:after {
    font-family: 'FontAwesome';
    font-size: 20px;
    letter-spacing: 3px; }
  .testimonial-star:before {
    content: "\f005 \f005 \f005 \f005 \f005 ";
    color: #b5b5b5; }
  .testimonial-star:after {
    position: absolute;
    top: 0;
    left: 0; }
  .testimonial-star.no-star:after {
    content: "";
    color: ; }
  .testimonial-star.star1:after {
    content: "\f005 ";
    color: #aa8533; }
  .testimonial-star.star2:after {
    content: "\f005 \f005 ";
    color: #aa8533; }
  .testimonial-star.star3:after {
    content: "\f005 \f005 \f005 ";
    color: #aa8533; }
  .testimonial-star.star4:after {
    content: "\f005 \f005 \f005 \f005 ";
    color: #aa8533; }
  .testimonial-star.star5:after {
    content: "\f005 \f005 \f005 \f005 \f005 ";
    color: #aa8533; }

.cms-team-layout2 {
  /* 
   [Start] 9. Team
   +-----------------------------------+
*/ }
  .cms-team-layout2 .cms-team-layout-item {
    padding: 10px 0; }
  .cms-team-layout2 .cms-team-layout-wrapper {
    background-color: #fff;
    padding: 75px 30px 60px;
    position: relative;
    margin-top: 72px;
    border: 1px solid #efefef;
    margin-bottom: 72px;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    /* BACKGROUND GRADIENT */ }
  .cms-team-layout2 .cms-team-layout-wrapper:hover {
    background-color: #b7b7b7;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    color: #fff; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-image {
    display: inline-block;
    margin: auto;
    width: 132px;
    max-width: 132px;
    overflow: hidden;
    height: 132px;
    border: 5px solid #b7b7b7;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */
    position: absolute;
    top: -72px;
    left: 24%;
    z-index: 99; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-team-layout-title {
    margin-top: 15px;
    margin-bottom: 2px;
    font-size: 20px; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-specialized {
    margin: 10px 0;
    font-size: 15px;
    font-weight: normal; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-team-layout-social {
    padding: 20px 0 25px; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-team-layout-social ul li {
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px; }
    .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-team-layout-social ul li a {
      display: block;
      color: #222;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      -webkit-border-radius: 100%;
      -khtml-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      border-radius: 100%;
      /* BACKGROUND GRADIENT */ }
      .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-meta .cms-team-layout-social ul li a:hover {
        background-color: #aa8533;
        color: #fff; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-content {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    padding-top: 5px;
    padding-bottom: 16px; }
  .cms-team-layout2 .cms-team-layout-wrapper .cms-team-layout-content p {
    font-family: arial; }
  .cms-team-layout2 .owl-controls {
    display: none; }

.cms-layout-team .team-header, .cms-grid-team .team-header, .site-attorney-category .team-header {
  margin-bottom: 26px;
  overflow: hidden; }
  .cms-layout-team .entry-title, .cms-grid-team .entry-title, .site-attorney-category .entry-title {
    font-weight: normal;
    font-size: 20px; }
  .cms-layout-team .entry-title a, .cms-grid-team .entry-title a, .site-attorney-category .entry-title a {
    font-weight: bold; }
  .cms-layout-team .entry-title a:hover, .cms-grid-team .entry-title a:hover, .site-attorney-category .entry-title a:hover {
    color: #222; }
  .cms-layout-team .entry-title span, .cms-grid-team .entry-title span, .site-attorney-category .entry-title span {
    font-weight: normal; }
  .cms-layout-team .entry-specialized, .cms-grid-team .entry-specialized, .site-attorney-category .entry-specialized {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    color: #787878;
    padding-top: 23px;
    padding-bottom: 26px;
    margin-top: 26px;
    margin-bottom: 25px; }
  .cms-layout-team .entry-metasocial a.entry-phone, .cms-grid-team .entry-metasocial a.entry-phone, .site-attorney-category .entry-metasocial a.entry-phone {
    display: inline-block;
    color: #aa8533;
    position: relative;
    padding-right: 19px;
    margin-right: 15px; }
  .cms-layout-team .entry-metasocial a.entry-phone:before, .cms-grid-team .entry-metasocial a.entry-phone:before, .site-attorney-category .entry-metasocial a.entry-phone:before {
    position: absolute;
    display: block;
    content: "";
    background-color: #d6d6d6;
    height: 11px;
    width: 1px;
    bottom: 6px;
    top: 6px;
    right: 0px; }
  .cms-layout-team .entry-metasocial .social-meta, .cms-grid-team .entry-metasocial .social-meta, .site-attorney-category .entry-metasocial .social-meta {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0; }
  .cms-layout-team .entry-metasocial .social-meta li, .cms-grid-team .entry-metasocial .social-meta li, .site-attorney-category .entry-metasocial .social-meta li {
    margin-right: 20px; }
  .cms-layout-team .entry-metasocial .social-meta li a, .cms-grid-team .entry-metasocial .social-meta li a, .site-attorney-category .entry-metasocial .social-meta li a {
    font-size: 15px;
    font-weight: bold;
    color: #333; }
  .cms-layout-team .entry-metasocial .social-meta li a:hover, .cms-grid-team .entry-metasocial .social-meta li a:hover, .site-attorney-category .entry-metasocial .social-meta li a:hover {
    color: #aa8533; }
  .cms-layout-team .entry-metasocial .social-meta li:last-child, .cms-grid-team .entry-metasocial .social-meta li:last-child, .site-attorney-category .entry-metasocial .social-meta li:last-child {
    margin-right: 0; }

.cms-layout-team.layout2 .email-attorney {
  color: #aa8533; }

.site-attorney-category .col-team {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 991px) {
  .site-attorney-category .col-team {
    margin-bottom: 25px;
    margin-top: 25px; } }

.hover-enable {
  position: relative; }
  .hover-enable:before, .hover-enable:after {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: absolute;
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0; }
  .hover-enable:before {
    background: url(../images/mask-overlay-top.png) center center / 100% 100%;
    top: -100%; }
  .hover-enable:after {
    background: url(../images/mask-overlay-bottom.png) center center / 100% 100%;
    bottom: -100%; }
  .hover-enable:hover:after, .hover-enable:hover:before {
    opacity: 1; }
  .hover-enable:hover:before {
    top: 0; }
  .hover-enable:hover:after {
    bottom: 0; }
  .hover-enable:hover .iamge-overlay {
    opacity: 1 !important; }
  @media (max-width: 767px) {
    .hover-enable img {
      width: 100%; } }

.hover-desible .cms-svg img {
  opacity: 0; }

.team-header, .entry-header, .single-service-image {
  position: relative; }
  .team-header:hover .cms-svg, .entry-header:hover .cms-svg, .single-service-image:hover .cms-svg {
    opacity: 1;
    z-index: 3; }

.cms-svg {
  max-width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0; }
  .cms-svg svg path {
    fill: #aa8533; }
  .cms-svg svg {
    width: 65px; }

.cms-layout-team .cms-team-images .imghvr-shutter-out-diag-1 {
  background-color: rgba(0, 0, 0, 0.3); }
  .cms-layout-team .cms-team-images .imghvr-shutter-out-diag-1:before {
    background-color: rgba(0, 0, 0, 0.3); }
  .cms-grid-team {
    /* 
   [Start] 10. Heading
   +-----------------------------------+
*/ }
  .cms-grid-team .cms-grid-item {
    margin-bottom: 95px; }
  .cms-grid-team .cms-grid-item .cms-team-images .imghvr-shutter-out-diag-1 {
    background-color: rgba(0, 0, 0, 0.3); }
  .cms-grid-team .cms-grid-item .cms-team-images .imghvr-shutter-out-diag-1:before {
    background-color: rgba(0, 0, 0, 0.3); }
  .cms-heading-wrapper.cms-heading-default .title1 {
    font-size: 35px;
    color: #333; }
  .cms-heading-wrapper.cms-heading-layout1 {
    text-align: left; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style1 {
    font-size: 35px;
    line-height: 1.2;
    position: relative;
    padding-top: 50px; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style1:before, .cms-heading-wrapper.cms-heading-layout1 .title.heading-style1:after {
    position: absolute;
    display: block;
    content: "";
    text-align: center;
    top: 0;
    height: 1px;
    left: 0; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style1:before {
    background-color: #ddd;
    width: 100%; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style1:after {
    z-index: 3;
    width: 33px;
    background-color: #aa8533; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style2 {
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 35px;
    position: relative; }
  .cms-heading-wrapper.cms-heading-layout1 .title.heading-style2:before {
    position: absolute;
    display: block;
    content: "";
    text-align: center;
    bottom: 0;
    height: 1px;
    left: 0;
    background-color: #aa8533;
    width: 100px; }
  .cms-heading-wrapper.cms-heading-layout2 {
    text-align: center; }
  .cms-heading-wrapper.cms-heading-layout2 .cms-heading-content {
    display: inline-block;
    margin: 0 auto; }
  .cms-heading-wrapper.cms-heading-layout2 .title {
    font-size: 35px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 35px; }
  .cms-heading-wrapper.cms-heading-layout2 .title cite {
    font-style: normal;
    color: #aa8533; }
  .cms-heading-wrapper.cms-heading-layout2 .title:before, .cms-heading-wrapper.cms-heading-layout2 .title:after {
    position: absolute;
    display: block;
    content: "";
    height: 4px;
    text-align: center;
    bottom: -30px;
    height: 1px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) scale(0.5);
    -khtml-transform: translate(-50%, 0%) scale(0.5);
    -moz-transform: translate(-50%, 0%) scale(0.5);
    -ms-transform: translate(-50%, 0%) scale(0.5);
    -o-transform: translate(-50%, 0%) scale(0.5);
    transform: translate(-50%, 0%) scale(0.5);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-heading-wrapper.cms-heading-layout2 .title:before {
    background-color: #ddd;
    width: 500px; }
  .cms-heading-wrapper.cms-heading-layout2 .title:after {
    z-index: 3;
    width: 100px;
    background-color: #aa8533; }
  .cms-heading-wrapper.cms-heading-layout3 cite {
    color: #aa8533;
    font-style: normal; }
  @media (max-width: 360px) {
    .cms-heading-wrapper.cms-heading-layout1, .cms-heading-wrapper.cms-heading-layout3 {
      text-align: center; } }

.social-connect {
  padding-top: 3px; }
  .social-connect a {
    font-size: 26px;
    padding-right: 20px; }

.cms-edge-wrapper {
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  /* 
   [Start] 11. Fancybox
   +-----------------------------------+
*/ }
  .cms-edge-wrapper svg {
    position: absolute;
    left: 0;
    right: 0; }
  .cms-edge-wrapper.edge-top {
    top: 0; }
  .cms-edge-wrapper.edge-top svg {
    transform: rotate(180deg);
    top: 0; }
  .cms-edge-wrapper.edge-top.edge-style3 svg {
    transform: rotate(0deg); }
  .cms-edge-wrapper.edge-bottom {
    bottom: 0; }
  .cms-edge-wrapper.edge-bottom svg {
    bottom: 0; }
  .cms-edge-wrapper.edge-bottom.edge-style3 svg {
    transform: rotate(180deg); }

.cms-fancyboxes-wraper .cms-button-wrapper .btn-text {
  font-size: 13px;
  text-transform: uppercase;
  color: #aa8533;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  padding-bottom: 6px; }
  .cms-fancyboxes-wraper .fancybox-icon i {
    font-size: 40px;
    color: #aa8533;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    display: inline-block; }
  .cms-fancyboxes-wraper .fancybox-icon i:hover {
    font-size: 42px; }
  .cms-fancyboxes-wraper .fancybox-icon img {
    max-width: 70px;
    max-height: 70px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item {
    margin: 30px 0; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-icon {
    margin-bottom: 23px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-icon i {
    height: 124px;
    width: 124px;
    font-size: 35px;
    display: inline-block;
    border: 1px solid #aa8533;
    border-radius: 50%;
    text-align: center;
    line-height: 124px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-icon i:hover {
    background-color: #aa8533;
    color: #fff;
    border: 1px solid #f90; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-icon img {
    max-width: 120px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .fancybox-title {
    margin-bottom: 15px;
    color: #999;
    font-size: 20px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cs-carousel-item-wrap .cms-fancybox-item:nth-child(2) {
    margin-top: 48px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item:hover .fancybox-title {
    color: #aa8533; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item:hover i {
    background-color: #aa8533;
    color: #333;
    border: 1px solid #f90; }
  @media (max-width: 360px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-item {
        margin-bottom: 30px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon {
    float: left;
    max-width: 70px;
    max-height: 70px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #aa8533;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    margin-top: 3px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s; }
  @media (max-width: 360px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon img, .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon i {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon img {
    max-width: 37px;
    height: auto;
    max-height: 37px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon i {
    text-align: center;
    color: #aa8533;
    font-size: 30px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon i:hover {
    color: #aa8533; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon:hover {
    -webkit-transform: translateY(-5px);
    -khtml-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon:hover i, .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-icon:hover img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg); }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-content {
    padding-left: 100px; }
  @media (max-width: 360px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-title {
    margin-bottom: 10px;
    color: #565656;
    margin-top: -5px;
    font-size: 20px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .fancybox-description {
    font-size: 15px;
    color: #787878; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-item {
    border: 1px solid #e6e6e6;
    text-align: center;
    min-height: 360px;
    margin-bottom: 30px;
    padding: 40px 40px 50px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-icon-image {
    text-align: center; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-icon-image img {
    max-width: 48px;
    max-height: 100px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-icon {
    min-height: 60px;
    font-size: 35px;
    color: #aa8533; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-icon i {
    margin-top: 5px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-title {
    color: #565656;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .fancybox-content {
    font-size: 15px;
    color: #777; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .button-wrapper .read-more-style1 {
    margin-top: 20px;
    color: #aa8533 !important; }
  @media screen and (max-width: 991px) {
 }
  @media screen and (max-width: 767px) {
 }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item {
    color: #fff;
    text-align: center;
    position: relative;
    margin: 0 0 15px;
    padding: 40px 40px 30px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fancybox-icon {
    margin-bottom: 25px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fancybox-title {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 10px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fancybox-description {
    font-size: 15px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 {
    padding-top: 28px;
    padding-left: 0;
    padding-right: 0; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon {
    width: 90px;
    height: 90px;
    line-height: 88px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    border: 1px solid #aa8533;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    color: #aa8533;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    position: relative; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon:before {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    position: absolute;
    display: block;
    content: "";
    border: 1px solid transparent;
    -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 */
    top: 7px;
    bottom: 7px;
    left: 7px;
    right: 7px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon i {
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%); }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon:hover {
    background-color: #aa8533;
    color: #fff; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon:hover:before {
    border-color: #fff; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-icon:hover i {
    color: #fff; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #565656; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .fcb-style2 .fancybox-description {
    font-size: 15px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 {
    padding: 0 60px;
    text-align: center; }
  @media (max-width: 767px) {
    .cms-fancyboxes-wraper.cms-fancyboxes-layout4 {
      padding-left: 0;
      padding-right: 0; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .fancybox-icon {
    margin-bottom: 25px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .fancybox-content .fancybox-description {
    margin-bottom: 54px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .button-wrapper .read-more {
    padding: 11px 25px;
    text-align: center;
    background-color: #aa8533;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .fancybox-icon {
    display: table;
    width: 100%;
    margin-bottom: 10px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .fancybox-icon i {
    float: left;
    font-size: 30px;
    margin-right: 12px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .fancybox-icon img {
    max-width: 30px;
    max-height: 30px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .fancybox-icon .fancybox-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .fancybox-description {
    font-size: 15px;
    clear: both; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .cms-fancybox-item {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  @media (max-width: 767px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .cms-fancybox-item {
        position: relative;
        padding-top: 20px;
        padding-bottom: 50px;
        margin-bottom: 70px; }
        .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .cms-fancybox-item:before {
          position: absolute;
          display: block;
          content: "";
          background-color: #ddd;
          height: 1px;
          width: 250px;
          bottom: -50px;
          left: 50%;
          -webkit-transform: translate(-50%, 0%) scale(0.5);
          -khtml-transform: translate(-50%, 0%) scale(0.5);
          -moz-transform: translate(-50%, 0%) scale(0.5);
          -ms-transform: translate(-50%, 0%) scale(0.5);
          -o-transform: translate(-50%, 0%) scale(0.5);
          transform: translate(-50%, 0%) scale(0.5);
          /* BACKGROUND GRADIENT */
          /* TRANSFORM STYLE */ }
        .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .cms-fancybox-item:hover {
          background-color: #f1f1f1; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon {
    position: relative;
    margin-bottom: 35px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .box-media {
    max-width: 50px;
    position: absolute;
    max-height: 50px;
    left: 0;
    bottom: 0; }
  @media (max-width: 767px) {
        .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .box-media {
          max-width: 100%;
          position: static;
          text-align: center; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .box-media img {
    max-width: 49px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .box-media i {
    color: #aa8533;
    font-size: 30px;
    margin-right: 20px;
    margin-bottom: 2px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .fancybox-title {
    padding-left: 72px;
    font-weight: bold;
    color: #565656;
    font-size: 20px; }
  @media (max-width: 767px) {
        .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-icon .fancybox-title {
          padding-left: 0;
          text-align: center; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-content {
    font-weight: normal;
    clear: both;
    color: #777; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-content .read-more {
    margin-top: 38px;
    color: #aa8533; }
  @media (max-width: 767px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-content {
        text-align: center; } }
  @media (min-width: 361px) and (max-width: 767px) {
      .cms-fancyboxes-wraper.cms-fancyboxes-layout6 .fancybox-content {
        padding-left: 50px;
        padding-right: 50px; } }

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg); }

  to {
    -webkit-transform: rotate(360deg); } }

@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg); }

  to {
    -moz-transform: rotate(360deg); } }

@keyframes spinAround {
  from {
    transform: rotate(0deg); }

  to {
    transform: rotate(360deg); } }

.cms-list-item {
  padding: 6px 0; }
  .cms-list-item span {
    display: inline-block; }
  .cms-list-item .cms-list-label {
    color: #565656;
    margin-right: 5px; }
  .cms-list-item .cms-list-text a {
    color: #aa8533; }

.cms-progress-layout1 {
  margin-bottom: 42px;
  padding-top: 10px; }
  .cms-progress-layout1 .cms-progress-title {
    margin-bottom: 9px;
    font-size: 15px;
    color: #565656;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; }
  .cms-progress-layout1 .cms-progress {
    height: 10px;
    width: 100%;
    background-color: transparent;
    -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 */
    overflow: visible;
    margin-bottom: 8px; }
  .cms-progress-layout1 .cms-progress .progress-bar {
    background-image: none;
    background-color: #aa8533;
    overflow: visible;
    -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 */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  .cms-progress-layout1 .cms-progress .progress-couter {
    color: #9b9b9b;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    right: 0;
    top: 15px; }

.cms-process-layout {
  margin-bottom: 30px; }
  .cms-process-layout .entry-process {
    overflow: hidden;
    font-family: 'Montserrat', sans-serif; }
  .cms-process-layout:last-child {
    margin-bottom: 0; }
  .cms-process-layout span.number-title {
    display: inline-block;
    float: left;
    letter-spacing: 0.05em;
    min-width: 140px;
    padding: 10px 35px;
    border: 2px solid #aa8533;
    color: #aa8533;
    font-size: 25px;
    margin-right: 30px;
    font-weight: normal;
    text-align: center; }
  .cms-process-layout .title {
    margin-top: 10px;
    display: inline-block;
    font-size: 20px;
    color: #565656;
    font-weight: 500;
    letter-spacing: 0.05em; }
  .cms-process-layout .supb-title {
    clear: both;
    margin-top: 10px;
    font-size: 15px;
    color: #777; }

.cms-mediadropcap {
  padding-top: 25px;
  padding-bottom: 25px; }
  @media (max-width: 767px) {
  .cms-mediadropcap {
    padding-bottom: 70px; } }
  .cms-mediadropcap:first-child {
    padding-top: 0; }
  .cms-mediadropcap:last-child {
    padding-bottom: 0; }
  .cms-mediadropcap:last-child .mediadropcap-col-thumbnail .cms-mediadropcap-image:before {
    position: absolute;
    display: block;
    content: "";
    height: 50px;
    width: 1px;
    background-color: transparent !important;
    bottom: -50px;
    right: -1px; }
  .cms-mediadropcap .mediadropcap-col-thumbnail {
    padding-right: 50px;
    border-right: 1px solid #e4e4e4;
    position: relative; }
  @media (max-width: 767px) {
    .cms-mediadropcap .mediadropcap-col-thumbnail {
      border-right: none; } }
  .cms-mediadropcap .mediadropcap-col-thumbnail:before, .cms-mediadropcap .mediadropcap-col-thumbnail:after {
    position: absolute;
    display: block;
    content: "";
    -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 */
    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 */ }
  .cms-mediadropcap .mediadropcap-col-thumbnail:before {
    right: -10px;
    height: 20px;
    width: 20px;
    border: 1px solid #e4e4e4;
    background: #fff; }
  @media (max-width: 767px) {
      .cms-mediadropcap .mediadropcap-col-thumbnail:before {
        background-color: transparent;
        border-color: transparent; } }
  .cms-mediadropcap .mediadropcap-col-thumbnail:after {
    right: -5px;
    height: 10px;
    width: 10px;
    z-index: 33;
    background: #aa8533; }
  @media (max-width: 767px) {
      .cms-mediadropcap .mediadropcap-col-thumbnail:after {
        background-color: transparent;
        border-color: transparent; } }
  .cms-mediadropcap .mediadropcap-col-thumbnail .cms-mediadropcap-image:before {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
    bottom: -100%;
    right: -1px; }
  @media (max-width: 767px) {
        .cms-mediadropcap .mediadropcap-col-thumbnail .cms-mediadropcap-image:before {
          background-color: transparent;
          border-color: transparent; } }
  @media (max-width: 767px) {
    .cms-mediadropcap .mediadropcap-col-thumbnail {
      margin-bottom: 50px; } }
  .cms-mediadropcap .mediadropcap-col-content {
    padding-left: 50px; }
  @media (max-width: 767px) {
    .cms-mediadropcap .mediadropcap-col-thumbnail, .cms-mediadropcap .mediadropcap-col-content {
      padding-left: 15px;
      padding-right: 15px; } }
  .cms-mediadropcap .entry-process {
    display: table;
    width: 100%;
    font-family: 'Montserrat', sans-serif; }
  .cms-mediadropcap:last-child {
    margin-bottom: 0; }
  .cms-mediadropcap span.number-title {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 25px;
    border: 2px solid #aa8533;
    color: #aa8533;
    font-size: 20px;
    min-width: 110px;
    margin-right: 30px;
    font-weight: normal;
    float: left;
    text-align: center; }
  @media (max-width: 360px) {
    .cms-mediadropcap span.number-title {
      float: none;
      display: block;
      margin-right: 0; } }
  .cms-mediadropcap .title {
    margin-top: 4px;
    font-size: 20px;
    color: #565656;
    font-weight: 500; }
  .cms-mediadropcap .supb-title {
    clear: both;
    margin-top: 28px;
    font-size: 15px;
    color: #777; }

.cms-button {
  /* 
   [Start] 13. Acordant
   +-----------------------------------+
*/ }
  .cms-button .btn-default {
    padding: 10px 28px;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    background: #aa8533;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    -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 */
    position: relative; }
  .cms-button .btn-default span {
    color: #fff;
    position: relative; }
  .cms-button .btn-default:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background: rgba(34, 34, 34, 0.9);
    transition: all 300ms ease; }
  .cms-button .btn-default:hover:before {
    width: 100%; }
  .cms-button .btn-style1 {
    font-size: 15px;
    position: relative;
    color: #aa8533;
    display: inline-block;
    line-height: 12px;
    margin-top: 40px; }
  .cms-button .btn-style1:hover {
    color: #aa8533; }
  .cms-button .btn-style1:hover:before {
    width: 100%;
    opacity: 1; }
  .cms-button .btn-style1:before, .cms-button .btn-style1:after {
    position: absolute; }
  .cms-button .btn-style1:before {
    display: block;
    content: "";
    background-color: #aa8533;
    height: 1px;
    width: 100%;
    opacity: 0;
    bottom: -6px; }
  .cms-button .btn-style1:after {
    content: "\f178";
    top: 1px;
    right: -25px;
    font-size: 15px;
    color: #aa8533;
    font-family: "FontAwesome"; }
  .cms-button .btn-style2 {
    background: transparent;
    border: 2px solid #aa8533;
    padding: 9px 26px;
    color: #aa8533; }
  .cms-button .btn-style2:hover {
    background-color: #333;
    border-color: #333;
    color: #fff; }
  .cms-button.button-center {
    text-align: center; }
  .cms-button.button-left {
    text-align: left; }
  .cms-button.button-right {
    text-align: right; }
  @media (max-width: 360px) {
    .cms-button.button-right, .cms-button.button-left {
      text-align: center; } }

.vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  display: block;
  border: 1px solid #d3d3d3 !important;
  height: 38px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  line-height: 38px;
  font-weight: bold;
  color: #999;
  font-family: 'Montserrat', sans-serif;
  padding: 0 18px !important; }
  .vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:before {
    width: 0 !important;
    height: 0 !important; }
  .vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:after {
    width: 0 !important;
    height: 0 !important; }
  .vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
    border: 1px solid #aa8533 !important;
    background-color: #aa8533 !important;
    color: #fff !important; }
  .vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    border: 1px solid #aa8533 !important;
    background-color: #aa8533 !important;
    color: #fff !important; }
  .vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding-bottom: 30px;
    background-color: white !important;
    font-size: 15px; }
  .vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body p {
    margin-bottom: 23px; }
  .vc_tta-tabs.vc_tta-style-classic {
    padding: 14px 80px 14px 17px;
    border: 1px solid #d2d2d2; }
  .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding-left: 0;
    padding-right: 0; }
    .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading {
      color: #565656;
      font-size: 15px;
      text-transform: uppercase;
      margin-top: 23px;
      margin-bottom: 19px; }
      .vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading span {
        font-weight: 400 !important; }
  .vc_tta-tabs.vc_tta-style-modern {
    padding: 30px 40px 14px 17px;
    border: 1px solid #d2d2d2; }
  .vc_tta-tabs.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding-left: 0;
    padding-top: 0;
    padding-right: 50px;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif;
    color: #999; }
    .vc_tta-tabs.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading {
      color: #777;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 15px;
      margin-top: 0px;
      margin-bottom: 19px; }
      .vc_tta-tabs.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading span {
        font-weight: 400 !important; }
  .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container {
    max-width: 150px;
    width: 150px; }
  .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
    margin-bottom: 5px; }
  .vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
    text-transform: uppercase;
    text-align: right;
    padding: 0 28px 0 10px !important; }
    .vc_tta-tabs.vc_tta-style-modern .vc_tta-panel-body {
      padding-bottom: 17px !important; }

.vc_tta-accordion {
  /* 
   [Start] 14. Blog Grid
   +-----------------------------------+
*/
  /* Grid Blog */ }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels {
    border: 1px solid #c5c5c5;
    padding: 10px 30px;
    background-color: #fff; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel {
    border-bottom: none; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
    background-color: #fff !important;
    border: 1px solid transparent !important;
    margin: 0 !important; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: 1px solid #d6d6d6; }
    .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
      padding-left: 0;
      color: #565656;
      letter-spacing: 0.05em;
      font-size: 18px; }
      .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i.vc_tta-icon {
        color: #aa8533;
        font-size: 18px;
        margin-right: -2px; }
      .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i.vc_tta-controls-icon {
        height: 17px;
        width: 17px;
        left: 96%; }
        .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
          border: none;
          padding: 16px 0 25px;
          background-color: #fff !important; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: 1px solid transparent; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-body {
    border-bottom: 1px solid #d6d6d6; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel:last-child .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: 1px solid transparent; }
  .vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel:last-child .vc_tta-panel-body {
    border-bottom: 1px solid transparent; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
    border: 1px solid #c5c5c5;
    border-bottom: none;
    font-family: 'Montserrat', sans-serif; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
    padding-left: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: 'Montserrat', sans-serif; }
    .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i {
      display: none; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body {
    border: none !important;
    padding: 26px 24px 36px;
    font-family: 'PT Sans', sans-serif; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel:last-child .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: 1px solid #c5c5c5; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel:last-child .vc_tta-panel-body {
    padding-bottom: 0; }
  .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
    border: 1px solid #aa8533;
    background-color: #aa8533; }
    .vc_tta-accordion.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #fff !important;
      font-family: 'Montserrat', sans-serif; }
  .vc_tta-accordion .vc_tta-panels .vc_tta-panel-heading .vc_tta-panel-title a {
    color: #999;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif; }
  .cms-carousel .entry-blog, .cms-carousel-blog .entry-blog, .cms-carousel-service .entry-blog {
    margin-bottom: 30px;
    padding-bottom: 30px; }
  .cms-carousel .entry-blog .entry-header, .cms-carousel-blog .entry-blog .entry-header, .cms-carousel-service .entry-blog .entry-header {
    margin-bottom: 25px;
    overflow: hidden; }
  .cms-carousel .entry-blog .entry-meta ul, .cms-carousel-blog .entry-blog .entry-meta ul, .cms-carousel-service .entry-blog .entry-meta ul {
    padding-left: 0; }
  .cms-carousel .entry-blog .entry-meta.entry-meta-style3, .cms-carousel-blog .entry-blog .entry-meta.entry-meta-style3, .cms-carousel-service .entry-blog .entry-meta.entry-meta-style3 {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 2px 0;
    margin-bottom: 5px; }
  .cms-carousel .entry-blog .entry-meta.entry-meta-style3 ul, .cms-carousel-blog .entry-blog .entry-meta.entry-meta-style3 ul, .cms-carousel-service .entry-blog .entry-meta.entry-meta-style3 ul {
    padding-left: 0;
    list-style: none; }
  .cms-carousel .entry-blog .entry-meta.entry-meta-style3 li.counter-view, .cms-carousel-blog .entry-blog .entry-meta.entry-meta-style3 li.counter-view, .cms-carousel-service .entry-blog .entry-meta.entry-meta-style3 li.counter-view {
    display: none; }
  .cms-carousel .entry-blog .entry-title, .cms-carousel-blog .entry-blog .entry-title, .cms-carousel-service .entry-blog .entry-title {
    font-size: 20px;
    margin-bottom: 30px; }
  .cms-carousel .entry-blog .entry-footer .read-more, .cms-carousel-blog .entry-blog .entry-footer .read-more, .cms-carousel-service .entry-blog .entry-footer .read-more {
    margin-top: 34px;
    color: #aa8533; }
  .cms-carousel .pagination, .cms-carousel-blog .pagination, .cms-carousel-service .pagination {
    margin-top: 20px; }
  .cms-carousel .owl-controls .owl-nav .owl-prev, .cms-carousel-blog .owl-controls .owl-nav .owl-prev, .cms-carousel-service .owl-controls .owl-nav .owl-prev, .cms-carousel .owl-controls .owl-nav .owl-next, .cms-carousel-blog .owl-controls .owl-nav .owl-next, .cms-carousel-service .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 26%;
    transform: translate(0%, -50%); }

.cms-carousel-service .owl-controls .owl-nav .owl-prev, .cms-carousel-service .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  transform: translate(0%, -50%); }
  .cms-carousel-service .owl-controls .owl-dots .owl-dot {
    margin-top: 45px; }
  .cms-carousel-service .owl-controls .owl-dots .owl-dot span:before {
    width: 9px;
    height: 9px; }
  .cms-carousel-service .owl-controls .owl-nav .owl-next, .cms-carousel-service .owl-controls .owl-nav .owl-prev {
    color: #fff;
    opacity: 0.3; }
  .cms-carousel-service .owl-controls .owl-nav .owl-next:hover, .cms-carousel-service .owl-controls .owl-nav .owl-prev:hover {
    opacity: 1; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-next, .cms-carousel-service.nav-position-medium .owl-nav .owl-prev {
    background: transparent;
    color: #cecece; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-next:after, .cms-carousel-service.nav-position-medium .owl-nav .owl-prev:after {
    font-size: 50px; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-next:hover, .cms-carousel-service.nav-position-medium .owl-nav .owl-prev:hover {
    background-color: transparent; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-next:hover:after, .cms-carousel-service.nav-position-medium .owl-nav .owl-prev:hover:after {
    color: #fff; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-prev {
    left: -150px; }
  .cms-carousel-service.nav-position-medium .owl-nav .owl-next {
    right: -150px; }
  .cms-carousel-service.nav-position-top-right .owl-nav {
    max-width: 200px;
    top: -72px;
    right: 0 !important;
    position: absolute;
    text-align: right;
    width: 100px; }
  @media (max-width: 767px) {
      .cms-carousel-service.nav-position-top-right .owl-nav {
        max-width: 100%;
        position: static;
        text-align: center;
        width: 100%; } }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-next, .cms-carousel-service.nav-position-top-right .owl-nav .owl-prev {
    width: 45px;
    height: 45px;
    background-color: transparent !important;
    border: 1px solid #999 !important;
    -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 */
    line-height: 43px; }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-next:after, .cms-carousel-service.nav-position-top-right .owl-nav .owl-prev:after {
    font-weight: bold;
    font-size: 20px !important;
    color: #999 !important; }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-next:hover, .cms-carousel-service.nav-position-top-right .owl-nav .owl-prev:hover {
    background-color:  !important;
    border-color: #aa8533 !important; }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-next:hover:after, .cms-carousel-service.nav-position-top-right .owl-nav .owl-prev:hover:after {
    color: #aa8533 !important; }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-prev {
    left: 0 !important; }
  .cms-carousel-service.nav-position-top-right .owl-nav .owl-next {
    right: 0 !important; }
  .cms-carousel-service .entry-blog .entry-title {
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    margin-bottom: 18px; }
  .cms-carousel-service .entry-blog .entry-title a {
    color: #565656; }

.cms-carousel-blog .entry-meta-style3 ul {
  margin-bottom: 0;
  padding-left: 0; }

.cms-grid-wraper.cms-grid-blog .entry-title {
  font-size: 20px;
  font-weight: bold; }
  .cms-grid-wraper.cms-grid-blog .entry-title a:hover {
    color: #aa8533; }
  .cms-grid-wraper.cms-grid-blog1 .cms-grid-item {
    margin-bottom: 80px; }
  .cms-grid-wraper.cms-grid-blog1.cms-related-post-inner .cms-grid-item {
    margin-bottom: 0px; }
  .cms-grid-wraper.cms-grid-blog1 .entry-header {
    margin-bottom: 43px;
    overflow: hidden; }
  .cms-grid-wraper.cms-grid-blog1 .entry-header img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .cms-grid-wraper.cms-grid-blog1 .entry-header img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .cms-grid-wraper.cms-grid-blog1 .entry-meta {
    margin-bottom: 6px; }
  .cms-grid-wraper.cms-grid-blog1 .entry-meta ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; }
  .cms-grid-wraper.cms-grid-blog1 .entry-title {
    margin-bottom: 27px;
    position: relative; }
  .cms-grid-wraper.cms-grid-blog1 .entry-title:before, .cms-grid-wraper.cms-grid-blog1 .entry-title:after {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -14px; }
  .cms-grid-wraper.cms-grid-blog1 .entry-title:before {
    background-color: #ddd; }
  .cms-grid-wraper.cms-grid-blog1 .entry-title:after {
    z-index: 3;
    width: 60px;
    background-color: #aa8533; }
  .cms-grid-wraper.cms-grid-blog1 .entry-excerpt {
    margin-bottom: 22px; }
  .cms-grid-wraper.cms-grid-blog2 .cms-grid-item {
    margin-bottom: 40px; }
  .cms-grid-wraper.cms-grid-blog2 .cms-grid-item:last-child {
    margin-bottom: 0; }
  .cms-grid-wraper.cms-grid-blog2 .entry-blog-grid {
    display: table;
    width: 100%; }
  .cms-grid-wraper.cms-grid-blog2 .entry-header {
    max-width: 140px;
    float: left;
    overflow: hidden; }
  .cms-grid-wraper.cms-grid-blog2 .entry-header img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .cms-grid-wraper.cms-grid-blog2 .entry-header img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .cms-grid-wraper.cms-grid-blog2 .entry-body {
    padding-left: 170px; }
  @media (max-width: 360px) {
    .cms-grid-wraper.cms-grid-blog2 .entry-header, .cms-grid-wraper.cms-grid-blog2 .entry-body {
      max-width: 100%;
      float: none;
      width: 100%;
      margin-bottom: 30px; }

    .cms-grid-wraper.cms-grid-blog2 .entry-body {
      padding-left: 0px; } }
  .cms-grid-wraper.cms-grid-blog2 .entry-meta .counter-view {
    display: none; }
  .cms-grid-wraper.cms-grid-blog2 .entry-title {
    margin-top: -4px;
    margin-bottom: 10px; }
  .cms-grid-wraper.cms-grid-blog2 .entry-title a {
    color: #565656; }
  .cms-grid-wraper.cms-grid-blog2 .entry-title a:hover {
    color: #aa8533 !important; }
  .cms-related-post-inner .cms-grid-wraper.cms-grid-blog .entry-title {
    font-size: 20px;
    font-weight: normal; }

.box-style-dark {
  /* Grid Blog */ }
  .box-style-dark .entry-blog {
    background-color: #1d1d1d; }
  .box-style-dark .entry-blog .entry-title a {
    color: #fff; }
  .box-style-dark .entry-blog .entry-title a:hover {
    color: #aa8533; }

.cms-carousel-client {
  /* 
   [Start] 19. Image Grid Gallery
   +-----------------------------------+
*/ }
  .cms-carousel-client .cs-carousel-item-wrap .cms-carousel-item {
    overflow: hidden;
    border: 1px solid #787878;
    padding: 1px;
    text-align: center; }
  @media (min-width: 991px) {
      .cms-carousel-client .cs-carousel-item-wrap .cms-carousel-item {
        min-height: 90px;
        padding: 3px; } }
  .cms-carousel-client .cs-carousel-item-wrap .cms-carousel-item:hover {
    border-color: #aa8533; }
  .cms-carousel-client .cs-carousel-item-wrap .cms-carousel-item img {
    margin: 0 auto;
    max-height: 92px;
    width: auto; }
  .cms-carousel-client .cs-carousel-item-wrap .cms-carousel-item:first-child {
    margin-bottom: 20px; }
  .cms-carousel-client .owl-controls .owl-nav .owl-prev, .cms-carousel-client .owl-controls .owl-nav .owl-next {
    top: 50%; }
  .cms-carousel-client .owl-stage-outer {
    padding-left: 1px;
    padding-right: 1px;
    margin-right: -1px;
    margin-left: -1px; }
  .cms-carousel-client.layout2 .cms-carousel-item {
    overflow: hidden;
    border: 1px solid #787878;
    padding: 1px;
    text-align: center; }
  @media (min-width: 991px) {
      .cms-carousel-client.layout2 .cms-carousel-item {
        min-height: 90px;
        padding: 3px; } }
  .cms-carousel-client.layout2 .cms-carousel-item:hover {
    border-color: #aa8533; }
  .cms-carousel-client.layout2 .cms-carousel-item img {
    margin: 0 auto;
    max-height: 92px;
    width: auto; }
  .cms-carousel-client.layout2 .cms-carousel-item:first-child {
    margin-bottom: 0px; }

.wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul {
  margin: 0 -15px; }
  .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item {
    width: 25%;
    padding: 0;
    margin: 0; }
  .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item a {
    display: block;
    position: relative;
    background-color: #222;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /* BACKGROUND GRADIENT */ }
  .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item a img {
    opacity: 0.75;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item a:hover img {
    opacity: 1; }

.wpb_images_carousel .vc_images_carousel {
  /* 
   [Start] 20. CMS Lists
   +-----------------------------------+
*/ }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-indicators li {
    border-color: #fff;
    background-color: #fff; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-indicators li.vc_active {
    background-color: transparent; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control {
    background-color: #fff;
    color: #222;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    text-shadow: none;
    width: 50px;
    opacity: 1;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control .icon-next, .wpb_images_carousel .vc_images_carousel .vc_carousel-control .icon-prev {
    height: 50px;
    line-height: 50px;
    width: 50px;
    margin: 0;
    font-size: 25px;
    position: static; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control .icon-next:before, .wpb_images_carousel .vc_images_carousel .vc_carousel-control .icon-prev:before {
    content: "\f104";
    font-family: FontAwesome;
    top: 0;
    display: inline-block;
    vertical-align: middle; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control .icon-next:before {
    content: "\f105"; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control.vc_left {
    left: 30px; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control.vc_right {
    right: 30px; }
  .wpb_images_carousel .vc_images_carousel .vc_carousel-control:hover {
    background-color: #aa8533;
    color: #fff; }

.cms-lists .list-style {
  font-size: 13px;
  line-height: 30px;
  color: #7f7f7f; }
  .cms-lists .list-style li {
    padding-left: 28px;
    position: relative; }
  .cms-lists .list-style li:before {
    content: "";
    font-family: FontAwesome;
    color: #222;
    left: 0;
    position: absolute;
    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 */
    font-size: 15px; }
  .cms-lists .list-style.list-style1 li:before {
    content: "\f01d"; }
  .cms-lists .list-style.list-style2 li:before {
    content: "\f058"; }
  .cms-lists .list-style.list-style3 li:before {
    content: "\f105"; }
  .cms-lists .list-style.list-style4 li:before {
    content: "\f006"; }
  .cms-lists .list-style.list-style5 li:before {
    content: "\f006"; }
  .cms-lists .list-style.list-style6 li:before {
    content: "\f0da"; }
  .cms-lists .list-style.list-style7 li:before {
    content: "\f111";
    font-size: 7px; }
  .cms-lists .list-style.list-style8 {
    counter-reset: li;
    padding-left: 0;
    list-style: none; }
  .cms-lists .list-style.list-style8 li:after {
    counter-increment: li;
    content: counter(li) ".";
    color: #222;
    left: 0;
    position: absolute;
    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 */
    font-weight: 600; }

.cms-cta-wrapper {
  /* 
   [Start] 21. CMS Timeline
   +-----------------------------------+
*/ }
  .cms-cta-wrapper .cms-cta-inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto; }
  .cms-cta-wrapper .cta-title {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif; }
  .cms-cta-wrapper .cta-title cite {
    font-style: normal;
    color: #aa8533; }
  .cms-cta-wrapper .cta-button .btn {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif; }
  .cms-cta-wrapper .cta-button a {
    padding: 13px 32px 13px;
    border: 1px solid #fff; }
  .cms-cta-wrapper .cta-button a.btn-white-alt {
    background-color: #fff;
    color: #aa8533;
    border-color: #fff;
    font-weight: normal; }
  .cms-cta-wrapper .cta-button a.btn-white-alt:hover {
    background-color: #333;
    color: #fff;
    border-color: #333; }
  .cms-cta-wrapper .cta-button a.btn-primary-alt {
    background-color: #aa8533;
    border-color: #aa8533;
    color: #fff; }
  .cms-cta-wrapper .cta-button a.btn-primary-alt:hover {
    background-color: #333;
    color: #fff;
    border-color: #333; }
  .cms-cta-wrapper .cta-button a.btn-tranparent-alt {
    background-color: transparent;
    color: #aa8533;
    font-weight: 400;
    border: 1px solid #aa8533 !important; }
  .cms-cta-wrapper .cta-button a.btn-tranparent-alt:hover {
    background-color: #333;
    color: #fff; }
  .cms-cta-wrapper.layout1 .cms-cta-inner {
    padding: 32px 0; }
  .cms-cta-wrapper.layout1 .cta-title {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    color: #222; }
  @media (min-width: 992px) {
    .cms-cta-wrapper.layout1 .cms-cta-inner {
      display: flex;
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center; }

    .cms-cta-wrapper.layout1 .cta-title {
      flex-grow: 1; }

    .cms-cta-wrapper.layout1 .cta-button {
      flex-grow: 0; } }
  @media (max-width: 991px) {
    .cms-cta-wrapper.layout1 .cms-cta-inner {
      text-align: center; }

    .cms-cta-wrapper.layout1 .cta-title {
      margin-bottom: 30px; } }
  .cms-cta-wrapper.layout2 .cta-sub-title {
    letter-spacing: 0.05em;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; }
  .cms-cta-wrapper.layout2 .cta-title {
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px; }
  .cms-cta-wrapper.layout2 .cta-button a {
    font-weight: 400; }
  @media (min-width: 992px) {
    .cms-cta-wrapper.layout2 .cta-sub-title {
      font-size: 25px; }

    .cms-cta-wrapper.layout2 .cta-title {
      font-size: 45px;
      line-height: 55px;
      margin-bottom: 50px; } }
  @media (max-width: 991px) {
    .cms-cta-wrapper.layout2 .cta-sub-title {
      font-size: 20px; }

    .cms-cta-wrapper.layout2 .cta-title {
      font-size: 35px;
      line-height: 45px; } }
  .cms-cta-wrapper.layout3 .cms-cta-inner {
    text-align: center; }
  .cms-cta-wrapper.layout3 .cta-title {
    font-size: 45px;
    letter-spacing: 0em;
    line-height: 55px;
    font-weight: bold;
    margin-bottom: 65px; }
  @media (max-width: 991px) {
    .cms-cta-wrapper.layout3 .cta-title {
      font-size: 35px;
      line-height: 45px;
      margin-bottom: 35px; } }
  .cms-cta-wrapper.layout3 .cta-button a {
    font-weight: 400; }
  .cms-cta-wrapper.layout4 .cms-cta-inner {
    text-align: center; }
  .cms-cta-wrapper.layout4 .cta-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.125;
    margin-bottom: 45px; }
  .cms-cta-wrapper.layout4 .cta-description {
    opacity: 0.7;
    font-size: 18px;
    color: #333;
    line-height: 23px;
    margin-bottom: 55px; }
  .cms-cta-wrapper.layout4 .cta-button a {
    font-weight: 400; }
  @media (max-width: 767px) {
    .cms-cta-wrapper.layout4 .cta-title {
      font-size: 30px;
      margin-bottom: 25px; }

    .cms-cta-wrapper.layout4 .cta-description {
      opacity: 0.7;
      font-size: 15px;
      margin-bottom: 25px; } }
  @media (max-width: 767px) {
  .cms-cta-wrapper br {
    display: none; } }

.cms-timeline-layout1 {
  /* ==========================================================================
   [Start] 22. Pie chart
========================================================================== */ }
  .cms-timeline-layout1 .cms-timeline-list {
    position: relative;
    padding-top: 15px; }
  .cms-timeline-layout1 .cms-timeline-list:before {
    height: 100%;
    width: 2px;
    background-color: #cecece;
    position: absolute;
    top: 0;
    left: 84px;
    content: ""; }
  .cms-timeline-layout1 .cms-timeline-list li {
    padding-bottom: 45px; }
  .cms-timeline-layout1 .cms-timeline-list li:last-child {
    padding-bottom: 0; }
  .cms-timeline-layout1 .cms-timeline-list .cms-timeline-year {
    font-size: 25px;
    color: #aa8533;
    float: left;
    width: 85px;
    line-height: 29px;
    position: relative;
    padding-right: 18px;
    font-weight: 600; }
  .cms-timeline-layout1 .cms-timeline-list .cms-timeline-year i {
    background-color: #fff;
    color: #222;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: -20px;
    text-align: center;
    top: -5px;
    width: 40px; }
  .cms-timeline-layout1 .cms-timeline-list .cms-timeline-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 7px; }
  .cms-timeline-layout1 .cms-timeline-list .cms-timeline-content {
    padding-left: 120px; }

.wpb_wrapper {
  /* ==========================================================================
   [Start] 23. CMS Process
========================================================================== */ }
  .wpb_wrapper .vc_pie_chart .vc_pie_wrapper {
    width: 166px !important;
    height: 166px; }
  .wpb_wrapper .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_back, .wpb_wrapper .vc_pie_chart .vc_pie_wrapper canvas {
    width: 166px !important;
    height: 166px !important; }
  .wpb_wrapper .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value {
    font-size: 43px !important;
    color: #aa8533;
    width: 139px !important;
    height: 139px !important;
    line-height: 148px !important;
    -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 */
    -webkit-box-shadow: 0 0 0 3px #ebebeb;
    -moz-box-shadow: 0 0 0 3px #ebebeb;
    -ms-box-shadow: 0 0 0 3px #ebebeb;
    box-shadow: 0 0 0 3px #ebebeb;
    left: 50% !important;
    position: absolute !important;
    top: 50% !important;
    -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-weight: 600; }
  .wpb_wrapper .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value:after {
    content: "%";
    font-size: 23px; }
  .wpb_wrapper .vc_pie_chart h4.wpb_heading {
    font-size: 16px;
    line-height: 28px;
    margin: 42px 0; }
  .wpb_wrapper .vc_pie_chart.style2 .vc_pie_wrapper .vc_pie_chart_value {
    color: transparent; }
  .wpb_wrapper .vc_pie_chart.style2 .vc_pie_wrapper i {
    font-size: 40px;
    color: #aa8533;
    left: 50%;
    line-height: 148px;
    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 */ }

.cms-process .cms-process-icon i {
  font-size: 40px;
  color: #fff;
  background-color: rgba(170, 133, 51, 0.95);
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  /* BACKGROUND GRADIENT */
  bottom: 0;
  display: block;
  height: 100px;
  left: 0;
  line-height: 100px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100px; }
  .cms-process .cms-process-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700; }
  .cms-process .cms-process-title span {
    color: #aa8533;
    padding-right: 5px; }
  .cms-process.icon-style1 .cms-process-icon i {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .cms-process.icon-style1 .cms-process-item:hover .cms-process-icon i {
    -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 */ }
  .cms-process.icon-style3 .cms-process-icon i {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: #aa8533; }
  .cms-process .cms-process-content {
    position: relative; }
  .cms-process .cms-process-content .h-line {
    position: absolute;
    right: -20px;
    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-process .cms-process-content .h-line .line1, .cms-process .cms-process-content .h-line .line2 {
    background-color: #9b9b9b; }
  .cms-process .cms-process-content .h-line .line1:after, .cms-process .cms-process-content .h-line .line2:after {
    display: none; }
  .cms-process .cms-process-content .h-line .line1:before, .cms-process .cms-process-content .h-line .line2:before {
    background-color: #9b9b9b; }

.cms-process-layout-default .cms-process-list {
  margin: 0 -35px; }
  .cms-process-layout-default .cms-process-item {
    float: left;
    padding: 0 35px;
    margin-bottom: 35px; }
  .cms-process-layout-default .cms-process-item .cms-process-icon {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px solid #fff;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */
    display: block;
    height: 130px;
    width: 130px;
    position: relative;
    margin: 0 auto 45px auto; }
  .cms-process-layout-default .cms-process-item .cms-process-icon:before {
    content: "";
    height: 134px;
    width: 134px;
    border: 2px solid #e8e8e8;
    position: absolute;
    top: -7px;
    left: -7px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */ }
  .cms-process-layout-default .cms-process-item:last-child .h-line {
    display: none !important; }

.cms-countdown-wraper .countdown-item-container {
  text-align: center;
  padding-top: 46px;
  padding-bottom: 32px; }
  .cms-countdown-wraper .countdown-item-container .countdown-amount {
    font-size: 80px;
    line-height: 25px;
    color: #222;
    display: block;
    margin-bottom: 25px; }
  .cms-countdown-wraper .countdown-item-container .countdown-period {
    font-size: 14px;
    color: #a5a5a5;
    font-weight: 600;
    text-transform: uppercase; }

.cms-textblock {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  color: #777; }

.cms-dropcap.layout2 .cms-dropcap-content .first-letter {
  font-weight: 600;
  display: inline-block;
  float: left;
  margin: 5px 20px 0 0;
  width: 45px;
  height: 45px;
  text-align: center;
  color: #222;
  font-size: 40px;
  line-height: 45px; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-1 .first-letter {
    margin-right: 10px; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-2 .first-letter {
    font-size: 25px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */
    color: #fff; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-2 .first-letter.bg-primary-color {
    background-color: #aa8533; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-2 .first-letter.bg-secondary-color {
    background-color: #333; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-2 .first-letter.bg-body-color {
    background-color: #777; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-3 .first-letter {
    color: #fff;
    font-size: 25px; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-3 .first-letter.bg-primary-color {
    background-color: #aa8533; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-3 .first-letter.bg-secondary-color {
    background-color: #333; }
  .cms-dropcap.layout2 .cms-dropcap-content.style-3 .first-letter.bg-body-color {
    background-color: #777; }

.cms-higlighted-style1 {
  background-color: #aa8533;
  color: #fff;
  padding: 5px 0px; }

.cms-higlighted-style2 {
  background-color: #d8d8d8;
  padding: 5px 0px; }

.cms-higlighted-style3 {
  background-color: #222;
  color: #fff;
  padding: 5px 0px; }

.cmsrt {
  background-color: #fff;
  /* 
   [Start] 24. CMS Portfolio
   +-----------------------------------+
*/ }
  .cmsrt .cmsrt-meta {
    position: relative;
    margin-bottom: 12px; }
  .cmsrt .cmsrt-meta .cmsrt-title-holder {
    display: inline-block;
    background-color: #fff;
    padding-right: 5px;
    z-index: 11;
    position: relative; }
  .cmsrt .cmsrt-meta .cmsrt-title-holder h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0; }
  .cmsrt .cmsrt-meta .cmsrt-title-line {
    height: 0;
    width: 100%;
    border-top: 2px dotted #dfe1e6;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 10; }
  .cmsrt .cmsrt-meta .cmsrt-price {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    background-color: #fff;
    padding-left: 5px;
    z-index: 11; }

.cms-filter-style1 {
  text-align: center;
  margin-bottom: 28px; }
  .cms-filter-style1 li {
    padding: 0 20px; }
  .cms-filter-style1 li a {
    font-size: 13px;
    color: #333; }
  .cms-filter-style1 li a.active, .cms-filter-style1 li a:hover {
    color: #aa8533; }

.move-top {
  margin-top: -110px !important; }
  @media screen and (max-width: 991px) {
  .move-top {
    margin-top: 0 !important; }
    .move-top .vc_figure {
      display: block !important;
      text-align: center; }

    .move-top .vc_single_image-wrapper {
      text-align: center; } }

@media screen and (max-width: 767px) {
  .style-image-mobile .vc_figure {
    width: 100%;
    text-align: center;
    max-width: 100%; }
    .style-image-mobile img {
      margin-top: 50px;
      margin-bottom: 50px;
      max-width: 100%; } }

.cms-grid-services1 .entry-services, .content-service-category .entry-services {
  display: table;
  width: 100%; }
  .cms-grid-services1 .cms-grid-item, .content-service-category .cms-grid-item {
    margin-bottom: 70px; }
  .cms-grid-services1 .cms-grid-item:last-child, .content-service-category .cms-grid-item:last-child {
    margin-bottom: 0; }
  .cms-grid-services1 .entry-thumbnail, .content-service-category .entry-thumbnail {
    overflow: hidden; }
  @media (max-width: 767px) {
      .cms-grid-services1 .entry-thumbnail img, .content-service-category .entry-thumbnail img {
        width: 100%; } }
  .cms-grid-services1 .entry-thumbnail .iamge-overlay, .content-service-category .entry-thumbnail .iamge-overlay {
    max-width: 75px;
    width: 100%;
    z-index: 2;
    position: absolute;
    top: 50%;
    opacity: 0;
    left: 50%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    transform: translate(-50%, -50%); }
  .cms-grid-services1 .cms-grid-item:nth-child(2n+1) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n+1) .entry-thumbnail {
    float: left; }
  .cms-grid-services1 .cms-grid-item:nth-child(2n+1) .entry-body, .content-service-category .cms-grid-item:nth-child(2n+1) .entry-body {
    padding-left: 15px;
    float: right; }
  .cms-grid-services1 .cms-grid-item:nth-child(2n) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n) .entry-thumbnail {
    float: right; }
  .cms-grid-services1 .cms-grid-item:nth-child(2n) .entry-body, .content-service-category .cms-grid-item:nth-child(2n) .entry-body {
    float: left;
    padding-right: 15px; }
  @media (max-width: 767px) {
    .cms-grid-services1 .cms-grid-item:nth-child(2n) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n) .entry-thumbnail, .cms-grid-services1 .cms-grid-item:nth-child(2n+1) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n+1) .entry-thumbnail {
      margin-bottom: 40px; }

    .cms-grid-services1 .cms-grid-item:nth-child(2n) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n) .entry-thumbnail, .cms-grid-services1 .cms-grid-item:nth-child(2n+1) .entry-thumbnail, .content-service-category .cms-grid-item:nth-child(2n+1) .entry-thumbnail, .cms-grid-services1 .cms-grid-item:nth-child(2n) .entry-body, .content-service-category .cms-grid-item:nth-child(2n) .entry-body, .cms-grid-services1 .cms-grid-item:nth-child(2n+1) .entry-body, .content-service-category .cms-grid-item:nth-child(2n+1) .entry-body {
      float: none;
      padding-left: 0;
      width: 100%;
      padding-right: 0; } }
  .cms-grid-services1 .entry-thumbnail, .content-service-category .entry-thumbnail, .cms-grid-services1 .entry-body, .content-service-category .entry-body {
    width: 50%; }
  .cms-grid-services1 .entry-body .entry-title, .content-service-category .entry-body .entry-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: -5px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 35px; }
  .cms-grid-services1 .entry-body .entry-title a, .content-service-category .entry-body .entry-title a {
    color: #565656; }
  .cms-grid-services1 .entry-body .entry-excerpt, .content-service-category .entry-body .entry-excerpt {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #777; }
  .cms-grid-services1 .entry-body .read-more, .content-service-category .entry-body .read-more {
    margin-top: 30px; }
  @media (min-width: 992px) {
      .cms-grid-services1 .entry-body .read-more, .content-service-category .entry-body .read-more {
        margin-top: 60px; } }

.cms-grid-services2 .entry-icon {
  text-align: center;
  margin-bottom: 5px;
  max-width: 48px;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden; }
  .cms-grid-services2 .entry-icon img, .cms-grid-services2 .entry-icon i {
    -webkit-transition: all 900ms ease 0ms;
    -moz-transition: all 900ms ease 0ms;
    -ms-transition: all 900ms ease 0ms;
    transition: all 900ms ease 0ms; }
  .cms-grid-services2 .entry-icon img {
    max-width: 50px; }
  .cms-grid-services2 .entry-icon:hover i, .cms-grid-services2 .entry-icon:hover img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg); }
  .cms-grid-services2 .entry-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px; }
  .cms-grid-services2 .entry-title a {
    color: #565656; }
  .cms-grid-services2 .entry-title a:hover {
    color: #aa8533; }
  .cms-grid-services2 .entry-excerpt {
    font-size: 15px;
    color: #777; }
  .cms-grid-services2 .read-more-style1 {
    margin-top: 35px;
    color: #aa8533 !important; }
  .cms-grid-services2 .entry-services {
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -ms-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms; }
  .cms-grid-services2 .entry-services.cms-grid-style-1 {
    border: 1px solid #e6e6e6;
    text-align: center;
    margin-bottom: 70px;
    padding: 40px; }
  .cms-grid-services2 .entry-services.cms-grid-style-1:hover {
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.23); }
  .cms-grid-services2 .entry-services.cms-grid-style-2 {
    margin-bottom: 90px;
    padding-right: 70px; }
  @media (max-width: 767px) {
      .cms-grid-services2 .entry-services.cms-grid-style-2 {
        min-height: auto;
        margin-bottom: 50px;
        padding-bottom: 50px;
        border-bottom: 1px dotted #eee;
        padding-right: 0; } }
  .cms-grid-services2 .entry-services.cms-grid-style-2 .entry-icon {
    float: left; }
  .cms-grid-services2 .entry-services.cms-grid-style-2 .entry-title {
    padding-left: 72px;
    padding-top: 18px; }
  .cms-grid-services2 .entry-services.cms-grid-style-2 .entry-excerpt {
    clear: both; }
  .cms-grid-services2 .entry-services.cms-grid-style-2 .read-more-style1 {
    margin-top: 35px; }

.cms-grid-demo {
  text-align: center;
  /* ==========================================================================
   [Start] Typopraphy
========================================================================== */ }
  .cms-grid-demo .cms-filter-category {
    margin-bottom: 12px; }
  .cms-grid-demo .cms-grid-feature {
    -webkit-transition: all 260ms ease 0ms;
    -moz-transition: all 260ms ease 0ms;
    -ms-transition: all 260ms ease 0ms;
    transition: all 260ms ease 0ms;
    display: block; }
  .cms-grid-demo .cms-grid-feature img {
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); }
  .cms-grid-demo .cms-grid-title {
    font-size: 16px;
    line-height: 1;
    margin-top: 25px;
    margin-bottom: 25px; }
  .cms-grid-demo .cms-grid-title a {
    color: #222; }
  .cms-grid-demo .cms-grid-title a:hover {
    color: #aa8533; }
  .cms-grid-demo .cms-grid-item {
    padding-top: 20px; }
  .cms-grid-demo .cms-grid-item:hover .cms-grid-feature {
    -webkit-transform: translateY(-8px);
    -khtml-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }

.cms-grid-gallery .entry-gallery {
  margin-bottom: 30px;
  position: relative; }
  .cms-grid-gallery .entry-gallery a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block; }
  .cms-grid-gallery .entry-gallery a:after {
    position: absolute;
    display: block;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
  .cms-grid-gallery .entry-gallery a .iamge-overlay {
    max-width: 75px;
    width: 100%;
    z-index: 2;
    position: absolute;
    top: 50%;
    opacity: 0;
    left: 50%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    transform: translate(-50%, -50%); }
  .cms-grid-gallery .entry-gallery:hover a img, .cms-grid-gallery .entry-gallery:hover a:after {
    opacity: 1; }

.cms-carousel-wrap .dotsCont {
  margin: 25px -15px 0; }
  .cms-carousel-wrap .dotsCont .item-dot {
    width: 33.3%;
    float: left;
    padding: 0 15px; }
  .cms-carousel-wrap .dotsCont .item-dot div {
    min-height: 165px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    display: block; }
  @media (min-width: 500px) and (max-width: 991px) {
        .cms-carousel-wrap .dotsCont .item-dot div {
          min-height: 120px; } }
  @media (max-width: 499px) {
        .cms-carousel-wrap .dotsCont .item-dot div {
          min-height: 100px; } }
  .cms-carousel-wrap .btn-filter-wrap .btn-filter {
    background-color: transparent;
    border: 1px solid transparent;
    margin-bottom: 26px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    padding-right: 19px;
    padding-left: 19px; }
  .cms-carousel-wrap .btn-filter-wrap .btn-filter.btn-active, .cms-carousel-wrap .btn-filter-wrap .btn-filter:hover {
    color: #aa8533; }
  .cms-carousel-wrap .btn-filter-wrap .btn-filter:first-child {
    padding-left: 0; }
  @media screen and (max-width: 767px) {
        .cms-carousel-wrap .btn-filter-wrap .btn-filter:first-child {
          padding-left: 19px; } }
  @media screen and (max-width: 359px) {
      .cms-carousel-wrap .btn-filter-wrap .btn-filter {
        display: block;
        width: 100%;
        border: 1px solid #999;
        margin-bottom: 2px !important;
        height: 40px;
        line-height: 40px;
        padding: 0 15px;
        font-size: 13px; }
        .cms-carousel-wrap .btn-filter-wrap .btn-filter.btn-active, .cms-carousel-wrap .btn-filter-wrap .btn-filter:hover {
          background-color: #222; } }
  .cms-carousel-wrap.cms-carousel-wrap-4 .btn-filter-wrap {
    float: right; }
  @media (max-width: 1024px) {
      .cms-carousel-wrap.cms-carousel-wrap-4 .btn-filter-wrap .btn-filter {
        font-size: 12px; } }
  @media (max-width: 767px) {
      .cms-carousel-wrap.cms-carousel-wrap-4 .btn-filter-wrap {
        float: none; } }
  .cms-carousel-wrap.cms-carousel-wrap-4 .btn-filter-wrap .btn-filter:last-child {
    padding-right: 0; }
  .cms-carousel-wrap.cms-carousel-wrap-4 .btn-filter-wrap .btn-filter {
    margin-bottom: 8px;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif; }
  .cms-carousel-wrap.cms-carousel-wrap-4 .col-crs-title h3 {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.01em;
    margin-bottom: 20px; }
  .cms-carousel-wrap.cms-carousel-wrap-4 .line-crs {
    border-bottom: 1px solid #777;
    position: relative;
    margin-bottom: 65px; }
  .cms-carousel-wrap.cms-carousel-wrap-4 .line-crs span {
    position: absolute;
    background-color: #aa8533;
    width: 40px;
    display: block;
    height: 4px;
    z-index: 3px;
    top: -4px;
    left: 0; }

. body.single-service .vc_custom_heading {
  font-size: 20px;
  text-transform: uppercase; }
  . body.single-service .site-content {
    padding-bottom: 10px; }
  .single-service .page-title .cms-page-title-inner h1 {
    font-size: 45px !important;
    color: #fff;
    margin-left: -2px !important;
    margin-top: -20px; }
  .single-service .page-title .cms-breadcrumb ul li:first-child {
    padding-left: 0; }
  .single-service .page-title .btn-gat {
    display: block;
    width: 158px;
    max-width: 158px;
    height: 56px;
    line-height: 56px;
    margin-top: 15px;
    float: right;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #222;
    background-color: #fff;
    -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 */ }
  @media screen and (max-width: 991px) {
      .single-service .page-title .btn-gat {
        float: none;
        margin: 40px auto 0; } }
  .single-service .page-title .btn-gat:hover {
    background-color: #222;
    color: white; }
  @media screen and (max-width: 360px) {
      .single-service .page-title .btn-gat {
        margin: 30px auto 0;
        float: none; } }

#cms-element-box-contact .vc_message_box {
  border: none !important;
  color: #777;
  margin-bottom: 5px !important;
  padding: 10px 5px 0px 50px; }
  #cms-element-box-contact .vc_message_box p {
    margin-bottom: 10px; }
  #cms-element-box-contact .vc_message_box .vc_message_box-icon i {
    color: #aa8533; }
  #cms-element-box-contact .vc_message_box a {
    color: #999; }

.vc_single_image_custom {
  max-width: 524px;
  margin-right: 25px;
  /*
* 24. CMS Boximage
*/ }
  .vc_single_image_custom .vc_box_outline_circle {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    -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 */ }
  .vc_single_image_custom .vc_box_outline_circle:before {
    border: 1px solid white;
    position: absolute;
    z-index: 22;
    content: " ";
    top: 45px;
    left: 45px;
    bottom: 45px;
    right: 45px;
    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 */ }
  .cms-boximage.cms-boximage-default {
    text-align: center; }
  .cms-boximage.cms-boximage-default .cms-boximage-thumb {
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 30px; }
  .cms-boximage.cms-boximage-default .title {
    text-align: center;
    font-size: 15px;
    color: #333; }
  .cms-boximage.cms-boximage-layout1 {
    text-align: center; }
  .cms-boximage.cms-boximage-layout1 .boximage-thumb {
    max-width: 63px;
    margin: 0 auto; }
  .cms-boximage.cms-boximage-layout1 .boximage-title {
    margin-top: 2px;
    font-size: 15px;
    font-weight: normal;
    color: #aa8533;
    font-family: arial; }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb {
    position: relative; }
  @media (max-width: 767px) {
        .cms-boximage.cms-boximage-layout2 .boximage-thumb img {
          width: 100%; } }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb .cms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb .cms-overlay .cms-svg {
    opacity: 0;
    max-width: 100px; }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb .cms-overlay .cms-svg svg {
    width: 100%; }
  @media (max-width: 360px) {
          .cms-boximage.cms-boximage-layout2 .boximage-thumb .cms-overlay .cms-svg {
            width: 80px; } }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb:before, .cms-boximage.cms-boximage-layout2 .boximage-thumb:after {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s; }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1); }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb:after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0); }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb:hover:before, .cms-boximage.cms-boximage-layout2 .boximage-thumb:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  .cms-boximage.cms-boximage-layout2 .boximage-thumb:hover .cms-svg {
    opacity: 1; }

.animation-zoom, .cms-mediadropcap .cms-mediadropcap-image {
  overflow: hidden; }
  .animation-zoom img, .cms-mediadropcap .cms-mediadropcap-image img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .animation-zoom img:hover, .cms-mediadropcap .cms-mediadropcap-image img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }

.site-footer, #cms-footer-top, .site-footer ul li, .site-footer ul li a, #cms-footer-bottom, #cms-footer-bottom a {
  color: #b3b4b4; }

#cms-footer-bottom a:hover {
  color: #aa8533; }

#colophon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 13px;
  line-height: 22px;
  position: relative; }
  #colophon ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0; }
  #colophon:before {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ""; }
  #colophon #cms-footer-top {
    padding: 80px 0 70px;
    font-size: 15px; }
  #colophon #cms-footer-top .widget_media_image {
    margin-bottom: 30px; }
  #colophon #cms-footer-top .cms-footer-top-item .widget_text {
    margin-bottom: 25px; }
  #colophon #cms-footer-top .wg-title {
    font-size: 25px;
    line-height: normal;
    color: #fefefe;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 11px; }
  #colophon #cms-footer-top .widget_footer_info li {
    position: relative;
    padding-left: 25px; }
  #colophon #cms-footer-top .widget_footer_info li a:hover {
    color: #aa8533; }
  #colophon #cms-footer-top .widget_footer_info li i {
    position: absolute;
    top: 7px;
    left: 0; }
  #colophon #cms-footer-top .widget ul li, #colophon #cms-footer-top .cms-recent-post ul li {
    line-height: 24px;
    margin-bottom: 9px; }
  #colophon #cms-footer-top .widget ul li i, #colophon #cms-footer-top .cms-recent-post ul li i {
    color: #aa8533; }
  #colophon #cms-footer-top .cms-recent-post ul li, #colophon #cms-footer-top .widget_nav_menu ul li {
    padding-left: 15px;
    position: relative; }
  #colophon #cms-footer-top .cms-recent-post ul li a, #colophon #cms-footer-top .widget_nav_menu ul li a {
    color: #b3b4b4; }
    #colophon #cms-footer-top .cms-recent-post ul li a:hover, #colophon #cms-footer-top .widget_nav_menu ul li a:hover {
      color: #aa8533; }
  #colophon #cms-footer-top .cms-recent-post ul li:before, #colophon #cms-footer-top .widget_nav_menu ul li:before {
    position: absolute;
    content: "\f105";
    top: 0;
    left: 0;
    font-family: FontAwesome;
    font-size: 15px;
    color: #aa8533; }
  @media (min-width: 992px) {
    #colophon #cms-footer-bottom {
      padding-top: 34px;
      padding-bottom: 34px; } }
  @media (max-width: 991px) {
    #colophon #cms-footer-bottom {
      padding-top: 30px;
      padding-bottom: 30px;
      text-align: center; }
      #colophon #cms-footer-bottom .widget_cs_social_widget {
        margin-bottom: 30px; }
      #colophon #cms-footer-bottom .cms-footer-bottom-item1, #colophon #cms-footer-bottom .widget_cs_social_widget {
        text-align: center; } }
  #colophon .widget_cs_social_widget ul li {
    margin-top: 10px;
    display: inline-block; }
  #colophon .widget_cs_social_widget ul li a {
    padding-left: 0;
    padding-right: 0;
    display: block; }
  #colophon .widget_cs_social_widget ul li a i {
    font-size: 16px;
    width: 37px;
    height: 37px;
    line-height: 37px;
    background: #222;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
    #colophon .widget_cs_social_widget ul li a i:hover {
      background-color: #aa8533; }
  #colophon.cms-footer1 .border-top {
    border-top: 1px solid #4e4e4e;
    position: relative; }
  #colophon.cms-footer1 .cms-footer-bottom-item1 {
    text-align: center; }
  #colophon.cms-footer2 .border-top {
    border-top: 1px solid #787878; }
  #colophon.cms-footer2 #cms-footer-bottom {
    padding-top: 22px;
    padding-bottom: 22px;
    min-height: 92px; }
  @media (min-width: 992px) {
      #colophon.cms-footer2 #cms-footer-bottom .cms-footer-bottom-item1 {
        line-height: 45px; }
        #colophon.cms-footer2 #cms-footer-bottom .cms-footer-bottom-item1 a:hover {
          color: #aa8533; }
      #colophon.cms-footer2 #cms-footer-bottom .cms-footer-bottom-item2 {
        text-align: right;
        float: right; } }

#back_to_top span {
  bottom: 41px;
  right: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: fixed;
  background-color: #aa8533;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 1001;
  background-color: rgba(170, 133, 51, 0.25);
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  /* BACKGROUND GRADIENT */ }
  #back_to_top span:hover {
    background-color: #aa8533;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15); }
  #back_to_top.on span {
    opacity: 1;
    visibility: visible; }

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 {
  background-color: #fff;
  color: #9b9b9b;
  font-size: 13px;
  padding: 4px 18px;
  line-height: 22px;
  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 */
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-color: #eee;
  height: 40px;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms; }

textarea {
  height: 125px;
  max-width: 100%;
  padding: 12px 18px; }

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 {
  border-color: #aa8533; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1; }

input::-webkit-input-placeholder, textarea::-webkit-placeholder {
  color: #9b9b9b;
  opacity: 1; }

input::-o-placeholder, textarea::-o-placeholder {
  color: #9b9b9b;
  opacity: 1; }

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #9b9b9b;
  opacity: 1; }

.wpb_widgetised_column .tnp-field-email input::-moz-placeholder, .wpb_widgetised_column .tnp-field-email textarea::-moz-placeholder {
  color: #fff;
  opacity: 1; }

.wpb_widgetised_column .tnp-field-email input::-webkit-input-placeholder, .wpb_widgetised_column .tnp-field-email textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1; }

.placeholder-dark input::-o-placeholder, .wpb_widgetised_column .tnp-field-email textarea::-o-placeholder {
  color: #fff;
  opacity: 1; }

.wpb_widgetised_column .tnp-field-email input::-ms-placeholder, .wpb_widgetised_column .tnp-field-email textarea::-ms-placeholder {
  color: #fff;
  opacity: 1; }

.wpb_widgetised_column .tnp-field-email input {
  color: #fff; }

.wpcf7-form .ajax-loader {
  display: none; }
  .wpcf7-form .wpcf7-form-control:hover, .wpcf7-form .wpcf7-form-control.focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }
  .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
    height: 122px; }

body span.wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  margin-bottom: 15px; }

body .wpcf7-mail-sent-ng {
  text-align: center;
  color: red; }

body div.wpcf7-validation-errors, body div.wpcf7-mail-sent-ng {
  border: medium none;
  display: block;
  margin: 10px 0 30px;
  text-align: center;
  color: red;
  padding: 0;
  font-size: 14px; }

.get-contact-page {
  /*Contact form 7*/ }
  .get-contact-page h3 {
    font-size: 16px;
    margin-bottom: 20px; }
  .get-contact-page a {
    font-size: 13px;
    font-weight: 600;
    color: #aa8533;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px; }
  .get-contact-page a:before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #aa8533;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .get-contact-page a:hover:before {
    width: 100%; }
  .get-contact-page p {
    margin-bottom: 7px; }

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 30px; }
  .wpcf7-form .wpcf7-form-control {
    padding: 10px 22px;
    max-width: 100%;
    height: auto;
    background-color: #fff;
    font-size: 13px;
    border: 1px solid #787878; }
  .wpcf7-form .wpcf7-form-control:focus {
    border: 1px solid #aa8533 !important; }
  .wpcf7-form .wpcf7-form-control::-webkit-input-placeholder {
    color: #999; }
  .wpcf7-form .wpcf7-form-control::-moz-placeholder {
    color: #999; }
  .wpcf7-form .wpcf7-form-control::-ms-input-placeholder {
    color: #999; }
  .wpcf7-form .wpcf7-form-control::-moz-placeholder {
    color: #999; }
  .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
    min-height: 290px; }
  .wpcf7-form .wpcf7-form-control.wpcf7-submit {
    background-color: #aa8533;
    color: #fff;
    padding: 13px 42px;
    font-size: 15px;
    margin-top: 10px;
    font-weight: normal;
    border: none;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    /* BACKGROUND GRADIENT */ }
  .wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #333; }
  .wpcf7-form .wpcf7-form-control .wpcf7-not-valid-tip {
    margin-top: 5px;
    margin-bottom: 0; }
  .wpcf7-form .cms-contact-form-law .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 30px; }
  .wpcf7-form .cms-contact-form-law .wpcf7-form-control {
    margin-bottom: 0;
    border: 1px solid #e3e3e3; }
  .wpcf7-form .cms-contact-form-law .wpcf7-form-control.wpcf7-submit {
    margin-top: 15px; }
  .wpcf7-form .cms-contact-form-law .wpcf7-not-valid-tip {
    margin-top: 5px;
    margin-bottom: 0; }
  .wpcf7-form .cms-contact-us .wpcf7-form-control.wpcf7-textarea {
    min-height: 160px; }
  .wpcf7-form .cms-contact-us .wpcf7-form-control.wpcf7-submit {
    background-color: #aa8533;
    color: #fff;
    padding: 13px 35px;
    font-size: 15px;
    border: none;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    /* BACKGROUND GRADIENT */ }
  .wpcf7-form .cms-contact-us .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #333; }
  .wpcf7-form .cms-contact-us .cms-contact-submit {
    text-align: center; }

.single-attorney {
  /* ==========================================================================
   [End] All Style Form
========================================================================== */ }
  .single-attorney .wpcf7-form .wpcf7-form-control {
    font-size: 12px;
    border: 1px solid #e3e3e3; }
  .single-attorney .wpcf7-form .wpcf7-form-control:focus {
    border: 1px solid #aa8533; }

.site-header ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

#cshero-header-inner .main-navigation li {
  font-family: 'Playfair Display', serif; }
  #cshero-header-inner .bodebr-botton-tobar {
    border-top: 1px solid #ccc; }
  @media (min-width: 992px) and (max-width: 1199px) {
      #cshero-header-inner.header-1 .header-grap {
        padding-top: 15px; } }
  #cshero-header-inner.header-2 {
    width: 100%; }
  #cshero-header-inner.header-2 .header-top {
    background-color: rgba(0, 0, 0, 0.55); }
  @media (min-width: 992px) {
      #cshero-header-inner.header-2 .header-top {
        height: 53px;
        line-height: 53px; } }
  #cshero-header-inner.header-2 .cms-topbar-inner {
    width: 100%; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    display: inline-block; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li a {
    color: #fff; }
    #cshero-header-inner.header-2 .cms-topbar-inner ul li a:hover {
      color: #aa8533; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li i {
    color: #fff; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li span {
    color: #fff; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info {
    float: left; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li.li-email a {
    font-size: 18px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top {
    float: right; }
  #cshero-header-inner.header-2 .cms-topbar-inner .cshero-navigation-right {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 53px;
    height: 53px;
    color: #fff; }
  @media (min-width: 992px) {
      #cshero-header-inner.header-3 .header-top {
        height: 53px;
        line-height: 53px; } }
  #cshero-header-inner.header-3 .cms-topbar-inner {
    text-align: right;
    float: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  #cshero-header-inner.header-3 .cms-topbar-inner ul {
    display: inline-block; }
  #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li i {
    margin-right: 15px;
    font-size: 20px; }
  #cshero-header-inner.header-3 .cms-topbar-inner .social-top li {
    margin-left: 10px;
    margin-right: 10px; }
  #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a {
    font-size: 18px; }
  #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a {
    font-size: 15px; }
  #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li i, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li i, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a {
    color: #fff; }
    #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li i:hover, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li i:hover, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a:hover, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a:hover {
      color: #aa8533; }
  #cshero-header-inner.header-4 .title-hiddent {
    display: none; }
  #cshero-header-inner.header-4 .nav-topbar {
    text-align: right; }
  @media (max-width: 1199px) {
      #cshero-header-inner.header-4 .nav-topbar {
        text-align: center; } }
  #cshero-header-inner.header-4 .nav-topbar .menu li {
    display: inline-block;
    margin-left: 25px; }
  #cshero-header-inner.header-4 .nav-topbar .menu li:first-child {
    margin-left: 0; }
  #cshero-header-inner.header-4 .nav-topbar .menu li:last-child {
    margin-right: 15px; }
  #cshero-header-inner.header-4 .nav-topbar .menu li a {
    font-size: 10px;
    color: #999;
    display: block;
    padding: 12px 0 0; }
  #cshero-header-inner.header-4 #cshero-headerinfor-right ul li.cms-list-item-social ul {
    margin-left: 70px; }
  #cshero-header-inner.header-4 #cshero-headerinfor-right ul li.cms-list-item-social ul li {
    margin-left: 20px; }
    #cshero-header-inner.header-4 #cshero-headerinfor-right ul li.cms-list-item-social ul li a {
      font-size: 18px;
      font-weight: bold;
      color: #565656; }
      #cshero-header-inner.header-4 #cshero-headerinfor-right ul li.cms-list-item-social ul li a:hover {
        color: #aa8533; }
    #cshero-header-inner.header-4 #cshero-headerinfor-right ul li.cms-list-item-social ul li:first-child {
      margin-left: 0; }
  #cshero-header-inner.header-4 #cshero-header-top {
    padding-bottom: 18px; }
  @media (min-width: 992px) and (max-width: 1199px) {
      #cshero-header-inner.header-4 .header-grap {
        margin-top: 15px; } }
  #cshero-header-inner.header-4 .header-grap #cshero-header-logo-top .main-logo img {
    margin-bottom: 10px; }
  #cshero-header-inner.header-2, #cshero-header-inner.header-3 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 88; }
  @media (max-width: 991px) {
    #cshero-header-inner.header-2, #cshero-header-inner.header-3 {
      position: static; }
      #cshero-header-inner.header-2 #cshero-header-top, #cshero-header-inner.header-3 #cshero-header-top {
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #565656;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); } }
  @media (max-width: 991px) and (max-width: 767px) {
          #cshero-header-inner.header-2 #cshero-header-top, #cshero-header-inner.header-3 #cshero-header-top {
            display: none; } }
  #cshero-header-inner.header-2 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-2 .cms-topbar-inner .social-top li a, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a {
    font-size: 15px; }
  #cshero-header-inner.header-2 .cms-topbar-inner .cms-top-info li i, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li i, #cshero-header-inner.header-2 .cms-topbar-inner .social-top li i, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li i, #cshero-header-inner.header-2 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a, #cshero-header-inner.header-2 .cms-topbar-inner .social-top li a, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a {
    color: #fff; }
    #cshero-header-inner.header-2 .cms-topbar-inner .cms-top-info li i:hover, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li i:hover, #cshero-header-inner.header-2 .cms-topbar-inner .social-top li i:hover, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li i:hover, #cshero-header-inner.header-2 .cms-topbar-inner .cms-top-info li a:hover, #cshero-header-inner.header-3 .cms-topbar-inner .cms-top-info li a:hover, #cshero-header-inner.header-2 .cms-topbar-inner .social-top li a:hover, #cshero-header-inner.header-3 .cms-topbar-inner .social-top li a:hover {
      color: #aa8533; }
  #cshero-header-inner.header-2 .cms-topbar-inner, #cshero-header-inner.header-3 .cms-topbar-inner {
    position: relative;
    display: table;
    padding-right: 39px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul, #cshero-header-inner.header-3 .cms-topbar-inner ul {
    display: inline-block; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li, #cshero-header-inner.header-3 .cms-topbar-inner ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    display: inline-block; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li a, #cshero-header-inner.header-3 .cms-topbar-inner ul li a {
    color: #fff; }
    #cshero-header-inner.header-2 .cms-topbar-inner ul li a:hover, #cshero-header-inner.header-3 .cms-topbar-inner ul li a:hover {
      color: #aa8533; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li i, #cshero-header-inner.header-3 .cms-topbar-inner ul li i {
    color: #fff; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul li span, #cshero-header-inner.header-3 .cms-topbar-inner ul li span {
    color: #fff; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li {
    margin-left: 24px;
    margin-right: 17px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li:first-child, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li:first-child {
    margin-left: 0; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li i, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li i {
    margin-right: 7px;
    font-size: 20px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li.cshero-box-email:hover i, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li.cshero-box-email:hover i, #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li.cshero-box-address:hover i, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li.cshero-box-address:hover i, #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li.cshero-box-email:hover a, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li.cshero-box-email:hover a, #cshero-header-inner.header-2 .cms-topbar-inner ul.cms-top-info li.cshero-box-address:hover a, #cshero-header-inner.header-3 .cms-topbar-inner ul.cms-top-info li.cshero-box-address:hover a {
    color: #aa8533; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top, #cshero-header-inner.header-3 .cms-topbar-inner ul.social-top {
    position: relative; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top li, #cshero-header-inner.header-3 .cms-topbar-inner ul.social-top li {
    margin-left: 10px;
    margin-right: 10px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top li a, #cshero-header-inner.header-3 .cms-topbar-inner ul.social-top li a {
    font-size: 18px; }
  #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top:before, #cshero-header-inner.header-3 .cms-topbar-inner ul.social-top:before {
    position: absolute;
    content: "";
    display: block;
    height: 16px;
    top: 20px;
    width: 1px;
    right: -6px;
    background-color: rgba(255, 255, 255, 0.5); }
  @media (max-width: 991px) {
      #cshero-header-inner.header-2 .cms-topbar-inner, #cshero-header-inner.header-3 .cms-topbar-inner {
        display: block;
        float: none;
        text-align: center;
        padding-right: 0;
        border-bottom: none; }
        #cshero-header-inner.header-2 .cms-topbar-inner ul, #cshero-header-inner.header-3 .cms-topbar-inner ul {
          float: none !important; }
          #cshero-header-inner.header-2 .cms-topbar-inner ul li, #cshero-header-inner.header-3 .cms-topbar-inner ul li {
            color: #999;
            height: 30px;
            line-height: 30px; }
            #cshero-header-inner.header-2 .cms-topbar-inner ul li a, #cshero-header-inner.header-3 .cms-topbar-inner ul li a, #cshero-header-inner.header-2 .cms-topbar-inner ul li i, #cshero-header-inner.header-3 .cms-topbar-inner ul li i, #cshero-header-inner.header-2 .cms-topbar-inner ul li span, #cshero-header-inner.header-3 .cms-topbar-inner ul li span {
              color: #999 !important; }
        #cshero-header-inner.header-2 .cms-topbar-inner ul.social-top:before, #cshero-header-inner.header-3 .cms-topbar-inner ul.social-top:before {
          background-color: transparent !important; } }
  #cshero-header-inner.header-2 .cms-topbar-inner .cshero-navigation-right, #cshero-header-inner.header-3 .cms-topbar-inner .cshero-navigation-right {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 53px;
    height: 53px;
    color: #fff; }
  #cshero-header-inner.header-2 .cms-topbar-inner .cshero-navigation-right .h-icon i, #cshero-header-inner.header-3 .cms-topbar-inner .cshero-navigation-right .h-icon i {
    font-size: 16px; }
  #cshero-header-inner.header-2 .cshero-header-navigation .main-navigation .menu-main-menu > li:last-child, #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation .menu-main-menu > li:last-child {
    padding-right: 0;
    margin-right: 0; }
  @media (min-width: 1200px) {
      #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li {
        margin-left: 35px;
        margin-right: 35px; } }
  #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li:first-child, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li:first-child {
    margin-left: 0; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0px;
    padding-left: 0px; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li:first-child, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li:first-child {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme {
    justify-self: flex-end; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar {
    position: relative;
    padding-left: 40px;
    margin-right: 36px;
    font-family: 'Montserrat', sans-serif; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar.cshero-box-email:before, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar.cshero-box-email:before, #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar.cshero-box-address:before, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar.cshero-box-address:before {
    position: absolute;
    display: block;
    content: " ";
    height: 28px;
    background-color: rgba(153, 153, 153, 0.6);
    top: 2px;
    right: -20px;
    width: 1px; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar i, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar i {
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 35px; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar a:hover, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar a:hover, #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar i:hover, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar i:hover {
    color: #aa8533; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cms-item-info-topbar i, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cms-item-info-topbar i {
    color: rgba(153, 153, 153, 0.6); }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar a, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar a, #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar span, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar span {
    display: block; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cshero-box-title, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cshero-box-title {
    font-size: 15px;
    line-height: 17px;
    font-weight: bold;
    color: #565656; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cshero-box-title-label, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-item-info-topbar .cshero-box-title-label {
    color: #999;
    font-size: 10px;
    line-height: 22px; }
  #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a {
    margin-top: 0;
    max-width: 170px;
    width: 170px;
    display: block;
    float: right;
    height: 30px;
    line-height: 30px !important;
    font-weight: normal;
    background-color: #aa8533;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase; }
    #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a:hover, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a:hover {
      background-color: #333; }
  #cshero-header-inner.header-1 .header-grap, #cshero-header-inner.header-4 .header-grap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px; }
  #cshero-header-inner.header-1 .header-grap #cshero-header-logo-top, #cshero-header-inner.header-4 .header-grap #cshero-header-logo-top {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  #cshero-header-inner.header-1 .header-grap #cshero-headerinfor-right, #cshero-header-inner.header-4 .header-grap #cshero-headerinfor-right {
    justify-self: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-ancestor > a, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item > a, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
    color: #aa8533 !important; }
  #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li:hover {
    position: relative; }
  #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
    height: 4px;
    display: block;
    color: #aa8533;
    background-color: #aa8533;
    content: " ";
    bottom: 0px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; }
  @media (max-width: 991px) {
      #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cshero-header-inner .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
        background-color: transparent; } }
  #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
    line-height: 60px; }
  #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li:hover {
    position: relative; }
  #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
    height: 2px;
    display: block;
    color: #aa8533;
    background-color: #aa8533;
    content: " ";
    bottom: 0px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; }
  @media (max-width: 991px) {
        #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cshero-header-inner .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
          background-color: transparent; } }

.header-fixed #cshero-header-logo img {
  max-height: 50px; }

#cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover {
  position: relative; }
  #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
    height: 4px;
    display: block;
    color: #aa8533;
    background-color: #aa8533;
    content: " ";
    bottom: 0px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; }
  @media (max-width: 991px) {
      #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item:after, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent:after, #cms-theme.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after, #cms-theme.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li:hover:after {
        background-color: transparent; } }

@media (min-width: 992px) {
  #cshero-header-logo img {
    max-height: 53px; }

  #cshero-header-inner #cshero-header {
    position: relative; }
    #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      padding: 0 15px; }
    #cshero-header-inner #cshero-header .cshero-navigation-right {
      -webkit-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      float: right;
      position: relative;
      padding-left: 25px; }
      #cshero-header-inner #cshero-header .cshero-navigation-right .widget-search-header {
        display: none; }
      #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon {
        display: inline-block; }
        #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon + .h-icon {
          padding-left: 18px;
          padding-right: 8px; }
        #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon i {
          font-size: 18px;
          position: relative;
          top: 1px;
          color: #222;
          cursor: pointer;
          -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-navigation-right .h-icon i:hover {
            color: #aa8533; }
        #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu {
          height: 12px;
          width: 16px;
          display: block;
          position: relative;
          cursor: pointer; }
          #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide span, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span {
            display: inline-block;
            height: 2px;
            width: 16px;
            background-color: #222;
            position: absolute;
            top: 5px;
            left: 0;
            right: 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 #cshero-header .cshero-navigation-right .h-icon .h-button-hide:before, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide:after, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after {
            content: "";
            height: 2px;
            width: 16px;
            background-color: #222;
            position: absolute;
            left: 0;
            right: 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 #cshero-header .cshero-navigation-right .h-icon .h-button-hide:before, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before {
            top: 0; }
          #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide:after, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after {
            bottom: 0; }
          #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover span, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover:before, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover:after, #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after {
            background-color: #aa8533; }
        #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .icon-cart {
          position: relative;
          line-height: normal;
          cursor: pointer; }
          #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .icon-cart .couter_items {
            -webkit-border-radius: 100%;
            -khtml-border-radius: 100%;
            -moz-border-radius: 100%;
            -ms-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            /* BACKGROUND GRADIENT */
            background-color: #aa8533;
            color: #fff;
            font-size: 10px;
            height: 16px;
            line-height: 18px;
            position: absolute;
            right: -7px;
            text-align: center;
            top: -7px;
            width: 16px; }
    #cshero-header-inner #cshero-header.header-fixed {
      background-color: #fff;
      -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
      -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
      -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
      left: 0;
      right: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1001; }
      #cshero-header-inner #cshero-header.header-fixed #cshero-header-logo a.main-logo {
        opacity: 0; }
        #cshero-header-inner #cshero-header.header-fixed #cshero-header-logo a.sticky-logo {
          opacity: 1; }
      #cshero-header-inner #cshero-header.header-fixed #cshero-header-navigation .menu-main-menu > li > a, #cshero-header-inner #cshero-header.header-fixed #cshero-header-logo a, #cshero-header-inner #cshero-header.header-fixed .cshero-header-logo-top a, #cshero-header-inner #cshero-header.header-fixed .cshero-navigation-right {
        line-height: 80px; }
    #cshero-header-inner.header-trans #cshero-header {
      -webkit-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      left: 0;
      right: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1001; }
    #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      color: #fff; }
      #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a .menu-title:before {
        background-color: #fff; }
      #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i {
        color: #fff; }
      #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i:hover {
        color: #aa8533; }
      #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide span, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu span, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide:before, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu:before, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide:after, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu:after {
        background-color: #fff; }
      #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide:hover span, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu:hover span, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide:hover:before, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-hide:hover:after, #cshero-header-inner.header-nav-white #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon .h-button-menu:hover:after {
        background-color: #aa8533; }
    #cshero-header-inner.header-nav-white-sticky #cshero-header.header-fixed {
      background-color: #222; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
        color: #fff; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-header-navigation .main-navigation .menu-main-menu > li > a .menu-title:before {
        background-color: #fff; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon i {
        color: #fff; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon i:hover {
        color: #aa8533; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide span, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide:before, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide:after, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after {
        background-color: #fff; }
      #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover span, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover:before, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-hide:hover:after, #cshero-header-inner.header-nav-white-sticky #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after {
        background-color: #aa8533; }
    #cshero-header-inner.header-full-width #cshero-header > .container {
      width: 100%;
      padding: 0 50px; }
    #cshero-header-inner.header-1 .cshero-main-header, #cshero-header-inner.header-4 .cshero-main-header {
      background-color: #333; }
    #cshero-header-inner.header-1 .header-fixed, #cshero-header-inner.header-4 .header-fixed {
      background-color: #333; }
      #cshero-header-inner.header-1 .header-fixed #cshero-header-logo, #cshero-header-inner.header-4 .header-fixed #cshero-header-logo {
        display: none; }
    #cshero-header-inner.header-1 div#cshero-header-wrapper, #cshero-header-inner.header-4 div#cshero-header-wrapper {
      position: relative; }
      #cshero-header-inner.header-1 div#cshero-header-wrapper .sticky-desktop, #cshero-header-inner.header-4 div#cshero-header-wrapper .sticky-desktop {
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99; }
      #cshero-header-inner.header-1 div#cshero-header-wrapper .header-fixed, #cshero-header-inner.header-4 div#cshero-header-wrapper .header-fixed {
        background-color: #333;
        -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        left: 0;
        right: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999; }
    #cshero-header-inner.header-1 #cshero-header-navigation, #cshero-header-inner.header-4 #cshero-header-navigation {
      width: 100% !important; }
    #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation {
      text-align: left; }
    #cshero-header-inner.header-1 .sticky-desktop .cshero-navigation-right .h-icon i, #cshero-header-inner.header-4 .sticky-desktop .cshero-navigation-right .h-icon i {
      color: white !important; }
      #cshero-header-inner.header-1 .sticky-desktop .cshero-navigation-right .h-icon i:hover, #cshero-header-inner.header-4 .sticky-desktop .cshero-navigation-right .h-icon i:hover {
        color: #aa8533 !important; }
    #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      color: #fff; }
    #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
      color: #aa8533; }
    #cshero-header-inner.header-1 .cshero-box-header-contact:hover i, #cshero-header-inner.header-4 .cshero-box-header-contact:hover i {
      color: #565656; }
      #cshero-header-inner.header-1 .cshero-box-header-contact i, #cshero-header-inner.header-4 .cshero-box-header-contact i {
        position: absolute; }
      #cshero-header-inner.header-1 .cshero-box-header-contact a, #cshero-header-inner.header-4 .cshero-box-header-contact a {
        line-height: 23px !important;
        display: block !important; }
      #cshero-header-inner.header-1 .cshero-box-header-contact .cshero-box-title, #cshero-header-inner.header-4 .cshero-box-header-contact .cshero-box-title {
        margin-top: 13px;
        font-size: 15px;
        font-weight: bold;
        font-family: 'Montserrat', sans-serif;
        color: #565656;
        display: block; }
      #cshero-header-inner.header-1 .cshero-box-header-contact .cshero-box-title-label, #cshero-header-inner.header-4 .cshero-box-header-contact .cshero-box-title-label {
        font-size: 10px;
        display: block;
        margin-top: -4px;
        font-family: 'Montserrat', sans-serif; }
      #cshero-header-inner.header-1 .cshero-box-header-contact .cshero-box-title-label:hover, #cshero-header-inner.header-4 .cshero-box-header-contact .cshero-box-title-label:hover {
        color: #aa8533; }
    #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info {
      position: relative;
      float: right; }
      #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li {
        display: inline-grid; }
      #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li.cms-by-theme a {
        margin-top: 0;
        max-width: 170px;
        width: 170px;
        display: block;
        height: 30px;
        line-height: 30px !important;
        font-weight: normal;
        background-color: #aa8533;
        color: #fff;
        text-align: center;
        font-size: 13px;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase; }
    #cshero-header-inner.header-1 .cshero-navigation-right, #cshero-header-inner.header-4 .cshero-navigation-right {
      padding-left: 15px !important; }
    #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a.current-menu-ancestor > a, #cshero-header-inner.header-4 .main-navigation .nav-menu > li > a.current-menu-ancestor > a, #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a.current-page-parent > a, #cshero-header-inner.header-4 .main-navigation .nav-menu > li > a.current-page-parent > a, #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a.current-menu-parent > a, #cshero-header-inner.header-4 .main-navigation .nav-menu > li > a.current-menu-parent > a, #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a.current-menu-item > a, #cshero-header-inner.header-4 .main-navigation .nav-menu > li > a.current-menu-item > a, #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a > a:hover, #cshero-header-inner.header-4 .main-navigation .nav-menu > li > a > a:hover {
      color: #aa8533 !important; }
    #cshero-header-inner.header-1 .cshero-navigation-right, #cshero-header-inner.header-4 .cshero-navigation-right, #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      line-height: 77px; }
    #cshero-header-inner.header-1 #cshero-header-logo a, #cshero-header-inner.header-4 #cshero-header-logo a, #cshero-header-inner.header-1 #cshero-header-logo-top a, #cshero-header-inner.header-4 #cshero-header-logo-top a {
      line-height: 100px; }
    #cshero-header-inner.header-2 #cshero-header-logo a {
      line-height: 107px; }
    #cshero-header-inner.header-3 #cshero-header-logo a {
      line-height: 0px;
      display: block;
      margin-top: -4px; }
    #cshero-header-inner.header-3 .header-fixed #cshero-header-logo a {
      margin-top: 0; }
    #cshero-header-inner.header-3 #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-3 #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i {
      color: white; }
      #cshero-header-inner.header-3 #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover, #cshero-header-inner.header-3 #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i:hover {
        color: #aa8533; }
    #cshero-header-inner.header-4 #cshero-header-logo-top a {
      line-height: 62px; }
    #cshero-header-inner.header-2 .sticky-desktop .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-3 .sticky-desktop .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      color: #fff; }
    #cshero-header-inner.header-2 .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-3 .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      color: #333 !important; }
    #cshero-header-inner.header-2 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      line-height: 85px; }

  .admin-bar #cshero-header-inner #cshero-header.header-fixed, .admin-bar #cshero-header-inner.header-trans #cshero-header {
    top: 32px; }
    .admin-bar #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed, .admin-bar #cshero-header-inner.header-2 div#cshero-header-wrapper .header-fixed {
      top: 32px; }
    .admin-bar #cshero-header-inner {
      top: 32px; }
    .admin-bar .header-fixed {
      top: 32px !important; } }
  @media (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
          #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info {
            padding-bottom: 15px;
            float: none;
            text-align: center; }
            #cshero-header-inner.header-1 #cshero-headerinfor-right ul.list-item-info li .cshero-box-title, #cshero-header-inner.header-4 #cshero-headerinfor-right ul.list-item-info li .cshero-box-title {
              font-size: 13px !important; } }
  @media (min-width: 992px) and (max-width: 782px) {
      .admin-bar #cshero-header-inner {
        top: 46px; } }

#cshero-header-top-mobile {
  display: none;
  border-bottom: 1px solid #eaeaea; }
  @media (max-width: 400px) {
    #cshero-header-top-mobile ul {
      text-align: center; } }
  #cshero-header-top-mobile ul li {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #565656;
    position: relative; }
  @media (max-width: 630px) {
      #cshero-header-top-mobile ul li {
        font-size: 12px; } }
  @media (max-width: 629px) {
        #cshero-header-top-mobile ul li.item-email {
          display: none; } }
  @media (max-width: 629px) {
        #cshero-header-top-mobile ul li.item-phone:before {
          background-color: #fff; } }
  #cshero-header-top-mobile ul li a {
    font-family: 'Montserrat', sans-serif;
    color: #565656; }
  #cshero-header-top-mobile ul li a:hover {
    color: #aa8533; }
  #cshero-header-top-mobile ul li i {
    margin-right: 10px; }
  #cshero-header-top-mobile ul li:before {
    position: absolute;
    content: " ";
    height: 14px;
    width: 1px;
    top: 23px;
    right: 0;
    background-color: #565656; }
  #cshero-header-top-mobile ul li:last-child:before {
    background-color: #fff; }
  #cshero-header-top-mobile ul li:hover {
    color: #aa8533; }

body {
  /* ==========================================================================
   [End] 1. Header Main
========================================================================== */ }
  body .active-menu-onepage .main-navigation .nav-menu > li > a.current, body .active-menu-onepage .main-navigation .nav-menu > li:hover {
    color: #aa8533 !important; }

@font-face {
  font-family: 'Poppins Regular';
  src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'), url('../fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-pr {
  font-family: 'Poppins Regular'; }

.cms-heading-wrapper .ft-pr {
  font-family: 'Poppins Regular' !important; }

@font-face {
  font-family: 'Poppins Light';
  src: url('../fonts/poppins-light-webfont.woff2') format('woff2'), url('../fonts/poppins-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-pl {
  font-family: 'Poppins Light'; }

.cms-heading-wrapper .ft-pl {
  font-family: 'Poppins Light' !important; }

@font-face {
  font-family: 'Poppins Medium';
  src: url('../fonts/poppins-medium-webfont.woff2') format('woff2'), url('../fonts/poppins-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-pm {
  font-family: 'Poppins Medium'; }

.cms-heading-wrapper .ft-pm {
  font-family: 'Poppins Medium' !important; }

@font-face {
  font-family: 'Poppins Semibold';
  src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'), url('../fonts/poppins-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-psb {
  font-family: 'Poppins Semibold'; }

.cms-heading-wrapper .ft-psb {
  font-family: 'Poppins Semibold' !important; }

@font-face {
  font-family: 'Poppins Bold';
  src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'), url('../fonts/poppins-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-pb {
  font-family: 'Poppins Bold'; }

.cms-heading-wrapper .ft-pb {
  font-family: 'Poppins Bold' !important; }

@font-face {
  font-family: 'Droidserif';
  src: url('../fonts/droidserif-webfont.woff2') format('woff2'), url('../fonts/droidserif-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-ds {
  font-family: 'Droidserif'; }

.cms-heading-wrapper .ft-ds {
  font-family: 'Droidserif' !important; }

@font-face {
  font-family: 'Droidserif Italic';
  src: url('../fonts/droidserif-italic-webfont.woff2') format('woff2'), url('../fonts/droidserif-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-dsi {
  font-family: 'Droidserif Italic'; }

.cms-heading-wrapper .ft-dsi {
  font-family: 'Droidserif Italic' !important; }

@font-face {
  font-family: 'Droidserif Bold';
  src: url('../fonts/droidserif-bold-webfont.woff2') format('woff2'), url('../fonts/droidserif-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal; }

.ft-dsb {
  font-family: 'Droidserif Bold'; }

.cms-heading-wrapper .ft-dsb {
  font-family: 'Droidserif Bold' !important; }

.fb_iframe_widget iframe {
  max-width: 100% !important; }

.header-1 .wpb_revslider_element .forcefullwidth_wrapper_tp_banner, .header-4 .wpb_revslider_element .forcefullwidth_wrapper_tp_banner {
  margin-bottom: 0 !important; }

@media (min-width: 992px) {
    .vc_parallax-inner {
      background-size: cover !important;
      background-position: center center !important;
      background-attachment: fixed !important; } }

.cms-inner-page-title {
  position: relative;
  display: table;
  width: 100%; }
  .cms-inner-page-title .cms-breadcrumb {
    position: absolute;
    top: 50%; }
  @media (max-width: 991px) {
    .cms-inner-page-title .cms-breadcrumb {
      position: static;
      text-align: center; } }

@media (max-width: 767px) {
      .wpb_content_element.wpb_text_column {
        padding-right: 0 !important;
        padding-left: 0 !important; } }

.cms-breadcrumb {
  right: -15px;
  text-align: right;
  transform: translate(0px, -50%); }
  .cms-breadcrumb .breadcrumbs {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
  .cms-breadcrumb .breadcrumbs li {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 0 6px;
    color: #fff;
    position: relative;
    font-family: 'Playfair Display', serif; }
  .cms-breadcrumb .breadcrumbs li:first-child {
    padding-left: 14px; }
  @media (max-width: 767px) {
        .cms-breadcrumb .breadcrumbs li:first-child {
          padding-left: 0; } }
  .cms-breadcrumb .breadcrumbs li a {
    color: #fff; }
  .cms-breadcrumb .breadcrumbs li a:hover {
    color: #aa8533 !important; }
  .cms-breadcrumb .breadcrumbs li:after {
    content: "/";
    font-size: 18px;
    position: absolute;
    right: -4px;
    top: -1px; }
  .cms-breadcrumb .breadcrumbs li:last-child:after {
    display: none; }

#cms-page-title {
  background-image: url(../images/bg-page-title.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #565656;
  background-size: cover;
  padding: 315px 0 180px;
  position: relative;
  z-index: 4; }
  @media (max-width: 991px) {
  #cms-page-title {
    padding: 100px 0; }
    #cms-page-title h1 {
      margin-bottom: 30px !important; } }
  #cms-page-title:before {
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(27, 26, 26, 0.5); }
  #cms-page-title .cms-page-title-inner {
    z-index: 3; }
  #cms-page-title .cms-page-title-inner h1 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.075em !important;
    margin-left: 0px;
    letter-spacing: 5px;
    font-family: 'Montserrat', sans-serif !important; }
  #cms-page-title .cms-page-title-inner span {
    position: relative;
    display: inline-block;
    max-width: 650px;
    margin: 8px auto 0 auto;
    color: #f9f9f9;
    font-family: 'Montserrat', sans-serif; }
  #cms-page-title.pt-style4:before {
    background-color: rgba(0, 0, 0, 0.5); }
  #cms-page-title.pt-style4 .cms-page-title-inner h1 {
    font-size: 55px;
    line-height: 55px; }
  @media screen and (max-width: 767px) {
      #cms-page-title.pt-style4 .cms-page-title-inner h1 {
        font-size: 30px !important;
        line-height: 30px;
        text-align: center !important; } }
  @media screen and (max-width: 767px) {
      #cms-page-title.pt-style4 .cms-breadcrumb .breadcrumbs {
        text-align: center; } }
  #cms-page-title.pt-style4 .cms-breadcrumb .breadcrumbs li {
    color: #fff; }
  #cms-page-title.pt-style4 .cms-breadcrumb .breadcrumbs li a {
    color: #fff; }
  #cms-page-title.page-title-404 {
    padding: 130px 0; }
  @media (max-width: 991px) {
  #cms-page-title {
    text-align: center; } }

.search .page-title .cms-page-title-inner h1 cite {
  font-style: normal; }

.home #cms-breadcrumb {
  display: none;
  /* ==========================================================================
   [End] 1. Page Title
========================================================================== */
  /* ==========================================================================
   [Start] 2. Primary
========================================================================== */ }

#cms-content {
  padding: 120px 0; }
  #cms-content.noPadding {
    padding: 0 !important; }

.post-type-archive-attorney .site-content {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }

.single-product #cms-content {
  padding-bottom: 78px; }

.tax-product_cat #cms-content {
  padding-bottom: 100px; }
  .tax-product_cat .right-sidebar-wrap {
    margin-bottom: 90px; }

.row-has-boxshadow:before, .row-has-boxshadow:after {
  height: 12px;
  width: 100%;
  position: absolute;
  left: 0;
  content: "";
  z-index: 99;
  opacity: 0.3; }
  .row-has-boxshadow:before {
    top: 0;
    background-image: url(../images/box-shadow-top.png);
    background-repeat: repeat-x; }
  .row-has-boxshadow:after {
    bottom: 0;
    background-image: url(../images/box-shadow-bottom.png);
    background-repeat: repeat-x; }

.row-has-boxshadow-top:before {
  height: 12px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/box-shadow-top.png);
  background-repeat: repeat-x;
  z-index: 99;
  opacity: 0.3; }

.row-has-boxshadow-bottom:before {
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-image: url(../images/box-shadow-top.png);
  background-repeat: repeat-x;
  z-index: 99;
  opacity: 0.3; }

.cms-video-popup-wrapper {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* 
   [Start] 404 Page
   +-----------------------------------+
*/ }
  .cms-video-popup-wrapper .cms-button-video {
    display: inline-block;
    height: 68px;
    width: 68px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/video-button1.png);
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */ }
  .cms-video-popup-wrapper.button-style1 .cms-button-video {
    background-color: #222; }
  .cms-video-popup-wrapper.button-style1 .cms-button-video:hover {
    background-color: #aa8533; }
  .cms-video-popup-wrapper.button-style2 .cms-button-video, .cms-video-popup-wrapper.button-style3 .cms-button-video {
    height: 32px;
    width: 32px;
    background-image: url(../images/video-button2.png); }
  .cms-video-popup-wrapper.button-style2 .cms-button-video:before, .cms-video-popup-wrapper.button-style3 .cms-button-video:before {
    border: 2px solid #f9f9f9;
    border-radius: 100%;
    content: "";
    display: block;
    height: 68px;
    left: -18px;
    position: absolute;
    top: -18px;
    width: 68px;
    z-index: 1;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .cms-video-popup-wrapper.button-style2 .cms-button-video:hover, .cms-video-popup-wrapper.button-style3 .cms-button-video:hover {
    background-color: #aa8533; }
  .cms-video-popup-wrapper.button-style2 .cms-button-video:hover:before, .cms-video-popup-wrapper.button-style3 .cms-button-video:hover:before {
    border-color: #aa8533; }
  .cms-video-popup-wrapper.button-style3 .cms-button-video:before {
    border: 2px solid #aa8533; }
  .cms-video-popup-wrapper.intro-active {
    height: 360px;
    position: relative; }
  .cms-video-popup-wrapper.intro-active .cms-button-video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -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 */
    z-index: 2; }
  .cms-video-popup-wrapper.intro-active span {
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1; }

.error404 {
  /* 
   [Start] Slider
   +-----------------------------------+
*/ }
  .error404 .cms-page-title-inner .ft-nvb {
    font-size: 60px !important; }
  .error404 .site-content {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    background-attachment: fixed; }
  .error404 .site-content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.4); }
  @media (min-width: 767px) {
    .error404 .site-content {
      padding-top: 246px !important;
      padding-bottom: 100px !important; } }
  .error404 #main .error-404 {
    margin: auto; }
  .error404 #main .error-404 .logo-404 .logo-lion {
    max-width: 100px;
    background-image: url(../images/pt-404.jpg);
    background: transparent;
    margin: 0 auto 20px; }
  .error404 #main .error-404 .logo-404 svg path {
    fill: #aa8533; }
  .error404 #main .error-404 .logo-404 svg {
    width: 75px; }
  .error404 #main .error-404 .title404-first, .error404 #main .error-404 .title404, .error404 #main .error-404 .title404-sub {
    font-family: 'Montserrat', sans-serif;
    color: #fff; }
  .error404 #main .error-404 .title404-first, .error404 #main .error-404 .title404-sub {
    font-size: 40px;
    letter-spacing: 0.1em; }
  @media (max-width: 767px) {
      .error404 #main .error-404 .title404-first, .error404 #main .error-404 .title404-sub {
        font-size: 25px; } }
  .error404 #main .error-404 .title404-first {
    margin-top: -2px; }
  .error404 #main .error-404 .title404 {
    font-size: 228px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 29px;
    letter-spacing: 0.2em; }
  @media (max-width: 767px) {
      .error404 #main .error-404 .title404 {
        font-size: 80px;
        letter-spacing: 0.01em; } }
  .error404 #main .error-404 .page-content {
    padding: 18px 0 5px 0;
    margin-bottom: 50px;
    color: #aa8533;
    font-size: 17px; }
  .error404 #main .error-404 .btn-primary {
    -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 */
    font-weight: normal; }

.rev_slider_wrapper {
  /*Overlay thumbnail*/ }
  .rev_slider_wrapper .tparrows {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .rev_slider_wrapper .tparrows.gyges {
    width: 53px;
    height: 63px;
    background-color: #604f3b; }
  .rev_slider_wrapper .tparrows.gyges:hover {
    background-color: #aa8533 !important; }
  .rev_slider_wrapper .tparrows.gyges:before {
    line-height: 63px; }
  .rev_slider_wrapper .tparrows.custom {
    width: 28px;
    height: 123px;
    background-color: transparent;
    border: 1px solid #fff; }
  .rev_slider_wrapper .tparrows.custom:before {
    line-height: 121px;
    color: #fff; }
  .rev_slider_wrapper .tparrows.custom:hover {
    border-color: #aa8533; }
  .rev_slider_wrapper .tparrows.custom:hover:before {
    color: #aa8533; }

ul.tp-revslider-mainul .slotholder::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.45;
  display: block;
  z-index: 33; }

.fixed-bottom {
  bottom: 0;
  left: 0;
  margin: 0 !important;
  position: absolute;
  right: 0;
  width: 100%; }
  .fixed-bottom > .vc_column_container {
    margin: auto;
    max-width: 1140px; }

.overflow-visible {
  overflow: visible !important; }

.row-overlay {
  position: relative; }
  .row-overlay:after {
    background-color: inherit;
    bottom: 0;
    content: "";
    display: block !important;
    height: 100% !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible !important; }
  .row-overlay .vc_column-inner {
    position: relative;
    z-index: 3; }
  .row-overlay.row-gradient:before {
    bottom: 0;
    content: "";
    display: block !important;
    height: 30% !important;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    visibility: visible !important;
    z-index: 1; }

.col-overlay .vc_column-inner {
  position: relative; }
  .col-overlay .vc_column-inner:after {
    background-color: inherit;
    bottom: 0;
    content: "";
    display: block !important;
    height: 100% !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible !important; }
  .col-overlay .vc_column-inner .wpb_wrapper {
    position: relative;
    z-index: 1; }

body .entry-content .row-z-index {
  z-index: 3; }
  @media (max-width: 991px) {
    body .entry-content .row-z-index {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
      padding-left: 15px !important;
      padding-right: 15px !important; }
      body .entry-content .row-z-index .counter-content {
        padding-right: 15px; } }
  @media (max-width: 991px) and (max-width: 320px) {
        body .entry-content .row-z-index {
          padding-left: 0px !important;
          padding-right: 0px !important; } }

.col-overlay .vc_column-inner {
  position: relative; }
  .col-overlay .vc_column-inner:after {
    background-color: inherit;
    bottom: 0;
    content: "";
    display: block !important;
    height: 100% !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible !important; }
  .col-overlay .vc_column-inner .wpb_wrapper {
    position: relative;
    z-index: 1; }

@media (max-width: 360px) {
    .section-offset-left {
      background-color: #333; } }

.section-offset-left .vc_column-inner {
  position: relative; }

.section-offset-right .vc_row .vc_column-inner {
  padding-left: 15px !important;
  padding-right: 15px !important; }

.vc_row-no-padding .section-offset-right .vc_row {
  padding-right: 15px; }

.vc_row-no-padding .section-offset-left .vc_row {
  padding-left: 15px; }

@media (min-width: 768px) and (max-width: 991px) {
    .vc_row-no-padding .section-offset-left .vc_column-inner, .vc_row-no-padding .section-offset-right .vc_column-inner {
      padding-left: 25px !important;
      padding-right: 25px !important; } }
  @media (max-width: 767px) {
  .vc_row-no-padding .section-offset-left .vc_column-inner, .vc_row-no-padding .section-offset-right .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important; } }

@media (max-width: 767px) {
    .vc_column_container .vc_column-inner {
      padding-left: 15px !important;
      padding-right: 15px !important; } }

@media screen and (max-width: 991px) {
  .site-content .rev_slider_wrapper {
    margin-bottom: 30px !important; }
    .site-content .rev_slider_wrapper .tparrows {
      width: 50px;
      height: 50px; }
      .site-content .rev_slider_wrapper .tparrows:before {
        line-height: 48px !important;
        font-size: 15px; }
      .site-content .rev_slider_wrapper .tparrows.gyges {
        background-color: transparent !important;
        border: 1px solid #999; }
    .site-content .rev_slider_wrapper .tp-leftarrow.tparrows.persephone {
      margin-left: 10px; }
    .site-content .rev_slider_wrapper .tp-rightarrow.tparrows.persephone {
      margin-right: 10px; } }

@media screen and (max-width: 767px) {
  /* Hidden Sidebar */
    .site-content .rev_slider_wrapper {
      margin-bottom: 30px !important; }
      .site-content .rev_slider_wrapper .tparrows {
        width: 40px;
        height: 40px; }
        .site-content .rev_slider_wrapper .tparrows:before {
          line-height: 38px !important;
          font-size: 15px; }
        .site-content .rev_slider_wrapper .tparrows.metis {
          width: 40px !important;
          height: 40px !important; }
          .site-content .rev_slider_wrapper .tparrows.metis:before {
            line-height: 22px !important; }
          .site-content .rev_slider_wrapper .tparrows.metis.tp-leftarrow {
            left: 10px; }
          .site-content .rev_slider_wrapper .tparrows.metis.tp-rightarrow {
            right: 10px; }
    .cms-cta-wrapper {
      margin-top: 0 !important;
      margin-bottom: 30px !important; } }

.cms-modal-close, .hidden-sidebar-close {
  color: #fff;
  font-size: 24px;
  position: absolute;
  right: 35px;
  top: 45px;
  cursor: pointer;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms; }
  .cms-modal-close:hover, .hidden-sidebar-close:hover {
    color: #aa8533; }

.cms-hidden-sidebar-wrap {
  padding: 40px 50px;
  width: 100%;
  max-width: 370px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  opacity: 0;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  /* BACKGROUND GRADIENT */
  /* TRANSFORM STYLE */
  visibility: hidden;
  -webkit-transition: all 260ms linear 0ms;
  -moz-transition: all 260ms linear 0ms;
  -ms-transition: all 260ms linear 0ms;
  transition: all 260ms linear 0ms;
  height: 100%;
  bottom: 0; }
  .cms-hidden-sidebar-wrap .hidden-sidebar-close {
    color: #222;
    font-size: 18px; }
  .cms-hidden-sidebar-wrap .hidden-sidebar-close:hover {
    color: #aa8533; }
  .cms-hidden-sidebar-wrap .cms-hidden-sidebar-inner {
    width: 100% !important; }
  .cms-hidden-sidebar-wrap .cms-hidden-sidebar-inner > aside {
    margin-bottom: 40px; }
  .cms-hidden-sidebar-wrap.open {
    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 */
    opacity: 1; }

.admin-bar .cms-hidden-sidebar-wrap {
  top: 32px;
  /* Search Popup */ }

.cms-search-wrap, .cms-menu-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1003;
  background-color: rgba(34, 34, 34, 0.98);
  -webkit-transition: all 260ms linear 0ms;
  -moz-transition: all 260ms linear 0ms;
  -ms-transition: all 260ms linear 0ms;
  transition: all 260ms linear 0ms;
  opacity: 0;
  visibility: hidden; }

.cms-search-wrap .cshero-search-inner {
  left: 0;
  margin: auto;
  max-width: 570px;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translate(0px, -50%);
  width: 100%;
  border-bottom: 2px solid #9e9e9e;
  -webkit-transition: all 320ms linear 0ms;
  -moz-transition: all 320ms linear 0ms;
  -ms-transition: all 320ms linear 0ms;
  transition: all 320ms linear 0ms;
  opacity: 0; }
  .cms-search-wrap .cshero-search-inner .search-form input[type="text"] {
    background-color: transparent;
    border: medium none;
    padding: 0 40px 0 0;
    font-size: 35px;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif;
    color: #9e9e9e;
    font-weight: 300;
    height: 80px; }
  .cms-search-wrap .cshero-search-inner .search-form > div::before {
    color: #9e9e9e;
    font-size: 28px;
    right: 0; }
  .cms-search-wrap .cshero-search-inner .search-form .search-submit {
    top: 0;
    color: #9e9e9e;
    right: 0;
    font-size: 28px;
    height: 80px;
    width: 40px;
    position: absolute;
    background-color: transparent;
    opacity: 1;
    z-index: 2;
    border: none;
    padding: 0; }
  .cms-search-wrap.open {
    opacity: 1;
    visibility: visible; }
  .cms-search-wrap.open .cshero-search-inner {
    top: 50%;
    opacity: 1; }

.social-meta {
  /* Menu Popup */ }
  .social-meta li {
    display: inline-block; }

.cms-menu-popup-wrap {
  padding-bottom: 90px; }
  .cms-menu-popup-wrap .cms-menu-popup-inner {
    left: 0;
    margin: auto;
    max-width: 370px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
    width: 100%;
    -webkit-transition: all 320ms linear 0ms;
    -moz-transition: all 320ms linear 0ms;
    -ms-transition: all 320ms linear 0ms;
    transition: all 320ms linear 0ms;
    text-align: center;
    width: 100% !important; }
  .cms-menu-popup-wrap .cms-menu-popup-inner .menu-main-menu > li {
    -webkit-transform: translateX(-30px);
    -khtml-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transition: all 260ms linear 0ms;
    -moz-transition: all 260ms linear 0ms;
    -ms-transition: all 260ms linear 0ms;
    transition: all 260ms linear 0ms;
    opacity: 0; }
  .cms-menu-popup-wrap .cms-menu-popup-inner .menu-main-menu > li.open {
    -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; }
  .cms-menu-popup-wrap .social-top {
    bottom: 40px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center; }
  .cms-menu-popup-wrap .social-top li {
    display: inline-block;
    padding: 0 12px; }
  .cms-menu-popup-wrap .social-top li a {
    font-size: 14px;
    color: #646464; }
  .cms-menu-popup-wrap .social-top li a:hover {
    color: #aa8533; }
  .cms-menu-popup-wrap .social-top li:first-child {
    display: none; }
  .cms-menu-popup-wrap.open {
    opacity: 1;
    visibility: visible; }

.cms-hidden-overlay {
  background-color: rgba(34, 34, 34, 0.6);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
  /* Full Height Page */ }
  .cms-hidden-overlay.open {
    opacity: 1;
    visibility: visible; }

.fp-tableCell .wpb_column.col-h100 {
  height: 100vh; }
  .fp-tableCell .wpb_column.col-h100 .vc_column-inner {
    height: 100%; }

#cms-theme .mfp-image-holder .mfp-close, #cms-theme .mfp-iframe-holder .mfp-close {
  line-height: 40px;
  padding: 0;
  right: 0;
  text-align: center;
  top: -44px;
  width: 40px;
  -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 */ }
  #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:before, #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:after, #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu span {
    background-color: #222; }
  #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:before, #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover:after, #cms-theme.fp-viewing-section0 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cms-theme.fp-viewing-section2 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cms-theme.fp-viewing-section4 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cms-theme.fp-viewing-section6 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cms-theme.fp-viewing-section8 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span, #cms-theme.fp-viewing-section10 #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon .h-button-menu:hover span {
    background-color: #aa8533; }
  #cms-theme.fp-viewing-section1 #cshero-header-inner #cshero-header #cshero-header-logo a.main-logo, #cms-theme.fp-viewing-section3 #cshero-header-inner #cshero-header #cshero-header-logo a.main-logo, #cms-theme.fp-viewing-section5 #cshero-header-inner #cshero-header #cshero-header-logo a.main-logo, #cms-theme.fp-viewing-section7 #cshero-header-inner #cshero-header #cshero-header-logo a.main-logo, #cms-theme.fp-viewing-section9 #cshero-header-inner #cshero-header #cshero-header-logo a.main-logo {
    opacity: 0; }
  #cms-theme.fp-viewing-section1 #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo, #cms-theme.fp-viewing-section3 #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo, #cms-theme.fp-viewing-section5 #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo, #cms-theme.fp-viewing-section7 #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo, #cms-theme.fp-viewing-section9 #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo {
    opacity: 1; }
  #cms-theme.fp-viewing-section1 #fp-nav ul li a span, #cms-theme.fp-viewing-section3 #fp-nav ul li a span, #cms-theme.fp-viewing-section5 #fp-nav ul li a span, #cms-theme.fp-viewing-section7 #fp-nav ul li a span, #cms-theme.fp-viewing-section9 #fp-nav ul li a span {
    background-color: #fff; }
  #cms-theme.fp-viewing-section1 #fp-nav ul li a span:before, #cms-theme.fp-viewing-section3 #fp-nav ul li a span:before, #cms-theme.fp-viewing-section5 #fp-nav ul li a span:before, #cms-theme.fp-viewing-section7 #fp-nav ul li a span:before, #cms-theme.fp-viewing-section9 #fp-nav ul li a span:before {
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 10px #fff inset;
    -moz-box-shadow: 0 0 10px #fff inset;
    -ms-box-shadow: 0 0 10px #fff inset;
    box-shadow: 0 0 10px #fff inset; }
  #cms-theme.fp-viewing-section1 #fp-nav ul li a.active span, #cms-theme.fp-viewing-section3 #fp-nav ul li a.active span, #cms-theme.fp-viewing-section5 #fp-nav ul li a.active span, #cms-theme.fp-viewing-section7 #fp-nav ul li a.active span, #cms-theme.fp-viewing-section9 #fp-nav ul li a.active span {
    background-color: #fff; }
  #cms-theme.fp-viewing-section1 #fp-nav ul li a.active span:before, #cms-theme.fp-viewing-section3 #fp-nav ul li a.active span:before, #cms-theme.fp-viewing-section5 #fp-nav ul li a.active span:before, #cms-theme.fp-viewing-section7 #fp-nav ul li a.active span:before, #cms-theme.fp-viewing-section9 #fp-nav ul li a.active span:before {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border-color: transparent; }
  #cms-theme.fp-viewing-section1 #fp-nav ul li a.active span:after, #cms-theme.fp-viewing-section3 #fp-nav ul li a.active span:after, #cms-theme.fp-viewing-section5 #fp-nav ul li a.active span:after, #cms-theme.fp-viewing-section7 #fp-nav ul li a.active span:after, #cms-theme.fp-viewing-section9 #fp-nav ul li a.active span:after {
    border-color: #fff; }

.fp-tableCell .vc_col-sm-6 {
  /* Page Loading */ }
  .fp-tableCell .vc_col-sm-6 .cms-testimonial-layout1 {
    max-width: 730px; }
  .fp-tableCell .vc_col-sm-6 .cms-testimonial-layout1 .cms-testimonial-wrapper {
    padding: 0 40px; }

#cms-loadding {
  background: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  #cms-loadding .cms-loader {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -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 */
    margin: auto;
    animation: cms-loader 1s ease infinite;
    -moz-animation: cms-loader 1s ease infinite;
    -webkit-animation: cms-loader 1s ease infinite;
    -ms-animation: cms-loader 1s ease infinite;
    -o-animation: cms-loader 1s ease infinite; }

@keyframes cms-loader {
  /* ==========================================================================
   [End] 3. Primary
========================================================================== */
  0%, 100% {
    box-shadow: -6px 20px 0 #aa8533, 13px 20px 0 rgba(170, 133, 51, 0.2), 13px 39px 0 rgba(170, 133, 51, 0.2), -6px 39px 0 rgba(170, 133, 51, 0.2); }

  25% {
    box-shadow: -6px 20px 0 rgba(170, 133, 51, 0.2), 13px 20px 0 #aa8533, 13px 39px 0 rgba(170, 133, 51, 0.2), -6px 39px 0 rgba(170, 133, 51, 0.2); }

  50% {
    box-shadow: -6px 20px 0 rgba(170, 133, 51, 0.2), 13px 20px 0 rgba(170, 133, 51, 0.2), 13px 39px 0 #aa8533, -6px 39px 0 rgba(170, 133, 51, 0.2); }

  75% {
    box-shadow: -6px 20px 0 rgba(170, 133, 51, 0.2), 13px 20px 0 rgba(170, 133, 51, 0.2), 13px 39px 0 rgba(170, 133, 51, 0.2), -6px 39px 0 #aa8533; } }

.cms-rtl .rev_slider_wrapper {
  direction: ltr; }
  .cms-rtl [class*="vc_col-"], .cms-rtl [class^="vc_col-"], .cms-rtl [class*="col-md-"], .cms-rtl [class^="col-md-"] {
    float: right; }
  .cms-rtl .alignleft {
    float: right; }
  .cms-rtl .alignright {
    float: left; }
  .cms-rtl .text-right {
    text-align: left; }
  .cms-rtl .text-left {
    text-align: right; }
  .cms-rtl .cms-search-wrap .cshero-search-inner #searchform {
    /* Content */ }
  .cms-rtl .cms-search-wrap .cshero-search-inner #searchform input[type="text"] {
    padding-right: 0;
    padding-left: 40px; }
  .cms-rtl .cms-carousel {
    direction: ltr; }
  .cms-rtl .cms-carousel .cms-carousel-item {
    direction: rtl; }
  .cms-rtl .wg-title .line1, .cms-rtl #reply-title .line1, .cms-rtl .comments-title .line1, .cms-rtl .h-line .line1 {
    left: inherit;
    right: 1px; }
  .cms-rtl .wg-title .line1:before, .cms-rtl #reply-title .line1:before, .cms-rtl .comments-title .line1:before, .cms-rtl .h-line .line1:before {
    right: 10px;
    left: inherit; }
  .cms-rtl .wg-title .line1:after, .cms-rtl #reply-title .line1:after, .cms-rtl .comments-title .line1:after, .cms-rtl .h-line .line1:after {
    right: 20px;
    left: inherit; }
  .cms-rtl .wg-title .line2, .cms-rtl #reply-title .line2, .cms-rtl .comments-title .line2, .cms-rtl .h-line .line2 {
    right: 0px;
    left: inherit; }
  .cms-rtl .wg-title .line2:before, .cms-rtl #reply-title .line2:before, .cms-rtl .comments-title .line2:before, .cms-rtl .h-line .line2:before {
    left: inherit;
    right: 10px; }
  .cms-rtl .wg-title .line2:after, .cms-rtl #reply-title .line2:after, .cms-rtl .comments-title .line2:after, .cms-rtl .h-line .line2:after {
    left: inherit;
    right: 20px; }
  .cms-rtl .wg-title .line3, .cms-rtl #reply-title .line3, .cms-rtl .comments-title .line3, .cms-rtl .h-line .line3 {
    left: inherit;
    right: 31px; }
  .cms-rtl .wg-title .line3:before, .cms-rtl #reply-title .line3:before, .cms-rtl .comments-title .line3:before, .cms-rtl .h-line .line3:before {
    left: inherit;
    right: -1px; }
  .cms-rtl .wg-title .line4, .cms-rtl #reply-title .line4, .cms-rtl .comments-title .line4, .cms-rtl .h-line .line4 {
    left: inherit;
    right: 41px; }
  .cms-rtl .wg-title .line4:before, .cms-rtl #reply-title .line4:before, .cms-rtl .comments-title .line4:before, .cms-rtl .h-line .line4:before {
    left: inherit;
    right: -1px; }
  .cms-rtl .wg-title .line5, .cms-rtl #reply-title .line5, .cms-rtl .comments-title .line5, .cms-rtl .h-line .line5 {
    left: inherit;
    right: 51px; }
  .cms-rtl .wg-title .line5:before, .cms-rtl #reply-title .line5:before, .cms-rtl .comments-title .line5:before, .cms-rtl .h-line .line5:before {
    left: inherit;
    right: -1px; }
  .cms-rtl .wg-title .line6, .cms-rtl #reply-title .line6, .cms-rtl .comments-title .line6, .cms-rtl .h-line .line6 {
    left: inherit;
    right: 61px; }
  .cms-rtl .wg-title .line6:before, .cms-rtl #reply-title .line6:before, .cms-rtl .comments-title .line6:before, .cms-rtl .h-line .line6:before {
    left: inherit;
    right: -1px; }
  .cms-rtl #searchform > div::before {
    right: inherit !important;
    left: 18px; }
  .cms-rtl #searchform #searchsubmit {
    right: inherit;
    left: 0; }
  .cms-rtl blockquote {
    text-align: right; }
  .cms-rtl.single-post .post-previous-next .nav-link-prev {
    text-align: left; }
  .cms-rtl.single-post .post-previous-next .nav-link-next {
    text-align: right; }
  .cms-rtl.single-post .entry-author .admin-avt {
    float: right; }
  .cms-rtl.single-post .entry-author .admin-info {
    padding-left: 0;
    padding-right: 120px; }
  .cms-rtl.single-post #comments .comment-list .comment-body {
    padding-left: 0px;
    padding-right: 90px; }
  .cms-rtl.single-post #comments .comment-list .comment-body .comment-author .avatar {
    right: 0;
    left: inherit; }
  .cms-rtl.single-post #comments .comment-list > li:first-child > .comment-body {
    padding-left: 0;
    padding-right: 90px; }
  .cms-rtl .entry-meta li:last-child::before {
    display: block; }
  .cms-rtl .entry-meta li:first-child {
    padding-left: 8px; }
  .cms-rtl .entry-meta li:first-child:before {
    display: none; }
  .cms-rtl .is-right-sidebar #content {
    float: left; }
  .cms-rtl .cms-recent-post .cms-recent-media {
    float: right; }
  .cms-rtl .cms-recent-post .cms-recent-details {
    padding-right: 65px;
    padding-left: 0; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-icon {
    float: right; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-content {
    padding-left: 0;
    padding-right: 70px; }
  .cms-rtl .cms-modal-close, .cms-rtl .hidden-sidebar-close {
    right: initial;
    left: 45px;
    z-index: 100; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-button-wrapper {
    direction: ltr;
    text-align: right; }
  .cms-rtl .cms-progress-layout1 .cms-progress .progress-couter {
    right: inherit;
    left: 0;
    /* Footer */ }
  .cms-rtl .site-footer .widget_newsletterwidget form .tnp-field-button {
    right: inherit;
    left: 0; }
  .cms-rtl #cms-footer-bottom .cms-footer-bottom-item.text-center {
    direction: ltr; }
  .cms-rtl #cms-footer-bottom .cms-footer-bottom-item1 {
    direction: ltr;
    text-align: right; }
  .cms-rtl #cms-footer-bottom .widget_nav_menu ul.menu > li:before {
    right: -2px; }
  .cms-rtl #cms-footer-bottom .widget_nav_menu ul.menu > li:first-child {
    padding-right: 0;
    padding-left: 10px; }
  .cms-rtl #cms-footer-bottom .widget_nav_menu ul.menu > li:last-child {
    padding-left: 0;
    padding-right: 10px; }
  .cms-rtl .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-footer .cms-testimonial-image {
    float: right; }
  .cms-rtl .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-footer .cms-testimonial-meta {
    padding-left: 0;
    padding-right: 70px;
    text-align: right; }
  .cms-rtl .cms-heading-wrapper.cms-heading-layout1 {
    text-align: right; }
  .cms-rtl .get-contact-page {
    direction: ltr;
    text-align: right; }
  .cms-rtl input[type="text"], .cms-rtl input[type="password"], .cms-rtl input[type="datetime"], .cms-rtl input[type="datetime-local"], .cms-rtl input[type="date"], .cms-rtl input[type="month"], .cms-rtl input[type="time"], .cms-rtl input[type="week"], .cms-rtl input[type="number"], .cms-rtl input[type="email"], .cms-rtl input[type="url"], .cms-rtl input[type="search"], .cms-rtl input[type="tel"], .cms-rtl input[type="color"], .cms-rtl textarea, .cms-rtl select {
    text-align: right; }
  .cms-rtl .vc_slide.vc_images_carousel {
    direction: ltr; }
  .cms-rtl a.pp_next, .cms-rtl a.pp_previous, .cms-rtl div.pp_default .pp_expand, .cms-rtl div.pp_default .pp_nav .pp_pause, .cms-rtl div.pp_default .pp_nav .pp_play, .cms-rtl .pp_close, .cms-rtl .pp_arrow_next, .cms-rtl .pp_arrow_previous {
    text-indent: 99999px; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-title span {
    padding-right: 0;
    padding-left: 6px; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-button-wrapper, .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-button-wrapper {
    direction: ltr;
    text-align: right; }
  .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-header .cms-fancybox-number, .cms-rtl .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-header .cms-fancybox-number {
    left: initial;
    right: 0; }
  .cms-rtl .cms-lists .list-style li {
    padding-left: 0;
    padding-right: 28px; }
  .cms-rtl .cms-lists .list-style li:before {
    left: initial;
    right: 0; }
  .cms-rtl .cms-lists .list-style.list-style8 {
    padding-right: 0; }
  .cms-rtl .cms-lists .list-style.list-style8 li {
    padding-right: 0; }
  .cms-rtl .cms-process .cms-process-title span {
    padding-left: 5px;
    padding-right: 0; }
  .cms-rtl .cms-process .cms-process-content .h-line {
    right: inherit;
    left: -20px; }
  .cms-rtl .cms-dropcap-content .first-letter {
    float: right;
    margin: 5px 0 0 20px; }
  .cms-rtl .cms-alert-wrapper .close {
    float: left; }
  .cms-rtl .cmsrt .cmsrt-meta .cmsrt-price {
    right: inherit;
    left: 0; }
  .cms-rtl#cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li {
    padding: 0 0 15px 20px; }
  .cms-rtl#cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a img {
    float: right;
    margin-right: 0;
    margin-left: 20px; }
  .cms-rtl#cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove {
    display: none; }
  .cms-rtl#cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.total .amount {
    float: left; }
  .cms-rtl #cshero-header-inner #cshero-header .cshero-navigation-right {
    padding-left: 0;
    padding-right: 14px; }
  .cms-rtl #cshero-header-inner.custom-header-14 #cshero-header .cshero-navigation-right {
    margin-left: 0;
    padding-left: 0;
    margin-right: 14px;
    padding-right: 28px; }
  .cms-rtl #cshero-header-inner.custom-header-14 #cshero-header .cshero-navigation-right:before {
    left: inherit;
    right: 0; }
  .cms-rtl .tagcloud a {
    margin-right: 0;
    margin-left: 15px; }
  .cms-rtl .pagination .page-numbers {
    margin-left: 0; }
  .cms-rtl .pagination .page-numbers + .page-numbers {
    margin-right: 12px; }

@media screen and (min-width: 992px) {
  .cms-rtl #cshero-header-inner #cshero-header .cshero-navigation-right {
    float: left; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-navigation-right .h-icon + .h-icon {
      padding-left: 0;
      padding-right: 18px; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation {
      text-align: left; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation li ul li a {
      text-align: right; }
      .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation li ul li a i {
        padding-right: 0px;
        padding-left: 6px; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation li ul:not(.wg-menu-item) li.menu-item-has-children > a::after {
      right: inherit;
      left: 0;
      content: "\f104"; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation ul.multicolumn > li {
      border-left: none;
      padding-left: 0;
      border-right: 1px solid #f2f2f2;
      padding-right: 10px; }
      .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation ul.multicolumn > li > ul.sub-menu {
        width: 100% !important; }
    .cms-rtl #cshero-header-inner #cshero-header .cshero-header-navigation .main-navigation li ul.standar-dropdown ul.sub-menu {
      left: inherit;
      right: 100%; } }

@media screen and (max-width: 991px) {
  .cms-rtl #cshero-menu-mobile {
    right: inherit;
    left: 15px; }
    .cms-rtl #cshero-menu-mobile a {
      display: inline-block;
      position: relative; }
    .cms-rtl .cs-menu-toggle {
      right: inherit;
      left: 0; }
    .cms-rtl #cshero-header #cshero-header-navigation {
      left: 0;
      right: inherit; }
    .cms-rtl #cshero-header #cshero-header-navigation .menu-main-menu li {
      text-align: right; }
    .cms-rtl #cshero-header #cshero-header-navigation .menu-main-menu li a:before, .cms-rtl #cshero-header #cshero-header-navigation .menu-main-menu li:after {
      display: none; } }

@media screen and (min-width: 992px) {
  /*
-----> Minimum width of 992 pixels.
*/
    .header-1 .main-navigation .new-item-menu a, .header-2 .main-navigation .new-item-menu a {
      color: #fff; }
      .header-1 .main-navigation .new-item-menu a:hover, .header-2 .main-navigation .new-item-menu a:hover {
        color: #aa8533; }
    .new-item-menu a {
      line-height: 85px;
      color: #222;
      padding: 0px; }
      .new-item-menu a:hover {
        color: #aa8533; }
    .header-fixed .new-item-menu a {
      line-height: 80px;
      color: #222; }
      .header-fixed .new-item-menu a:hover {
        color: #aa8533; }
    #cshero-menu-mobile {
      display: none; }
    #cshero-header-navigation {
      position: static; }
    .cshero-header-navigation .main-navigation {
      text-align: right; }
      .cshero-header-navigation .main-navigation .menu-main-menu > ul > li, .cshero-header-navigation .main-navigation .menu-main-menu > li {
        vertical-align: top;
        margin: 0 25px;
        display: inline-block;
        position: relative; }
      .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a, .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
        font-size: 15px;
        color: #fff;
        display: block;
        text-transform: uppercase;
        -webkit-transition: all 300ms linear 0ms !important;
        -moz-transition: all 300ms linear 0ms !important;
        -ms-transition: all 300ms linear 0ms !important;
        transition: all 300ms linear 0ms !important;
        visibility: inherit !important; }
        .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a i, .cshero-header-navigation .main-navigation .menu-main-menu > li > a i {
          display: block;
          width: 100%;
          line-height: 0;
          margin-bottom: 6px;
          -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-navigation .main-navigation .menu-main-menu > ul > li > a i + .menu-title, .cshero-header-navigation .main-navigation .menu-main-menu > li > a i + .menu-title {
            -webkit-transform: translateY(25px);
            -khtml-transform: translateY(25px);
            -moz-transform: translateY(25px);
            -ms-transform: translateY(25px);
            -o-transform: translateY(25px);
            transform: translateY(25px);
            /* BACKGROUND GRADIENT */
            /* TRANSFORM STYLE */
            display: block; }
        .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a .menu-title, .cshero-header-navigation .main-navigation .menu-main-menu > li > a .menu-title {
          position: relative; }
        .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.current-menu-ancestor > a, .cshero-header-navigation .main-navigation .menu-main-menu > li > a.current-menu-ancestor > a, .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.current-page-parent > a, .cshero-header-navigation .main-navigation .menu-main-menu > li > a.current-page-parent > a, .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.current-menu-parent > a, .cshero-header-navigation .main-navigation .menu-main-menu > li > a.current-menu-parent > a, .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.current-menu-item > a, .cshero-header-navigation .main-navigation .menu-main-menu > li > a.current-menu-item > a, .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a > a:hover, .cshero-header-navigation .main-navigation .menu-main-menu > li > a > a:hover {
          color: #aa8533; }
        .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.onepage.current, .cshero-header-navigation .main-navigation .menu-main-menu > li > a.onepage.current {
          color: #aa8533; }
      .cshero-header-navigation .main-navigation .menu-main-menu > ul > li > ul.sub-menu, .cshero-header-navigation .main-navigation .menu-main-menu > li > ul.sub-menu {
        opacity: 0;
        -webkit-transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s; }
      .cshero-header-navigation .main-navigation .menu-main-menu > ul > li:hover > ul.sub-menu, .cshero-header-navigation .main-navigation .menu-main-menu > li:hover > ul.sub-menu {
        opacity: 1; }
      .cshero-header-navigation .main-navigation .menu-main-menu > ul > li .cs-menu-toggle, .cshero-header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle {
        display: none; }
    .cshero-header-navigation .main-navigation {
      /* Menu Stick Wall */ }
      .cshero-header-navigation .main-navigation li ul:not(.wg-menu-item) {
        background-color: #fff;
        margin: 0;
        padding: 11px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1001;
        height: 0px;
        min-width: 210px;
        width: inherit !important;
        overflow: hidden;
        visibility: hidden;
        -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
        -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
        clip: rect(1px, 1px, 1px, 1px);
        -webkit-transform: scaleY(0);
        -khtml-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        /* BACKGROUND GRADIENT */
        /* TRANSFORM STYLE */
        transform-origin: 0 0 0;
        -webkit-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0; }
      .cshero-header-navigation .main-navigation li ul:not(.wg-menu-item) li.menu-item-has-children > a {
        position: relative; }
        .cshero-header-navigation .main-navigation li ul:not(.wg-menu-item) li.menu-item-has-children > a:after {
          content: "\f105";
          font-family: FontAwesome;
          font-size: inherit;
          position: absolute;
          right: 0;
          color: #7f7f7f;
          font-weight: normal; }
      .cshero-header-navigation .main-navigation li:hover > ul.sub-menu {
        height: inherit;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        clip: inherit;
        -webkit-transform: scaleY(1);
        -khtml-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        /* BACKGROUND GRADIENT */
        /* TRANSFORM STYLE */ }
    .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item) {
      top: -11px;
      left: 100%;
      /* End Menu Stick Wall */ }
      .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item).back {
        right: 100%;
        left: auto; }
      .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item).back ul:not(.back) {
        right: 100%;
        left: auto; }
      .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item).back ul.back {
        left: 100%;
        right: auto; }
      .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item).back ul.back ul:not(.back) {
        left: 100%;
        right: auto; }
      .cshero-header-navigation .main-navigation li ul ul:not(.wg-menu-item).back ul.back ul.back {
        right: 100%;
        left: auto; }
    .cshero-header-navigation .main-navigation {
      /* End Menu Sub Level */
      /* Header Fixed */ }
      .cshero-header-navigation .main-navigation ul li:hover > ul, .cshero-header-navigation .main-navigation ul li:focus > ul, .cshero-header-navigation .main-navigation .focus > ul {
        border-left: 0;
        clip: inherit;
        height: inherit;
        overflow: visible;
        visibility: visible; }
      .cshero-header-navigation .main-navigation li ul li {
        padding: 0 25px;
        white-space: nowrap; }
      .cshero-header-navigation .main-navigation li ul li a {
        display: block;
        font-size: 15px;
        padding: 8px 0;
        text-align: left;
        color: #7f7f7f;
        border-bottom: 1px solid #f2f2f2;
        -webkit-transition: all 300ms linear 0ms !important;
        -moz-transition: all 300ms linear 0ms !important;
        -ms-transition: all 300ms linear 0ms !important;
        transition: all 300ms linear 0ms !important; }
      .cshero-header-navigation .main-navigation li ul li a i {
        padding-right: 6px; }
      .cshero-header-navigation .main-navigation li ul li a:hover {
        color: #aa8533;
        padding-left: 12px; }
      .cshero-header-navigation .main-navigation li ul li.current-menu-parent > a, .cshero-header-navigation .main-navigation li ul li.current-menu-item > a {
        color: #aa8533; }
      .cshero-header-navigation .main-navigation li ul li.current-menu-parent > a:after, .cshero-header-navigation .main-navigation li ul li.current-menu-item > a:after {
        color: #aa8533 !important; }
      .cshero-header-navigation .main-navigation li ul.sub-menu li:last-child > a {
        border: none; }
      .cshero-header-navigation .main-navigation ul.sub-menu li {
        position: relative;
        text-transform: capitalize; }
    .header-fixed .effect-line .menu-main-menu > li > a .menu-title:before {
      bottom: -9px; } }
  @media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
          .cshero-header-navigation .main-navigation .menu-main-menu > ul > li, .cshero-header-navigation .main-navigation .menu-main-menu > li {
            padding: 0 8px; }
            .cshero-header-navigation .main-navigation .menu-main-menu > ul > li a, .cshero-header-navigation .main-navigation .menu-main-menu > li a {
              font-size: 14px !important; } }

.cs-menu-toggle {
  cursor: pointer;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 6px;
  width: 30px; }
  .cs-menu-toggle:before {
    content: "\f278";
    font-family: Material-Design-Iconic-Font;
    font-size: 14px;
    color: #222;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .cs-menu-toggle:hover:before {
    color: #aa8533; }

.menu-accordion {
  /*
-----> Max width of 992 pixels.
*/ }
  .menu-accordion li {
    position: relative; }
  .menu-accordion li a {
    color: #fff;
    font-weight: 600;
    font-size: 20px; }
  .menu-accordion > li {
    padding: 12px 0; }
  .menu-accordion > li > a {
    font-size: 30px;
    line-height: normal; }
  .menu-accordion > li.current-menu-ancestor > a, .menu-accordion > li.current-page-parent > a, .menu-accordion > li.current-menu-parent > a, .menu-accordion > li.current-menu-item > a, .menu-accordion > li > a:hover {
    color: #aa8533; }
  .menu-accordion .cs-menu-toggle {
    top: 12px; }
  .menu-accordion .cs-menu-toggle:before {
    color: #fff;
    font-size: 22px; }
  .menu-accordion .cs-menu-toggle:hover:before {
    color: #aa8533; }
  .menu-accordion .sub-menu {
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease; }
  .menu-accordion .sub-menu li {
    padding: 8px 0; }
  .menu-accordion .sub-menu li a:hover {
    color: #aa8533; }
  .menu-accordion .sub-menu.submenu-open {
    padding-top: 15px;
    max-height: 1000px;
    opacity: 1;
    overflow: visible; }
  .menu-accordion .sub-menu.submenu-open + .cs-menu-toggle:before {
    content: "\f273"; }

@media screen and (max-width: 991px) {
  /*
-----> End Max width of 992 pixels.
*/
    .menu-accordion li a {
      font-size: 16px; }
      .menu-accordion > li {
        padding: 10px 0; }
        .menu-accordion > li > a {
          font-size: 22px; }
    #cshero-header {
      border-bottom: 1px solid #e7e4ef;
      background-color: #fff; }
      #cshero-header > .container {
        position: relative;
        z-index: 1001; }
      #cshero-header #cshero-header-logo {
        padding: 0 15px; }
        #cshero-header #cshero-header-logo a {
          display: inline-block;
          line-height: 100px; }
          #cshero-header #cshero-header-logo a img {
            max-height: 80px; }
      #cshero-header #cshero-header-navigation {
        background-color: #fff;
        max-width: 330px;
        position: absolute;
        right: 0;
        top: 121px;
        z-index: 1001;
        padding: 18px 15px;
        opacity: 0;
        visibility: hidden;
        -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);
        -webkit-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms;
        width: 100% !important; }
        #cshero-header #cshero-header-navigation.navigation-open {
          opacity: 1;
          visibility: visible;
          top: 101px; }
        #cshero-header #cshero-header-navigation .menu-main-menu li {
          border-bottom: 1px solid rgba(0, 0, 0, 0.07);
          position: relative;
          height: inherit !important; }
          #cshero-header #cshero-header-navigation .menu-main-menu li a {
            display: block;
            padding: 9px 0;
            color: #222;
            visibility: inherit !important; }
          #cshero-header #cshero-header-navigation .menu-main-menu li:last-child {
            border-bottom: none; }
          #cshero-header #cshero-header-navigation .menu-main-menu li.current-menu-ancestor > a, #cshero-header #cshero-header-navigation .menu-main-menu li.current-menu-parent > a, #cshero-header #cshero-header-navigation .menu-main-menu li.current-menu-item > a, #cshero-header #cshero-header-navigation .menu-main-menu li:hover > a {
            color: #aa8533; }
          #cshero-header #cshero-header-navigation .menu-main-menu.nav-menu-left li:last-child {
            border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
          #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            -webkit-transition: all 0.25s ease;
            -moz-transition: all 0.25s ease;
            -ms-transition: all 0.25s ease;
            transition: all 0.25s ease; }
          #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu li a {
            padding-left: 10px;
            padding-right: 10px; }
            #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu li:first-child {
              border-top: 1px solid rgba(0, 0, 0, 0.07); }
            #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu li:last-child {
              border-bottom: none; }
            #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu li .sub-menu li a {
              padding-left: 15px; }
          #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu.submenu-open {
            max-height: 1000px;
            opacity: 1;
            overflow: visible; }
            #cshero-header #cshero-header-navigation .menu-main-menu .sub-menu.submenu-open + .cs-menu-toggle:before {
              content: "\f273"; }
    #cshero-menu-mobile {
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translate(0px, -50%); }
      #cshero-menu-mobile i {
        background-color: #222;
        -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);
        -webkit-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms;
        color: #fff;
        cursor: pointer;
        font-size: 20px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        width: 46px;
        display: inline-block;
        margin-right: 6px; }
        #cshero-menu-mobile i:hover {
          background-color: #aa8533; }
      #cshero-menu-mobile cite {
        background-color: #aa8533;
        border-radius: 100%;
        font-size: 12px;
        font-style: normal;
        height: 18px;
        line-height: 18px;
        position: absolute;
        right: 0;
        top: -6px;
        width: 18px; } }
  @media screen and (max-width: 991px) and (max-width: 991px) {
        #cshero-header #cshero-header-navigation {
          max-width: 100%; } }
  @media screen and (max-width: 991px) and (max-width: 676px) {
        #cshero-menu-mobile i {
          width: 40px; } }

@media screen and (max-width: 360px) {
  /* ==========================================================================
  End Style Main Menu
========================================================================== */
    #cshero-menu-mobile i {
      font-size: 15px;
      height: 30px;
      line-height: 30px;
      margin-right: 3px;
      width: 35px; }
    #cshero-header-navigation {
      max-width: 100%; } }

#sidebar .widget_text .sbi_item {
  text-align: center; }
  #sidebar .widget {
    margin-bottom: 72px; }
  #sidebar .widget:last-child {
    margin-bottom: 0; }
  #sidebar .widget .wg-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 40px;
    margin-top: -6px;
    font-weight: 500; }

#sidebar #searchform #s {
  font-family: ; }

@media screen and (max-width: 991px) {
 }

@media screen and (max-width: 767px) {
 }

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  color: #777;
  font-size: 15px;
  line-height: 23px; }

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em; }

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

img.aligncenter {
  margin: 5px auto; }

.sticky {
  opacity: 1; }

.alignleft {
  float: left; }

img.alignleft {
  margin: 5px 30px 15px 0; }

.alignright {
  float: right; }

.wp-caption img {
  margin-bottom: 15px; }
  .wp-caption.alignleft img {
    margin-right: 30px; }
  .wp-caption.alignright img {
    margin-left: 30px; }
  .wp-caption.aligncenter img {
    margin-bottom: 15px; }

img.alignright {
  margin-left: 15px;
  margin-bottom: 20px; }

.wp-caption {
  opacity: 1; }
  .wp-caption.alignnone {
    width: 100% !important; }

.bg-primary {
  background-color: #aa8533; }

.row-box-shadow {
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 99;
  bottom: -50px; }

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

.text-right {
  text-align: right; }

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

.text-shadow-dark {
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -ms-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); }

.fs-i {
  font-style: italic; }

.block {
  display: block; }

a {
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  color: #aa8533; }
  a:hover, a:focus {
    color: #aa8533; }

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

.title-link a {
  text-decoration: underline !important; }

.color-white {
  color: #fff; }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: 1.1;
  color: #222;
  font-weight: 600;
  visibility: inherit !important; }

h1 {
  font-size: 55px; }

h2 {
  font-size: 35px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 15px; }

h6 {
  font-size: 12px; }

ul.list-ul-sinlge {
  margin-bottom: 33px;
  list-style: none;
  padding-left: 0; }
  ul.list-ul-sinlge li {
    padding-left: 20px;
    position: relative;
    line-height: 31px; }
  ul.list-ul-sinlge li:before {
    position: absolute;
    content: " ";
    background-color: #aa8533;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    -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: block; }

p {
  margin: 0 0 15px; }

img {
  height: auto;
  max-width: 100%; }

.hide-image img {
  display: none; }

.w40 {
  float: left;
  width: 40%; }

.w50 {
  float: left;
  width: 50%; }

.w60 {
  float: left;
  width: 60%; }

.size_big {
  font-size: 64px; }

.size_small {
  font-size: 26px; }

body .wpb_content_element, body .wpb_button {
  margin-bottom: 0; }

.entry-content > .vc_row-fluid {
  position: relative; }
  @media (max-width: 991px) {
  .entry-content > .vc_row-fluid {
    margin-top: 0 !important; } }

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

.media-body {
  width: inherit; }

.thin {
  font-weight: 300; }

.well {
  border: medium none;
  border-radius: 0;
  box-shadow: none; }

.dark {
  color: #222; }

.dark2 {
  color: #2f2f2f; }

.color-primary {
  color: #aa8533; }

.color-secondary {
  color: #333 !important; }

.br-2px {
  -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 */ }

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

.br-4px {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  /* BACKGROUND GRADIENT */ }

.br-5px {
  -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 */ }

.z-index-1 {
  z-index: 1; }

.zmdi {
  vertical-align: middle; }

.lt0 {
  letter-spacing: 0 !important; }

.lt-20 {
  letter-spacing: -0.02em !important; }

.lt20 {
  letter-spacing: 0.02em !important; }

.lt35 {
  letter-spacing: 0.035em !important; }

.abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

#bg-position-bottom {
  background-position: center bottom; }

.box-shadow.wpb_column > .vc_column-inner {
  -webkit-border-radius: 7px;
  -khtml-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  /* BACKGROUND GRADIENT */
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  /*
================> Unit Test
*/ }

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

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

dl {
  margin: 0 0 0 25px; }

dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  color: #222; }

dl dd {
  line-height: normal;
  margin-bottom: 20px; }
  dl dd a {
    color: #aa8533; }
  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: #aa8533; }

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word; }

#maps {
  overflow: visible !important; }

.entry-content-inner ul {
  padding: 0 0 0 35px;
  list-style-type: square; }
  .entry-content-inner ul.list-style-check {
    list-style: none;
    padding: 0; }

dl + h2 + ul {
  list-style: none;
  padding: 0 0 0 35px;
  /* ==========================================================================
   [End] 1. Reset HTML/CSS, Unitest, Body
========================================================================== */ }
  dl + h2 + ul li {
    position: relative;
    padding-left: 15px; }
  dl + h2 + ul li:before {
    content: "\f111";
    font-family: FontAwesome;
    font-size: 7px;
    left: 0;
    position: absolute;
    color: #aa8533; }
  dl + h2 + ul li ul {
    padding-left: 35px; }

#sidebar ul {
  padding-left: 0;
  list-style: none; }
  #sidebar ul .sub-menu {
    padding-left: 15px;
    padding-top: 15px; }
  #sidebar ul .sub-menu li {
    margin-bottom: 10px; }
  #sidebar ul .sub-menu li a:hover {
    color: #aa8533; }
  #sidebar .widget li a {
    color: #565656; }
  #sidebar .widget .screen-reader-text {
    display: none; }
  #sidebar .wg-title {
    font-size: 20px;
    color: #565656;
    margin-bottom: 39px; }

.sbi {
  margin-top: -14px !important; }
  .sbi > div {
    margin-left: -4px;
    margin-right: -4px; }

.widget_categories ul li, .widget_pages ul li, .widget_meta ul li, .cms-recent-service ul li, .widget_product_categories ul li {
  padding: 9px 0px; }
  .widget_categories ul li:first-child, .widget_pages ul li:first-child, .widget_meta ul li:first-child, .cms-recent-service ul li:first-child, .widget_product_categories ul li:first-child {
    padding-top: 0;
    margin-top: -9px; }
  .widget_categories ul li:last-child, .widget_pages ul li:last-child, .widget_meta ul li:last-child, .cms-recent-service ul li:last-child, .widget_product_categories ul li:last-child {
    padding-bottom: 0; }
  .widget_categories ul li a, .widget_pages ul li a, .widget_meta ul li a, .cms-recent-service ul li a, .widget_product_categories ul li a {
    font-size: 18px;
    display: inline-block;
    position: relative;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #565656; }
  .widget_categories ul li a:hover, .widget_pages ul li a:hover, .widget_meta ul li a:hover, .cms-recent-service ul li a:hover, .widget_product_categories ul li a:hover {
    padding-left: 22px;
    color: #aa8533; }
  .widget_categories ul li a:hover:before, .widget_pages ul li a:hover:before, .widget_meta ul li a:hover:before, .cms-recent-service ul li a:hover:before, .widget_product_categories ul li a:hover:before, .widget_categories ul li a:hover:after, .widget_pages ul li a:hover:after, .widget_meta ul li a:hover:after, .cms-recent-service ul li a:hover:after, .widget_product_categories ul li a:hover:after {
    opacity: 1; }
  .widget_categories ul li a:before, .widget_pages ul li a:before, .widget_meta ul li a:before, .cms-recent-service ul li a:before, .widget_product_categories ul li a:before, .widget_categories ul li a:after, .widget_pages ul li a:after, .widget_meta ul li a:after, .cms-recent-service ul li a:after, .widget_product_categories ul li a:after {
    position: absolute;
    content: "";
    display: block;
    opacity: 0; }
  .widget_categories ul li a:before, .widget_pages ul li a:before, .widget_meta ul li a:before, .cms-recent-service ul li a:before, .widget_product_categories ul li a:before {
    background-color: #f1f1f1;
    height: 1px;
    width: 100%;
    bottom: -3px;
    left: 0; }
  .widget_categories ul li a:after, .widget_pages ul li a:after, .widget_meta ul li a:after, .cms-recent-service ul li a:after, .widget_product_categories ul li a:after {
    top: 50%;
    transform: translate(0px, -50%);
    left: 0;
    width: 3px;
    height: 100%;
    max-height: 13px;
    background-color: #aa8533; }
  .widget_categories ul .children, .widget_pages ul .children, .widget_meta ul .children, .cms-recent-service ul .children, .widget_product_categories ul .children {
    padding-left: 15px !important;
    padding-top: 20px;
    padding-bottom: 0; }
  .widget_categories ul li.current-cat a, .widget_pages ul li.current-cat a, .widget_meta ul li.current-cat a, .cms-recent-service ul li.current-cat a, .widget_product_categories ul li.current-cat a {
    color: #aa8533 !important; }

.single-service .widget_categories ul li {
  padding: 9px 0px 18px; }
  .single-service .widget_categories ul li a {
    display: block; }
  .single-service .widget_categories ul li a:hover {
    padding-left: 22px;
    color: #aa8533; }
  .single-service .widget_categories ul li a:hover:after {
    opacity: 1; }
  .single-service .widget_categories ul li a:before, .single-service .widget_categories ul li a:after {
    position: absolute;
    content: "";
    display: block;
    opacity: 0; }
  .single-service .widget_categories ul li a:before {
    background-color: #d6d6d6;
    height: 1px;
    width: 100%;
    bottom: -3px;
    left: 0;
    opacity: 1; }
  .single-service .widget_categories ul li a:after {
    top: 50%;
    transform: translate(0px, -50%);
    left: 0;
    width: 3px;
    height: 100%;
    max-height: 13px;
    background-color: #aa8533; }

#sidebar {
  /* 
   [Start] 1. Newletter
   +-----------------------------------+
*/ }
  .widget_newsletterwidget .wg-title {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif; }
  @media (max-width: 1199px) {
    .widget_newsletterwidget .wg-title {
      display: block;
      margin-bottom: 15px; } }
  @media (max-width: 767px) {
    .widget_newsletterwidget .wg-title {
      text-align: center; } }
  .widget_newsletterwidget .tnp-widget {
    display: inline-block;
    max-width: 400px !important; }
  @media (max-width: 767px) {
    .widget_newsletterwidget .tnp-widget {
      margin: 0 auto;
      max-width: 100% !important; }
      .widget_newsletterwidget .tnp-widget form {
        text-align: center; } }
  .widget_newsletterwidget .tnp-widget .tnp-field {
    display: inline-block; }
  .widget_newsletterwidget .tnp-widget .tnp-field-email label {
    display: none; }
  .widget_newsletterwidget .tnp-widget .tnp-field-email {
    margin-right: 20px;
    margin-left: 20px;
    max-width: 200px;
    margin-bottom: 0;
    width: 100%;
    height: auto; }
  @media (max-width: 1199px) {
      .widget_newsletterwidget .tnp-widget .tnp-field-email {
        margin-left: 0; } }
  @media (max-width: 991px) {
      .widget_newsletterwidget .tnp-widget .tnp-field-email {
        margin-bottom: 20px; } }
  @media (max-width: 767px) {
      .widget_newsletterwidget .tnp-widget .tnp-field-email {
        max-width: 100%; } }
  .widget_newsletterwidget .tnp-widget .tnp-email {
    border: 2px solid #fff;
    width: 100%;
    font-size: 12px;
    color: #999;
    padding: 11px 10px; }
  @media (max-width: 767px) {
      .widget_newsletterwidget .tnp-widget .tnp-email {
        max-width: 250px;
        margin: 0 auto; } }
  .widget_newsletterwidget .tnp-widget .tnp-email:focus {
    border-color: #fff; }
  .widget_newsletterwidget .tnp-widget .tnp-email::-webkit-input-placeholder {
    color: #999; }
  .widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
    color: #999; }
  .widget_newsletterwidget .tnp-widget .tnp-email::-ms-input-placeholder {
    color: #999; }
  .widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
    color: #999; }
  .widget_newsletterwidget .tnp-widget .tnp-field-button {
    max-width: 140px;
    width: 100%; }
  .widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
    background: transparent;
    border: 2px solid #aa8533 !important;
    font-size: 15px;
    border: none;
    width: 100%;
    height: auto;
    color: #aa8533;
    padding: 9px 0;
    font-weight: normal;
    text-transform: unset;
    text-align: center; }
  @media screen and (max-width: 767px) {
        .widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
          padding: 11px 0; } }
  .widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit:hover {
    background-color: #aa8533;
    color: #fff; }

.column-custom {
  text-align: right; }
  @media (max-width: 767px) {
  .column-custom {
    text-align: center; } }
  .column-custom .wpb_widgetised_column_heading {
    color: #fff;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 22px; }
  @media (max-width: 1199px) {
    .column-custom .wpb_widgetised_column_heading {
      display: block;
      margin-bottom: 10px;
      margin-right: 0; } }
  .column-custom .widget_cs_social_widget {
    display: inline-block; }
  .column-custom .widget_cs_social_widget ul li:last-child a {
    padding-right: 0; }

.header-4 .column-custom .wpb_widgetised_column_heading {
  color: #565656; }
  .header-4 .widget_newsletterwidget .wg-title {
    color: #565656; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email {
    font-size: 12px;
    border: 2px solid #aa8533;
    background: transparent; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email:focus {
    border-color: #aa8533; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email::-webkit-input-placeholder {
    font-style: italic;
    color: #999;
    text-transform: lowercase; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
    color: #999;
    font-style: italic;
    text-transform: lowercase; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email::-ms-input-placeholder {
    color: #999;
    font-style: italic;
    text-transform: lowercase; }
  .header-4 .widget_newsletterwidget .tnp-widget .tnp-email::-moz-placeholder {
    color: #999;
    font-style: italic;
    text-transform: lowercase; }

.widget-newsletterwidg-custom {
  /* 
   [Start] 2. Search
   +-----------------------------------+
*/ }
  .widget-newsletterwidg-custom .wg-title {
    color: #565656; }
  .widget-newsletterwidg-custom .tnp-widget .tnp-email {
    padding: 10px;
    font-size: 12px;
    border: 2px solid #aa8533;
    background: transparent; }

#searchform {
  position: relative; }
  #searchform .screen-reader-text {
    display: none; }
  #searchform > div:before {
    color: #aa8533;
    content: "\f002";
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    right: 18px;
    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 */
    z-index: 1; }
  #searchform input[type="text"] {
    background-color: #fff; }
  #searchform #searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    opacity: 0;
    z-index: 2;
    padding: 0;
    height: 35px;
    width: 45px; }

#sidebar {
  /* 
   [Start] 3. Tags
   +-----------------------------------+
*/ }
  #sidebar #searchform {
    position: relative; }
  #sidebar #searchform .screen-reader-text {
    display: none; }
  #sidebar #searchform > div:before {
    color: #787878;
    content: "\f002";
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    right: 0;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    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 */
    z-index: 1; }
  #sidebar #searchform #s {
    max-width: 690px;
    padding: 0px 45px 0px 15px;
    height: 44px;
    border: 1px solid #999;
    line-height: 42px;
    font-style: italic;
    color: #999; }
  @media (max-width: 767px) {
      #sidebar #searchform #s {
        max-width: 100%; } }
  #sidebar #searchform #s:focus {
    border-color: #aa8533; }
  #sidebar #searchform #searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #aa8533;
    z-index: 99;
    font-size: 0;
    padding: 0;
    height: 40px;
    color: #fff;
    width: 40px; }

.tagcloud a {
  font-size: 13px !important;
  color: #999;
  height: 34px;
  line-height: 32px;
  padding: 1px 10px 0;
  background-color: #fff;
  border: 1px solid #a7a7a7 !important;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 10px;
  /* 
   [Start] 4. Categories
   +-----------------------------------+
*/ }
  .tagcloud a:hover {
    color: #fff;
    background-color: #aa8533;
    border-color: #aa8533; }

.widget_cs_social_widget li {
  display: inline-block; }
  .widget_cs_social_widget li a {
    color: #222;
    font-size: 15px; }
  .widget_cs_social_widget li a:hover {
    color: #aa8533; }
  .cms-recent-post-style1 .cms-recent-post {
    width: 100% !important;
    max-width: 100%; }
  .cms-recent-post-style1 .wg-title {
    margin-bottom: 37px !important; }
  .cms-recent-post-style1 .item {
    display: table;
    width: 100%;
    margin-bottom: 38px; }
  .cms-recent-post-style1 .item:last-child {
    margin-bottom: 0; }
  .cms-recent-post-style1 .cms-recent-media {
    width: 100%;
    max-width: 101px;
    float: left; }
  .cms-recent-post-style1 .cms-recent-media a {
    display: block;
    position: relative;
    overflow: hidden; }
  .cms-recent-post-style1 .cms-recent-media a:before, .cms-recent-post-style1 .cms-recent-media a:after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.1s;
    -o-transition-duration: 1.1s;
    transition-duration: 1.1s; }
  .cms-recent-post-style1 .cms-recent-media a:before {
    right: 0;
    opacity: 1;
    top: 0; }
  .cms-recent-post-style1 .cms-recent-media a:after {
    bottom: 0;
    opacity: 0.7;
    left: 0; }
  .cms-recent-post-style1 .cms-recent-media a:hover:before, .cms-recent-post-style1 .cms-recent-media a:hover:after {
    height: 100%;
    opacity: 0;
    width: 100%; }
  .cms-recent-post-style1 .cms-recent-details {
    padding-left: 118px; }
  .cms-recent-post-style1 .cms-recent-details .title {
    font-size: 15px;
    margin-top: -8px;
    line-height: 25px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    font-weight: 500; }
  .cms-recent-post-style1 .cms-recent-details .title a {
    color: #565656; }
  .cms-recent-post-style1 .cms-recent-details .title a:hover {
    color: #aa8533; }
  .cms-recent-post-style1 .cms-recent-details .date-post {
    font-size: 15px;
    color: #aa8533;
    position: relative;
    padding-left: 30px; }
  .cms-recent-post-style1 .cms-recent-details .date-post:before {
    position: absolute;
    content: "\f073";
    font-family: FontAwesome;
    font-size: 15px;
    color: #aa8533;
    top: 0;
    left: 0; }

.widget_recent_entries li, .widget_recent_comments li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 5px 0; }
  .widget_recent_entries li:last-child, .widget_recent_comments li:last-child {
    border-bottom: none; }

.widget_rss li {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .widget_rss li .rsswidget {
    font-size: 16px;
    display: block;
    margin-bottom: 8px; }
  .widget_rss li .rss-date {
    margin-bottom: 3px;
    display: block;
    font-style: italic; }

@media screen and (max-width: 1600px) {
  .rev_slider_wrapper .tp-parallax-wrap h2.tp-caption {
    color: #fff; }
    .rev_slider_wrapper .tp-parallax-wrap h2.tp-caption .cms_rvl_color_title1 {
      color: #aa8533; }
    .rev_slider_wrapper .tp-parallax-wrap h2.tp-caption .cms_rvl_color_title2 {
      color: #fff; } }

@media screen and (max-width: 1360px) {
  .fp-tableCell .vc_col-sm-6 .cms-testimonial-layout1 {
    max-width: 530px; } }

@media screen and (max-width: 1280px) {
  .cms-carousel-wrap .cms-carousel-layout1 .owl-controls .owl-nav .owl-prev {
    left: 30px; }
    .cms-carousel-wrap .cms-carousel-layout1 .owl-controls .owl-nav .owl-next {
      right: 30px; }

  .cms-menu-popup-wrap .social-top {
    bottom: 20px; } }

@media screen and (min-width: 1200px) {
  #cms-page-title.page-title-fullscreen {
    padding: 0;
    display: table;
    height: 100vh;
    width: 100%;
    /* Border Body */ }
    #cms-page-title.page-title-fullscreen > .container {
      display: table-cell;
      max-width: 1170px;
      text-align: center;
      vertical-align: middle;
      width: 100%; }
      #cms-page-title.page-title-fullscreen > .container .cms-page-title-inner {
        padding-top: 50px; }

  body.body-border-wrapper {
    padding: 30px;
    background-color: #fff; }
    body.body-border-wrapper .body-border {
      width: 30px;
      background-color: #fff;
      position: fixed;
      top: 0;
      bottom: 0;
      z-index: 10001; }
      body.body-border-wrapper .body-border.body-border-left {
        left: 0; }
      body.body-border-wrapper .body-border.body-border-right {
        right: 0; }
    body.body-border-wrapper #cshero-header-inner.header-trans #cshero-header {
      top: 30px; }
      body.body-border-wrapper #cshero-header-inner.header-trans #cshero-header.header-fixed {
        top: 0; }
    body.body-border-wrapper.admin-bar #cshero-header-inner.header-trans #cshero-header {
      top: 62px; }
      body.body-border-wrapper.admin-bar #cshero-header-inner.header-trans #cshero-header.header-fixed {
        top: 32px; }

  .cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev, .cms-testimonial-layout1 .owl-controls .owl-nav .owl-next {
    margin: 0;
    position: absolute;
    top: 0; }
    .cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev {
      left: 0; }
    .cms-testimonial-layout1 .owl-controls .owl-nav .owl-next {
      right: 0; }

  .cms-carousel-wrap .cms-carousel-layout2.custom-layout3 .owl-controls .owl-nav .owl-prev {
    left: 80px; }
    .cms-carousel-wrap .cms-carousel-layout2.custom-layout3 .owl-controls .owl-nav .owl-next {
      right: 80px; }

  .fixed-bottom {
    padding: 0 20%; }

  .main-form {
    padding-right: 115px;
    position: relative; }
    .main-form .submit-btn {
      position: absolute;
      bottom: 5px;
      right: 0; }
    .main-form .wpcf7-textarea {
      -webkit-width: -webkit-calc(100% - 95px);
      -moz-width: -moz-calc(100% - 95px);
      -ms-width: -moz-calc(100% - 95px);
      -o-width: -moz-calc(100% - 95px);
      width: calc(100% - 95px); }

  .width_column_change #cms-footer-top .col-lg-3:nth-child(1) {
    width: 40%; }
    .width_column_change #cms-footer-top .col-lg-3:nth-child(2) {
      width: 20%; }
    .width_column_change #cms-footer-top .col-lg-3:nth-child(3) {
      width: 20%; }
    .width_column_change #cms-footer-top .col-lg-3:nth-child(4) {
      width: 20%; } }

@media screen and (min-width: 1200px) {
  /* ==========================================================================
  [Start] Medium devices (desktops, 992px and up)
========================================================================== */ }

@media screen and (min-width: 992px) {
  /* ==========================================================================
   [Start] Small devices (tablets, 768px and up)
========================================================================== */
    #cshero-menu-mobile {
      display: none !important;
      /* 
     [Start] Main
     +-----------------------------------+
  */ }
    .vc_row.vc_row-o-content-middle .fp-scroller > .vc_column_container, .vc_row.vc_row-o-content-middle .fp-tableCell > .vc_column_container {
      align-items: center; }
    .vc_row.vc_row-flex .fp-scroller, .vc_row.vc_row-flex .fp-scroller > .vc_column_container, .vc_row.vc_row-flex .fp-tableCell, .vc_row.vc_row-flex .fp-tableCell > .vc_column_container {
      display: flex; }
    .vc_row.vc_row-flex .fp-scroller > .vc_column_container > .vc_column-inner, .vc_row.vc_row-flex .fp-tableCell > .vc_column_container > .vc_column-inner {
      flex-grow: 1;
      display: flex;
      /* 
     [Start] Footer
     +-----------------------------------+
  */ }
    #cms-footer-top .cms-footer-top-item.col-lg-2 {
      width: 15.6667%; }
      #cms-footer-top .cms-footer-top-item.col-lg-2:first-child {
        width: 20.6667%; } }

@media screen and (max-width: 991px) {
  /* ==========================================================================
   [Start] Extra small devices 
========================================================================== */
    .heading-resize-sm {
      font-size: 30px !important;
      line-height: 36px !important; }
    .container {
      width: 100%; }
    .cms-edge-wrapper {
      left: 0 !important; }
    .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item {
      width: 50%; }
    #cms-footer-top .cms-footer-top-item {
      margin-bottom: 35px; }
      #cms-footer-top .cms-footer-top-item:nth-child(3) {
        clear: left; }
    .rm-padding-sm > .vc_column-inner {
      padding-left: 0 !important;
      padding-right: 0 !important; }
    #main .error-404 .title404 {
      font-size: 120px; }
    .cms-heading-wrapper .title-resize {
      font-size: 40px !important;
      line-height: 52px !important; } }

@media screen and (max-width: 767px) {
  .cms-search-wrap .cshero-search-inner {
    left: 15px;
    right: 15px;
    width: inherit; }
    .cms-search-wrap .cshero-search-inner #searchform input[type="text"] {
      font-size: 20px;
      height: 50px; }
      .cms-search-wrap .cshero-search-inner #searchform #searchsubmit {
        height: 50px; }
      .cms-search-wrap .cshero-search-inner #searchform > div::before {
        font-size: 18px; }

  .rm-padding-xs > .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important; }

  #sidebar + #content.sidebar-active {
    margin-top: 100px; }

  #content.sidebar-active + #sidebar {
    margin-top: 90px; }

  .cms-carousel-wrap .dotsCont {
    margin: 10px -15px 0; }
    .cms-carousel-wrap .dotsCont .item-dot {
      padding: 0 15px; }

  #cshero-header #cshero-header-navigation {
    max-width: 100%; }

  .cms-treatment-wrapper .w40, .cms-treatment-wrapper .w60 {
    width: 100%; }
    .cms-treatment-wrapper .w40 .cms-treatment-item-inner {
      margin-bottom: 16px; }

  .vc_tta-tabs-position-left .vc_tta-tabs-container {
    display: none !important; }

  #cms-spaprice .panel-group .panel .panel-heading .panel-title .w50 {
    width: 100%; }
    #cms-spaprice .panel-group .panel .panel-heading .panel-title .w50:nth-child(2) {
      padding: 13px 0; }
    #cms-spaprice .panel-group .panel .panel-heading .panel-title a:not(.collapsed) .w50:nth-child(2) {
      padding: 13px 20px; }
    #cms-spaprice .panel-group .panel .panel-body.image-active .panel-text {
      padding: 0; }
    #cms-spaprice .panel-group .panel .panel-body.image-active .panel-image {
      margin-top: 30px;
      max-width: inherit;
      min-height: 170px;
      position: static;
      width: 100%; }

  .rm-padding-xs > .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important; }

  #cms-page-title .cms-page-title-inner h1 {
    font-size: 30px;
    /* Single Post */ }

  .single-post .post-previous-next .nav-link-prev {
    margin-bottom: 30px; }
    .single-post .post-previous-next .nav-link-prev:before {
      display: none; }
    .single-post .entry-author .admin-avt {
      margin-bottom: 20px;
      float: none;
      max-width: 100%;
      text-align: center; }
    .single-post .entry-author .admin-info {
      padding-left: 0;
      text-align: center; }
    .single-post #comments .comment-list .children {
      padding: 0; }

  #cms-content {
    margin-bottom: 0 !important; }

  .rev_slider_wrapper .tp-parallax-wrap h2.tp-caption .cms_rvl_color_title1, .rev_slider_wrapper .tp-parallax-wrap h2.tp-caption .cms_rvl_color_title2 {
    font-size: 20px !important; }

  .btn-filter-wrap {
    text-align: center;
    padding-bottom: 30px; }
    .btn-filter-wrap .btn-filter {
      margin-bottom: 0 !important; }

  #sidebar {
    margin-top: 50px; } }

@media screen and (max-width: 480px) {
  body #cms-page-title {
    text-align: center; }
    body #cms-page-title h1, body #cms-page-title .cms-breadcrumb {
      text-align: center; }
    body #cms-page-title h1 {
      margin-left: 0; } }

.woocommerce-ResetPassword {
  margin-bottom: 100px; }

.post-type-archive-product .site-content {
  padding-top: 78px !important; }
  .post-type-archive-product .products {
    margin-left: -15px !important;
    margin-right: -15px !important; }
  .post-type-archive-product .products.columns-4 {
    padding-top: 0 !important; }

.woocommerce-cart-form .coupon {
  float: left; }
  .woocommerce-cart-form .actions {
    overflow: hidden; }
  .woocommerce-cart-form .actions > .button {
    float: rith; }
  .woocommerce-cart-form .actions label {
    display: none; }
  .woocommerce-cart-form .actions .input-text {
    display: inline-block;
    width: 100% !important;
    height: 37px;
    line-height: 37px;
    max-width: 120px !important; }
  .woocommerce-cart-form .actions .button {
    display: inline-block;
    height: 37px;
    line-height: 37px; }

.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  color: #777;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif; }
  .products li.product .star-rating {
    display: none; }
  .products li.product .price {
    margin-bottom: 13px;
    color: transparent !important; }
  .products li.product .price del, .products li.product .price ins {
    display: inline-block !important; }
  .products li.product .price del .amount, .products li.product .price ins .amount {
    font-weight: 700;
    font-size: 15px;
    color: #fcd68d;
    margin-right: 25px; }
  .products li.product .price ins .amount {
    font-size: 35px; }
  .products li.product .add_to_cart_button, .products li.product .added_to_cart {
    height: 40px;
    background-color: transparent !important;
    line-height: 36px !important;
    padding: 0 20px;
    color: #333 !important; }
  .products li.product .add_to_cart_button:hover, .products li.product .added_to_cart:hover {
    background-color: #aa8533 !important;
    border-color: #aa8533 !important;
    color: #fff !important; }
  .products li.product .woocommerce-LoopProduct-link {
    display: inline-block;
    width: 100%; }
  .products li.product .added {
    display: none; }
  .products li.product .added_to_cart.wc-forward {
    border: 1px solid #efefef;
    background-color: #fff;
    border-color: #222;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /* BACKGROUND GRADIENT */
    color: #777;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 2px;
    padding: 0 20px;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: capitalize; }

@media  {
        .single-product .is-right-sidebar #sidebar {
          padding-left: 50px; } }
  .single-product .product {
    position: relative; }
  .single-product .product .onsale {
    position: absolute;
    left: 0 !important; }
  .single-product .related {
    padding-top: 40px !important;
    border-top: 2px solid #aa8533; }
  .single-product .related > h2 {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 50px; }
  .single-product .related .products {
    margin: 0 -15px !important; }
  .single-product .related .products li a .onsale {
    left: 15px !important;
    opacity: 0;
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -ms-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms; }
  .single-product .related .products li:hover a .onsale {
    opacity: 1; }
  .single-product .woocommerce-product-gallery__image {
    border: 1px solid transparent !important; }
  .single-product .flex-viewport {
    border: 1px solid #eee; }
  .single-product .flex-control-nav {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-top: none; }
  .single-product .flex-control-nav li {
    border-right: 1px solid #eee;
    padding: 15px 10px; }
  .single-product .flex-control-nav li:last-child {
    border-right: none; }
  .single-product .woocommerce-tabs .wc-tab > h2 {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #333;
    text-transform: capitalize;
    font-weight: normal; }
  .single-product .woocommerce-tabs .tabs {
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    margin-bottom: 5px;
    overflow: hidden; }
  .single-product .woocommerce-tabs .tabs:before {
    border-bottom: none !important; }
  .single-product .woocommerce-tabs .tabs li {
    padding: 0;
    border: none;
    margin: 0;
    float: left;
    background-color: #fff !important;
    color: #333;
    margin-right: 8px !important;
    margin-left: 0 !important;
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
    /* BACKGROUND GRADIENT */ }
  .single-product .woocommerce-tabs .tabs li:before, .single-product .woocommerce-tabs .tabs li:after {
    background-color: transparent !important;
    left: -99999999999999px !important; }
  .single-product .woocommerce-tabs .tabs li.active, .single-product .woocommerce-tabs .tabs li:hover {
    background-color: #aa8533 !important;
    color: #fff;
    border-bottom: 1px solid #aa8533 !important; }
  .single-product .woocommerce-tabs .tabs li a {
    background-color: transparent;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    padding: 15px !important; }

.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1; }

.woocommerce-checkout .checkbox {
  display: table;
  width: 100%;
  position: relative;
  padding-left: 30px; }
  .woocommerce-checkout .checkbox .input-checkbox {
    position: absolute;
    top: 6px;
    left: 0; }
  .button.loading::after {
    position: absolute;
    top: 0px !important;
    right: 3px !important; }

#cms-theme .site-header .widget_shopping_cart {
  background-color: #fff;
  position: absolute;
  right: 0px;
  border-top: 3px solid #aa8533;
  top: 85px;
  visibility: hidden;
  width: 370px;
  max-width: 400px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  z-index: 99;
  line-height: normal;
  margin-top: 30px; }
  #cms-theme .site-header .widget_shopping_cart.open {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=1);
    margin-top: 0; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content {
    padding: 20px; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .product_list_widget {
    width: 100%; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list {
    max-height: 500px !important;
    overflow: auto !important;
    height: auto; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li {
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px 15px 0;
    border-bottom: 1px solid #f4f4f4;
    overflow: hidden; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li.empty {
      margin: 0;
      text-align: left; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li .amount {
      color: #aa8533; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a {
      color: #222;
      font-size: 14px;
      font-weight: 600;
      display: block;
      line-height: 24px; }
      #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a:hover {
        color: #aa8533; }
      #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a img {
        float: left;
        max-width: 70px;
        width: 100%;
        margin-right: 15px;
        -webkit-border-radius: 1px;
        -khtml-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px;
        /* BACKGROUND GRADIENT */ }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li:last-child {
      padding-bottom: 0;
      border-bottom: 0; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove {
      font-size: 0;
      left: inherit;
      position: absolute;
      right: 20px;
      top: 33px;
      z-index: 9; }
      #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove:before {
        background-color: #333;
        color: #fff;
        content: "x";
        display: inline-block;
        font-size: 9px;
        height: 19px;
        line-height: 19px;
        text-align: center;
        width: 19px;
        font-weight: 300;
        -webkit-border-radius: 1px;
        -khtml-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px;
        /* BACKGROUND GRADIENT */ }
      #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li a.remove:hover:before {
        background-color: #aa8533; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content .cart_list li .quantity {
      color: #a9a9a9;
      font-size: 13px;
      font-weight: normal;
      margin-top: 10px;
      display: inline-block;
      width: 50%;
      max-width: 190px;
      text-align: left; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.total {
    border-top: 2px solid #f4f4f4;
    border-bottom: 2px solid #f4f4f4;
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 0; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.total strong {
    font-weight: 600; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.total .amount {
    color: #aa8533;
    float: right; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons {
    margin: 0; }
  #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons .button {
    width: 48%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0.5%;
    display: inline-block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    border-color: #aa8533;
    color: #000;
    background-color: #aa8533;
    -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 */
    padding: 0 15px;
    display: inline-block; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons .button:hover {
      color: #fff; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons .button.checkout {
      border: 1px solid #aa8533;
      color: #222;
      margin-top: 10px; }
      #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons .button.checkout:hover {
        background-color: #aa8533;
        color: #fff; }
  #cms-theme .site-header .header-3 .widget_shopping_cart {
    top: 77px; }
  #cms-theme #cshero-header.header-fixed .widget_shopping_cart {
    top: 80px; }
  #cms-theme.woocommerce #cshero-header-top-woo, #cms-theme.woocommerce-page #cshero-header-top-woo {
    display: block; }
  #cms-theme.woocommerce #page-wrapper.cs-wide, #cms-theme.woocommerce-page #page-wrapper.cs-wide {
    background-color: #fff;
    /* [Start] 1. Navigation */ }
  #cms-theme.woocommerce .woocommerce-pagination, #cms-theme.woocommerce-page .woocommerce-pagination, #cms-theme.woocommerce .woo-nav-links, #cms-theme.woocommerce-page .woo-nav-links {
    margin-top: 30px;
    padding-top: 0px;
    width: 100%;
    text-align: center;
    font-weight: normal; }
  @media (max-width: 767px) {
      #cms-theme.woocommerce .woocommerce-pagination, #cms-theme.woocommerce-page .woocommerce-pagination, #cms-theme.woocommerce .woo-nav-links, #cms-theme.woocommerce-page .woo-nav-links {
        margin-top: 0; } }
  #cms-theme.woocommerce .woocommerce-pagination ul, #cms-theme.woocommerce-page .woocommerce-pagination ul, #cms-theme.woocommerce .woo-nav-links ul, #cms-theme.woocommerce-page .woo-nav-links ul {
    border: none; }
  #cms-theme.woocommerce .woocommerce-pagination ul li, #cms-theme.woocommerce-page .woocommerce-pagination ul li, #cms-theme.woocommerce .woo-nav-links ul li, #cms-theme.woocommerce-page .woo-nav-links ul li {
    margin: 0 5px;
    font-family: 'Montserrat';
    border: none; }
  #cms-theme.woocommerce .woocommerce-pagination ul li:first-child, #cms-theme.woocommerce-page .woocommerce-pagination ul li:first-child, #cms-theme.woocommerce .woo-nav-links ul li:first-child, #cms-theme.woocommerce-page .woo-nav-links ul li:first-child {
    margin-left: 0; }
  #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers {
    border: none;
    border-radius: 0px;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 45px;
    font-weight: 700;
    color: #646464;
    font-size: 20px;
    background-color: #fff;
    padding: 0;
    border: 1px solid #eee;
    -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 */ }
    #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers:hover, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers:hover, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers:hover, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers:hover, #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.current, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.current, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.current, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.current {
      background-color: #aa8533;
      color: #fff;
      border-color: #aa8533; }
    #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers + .page-numbers, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers + .page-numbers, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers + .page-numbers, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers + .page-numbers {
      margin-left: 10px; }
    #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.next, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.next, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.next, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.next, #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.prev, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.prev, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.prev, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.prev {
      font-size: 0; }
      #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.next:before, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.next:before, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.next:before, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.next:before, #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.prev:before, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.prev:before, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.prev:before, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.prev:before {
        content: '\f177';
        font-family: FontAwesome;
        font-size: 20px; }
    #cms-theme.woocommerce .woocommerce-pagination ul li .page-numbers.next:before, #cms-theme.woocommerce-page .woocommerce-pagination ul li .page-numbers.next:before, #cms-theme.woocommerce .woo-nav-links ul li .page-numbers.next:before, #cms-theme.woocommerce-page .woo-nav-links ul li .page-numbers.next:before {
      content: '\f178'; }
  #cms-theme.woocommerce .woo-nav-links, #cms-theme.woocommerce-page .woo-nav-links {
    padding-top: 24px;
    /* [End] 1. Navigation */
    /* [Start] 2. Button */ }
  #cms-theme.woocommerce .woo-nav-links li, #cms-theme.woocommerce-page .woo-nav-links li {
    display: inline-block; }
  #cms-theme.woocommerce input#submit, #cms-theme.woocommerce-page input#submit, #cms-theme.woocommerce .button, #cms-theme.woocommerce-page .button, #cms-theme.woocommerce button input[type="submit"], #cms-theme.woocommerce-page button input[type="submit"], #cms-theme.woocommerce .added_to_cart, #cms-theme.woocommerce-page .added_to_cart {
    border: 2px solid #aa8533;
    background-color: #aa8533;
    border-radius: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    margin: 0;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: capitalize; }
  #cms-theme.woocommerce input#submit i, #cms-theme.woocommerce-page input#submit i, #cms-theme.woocommerce .button i, #cms-theme.woocommerce-page .button i, #cms-theme.woocommerce button input[type="submit"] i, #cms-theme.woocommerce-page button input[type="submit"] i, #cms-theme.woocommerce .added_to_cart i, #cms-theme.woocommerce-page .added_to_cart i {
    padding-right: 8px;
    position: relative;
    top: 1px; }
  #cms-theme.woocommerce .added_to_cart:hover, #cms-theme.woocommerce-page .added_to_cart:hover, #cms-theme.woocommerce .added_to_cart:focus, #cms-theme.woocommerce-page .added_to_cart:focus, #cms-theme.woocommerce button:hover, #cms-theme.woocommerce-page button:hover, #cms-theme.woocommerce .button:hover, #cms-theme.woocommerce-page .button:hover, #cms-theme.woocommerce input[type="submit"]:hover, #cms-theme.woocommerce-page input[type="submit"]:hover, #cms-theme.woocommerce button:focus, #cms-theme.woocommerce-page button:focus, #cms-theme.woocommerce .button:focus, #cms-theme.woocommerce-page .button:focus, #cms-theme.woocommerce input[type="submit"]:focus, #cms-theme.woocommerce-page input[type="submit"]:focus {
    outline: medium none;
    text-decoration: none;
    color: #fff; }
  #cms-theme.woocommerce input#submit, #cms-theme.woocommerce-page input#submit {
    background-color: #333;
    color: #fff;
    border-color: #333; }
  #cms-theme.woocommerce input#submit:hover, #cms-theme.woocommerce-page input#submit:hover, #cms-theme.woocommerce input#submit:focus, #cms-theme.woocommerce-page input#submit:focus {
    background-color: #aa8533;
    border-color: #aa8533;
    color: #fff !important; }
  #cms-theme.woocommerce select, #cms-theme.woocommerce-page select {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    border: 1px solid #eee;
    color: #b8b8b8;
    height: 47px;
    line-height: 47px;
    outline: medium none;
    padding: 0 10px; }
  #cms-theme.woocommerce .select2-container--default, #cms-theme.woocommerce-page .select2-container--default {
    /* [End] 2. Button */
    /* [Start] 3. Sidebar */ }
  #cms-theme.woocommerce .select2-container--default .select2-selection--single, #cms-theme.woocommerce-page .select2-container--default .select2-selection--single {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    border: 1px solid #eee;
    color: #b8b8b8;
    height: 47px; }
  #cms-theme.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered, #cms-theme.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    height: 47px;
    line-height: 47px; }
  #cms-theme.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow, #cms-theme.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 47px;
    right: 12px; }
  #cms-theme.woocommerce .select2-container--default .select2-dropdown, #cms-theme.woocommerce-page .select2-container--default .select2-dropdown, #cms-theme.woocommerce .select2-container--default .select2-search--dropdown .select2-search__field, #cms-theme.woocommerce-page .select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #eee; }
  #cms-theme.woocommerce .widget_price_filter, #cms-theme.woocommerce-page .widget_price_filter {
    /* [End] 3. Sidebar */
    /* [Start] 4. Archive Product */ }
  #cms-theme.woocommerce .widget_price_filter .ui-slider, #cms-theme.woocommerce-page .widget_price_filter .ui-slider {
    background-color: #efefef;
    margin-bottom: 32px; }
  #cms-theme.woocommerce .widget_price_filter .ui-slider .ui-slider-handle, #cms-theme.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #333;
    top: -2px;
    height: 8px;
    width: 8px;
    margin: 0;
    -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 */ }
  #cms-theme.woocommerce .widget_price_filter .price_slider_amount .price_label, #cms-theme.woocommerce-page .widget_price_filter .price_slider_amount .price_label {
    color: #323232;
    font-size-adjust: inherit;
    padding: 8px 0; }
  #cms-theme.woocommerce .woocommerce-result-count, #cms-theme.woocommerce-page .woocommerce-result-count {
    color: #2f2f2f;
    font-size: 15px;
    line-height: 34px;
    margin: 0;
    font-weight: 700; }
  #cms-theme.woocommerce .form-effect, #cms-theme.woocommerce-page .form-effect {
    position: relative;
    display: inline-block; }
  #cms-theme.woocommerce .form-effect form, #cms-theme.woocommerce-page .form-effect form {
    margin: 0; }
  #cms-theme.woocommerce .form-effect form select, #cms-theme.woocommerce-page .form-effect form select {
    background-color: transparent;
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
  #cms-theme.woocommerce .form-effect form select option, #cms-theme.woocommerce-page .form-effect form select option {
    padding: 5px 10px; }
    #cms-theme.woocommerce .form-effect form select option:hover, #cms-theme.woocommerce-page .form-effect form select option:hover {
      background-color: #e5e5e5; }
  #cms-theme.woocommerce .form-effect .arrow-down, #cms-theme.woocommerce-page .form-effect .arrow-down {
    height: 34px;
    line-height: 34px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 1px;
    width: 34px;
    z-index: -1;
    font-size: 18px; }
  #cms-theme.woocommerce .form-effect .woocommerce-ordering, #cms-theme.woocommerce-page .form-effect .woocommerce-ordering {
    float: left; }
  #cms-theme.woocommerce .cms-product-meta, #cms-theme.woocommerce-page .cms-product-meta {
    display: none; }
  #cms-theme.woocommerce .products, #cms-theme.woocommerce-page .products {
    padding-top: 0; }
  #cms-theme.woocommerce .products li, #cms-theme.woocommerce-page .products li, #cms-theme.woocommerce .products .owl-item, #cms-theme.woocommerce-page .products .owl-item {
    margin-right: 0;
    margin-bottom: 65px;
    padding: 0 15px;
    width: 33.33%;
    clear: initial; }
  @media (max-width: 767px) {
        #cms-theme.woocommerce .products li, #cms-theme.woocommerce-page .products li, #cms-theme.woocommerce .products .owl-item, #cms-theme.woocommerce-page .products .owl-item {
          margin-bottom: 50px; } }
  #cms-theme.woocommerce .products li.last, #cms-theme.woocommerce-page .products li.last, #cms-theme.woocommerce .products .owl-item.last, #cms-theme.woocommerce-page .products .owl-item.last {
    margin-right: 0; }
  #cms-theme.woocommerce .products li:nth-child(3n+1), #cms-theme.woocommerce-page .products li:nth-child(3n+1), #cms-theme.woocommerce .products .owl-item:nth-child(3n+1), #cms-theme.woocommerce-page .products .owl-item:nth-child(3n+1) {
    clear: left; }
  #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-image, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-image, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-image, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-image {
    position: relative;
    border: 1px solid #f9f9f9;
    -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 */ }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-image img, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-image img, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-image img, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-image img {
      margin-bottom: 0;
      padding: 30px; }
  #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta {
    text-align: left;
    padding: 22px 0 10px; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title {
      margin-top: -5px;
      font-size: 20px; }
      #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a {
        color: ;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-price, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-price, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-price, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-price {
      margin-bottom: 13px;
      display: block; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart {
      text-align: left; }
      #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a {
        border: 1px solid #efefef;
        background-color: #fff;
        border-color: #222;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        /* BACKGROUND GRADIENT */
        color: ;
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        line-height: 1;
        margin: 0;
        width: 132px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        margin-left: 2px;
        padding: 0 15px;
        position: relative;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: capitalize; }
        #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a:hover, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a:hover, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a:hover, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a:hover {
          background-color: #aa8533;
          color: #fff;
          border: 1px solid #aa8533; }
      #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added {
        display: none; }
      #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added_to_cart, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added_to_cart, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added_to_cart, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .cshero-add-to-cart a.added_to_cart {
        width: 135px; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .star-rating, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .star-rating, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .star-rating, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .star-rating {
      display: none; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in {
      font-family: Lora; }
      #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in a, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in a, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in a, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in a {
        color: #b8b8b8; }
        #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in a:hover, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .posted_in a:hover, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in a:hover, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .posted_in a:hover {
          color: #aa8533; }
    #cms-theme.woocommerce .products li .cshere-woo-item-wrap .cshero-woo-meta .content, #cms-theme.woocommerce-page .products li .cshere-woo-item-wrap .cshero-woo-meta .content, #cms-theme.woocommerce .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .content, #cms-theme.woocommerce-page .products .owl-item .cshere-woo-item-wrap .cshero-woo-meta .content {
      display: none; }
  #cms-theme.woocommerce .product .onsale, #cms-theme.woocommerce-page .product .onsale {
    -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 */
    font-weight: 700;
    right: 15px;
    top: 0px;
    left: inherit;
    line-height: 45px;
    margin: 0;
    min-height: 0;
    padding: 0;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background-color: #aa8533;
    font-size: 11px;
    width: 45px;
    height: 45px;
    z-index: 1; }
  @media (max-width: 767px) {
        #cms-theme.woocommerce .product .onsale, #cms-theme.woocommerce-page .product .onsale {
          top: 0;
          right: 0;
          -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 */ } }
  #cms-theme.woocommerce .product .amount, #cms-theme.woocommerce-page .product .amount {
    font-weight: normal;
    font-size: 15px;
    color: #aa8533;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; }
  #cms-theme.woocommerce .product del .amount, #cms-theme.woocommerce-page .product del .amount {
    font-weight: 700;
    font-size: 15px;
    color: #ddd;
    margin-right: 25px; }
  #cms-theme.woocommerce .star-rating, #cms-theme.woocommerce-page .star-rating {
    margin: 6px 26px 6px 0;
    height: 16px; }
  #cms-theme.woocommerce .star-rating:before, #cms-theme.woocommerce-page .star-rating:before {
    color: #aa8533; }
  #cms-theme.woocommerce .star-rating span::before, #cms-theme.woocommerce-page .star-rating span::before {
    color: #aa8533; }
  #cms-theme.woocommerce .cms-product-layout, #cms-theme.woocommerce-page .cms-product-layout {
    float: right;
    text-align: right;
    width: 50%; }
  #cms-theme.woocommerce .cms-product-layout span, #cms-theme.woocommerce-page .cms-product-layout span {
    background-color: #aa8533;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 46px;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  #cms-theme.woocommerce .cms-product-layout span:hover, #cms-theme.woocommerce-page .cms-product-layout span:hover, #cms-theme.woocommerce .cms-product-layout span.active, #cms-theme.woocommerce-page .cms-product-layout span.active {
    background-color: #333; }
  #cms-theme.woocommerce .cms-product-layout span.cms-product-list, #cms-theme.woocommerce-page .cms-product-layout span.cms-product-list {
    margin-left: 3px; }
  #cms-theme.woocommerce .pr-full-width, #cms-theme.woocommerce-page .pr-full-width {
    float: none;
    margin: auto;
    width: 100%; }
  #cms-theme.woocommerce .pr-full-width .products li.product, #cms-theme.woocommerce-page .pr-full-width .products li.product {
    width: 25%;
    clear: none; }
  #cms-theme.woocommerce .pr-full-width .products li.product:nth-child(4n+1), #cms-theme.woocommerce-page .pr-full-width .products li.product:nth-child(4n+1) {
    clear: left; }
  #cms-theme.woocommerce del, #cms-theme.woocommerce-page del {
    opacity: 1;
    filter: alpha(opacity=1);
    color: ; }
  #cms-theme.woocommerce .woocommerce-message, #cms-theme.woocommerce-page .woocommerce-message {
    border-top: 3px solid #aa8533;
    /* [End] 4. Archive Product */ }
  #cms-theme.woocommerce .woocommerce-message:before, #cms-theme.woocommerce-page .woocommerce-message:before {
    color: #aa8533; }
  #cms-theme.woocommerce .quantity, #cms-theme.woocommerce-page .quantity {
    position: relative;
    margin-right: 12px;
    width: 76px; }
  @media (max-width: 767px) {
 }
  #cms-theme.woocommerce .quantity .qty, #cms-theme.woocommerce-page .quantity .qty {
    border: 1px solid #eee;
    border-radius: 0;
    background-color: transparent;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #595959;
    height: 38px;
    width: 80px;
    padding: 12px 10px 12px 0;
    text-indent: 10px; }
  #cms-theme.woocommerce .quantity .minus, #cms-theme.woocommerce-page .quantity .minus, #cms-theme.woocommerce .quantity .plus, #cms-theme.woocommerce-page .quantity .plus {
    display: block;
    height: 20px;
    width: 25px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: -7px;
    z-index: 9;
    text-align: center;
    background-color: #f2f2f2; }
  #cms-theme.woocommerce .quantity .minus:hover, #cms-theme.woocommerce-page .quantity .minus:hover, #cms-theme.woocommerce .quantity .plus:hover, #cms-theme.woocommerce-page .quantity .plus:hover {
    color: #aa8533; }
  #cms-theme.woocommerce .quantity .minus i, #cms-theme.woocommerce-page .quantity .minus i, #cms-theme.woocommerce .quantity .plus i, #cms-theme.woocommerce-page .quantity .plus i {
    position: absolute; }
  #cms-theme.woocommerce .quantity .plus, #cms-theme.woocommerce-page .quantity .plus {
    top: -1px; }
  #cms-theme.woocommerce .quantity .plus i, #cms-theme.woocommerce-page .quantity .plus i {
    top: 3px;
    right: 5px; }
  #cms-theme.woocommerce .quantity .minus, #cms-theme.woocommerce-page .quantity .minus {
    bottom: -1px; }
  #cms-theme.woocommerce .quantity .minus i, #cms-theme.woocommerce-page .quantity .minus i {
    bottom: 3px;
    right: 5px; }
  #cms-theme .woocommerce .woocommerce-message, #cms-theme .woocommerce-page .woocommerce-message, #cms-theme .woocommerce .woocommerce-info, #cms-theme .woocommerce-page .woocommerce-info {
    border-color: #aa8533; }
  #cms-theme .woocommerce .woocommerce-message:before, #cms-theme .woocommerce-page .woocommerce-message:before, #cms-theme .woocommerce .woocommerce-info:before, #cms-theme .woocommerce-page .woocommerce-info:before {
    color: #aa8533; }
  #cms-theme .woocommerce .price, #cms-theme .woocommerce-page .price {
    margin-bottom: 0; }
  #cms-theme .woocommerce .price .amount, #cms-theme .woocommerce-page .price .amount {
    letter-spacing: 0.15em;
    font-size: 20px;
    color: #222;
    font-weight: 700; }
  #cms-theme .woocommerce .price del, #cms-theme .woocommerce-page .price del {
    color: #000 !important; }
  #cms-theme .woocommerce .price ins, #cms-theme .woocommerce-page .price ins {
    color: #222; }
  #cms-theme .woocommerce .price del, #cms-theme .woocommerce-page .price del, #cms-theme .woocommerce .price ins, #cms-theme .woocommerce-page .price ins {
    display: inline-block !important; }
  #cms-theme .woocommerce .site span.onsale, #cms-theme .woocommerce-page .site span.onsale, #cms-theme .woocommerce .cms-shop-carousel span.onsale, #cms-theme .woocommerce-page .cms-shop-carousel span.onsale {
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    display: block;
    background-color: #333;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    /* BACKGROUND GRADIENT */
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    padding: 0;
    margin: 0; }
  #cms-theme .woocommerce .site span.onsale span, #cms-theme .woocommerce-page .site span.onsale span, #cms-theme .woocommerce .cms-shop-carousel span.onsale span, #cms-theme .woocommerce-page .cms-shop-carousel span.onsale span {
    margin: 0;
    position: absolute;
    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 */
    line-height: 18px;
    left: 0;
    right: 0;
    padding: 0 12px; }
  #cms-theme .woocommerce ul.products, #cms-theme .woocommerce-page ul.products {
    margin: 0 -15px; }
  #cms-theme .woocommerce ul.products li.product, #cms-theme .woocommerce-page ul.products li.product {
    margin: 0 15px 10px 15px; }
  @media  {
        #cms-theme .woocommerce ul.products li.product, #cms-theme .woocommerce-page ul.products li.product {
          margin-bottom: 30px; } }
  #cms-theme .woocommerce ul.products.columns-2 li.product, #cms-theme .woocommerce-page ul.products.columns-2 li.product {
    width: calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px); }
  #cms-theme .woocommerce ul.products.columns-3 li.product, #cms-theme .woocommerce-page ul.products.columns-3 li.product {
    width: calc(33.33% - 30px);
    width: -webkit-calc(33.33% - 30px);
    width: -ms-calc(33.33% - 30px);
    width: -moz-calc(33.33% - 30px); }
  #cms-theme .woocommerce ul.products.columns-4 li.product, #cms-theme .woocommerce-page ul.products.columns-4 li.product {
    width: calc(25% - 30px);
    width: -webkit-calc(25% - 30px);
    width: -ms-calc(25% - 30px);
    width: -moz-calc(25% - 30px); }
  #cms-theme .woocommerce ul.products.columns-5 li.product, #cms-theme .woocommerce-page ul.products.columns-5 li.product {
    width: calc(20% - 30px);
    width: -webkit-calc(20% - 30px);
    width: -ms-calc(20% - 30px);
    width: -moz-calc(20% - 30px); }
  @media  {
    #cms-theme .woocommerce ul.products.columns-2 li.product, #cms-theme .woocommerce-page ul.products.columns-2 li.product, #cms-theme .woocommerce ul.products.columns-3 li.product, #cms-theme .woocommerce-page ul.products.columns-3 li.product, #cms-theme .woocommerce ul.products.columns-4 li.product, #cms-theme .woocommerce-page ul.products.columns-4 li.product, #cms-theme .woocommerce ul.products.columns-5 li.product, #cms-theme .woocommerce-page ul.products.columns-5 li.product {
      width: calc(50% - 30px);
      width: -webkit-calc(50% - 30px);
      width: -ms-calc(50% - 30px);
      width: -moz-calc(50% - 30px);
      margin-left: 15px;
      margin-right: 15px; }
      #cms-theme .woocommerce ul.products.columns-2 li.product:nth-child(2n+1), #cms-theme .woocommerce-page ul.products.columns-2 li.product:nth-child(2n+1), #cms-theme .woocommerce ul.products.columns-3 li.product:nth-child(2n+1), #cms-theme .woocommerce-page ul.products.columns-3 li.product:nth-child(2n+1), #cms-theme .woocommerce ul.products.columns-4 li.product:nth-child(2n+1), #cms-theme .woocommerce-page ul.products.columns-4 li.product:nth-child(2n+1), #cms-theme .woocommerce ul.products.columns-5 li.product:nth-child(2n+1), #cms-theme .woocommerce-page ul.products.columns-5 li.product:nth-child(2n+1) {
        clear: left; } }
  @media  {
    #cms-theme .woocommerce ul.products.columns-2 li.product, #cms-theme .woocommerce-page ul.products.columns-2 li.product, #cms-theme .woocommerce ul.products.columns-3 li.product, #cms-theme .woocommerce-page ul.products.columns-3 li.product, #cms-theme .woocommerce ul.products.columns-4 li.product, #cms-theme .woocommerce-page ul.products.columns-4 li.product, #cms-theme .woocommerce ul.products.columns-5 li.product, #cms-theme .woocommerce-page ul.products.columns-5 li.product {
      width: calc(100% - 30px);
      width: -webkit-calc(100% - 30px);
      width: -ms-calc(100% - 30px);
      width: -moz-calc(100% - 30px);
      margin-left: 15px;
      margin-right: 15px; } }
  #cms-theme .woocommerce .woocommerce-image-categries, #cms-theme .woocommerce-page .woocommerce-image-categries {
    margin-bottom: 25px; }
  #cms-theme .woocommerce .woocommerce-term-description, #cms-theme .woocommerce-page .woocommerce-term-description {
    margin-top: 20px; }
  #cms-theme .woocommerce .woocommerce-meta, #cms-theme .woocommerce-page .woocommerce-meta {
    padding: 20px 0;
    margin-bottom: 30px; }
  #cms-theme .woocommerce .woocommerce-meta p, #cms-theme .woocommerce-page .woocommerce-meta p, #cms-theme .woocommerce .woocommerce-meta form, #cms-theme .woocommerce-page .woocommerce-meta form {
    margin-bottom: 0; }
  #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-ordering label, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-ordering label {
    line-height: 39px;
    margin: 0 13px 0 0;
    color: #222;
    font-weight: 700; }
  #cms-theme .woocommerce .woocommerce-meta .woocommerce-ordering, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-ordering {
    min-width: 250px;
    margin-top: 20px; }
  #cms-theme .woocommerce .woocommerce-meta .woocommerce-ordering select, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-ordering select {
    border: 1px solid #4d4d4d;
    height: 50px;
    padding: 0 20px;
    -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 */
    color: #4d4d4d;
    font-size: 12px; }
  #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-result, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-result {
    line-height: 39px; }
  @media  {
      #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-ordering, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-ordering {
        margin-bottom: 10px; }
        #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-ordering label, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-ordering label, #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-ordering form, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-ordering form {
          float: left; }
      #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-ordering, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-ordering, #cms-theme .woocommerce .woocommerce-meta .woocommerce-meta-result, #cms-theme .woocommerce-page .woocommerce-meta .woocommerce-meta-result {
        float: left !important;
        width: 100%; } }
  #cms-theme .woocommerce ul.products li.product, #cms-theme .woocommerce-page ul.products li.product {
    text-align: center; }
  #cms-theme .woocommerce ul.products li.product .onsale, #cms-theme .woocommerce-page ul.products li.product .onsale {
    left: 20px;
    margin: 0;
    top: -20px; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner {
    position: relative; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail {
    position: relative;
    overflow: hidden; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img {
    margin-bottom: 0; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img:hover, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail img:hover {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart {
    background-color: rgba(0, 0, 0, 0.65);
    bottom: -65px;
    left: 0;
    right: 0;
    position: absolute;
    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; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.add_to_cart_button:before, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.add_to_cart_button:before {
      font-family: "FontAwesome";
      content: "\f217";
      font-size: 20px;
      color: #aa8533;
      display: inline-block;
      padding: 15px 0; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a {
      background-color: transparent;
      font-size: 0;
      padding: 0 45px;
      position: relative; }
      #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.added, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.added {
        display: none;
        font-size: 15px; }
      #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.loading:after, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.loading:after {
        top: 50%;
        color: #aa8533;
        right: 15px;
        font-size: 15px;
        -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-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.added_to_cart, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-thumbnail .woocommerce-add-to-cart a.added_to_cart {
        content: "View Cart";
        font-size: 15px;
        font-weight: 600;
        padding: 15px 0;
        color: #aa8533;
        display: inline-block; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta {
    padding: 22px 15px 26px;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 24px;
    padding: 0;
    margin-bottom: 10px; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title a, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title a {
      color: #222; }
      #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title a:hover, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .woocommerce-product-title a:hover {
        color: #4d4d4d; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .star-rating, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .star-rating {
    font-size: 18px;
    margin: 0 auto;
    color: #aa8533;
    margin-bottom: 12px; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .star-rating:before, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .star-rating:before {
      color: #aa8533; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .price, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .price {
    font-size: 20px; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .price del .amount, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner .woocommerce-product-meta .price del .amount {
      font-size: 15px;
      letter-spacing: 0.15em; }
    #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner:hover .woocommerce-add-to-cart, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner:hover .woocommerce-add-to-cart {
      bottom: 0; }
  #cms-theme .woocommerce ul.products li.product .woocommerce-product-inner:hover .woocommerce-product-title a, #cms-theme .woocommerce-page ul.products li.product .woocommerce-product-inner:hover .woocommerce-product-title a {
    color: #4d4d4d; }
  #cms-theme .woocommerce .woocommerce-pagination, #cms-theme .woocommerce-page .woocommerce-pagination {
    margin-top: 0;
    text-align: center !important; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers {
    margin: 0;
    border: none; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li {
    display: inline-block;
    border: none;
    margin: 0 8px;
    background-color: transparent; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li a, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li a, #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li span, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li span {
    padding: 0;
    background-color: transparent; }
    #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li a:hover, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li a:hover, #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li span:hover, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li span:hover {
      background-color: transparent;
      background-image: none;
      border-color: #aa8533;
      color: #aa8533; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .next, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .next, #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .prev, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .prev {
    font-size: 0px; }
    #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .next:before, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .next:before, #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .prev:before, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .prev:before {
      font-family: "FontAwesome";
      font-size: 16px;
      font-weight: normal; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .next:before, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .next:before {
    content: "\f178"; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li .prev:before, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li .prev:before {
    content: "\f177"; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers li:last-child, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers li:last-child {
    margin-right: 0; }
  #cms-theme .woocommerce .woocommerce-pagination ul.page-numbers .page-numbers.current, #cms-theme .woocommerce-page .woocommerce-pagination ul.page-numbers .page-numbers.current {
    background-color: transparent !important; }
  #cms-theme table.shop_table {
    -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 */ }
  #cms-theme table.shop_table th {
    color: #222; }
  #cms-theme .woo-image-categries {
    margin-bottom: 40px;
    /* [Start] 5. Single Product */ }
  #cms-theme.single-product {
    /* [End] 5. Single Product */
    /* [Start] 6. Cart */ }
  #cms-theme.single-product .onsale {
    -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 */
    font-weight: 700;
    left: 15px;
    top: 0px;
    line-height: 50px;
    margin: 0;
    min-height: 0;
    padding: 0;
    text-transform: uppercase;
    background-color: #aa8533;
    font-size: 12px;
    width: 50px;
    height: 50px;
    z-index: 1; }
  #cms-theme.single-product .woocommerce-product-gallery, #cms-theme.single-product .entry-summary {
    width: 100%;
    float: none; }
  #cms-theme.single-product .woocommerce-product-gallery .single_add_to_cart_button, #cms-theme.single-product .entry-summary .single_add_to_cart_button {
    height: 37px !important;
    line-height: 37px !important;
    border-radius: 0 !important;
    border: none; }
  #cms-theme.single-product .woocommerce-product-gallery .single_add_to_cart_button:hover, #cms-theme.single-product .entry-summary .single_add_to_cart_button:hover {
    background: #333; }
  #cms-theme.single-product .woocommerce-product-details__short-description {
    margin-bottom: 40px; }
  #cms-theme.single-product .entry-summary .pr-price-rating .woo-price {
    float: none;
    width: 100%; }
  #cms-theme.single-product .entry-summary .pr-price-rating .woo-price .price .amount {
    font-size: 25px !important;
    font-weight: 700; }
  #cms-theme.single-product .entry-summary .pr-price-rating .woocommerce-product-rating {
    float: none;
    width: 100%; }
  #cms-theme.single-product .entry-summary .pr-price-rating .woocommerce-product-rating .star-rating {
    margin-left: 0; }
  #cms-theme.single-product .content {
    margin-bottom: 15px;
    padding-bottom: 24px;
    margin-top: 28px;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif; }
  #cms-theme.single-product form.cart {
    margin-bottom: 20px;
    padding-bottom: 30px; }
  #cms-theme.single-product form.cart .add-whish-list {
    margin-left: 20px; }
  #cms-theme.single-product form.cart .button {
    width: 132px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 15px;
    margin-left: 7px;
    font-family: 'Montserrat', sans-serif;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /* BACKGROUND GRADIENT */ }
  #cms-theme.single-product .woocommerce-product-gallery {
    position: relative;
    margin-bottom: 40px; }
  #cms-theme.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
    border-color: #aa8533; }
  #cms-theme.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
    background-color: #aa8533; }
  #cms-theme.single-product .woocommerce-product-gallery .cshero-product-images-wrap {
    text-align: center; }
  #cms-theme.single-product .woocommerce-product-gallery .cshero-product-images-wrap img {
    display: inline-block;
    -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 */ }
  #cms-theme.single-product .woocommerce-product-gallery .cshero-product-images-wrap .woocommerce-main-image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  #cms-theme.single-product .woocommerce-product-gallery .cshero-product-thumbnails {
    padding-top: 20px;
    margin: 0 -10px; }
  #cms-theme.single-product .woocommerce-product-gallery .cshero-product-thumbnails a {
    margin: 0 0 20px;
    padding: 0 10px;
    width: 25%;
    float: left;
    clear: none; }
  #cms-theme.single-product .woocommerce-tabs .tabs {
    margin: 0;
    padding: 0;
    margin-bottom: 5px; }
  #cms-theme.single-product .woocommerce-tabs .tabs:before, #cms-theme.single-product .woocommerce-tabs .tabs:after {
    border: none;
    display: none; }
  #cms-theme.single-product .woocommerce-tabs .tabs li {
    padding: 0;
    border: none;
    margin: 0;
    float: left;
    background-color: transparent;
    -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 */ }
  @media (max-width: 460px) {
          #cms-theme.single-product .woocommerce-tabs .tabs li {
            width: 50%; } }
  #cms-theme.single-product .woocommerce-tabs .tabs li a {
    background-color: transparent;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    margin-right: 1px;
    padding: 12px 30px;
    border: 1px solid #efefef; }
  #cms-theme.single-product .woocommerce-tabs .tabs li.active a, #cms-theme.single-product .woocommerce-tabs .tabs li:hover a {
    background-color: #aa8533;
    color: #fff; }
  #cms-theme.single-product .woocommerce-tabs .tabs li:before, #cms-theme.single-product .woocommerce-tabs .tabs li:after {
    border: none;
    display: none; }
  #cms-theme.single-product .panel {
    -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 */
    display: block;
    box-shadow: 0 0 0 0;
    border-bottom: none;
    padding: 15px 0 25px; }
  #cms-theme.single-product .panel .list-style-1 ul {
    margin-bottom: 20px; }
  #cms-theme.single-product .panel ul a {
    color: #aa8533; }
  #cms-theme.single-product .panel ul a:hover {
    color: ; }
  #cms-theme.single-product #tab-reviews #comments > h2 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600; }
  #cms-theme.single-product #tab-reviews #comments ul, #cms-theme.single-product #tab-reviews #comments ol {
    padding: 0;
    margin: 0; }
  #cms-theme.single-product #tab-reviews .comment-text {
    margin: 0;
    border: 1px dashed #dedede !important; }
  #cms-theme.single-product #tab-reviews .commentlist .comment-meta .author, #cms-theme.single-product #tab-reviews .commentlist .comment-meta time {
    color: #333;
    font-weight: normal; }
    #cms-theme.single-product #tab-reviews .commentlist .comment-meta .author:before, #cms-theme.single-product #tab-reviews .commentlist .comment-meta time:before {
      content: "\f007";
      font-family: FontAwesome;
      font-size: 14px;
      padding-right: 10px;
      color: #333; }
  #cms-theme.single-product #tab-reviews .commentlist .comment-meta .author {
    margin-right: 14px; }
  #cms-theme.single-product #tab-reviews .commentlist .comment-meta time:before {
    content: "\f073"; }
  #cms-theme.single-product #tab-reviews #reply-title, #cms-theme.single-product #tab-reviews .title-rating {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 600; }
  #cms-theme.single-product #tab-reviews .title-rating {
    margin-top: 25px; }
  #cms-theme.single-product #tab-reviews textarea {
    height: 210px;
    margin-top: 10px; }
  #cms-theme.single-product #tab-reviews .stars a:after {
    color: #aa8533; }
  #cms-theme.woocommerce-cart {
    /* [End] 6. Cart */ }
  #cms-theme.woocommerce-cart .cms-checkout-page {
    margin-bottom: 0px;
    max-width: 960px;
    margin: auto;
    float: none; }
  @media (max-width: 767px) {
        #cms-theme.woocommerce-cart .cms-checkout-page form {
          overflow: scroll; } }
  #cms-theme.woocommerce-cart .quantity {
    width: 105px;
    background-color: transparent; }
  #cms-theme.woocommerce-cart .quantity .minus, #cms-theme.woocommerce-cart .quantity .plus {
    position: absolute;
    height: inherit;
    width: 25px;
    height: 25px;
    top: 6px; }
  #cms-theme.woocommerce-cart .quantity .minus i, #cms-theme.woocommerce-cart .quantity .plus i {
    top: -2px;
    right: 8px; }
  #cms-theme.woocommerce-cart .quantity .minus i:before, #cms-theme.woocommerce-cart .quantity .plus i:before {
    font-family: FontAwesome;
    font-size: 10px;
    height: 30px;
    line-height: 30px;
    color: #222; }
  #cms-theme.woocommerce-cart .quantity .minus {
    left: 5px; }
  #cms-theme.woocommerce-cart .quantity .minus i {
    right: 8px; }
  #cms-theme.woocommerce-cart .quantity .minus i:before {
    content: "\f068"; }
  #cms-theme.woocommerce-cart .quantity .plus {
    right: 5px; }
  #cms-theme.woocommerce-cart .quantity .plus i {
    right: 8px; }
  #cms-theme.woocommerce-cart .quantity .plus i:before {
    content: "\f067"; }
  #cms-theme.woocommerce-cart .quantity .qty {
    padding-left: 12px;
    text-align: center;
    border: none;
    width: 105px; }
  #cms-theme.woocommerce-cart .shop_table {
    -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 */ }
  #cms-theme.woocommerce-cart .shop_table th {
    color: #222; }
  #cms-theme.woocommerce-cart .shop_table td.coupon {
    border-right: 1px solid #e5e5e5; }
  #cms-theme.woocommerce-cart .shop_table td.coupon label {
    color: #222; }
  #cms-theme.woocommerce-cart .shop_table td.coupon input {
    margin-bottom: 10px; }
  #cms-theme.woocommerce-cart .shop_table td.product-name a {
    color: #222;
    font-weight: 600;
    font-size: 15px; }
  #cms-theme.woocommerce-cart .shop_table td.product-name a:hover {
    color: #aa8533; }
  #cms-theme.woocommerce-cart .shop_table td.product-name .woocommerce-product-rating {
    display: none; }
  #cms-theme.woocommerce-cart .shop_table td.actions .wc-proceed-to-checkout {
    padding: 0 0 10px; }
  #cms-theme.woocommerce-cart .shop_table .product-remove {
    padding-left: 30px !important; }
  @media (max-width: 767px) {
        #cms-theme.woocommerce-cart .shop_table .product-remove {
          padding-left: 10px !important; } }
  #cms-theme.woocommerce-cart .shop_table .product-remove a {
    text-align: center;
    border: 0 none;
    border-radius: 100%;
    color: red;
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    height: 18px;
    line-height: 13px;
    text-decoration: none;
    width: 18px;
    text-align: center; }
  #cms-theme.woocommerce-cart .shop_table .product-remove a i:before {
    content: "\f00d";
    font-size: 11px;
    color: red;
    font-family: FontAwesome;
    font-style: normal; }
    #cms-theme.woocommerce-cart .shop_table .product-remove a i:hover {
      color: #fff; }
  #cms-theme.woocommerce-cart .shop_table .product-remove a:hover {
    background-color: transparent; }
  #cms-theme.woocommerce-cart .shop_table.cart {
    margin-bottom: 60px; }
  #cms-theme.woocommerce-cart .cart-collaterals {
    margin-bottom: 0px; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals > h2 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals table {
    border: 1px solid rgba(0, 0, 0, 0.1); }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals table th {
    color: #333;
    padding: 10px; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals table td {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0;
    border-bottom: 0;
    line-height: 45px;
    height: 45px; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals table .cart-subtotal td {
    border-top: none;
    vertical-align: middle; }
  #cms-theme.woocommerce-cart .cart-collaterals .cart_totals table .amount {
    color: #333; }
  #cms-theme.woocommerce-checkout {
    /* Woo Widget */ }
  #cms-theme.woocommerce-checkout #customer_details {
    margin-bottom: 32px; }
  #cms-theme.woocommerce-checkout .woocommerce-info {
    border-color: #aa8533; }
  #cms-theme.woocommerce-checkout .woocommerce-info:before {
    color: #aa8533; }
  #cms-theme.woocommerce-checkout .amount {
    color: #333; }
  #cms-theme.woocommerce-checkout .payment_methods, #cms-theme.woocommerce-checkout .place-order {
    -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: #f5f5f5;
    border: none; }
  #cms-theme.woocommerce-checkout #primary #content {
    max-width: 960px;
    margin: auto;
    float: none; }
  #cms-theme.woocommerce-checkout #primary label {
    color: #333;
    font-weight: normal; }
  #cms-theme.woocommerce-checkout form.woocommerce-checkout h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700; }
  #cms-theme .widget_price_filter .ui-slider-horizontal {
    height: 4px; }
  #cms-theme .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #aa8533;
    -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 */ }
  #cms-theme .widget_price_filter .price_slider_wrapper .ui-widget-content {
    -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 */ }
  #cms-theme .widget_price_filter .price_slider_wrapper .price_slider_amount button {
    background-color: transparent;
    border-color: #333;
    color: #333; }
  #cms-theme .widget_price_filter .price_slider_wrapper .price_slider_amount button:hover {
    background-color: #aa8533;
    border-color: #aa8533;
    color: #fff; }
  #cms-theme #sidebar {
    /* Apply All Style */ }
  #cms-theme #sidebar.woocommerce-widget .wg-title {
    font-size: 20px;
    color: #333;
    font-family: 'Montserrat'; }
  #cms-theme .cshero-product-category {
    font-size: 13px;
    color: #333;
    font-family: 'Droidserif Italic'; }
  #cms-theme .cshero-product-category a {
    color: #333; }
  #cms-theme .cshero-product-category a:hover {
    color: #aa8533; }
  #cms-theme .cshero-product-title h3, #cms-theme h3.product_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    padding: 4px 0; }
  #cms-theme .cshero-product-title h3 a, #cms-theme h3.product_title a {
    font-family: 'Montserrat', sans-serif;
    color: #222; }
  #cms-theme .cshero-product-title h3 a:hover, #cms-theme h3.product_title a:hover, #cms-theme .cshero-product-title h3 a:focus, #cms-theme h3.product_title a:focus {
    color: #aa8533; }
  #cms-theme h3.product_title {
    font-size: 18px; }
  #cms-theme.single-product .woo-nav-links {
    margin-bottom: 65px !important;
    /* Relate Item Product */ }
  #cms-theme .cms-related-heading {
    margin-bottom: 32px !important; }
  #cms-theme .cms-related-heading + .products {
    margin: 0 !important; }
  #cms-theme .cms-related-heading .wg-title {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #333;
    text-transform: capitalize;
    font-weight: normal; }
  #cms-theme #related-product-carousel .owl-item {
    padding: 0 !important;
    margin-bottom: 0;
    clear: inherit; }
  #cms-theme #related-product-carousel .owl-item:nth-child(3n+1) {
    clear: inherit; }
  #cms-theme #related-product-carousel .cshero-product-title h3 {
    margin-bottom: 0; }
  #cms-theme #related-product-carousel .cshero-product-title h3 a:hover {
    color: #aa8533; }

.single-product .product {
  overflow: hidden; }

#cms-theme.woocommerce-page .product .entry-summary .price ins .amount {
  font-size: 35px; }

@media screen and (max-width: 991px) {
  #cms-theme.woocommerce .pr-full-width .products li.product, #cms-theme.woocommerce-page .pr-full-width .products li.product, #cms-theme.woocommerce .products li, #cms-theme.woocommerce-page .products li, #cms-theme.woocommerce .products .owl-item, #cms-theme.woocommerce-page .products .owl-item {
    width: 50%; }
    #cms-theme.woocommerce .pr-full-width .products li.product:nth-child(2n+1), #cms-theme.woocommerce-page .pr-full-width .products li.product:nth-child(2n+1), #cms-theme.woocommerce .products li:nth-child(2n+1), #cms-theme.woocommerce-page .products li:nth-child(2n+1), #cms-theme.woocommerce .products .owl-item:nth-child(2n+1), #cms-theme.woocommerce-page .products .owl-item:nth-child(2n+1) {
      clear: left; }
    #cms-theme.woocommerce .pr-full-width .products li.product:nth-child(3n+1), #cms-theme.woocommerce-page .pr-full-width .products li.product:nth-child(3n+1), #cms-theme.woocommerce .products li:nth-child(3n+1), #cms-theme.woocommerce-page .products li:nth-child(3n+1), #cms-theme.woocommerce .products .owl-item:nth-child(3n+1), #cms-theme.woocommerce-page .products .owl-item:nth-child(3n+1) {
      clear: initial; } }

@media screen and (max-width: 480px) {
  #cms-theme.woocommerce .pr-full-width .products li.product, #cms-theme.woocommerce-page .pr-full-width .products li.product, #cms-theme.woocommerce .products li, #cms-theme.woocommerce-page .products li, #cms-theme.woocommerce .products .owl-item, #cms-theme.woocommerce-page .products .owl-item {
    width: 100%; }
    #cms-theme.woocommerce .pr-full-width .products li.product:nth-child(n+1), #cms-theme.woocommerce-page .pr-full-width .products li.product:nth-child(n+1), #cms-theme.woocommerce .products li:nth-child(n+1), #cms-theme.woocommerce-page .products li:nth-child(n+1), #cms-theme.woocommerce .products .owl-item:nth-child(n+1), #cms-theme.woocommerce-page .products .owl-item:nth-child(n+1) {
      clear: left; }
    #cms-theme.woocommerce .pr-full-width .products li.product:nth-child(2n+1), #cms-theme.woocommerce-page .pr-full-width .products li.product:nth-child(2n+1), #cms-theme.woocommerce .products li:nth-child(2n+1), #cms-theme.woocommerce-page .products li:nth-child(2n+1), #cms-theme.woocommerce .products .owl-item:nth-child(2n+1), #cms-theme.woocommerce-page .products .owl-item:nth-child(2n+1) {
      clear: initial; } }

.widget_product_search {
  border-bottom: none; }
  .widget_product_search .woocommerce-product-search {
    position: relative; }
  .widget_product_search .woocommerce-product-search:before {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 15px;
    color: #e6ae48;
    position: absolute;
    top: 50%;
    right: 0px;
    -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 */
    z-index: 1; }
  .widget_product_search .woocommerce-product-search button {
    position: absolute !important;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    padding: 0;
    text-align: right;
    line-height: 50px;
    border: none;
    background-color: transparent;
    background-image: none;
    color: #e6ae48;
    font-size: 0px;
    border: none; }
  .widget_product_search .woocommerce-product-search .search-field {
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid #e6e6e6;
    padding: 0px 20px 0 0;
    line-height: 50px;
    height: 50px;
    font-size: 12px;
    width: 100%; }

.woocommerce ul.product_list_widget li {
  margin-bottom: 10px;
  padding: 23px 17px;
  border: 1px solid #dedede;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -ms-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms; }
  .woocommerce ul.product_list_widget li:hover {
    box-shadow: 2px 0 0 0 #aa8533 inset;
    border-left-color: transparent; }
  .woocommerce ul.product_list_widget li img {
    width: 65px;
    background-color: #f9f9f9;
    padding: 5px;
    -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 */
    float: left;
    margin-right: 13px; }
  .woocommerce ul.product_list_widget li .product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; }
  .woocommerce ul.product_list_widget li .woocommerce-Price-amount {
    color: #aa8533;
    font-size: 15px;
    font-weight: 400; }
  .woocommerce ul.product_list_widget li del .woocommerce-Price-amount {
    color: #aa8533;
    opacity: 0.7; }
  .woocommerce ul.product_list_widget li ins .woocommerce-Price-amount {
    color: #fff; }

.editor-post-title__block .editor-post-title__input {
  font-size: 50px;
  font-family: 'Montserrat', sans-serif !important;
  line-height: 55px;
  text-transform: uppercase; }

.wp-block-heading h1, .wp-block-heading h2, .wp-block-heading h3 {
  font-family: "Playfair Display";
  font-weight: normal;
  font-style: normal; }

.wp-block-freeform.block-library-rich-text__tinymce blockquote {
  border-left: 4px solid #c29765; }

.editor-styles-wrapper {
  font-family: 'Montserrat', sans-serif !important; }
