/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* ==========================================================================
    Style Button
========================================================================== */
/*------------------------------------------------------------------
[All Style Shortcode]

  1. Blog Standard
  2. Single Details
  3. Single Portfolio

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[All Style Shortcode]
  1. Custom Heading
  2. Counter
  3. Tabs & Accordion
  5. Carousel 
  6. Progressbar
  8. Testimonial
  9. Team
  10. Heading
  11. Fancybox
  12. Service
  13. Client
  14. Blog Carousel
  15. Blog Grid
  19. Image Gallery
  20. Lists
  21. Timeline
  23. CMS Process
  24. CMS 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

-------------------------------------------------------------------*/
#colophon.site-footer:before {
  background-color: #222; }

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

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

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

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

#wl-wrapper.woocommerce .button, .btn, button, .button, input[type="submit"] {
  background-color: #222;
  font-size: 13px;
  font-weight: 700;
  border: none;
  color: #fff;
  text-transform: uppercase;
  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: 2px solid #222; }

#wl-wrapper.woocommerce .button:hover, .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: var(--main-color);
  border-color: var(--main-color);
  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: var(--main-color); }
  .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-radius {
    -webkit-border-radius: 55px;
    -khtml-border-radius: 55px;
    -moz-border-radius: 55px;
    -ms-border-radius: 55px;
    -o-border-radius: 55px;
    border-radius: 55px;
    /* BACKGROUND GRADIENT */ }
  .btn.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color); }
    .btn.btn-primary:hover {
      background-color: #222;
      border-color: #222; }
  .btn.btn-primary-alt, .btn.btn-primary-alt-radius {
    background-color: #fff;
    color: var(--main-color);
    border-color: var(--main-color); }
    .btn.btn-primary-alt:hover, .btn.btn-primary-alt-radius:hover {
      background-color: #222;
      border-color: #222;
      color: #fff; }
  .btn.btn-default-alt, .btn.btn-default-alt-radius {
    background-color: #fff;
    color: #222; }
    .btn.btn-default-alt:hover, .btn.btn-default-alt-radius:hover {
      background-color: var(--main-color);
      border-color: var(--main-color);
      color: #fff; }
  .btn.btn-primary-radius {
    background-color: var(--main-color);
    border-color: var(--main-color); }
    .btn.btn-primary-radius:hover {
      background-color: #222;
      border-color: #222; }
  .btn.btn-default-radius, .btn.btn-default-alt-radius, .btn.btn-primary-radius, .btn.btn-primary-alt-radius {
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    /* BACKGROUND GRADIENT */ }
  .btn.btn-primary-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }
    .btn.btn-primary-white:hover {
      background-color: var(--main-color);
      color: #fff;
      border-color: var(--main-color); }
  .btn.btn-primary-white-alt {
    background-color: #fff;
    color: #222;
    border-color: #fff; }
    .btn.btn-primary-white-alt:hover {
      color: #fff;
      background-color: var(--main-color);
      border-color: var(--main-color); }
  .btn.btn-default-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }
    .btn.btn-default-white:hover {
      background-color: #222;
      color: #fff;
      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: var(--main-color);
    background-color: var(--main-color); }
  .carousel .carousel-control.left {
    left: 50px; }
  .carousel .carousel-control.right {
    right: 50px; }

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

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

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

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

.entry-blog {
  background-color: #fff;
  margin-bottom: 65px; }
  .entry-blog .entry-header .post-thumbnail {
    text-align: center; }
    .entry-blog .entry-body {
      padding: 30px 50px 0px;
      border: 1px solid #dcdcdc; }
  .entry-blog .entry-body:hover {
    box-shadow: 2px 0 0 0 var(--main-color) inset;
    border-left: 1px solid var(--main-color); }
  .entry-blog .entry-body .entry-meta {
    margin: 0px 0 -2px; }
    .entry-blog .entry-body .entry-meta ul li {
      font-family: 'Montserrat', sans-serif;
      color: #bcbbbb;
      font-size: 17px;
      font-weight: bold; }
  .entry-blog .entry-body .entry-content .entry-meta-bottom {
    margin-top: 38px;
    display: block;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif; }
    .entry-blog .entry-body .entry-content .entry-meta-bottom ul {
      padding: 0;
      position: relative; }
      .entry-blog .entry-body .entry-content .entry-meta-bottom ul:before {
        position: absolute;
        border-top: 1px solid #dcdcdc;
        height: 1px;
        content: " ";
        max-width: 500px;
        width: 100%; }
      .entry-blog .entry-body .entry-content .entry-meta-bottom ul li {
        font-weight: 700;
        display: inline-block;
        font-size: 13px;
        height: 60px;
        line-height: 60px;
        padding: 0 20px;
        position: relative; }
        .entry-blog .entry-body .entry-content .entry-meta-bottom ul li:first-child {
          padding-left: 0; }
          .entry-blog .entry-body .entry-content .entry-meta-bottom ul li:first-child a {
            padding-left: 0 !important; }
        .entry-blog .entry-body .entry-content .entry-meta-bottom ul li:last-child:after {
          border-right: none !important; }
        .entry-blog .entry-body .entry-content .entry-meta-bottom ul li:after {
          position: absolute;
          top: 20px;
          right: -3px;
          width: 1px;
          content: " ";
          height: 20px;
          border-right: 1px solid #dcdcdc; }
        .entry-blog .entry-body .entry-content .entry-meta-bottom ul li a {
          font-weight: 700;
          color: #777; }
          .entry-blog .entry-body .entry-content .entry-meta-bottom ul li a:hover {
            color: var(--main-color); }
  .entry-blog .entry-header img {
    width: inherit; }
  .entry-blog .entry-title {
    margin-bottom: 20px;
    margin-top: 0px;
    font-weight: bold;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif; }
  .entry-blog .entry-title a {
    color: #777; }
    .entry-blog .entry-title a:hover {
      color: var(--main-color); }
  .entry-blog .entry-footer {
    line-height: 1; }
  .entry-blog .read-more {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 10px;
    display: inline-block;
    overflow: hidden;
    line-height: 1; }
  .entry-blog .read-more:hover {
    color: var(--main-color); }
    .entry-blog .read-more:hover:before {
      width: 100%; }
  .entry-blog.hidden-feature-image {
    padding-top: 35px; }
  .entry-blog.hidden-feature-image .entry-header {
    display: none; }

.single .entry-blog {
  margin-bottom: 55px; }
  .single .entry-blog .entry-body {
    padding-left: 0;
    padding-right: 0;
    border: none;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e2e2; }
    .single .entry-blog .entry-body:hover {
      box-shadow: none;
      border-left: none; }
    .single .entry-blog .entry-body .entry-meta .post-details-bottom {
      margin-bottom: 25px; }
      .single .entry-blog .entry-body .entry-meta .post-details-bottom li {
        font-size: 13px;
        color: #777;
        font-weight: normal;
        font-family: 'PT Sans', sans-serif; }
        .single .entry-blog .entry-body .entry-meta .post-details-bottom li a {
          color: #777;
          font-weight: normal;
          font-family: 'PT Sans', sans-serif; }
          .single .entry-blog .entry-body .entry-meta .post-details-bottom li a:hover {
            color: var(--main-color); }
        @media (max-width: 767px) {
      .single .entry-blog .entry-body .entry-meta .post-details-bottom li {
        height: 45px;
        line-height: 45px; } }
        @media (max-width: 360px) {
      .single .entry-blog .entry-body .entry-meta .post-details-bottom li {
        text-align: center; } }
    .single .entry-blog .entry-body .entry-title {
      font-weight: bold;
      color: #565656;
      text-transform: uppercase;
      padding-bottom: 35px;
      font-family: 'Montserrat', sans-serif;
      border-bottom: 1px solid #e2e2e2;
      margin-bottom: 22px; }
    .entry-meta li {
      display: inline-block;
      font-size: 13px;
      color: #616161;
      position: relative;
      padding: 0 8px; }
  .entry-meta li:before {
    content: "|";
    position: absolute;
    right: -4px; }
  .entry-meta li:first-child {
    padding-left: 0; }
  .entry-meta li:last-child:before {
    display: none; }
  .entry-meta li a {
    color: var(--main-color); }
    .entry-meta li a:hover {
      color: #616161; }

.pagination {
  margin: 10px 0;
  width: 100%;
  text-align: center;
  /* 
   [Start] 2. Single Details
   +-----------------------------------+
*/ }
  .pagination .page-numbers {
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 0px;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    text-align: center;
    width: 43px;
    font-family: 'Montserrat', sans-serif;
    color: #646464;
    -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 */
    font-size: 20px;
    font-weight: 700; }
  .pagination .page-numbers:hover, .pagination .page-numbers.current {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff; }
  .pagination .page-numbers + .page-numbers {
    margin-left: 12px; }
  .pagination .page-numbers i {
    font-size: 26px; }

blockquote {
  padding: 26px 30px;
  background: transparent;
  margin: 20px 0;
  border: 1px solid #dcdcdc;
  border-left: 3px solid var(--main-color);
  font-size: 15px;
  line-height: 28px;
  color: #9b9b9b; }
  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: var(--main-color); }
  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; }

.single #cms-page-title .cms-page-title-inner h1 {
  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 {
  padding: 34px 40px 35px; }
  .entry-author .admin-avt {
    max-width: 90px;
    float: left;
    margin-top: 5px; }
  .entry-author .admin-avt img {
    max-width: 90px;
    width: 100%; }
  .entry-author .admin-info {
    padding-left: 120px; }
  .entry-author .user-social {
    padding-top: 10px; }
  .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: var(--main-color); }

.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;
    margin-bottom: 12px;
    margin-top: 16px; }
  .related-post .title a {
    color: #222; }
    .related-post .title a:hover {
      color: var(--main-color); }
  .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-portfolio #sidebar .widget_nav_menu, .single-services #sidebar .widget_nav_menu {
  margin-top: -5px; }
  .single-portfolio .owl-controls, .single-services .owl-controls {
    overflow: hidden; }
  .single-portfolio .owl-controls .owl-dots, .single-services .owl-controls .owl-dots {
    margin-left: -30px;
    padding-top: 20px;
    overflow: hidden;
    padding-bottom: 30px; }
    .single-portfolio .owl-controls .owl-dots .owl-dot, .single-services .owl-controls .owl-dots .owl-dot {
      width: 33.33333%;
      padding: 0;
      margin: 0;
      margin-bottom: 30px;
      float: left;
      padding-left: 30px;
      margin-right: 0; }
    .single-portfolio .owl-controls .owl-dots .owl-dot img, .single-services .owl-controls .owl-dots .owl-dot img {
      -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 */ }
  @media (max-width: 767px) {
    .single-portfolio .page-title, .single-services .page-title {
      text-align: center; } }
  .single-portfolio .single-portfolio-image .owl-controls .owl-dots .owl-dot, .single-services .single-portfolio-image .owl-controls .owl-dots .owl-dot, .single-portfolio .single-services-image .owl-controls .owl-dots .owl-dot, .single-services .single-services-image .owl-controls .owl-dots .owl-dot {
    position: relative; }
    .single-portfolio .single-portfolio-image .owl-controls .owl-dots .owl-dot:before, .single-services .single-portfolio-image .owl-controls .owl-dots .owl-dot:before, .single-portfolio .single-services-image .owl-controls .owl-dots .owl-dot:before, .single-services .single-services-image .owl-controls .owl-dots .owl-dot:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      -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 */
      left: 30px;
      background: #000;
      opacity: 0; }
    .single-portfolio .single-portfolio-image .owl-controls .owl-dots .owl-dot:after, .single-services .single-portfolio-image .owl-controls .owl-dots .owl-dot:after, .single-portfolio .single-services-image .owl-controls .owl-dots .owl-dot:after, .single-services .single-services-image .owl-controls .owl-dots .owl-dot:after {
      content: "\f002";
      font-family: FontAwesome;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: 15px;
      color: white;
      font-size: 20px;
      opacity: 0;
      z-index: 22;
      -webkit-transition: all 500ms ease 0ms;
      -moz-transition: all 500ms ease 0ms;
      -ms-transition: all 500ms ease 0ms;
      transition: all 500ms ease 0ms;
      transform: translate(-50%, -50%); }
    .single-portfolio .single-portfolio-image .owl-controls .owl-dots .owl-dot:hover:before, .single-services .single-portfolio-image .owl-controls .owl-dots .owl-dot:hover:before, .single-portfolio .single-services-image .owl-controls .owl-dots .owl-dot:hover:before, .single-services .single-services-image .owl-controls .owl-dots .owl-dot:hover:before {
      opacity: 0.35; }
      .single-portfolio .single-portfolio-image .owl-controls .owl-dots .owl-dot:hover:after, .single-services .single-portfolio-image .owl-controls .owl-dots .owl-dot:hover:after, .single-portfolio .single-services-image .owl-controls .owl-dots .owl-dot:hover:after, .single-services .single-services-image .owl-controls .owl-dots .owl-dot:hover:after {
        opacity: 1; }
  .single-portfolio #single-portfolio-image-one .post-thumbnail, .single-services #single-portfolio-image-one .post-thumbnail, .single-portfolio #single-services-image-one .post-thumbnail, .single-services #single-services-image-one .post-thumbnail {
    margin-bottom: 65px; }

@media screen and (max-width: 767px) {
  .entry-blog .entry-body {
    padding: 40px 15px 0; }
    .entry-blog .entry-body .entry-content .entry-meta-bottom {
      padding-top: 10px;
      margin-top: 20px; }
      .entry-blog .entry-body .entry-content .entry-meta-bottom ul {
        padding: 0; }
        .entry-blog .entry-body .entry-content .entry-meta-bottom ul li {
          padding: 0 13px;
          font-size: 10px;
          font-weight: normal; }
          .entry-blog .entry-body .entry-title {
            font-family: 'Montserrat', sans-serif; }

  .single-portfolio #sidebar .widget_nav_menu, .single-services #sidebar .widget_nav_menu {
    margin-top: 0px; }
    .single-portfolio .owl-controls, .single-services .owl-controls {
      overflow: hidden; }
    .single-portfolio .owl-controls .owl-dots, .single-services .owl-controls .owl-dots {
      overflow: hidden;
      padding-bottom: 25px; }
      .single-portfolio .owl-controls .owl-dots .owl-dot, .single-services .owl-controls .owl-dots .owl-dot {
        width: 33.33%;
        margin: 0 !important;
        margin-bottom: 10px !important;
        float: left; }
      .single-portfolio .owl-controls .owl-dots .owl-dot img, .single-services .owl-controls .owl-dots .owl-dot img {
        -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 */ } }

@media screen and (max-width: 360px) {
  #cms-page-title {
    text-align: center; } }

#comments #respond {
  background-color: #fff;
  margin-top: 20px; }
  #comments #respond #reply-title {
    font-size: 25px;
    color: #565656; }
  #comments .comment-list-wrap .wg-title {
    color: #565656;
    position: relative;
    padding-left: 25px;
    padding-bottom: 0;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0; }
    #comments .comment-list-wrap .wg-title span {
      position: absolute;
      top: 0;
      left: 0; }
  #comments .comment-list {
    list-style: none;
    padding: 0; }
  #comments .comment-list > li:first-child {
    margin-top: -13px; }
  #comments .comment-list .comment-body {
    padding-top: 35px;
    margin-top: 40px; }
    #comments .comment-list .comment-body .bg-reply-comment {
      position: relative; }
    #comments .comment-list .comment-body .bg-reply-comment .comment-holder {
      max-width: 70px;
      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: 35px 20px 25px;
      background-color: #f3f3f3;
      position: relative; }
      #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner p {
        font-family: 'PT Sans', sans-serif;
        font-size: 15px;
        color: #777; }
      #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner:before {
        content: "";
        position: absolute;
        top: 10px;
        left: -20px;
        width: 20px;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 20px solid #f3f3f3; }
      #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date {
        display: table;
        width: 100%;
        margin-bottom: 10px; }
        #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date .fn {
          float: left;
          font-style: normal;
          font-weight: bold;
          font-family: 'Montserrat', sans-serif;
          font-size: 15px;
          color: var(--main-color); }
        #comments .comment-list .comment-body .bg-reply-comment .commetn-meta .commetn-meta-inner .author-date .comment-date {
          float: right;
          margin-top: -15px;
          color: #777; }
    #comments .comment-list .comment-body .bg-reply-comment .comment-author .avatar {
      max-width: 70px;
      -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 */
      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); }
    #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: var(--main-color); }
    #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-family: "Droidserif Italic";
      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: var(--main-color); }
    #comments .comment-list .comment-body .reply a {
      font-size: 13px;
      color: var(--main-color);
      text-transform: uppercase;
      font-weight: 700; }
    #comments .comment-list .comment-body .reply a:hover {
      color: #222; }
  #comments .comment-list > li:first-child > .comment-body {
    border: none;
    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: var(--main-color); }
  #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;
      width: 153px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      font-size: 13px;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      padding: 0 15px;
      border: none;
      -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 */
      background-color: var(--main-color);
      color: #fff; }
    #comments #commentform .form-submit #submit:hover {
      background-color: #222; }
  #comments #commentform .comment-form-comment {
    margin-bottom: 19px;
    margin-top: 26px; }
    #comments #commentform .comment-form-comment label {
      font-size: 15px;
      font-family: 'PT Sans', sans-serif; }
  #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: 3px;
      -khtml-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      /* BACKGROUND GRADIENT */
      display: block;
      background-color: #fff; }

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

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

.box-need-help {
  background-color: var(--main-color);
  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: var(--main-color);
  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: #222;
      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: var(--main-color);
  /* OWL Carousel */ }

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

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

.owl-controls .owl-nav {
  text-align: center; }
  .owl-controls .owl-nav .owl-prev, .owl-controls .owl-nav .owl-next {
    display: inline-block;
    text-align: center;
    margin-top: 30px; }
    .owl-controls .owl-nav .owl-prev i, .owl-controls .owl-nav .owl-next i {
      height: 40px;
      width: 40px;
      line-height: 40px;
      border: 1px solid #eee;
      font-size: 25px;
      color: #646464;
      text-align: center;
      margin: 0 5px;
      -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: #fff; }
    .owl-controls .owl-nav .owl-prev i:before, .owl-controls .owl-nav .owl-next i:before {
      content: "\f104";
      font-family: "FontAwesome"; }
    .owl-controls .owl-nav .owl-prev i:hover, .owl-controls .owl-nav .owl-next i:hover {
      color: #fff;
      border-color: var(--main-color);
      background-color: var(--main-color); }
  .owl-controls .owl-nav .owl-next i:before {
    content: "\f105"; }
  .owl-controls .owl-dots {
    text-align: center;
    padding-top: 25px; }
  .owl-controls .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px; }
    .owl-controls .owl-dots .owl-dot span {
      display: block;
      background-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 */
      position: relative; }
    .owl-controls .owl-dots .owl-dot span:before {
      content: "";
      height: 10px;
      width: 10px;
      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 {
      background-color: var(--main-color); }
    .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; }
    .owl-controls .owl-dots .owl-dot.active span:after {
      border-color: var(--main-color); }

.dot-style-white .owl-controls .owl-dots .owl-dot 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; }
  .dot-style-white .owl-controls .owl-dots .owl-dot.active span:after {
    border-color: #fff; }

.dot-style-gray .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; }
  .social-page {
    text-align: center;
    /* 
   [Start] 1. Custom Heading
   +-----------------------------------+
*/ }
  .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: #222; }

.vc_custom_heading {
  /* 
   [Start] 2. Counter
   +-----------------------------------+
*/ }
  .vc_custom_heading cite {
    font-style: normal;
    color: var(--main-color);
    text-decoration: underline; }
  .vc_custom_heading.text-shadow span {
    -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); }

.cms-counter-wraper {
  /* 
   [Start] 6. Progressbar
   +-----------------------------------+
*/ }
  .cms-counter-wraper .cms-counter-body {
    margin: 15px 0 30px; }
  .cms-counter-wraper .cms-counter-icon {
    margin-bottom: 18px; }
  .cms-counter-wraper .cms-counter-icon i {
    font-size: 60px;
    color: var(--main-color); }
  .cms-counter-wraper .cms-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 .cms-counter-content {
    font-weight: 600; }
  .cms-counter-wraper .cms-counter-content .cms-counter {
    color: #222;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    line-height: 1; }
  .cms-counter-wraper .cms-counter-content .cms-counter-title {
    font-size: 20px;
    color: #9b9b9b;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    display: block;
    margin-bottom: 20px; }

.cms-progress-wraper {
  position: relative;
  overflow: hidden; }
  .cms-progress-wraper .cms-progress-title {
    font-size: 15px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal; }
  .cms-progress-wraper .cms-progress-icon i {
    font-size: 45px;
    color: var(--main-color); }

.cms-progress-layout1 {
  margin-bottom: 30px;
  padding-top: 10px;
  /* 
   [Start] 8. Testimonial
   +-----------------------------------+
*/ }
  .cms-progress-layout1 .cms-progress-title {
    margin-bottom: 9px;
    color: ;
    font-weight: 15px;
    font-weight: normal; }
  .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: 10px; }
  .cms-progress-layout1 .cms-progress .progress-bar {
    background-image: none;
    background-color: var(--main-color);
    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-testimonial .cms-testimonial-wrapper .cms-testimonial-image {
  max-width: 80px; }
  .cms-testimonial .cms-testimonial-wrapper .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 */ }
  .cms-testimonial .cms-testimonial-wrapper .cms-testimonial-content {
    font-size: 23px;
    line-height: 35px;
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-testimonial .cms-testimonial-wrapper .cms-testimonial-content p {
    margin: 0;
    line-height: 25px;
    font-size: 15px; }
  .cms-testimonial .cms-testimonial-wrapper .cms-testimonial-title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; }
  .cms-testimonial .cms-testimonial-wrapper .cms-testimonial-position {
    font-size: 13px;
    line-height: 23px;
    color: #616161; }
  .cms-testimonial .cms-testimonial-wrapper .cms-testimonial-icon {
    background-size: contain;
    width: 26px;
    height: 20px;
    margin: auto;
    position: relative; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-image, .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-image {
    float: left;
    width: 20%; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content, .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content {
    margin-bottom: 3px;
    font-size: 15px;
    text-align: left;
    padding-left: 20px; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content .cms-testimonial-meta, .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content .cms-testimonial-meta {
    text-align: left; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content .cms-testimonial-meta .cms-testimonial-title, .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content .cms-testimonial-meta .cms-testimonial-title {
    margin: 2px 0;
    font-size: 15px;
    font-weight: 400;
    color: #2f2f2f;
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal;
    font-family: arial; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev i, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-prev i, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-next i, .cms-testimonial.cms-testimonial-layout2 .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; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev i:hover, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-prev i:hover, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-next i:hover, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-nav .owl-next i:hover {
    color: #fff; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-next, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-next, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-prev, .cms-testimonial.cms-testimonial-layout2 .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-layout2 .owl-controls .owl-next:hover, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-prev:hover, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-prev:hover {
    background-color: var(--main-color) !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-prev, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-prev {
    left: -105px !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-next, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-next {
    right: -105px !important; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot span {
    background-color: #777; }
    .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span:after, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot span:after {
      border: 3px solid #777; }
    .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span:before, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot span:before {
      border: 3px solid #777; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot.active span {
    background-color: var(--main-color); }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span:after, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot.active span:after {
    border: 3px solid var(--main-color); }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot.active span:before, .cms-testimonial.cms-testimonial-layout2 .owl-controls .owl-dots .owl-dot.active span:before {
    border: 3px solid var(--main-color); }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper {
    padding: 57px 58px;
    min-height: 270px;
    background-color: #fff; }
  @media (max-width: 991px) {
      .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper {
        min-height: auto; } }
  @media (min-width: 768px) (max-width: 991px) {
    padding-left: 150px;
    padding-right: 150px; }
  @media (max-width: 767px) {
      .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper {
        padding: 50px; } }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper .cms-testimonial-image {
    width: 81px;
    height: 81px;
    margin-top: 7px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    overflow: hidden; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper .cms-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-layout1 .cms-testimonial-wrapper .cms-testimonial-content {
    padding-left: 105px;
    margin-bottom: 0; }
  .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-wrapper .cms-testimonial-content .cms-testimonial-title {
    margin-top: 10px; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot {
    margin-top: 45px; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-dots .owl-dot span:before {
    width: 9px;
    height: 9px; }
  .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-next, .cms-testimonial.cms-testimonial-layout1 .owl-controls .owl-nav .owl-prev {
    top: 30% !important; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .cms-testimonial-image {
    margin-top: 15px;
    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 */ }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-wrapper .cms-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-content .cms-testimonial-meta .cms-testimonial-title {
    margin-top: 16px !important;
    color: #333; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-image {
    float: left;
    width: 80px;
    height: 80px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content {
    margin-bottom: 3px;
    font-size: 15px;
    text-align: left;
    padding-left: 100px; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content .cms-testimonial-meta {
    text-align: left; }
  .cms-testimonial.cms-testimonial-layout2 .cms-testimonial-content .cms-testimonial-meta .cms-testimonial-title {
    margin: 2px 0;
    font-size: 15px;
    font-weight: 400;
    color: #2f2f2f;
    font-style: normal;
    font-family: arial; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta {
    text-align: center;
    padding: 10px;
    padding-bottom: 0; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta .cms-testimonial-image {
    width: 98px;
    height: 98px;
    line-height: 98px;
    max-width: 98px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px solid #818180;
    border-radius: 50%;
    text-align: center; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta .cms-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 .cms-testimonial-meta .cms-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 .cms-testimonial-meta .cms-testimonial-icon {
    width: auto;
    height: auto;
    margin: 25px auto 28px;
    text-align: center; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta .cms-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: var(--main-color);
    position: relative; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta .cms-testimonial-icon span i {
    margin-right: 20px;
    font-size: 15px;
    position: absolute;
    bottom: 10px;
    left: 25px; }
  .cms-testimonial.cms-testimonial-layout3 .cms-testimonial-meta .cms-testimonial-content {
    color: #e6e6e6; }

.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: 50%;
    transform: translate(-50%, 0);
    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: var(--main-color);
        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 {
  /* 
   [Start] 10. Heading
   +-----------------------------------+
*/ }
  .cms-layout-team .cms-team-header {
    position: relative; }
  .cms-layout-team .cms-team-header img {
    width: 100%; }
  .cms-layout-team .cms-team-header .cms-team-overlay {
    position: absolute;
    bottom: 0;
    left: 0px;
    top: 0px;
    right: 0px;
    background-color: rgba(34, 34, 34, 0.95);
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .cms-layout-team .cms-team-header .cms-team-social {
    -webkit-transition: all 400ms linear 0ms;
    -moz-transition: all 400ms linear 0ms;
    -ms-transition: all 400ms linear 0ms;
    transition: all 400ms linear 0ms; }
  .cms-layout-team .cms-team-header .cms-team-social li {
    display: inline-block; }
  .cms-layout-team .cms-team-header .cms-team-social li a {
    font-size: 14px;
    color: #fff;
    padding: 0 7px; }
  .cms-layout-team .cms-team-header .cms-team-social li a:hover {
    color: var(--main-color); }
  .cms-layout-team .cms-team-title {
    font-size: 18px;
    line-height: 26px;
    margin-top: 25px;
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold; }
  .cms-layout-team .cms-team-position {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal; }
  .cms-layout-team .cms-team-content {
    padding-top: 15px; }
  .cms-layout-team .h-line {
    position: relative;
    width: 20px;
    margin: 0 auto 15px auto; }
  .cms-layout-team.cms-team-layout1 .cms-team-header a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 230px;
    background-color: #000; }
  .cms-layout-team.cms-team-layout1 .cms-team-header a .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms; }
  .cms-layout-team.cms-team-layout1 .cms-team-header a i {
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    position: absolute;
    height: 30px;
    width: 30px;
    top: 45%;
    z-index: 88;
    left: 45%;
    display: none;
    font-size: 25px;
    opacity: 0;
    color: #fff; }
  .cms-layout-team.cms-team-layout1 .cms-team-header a:hover i {
    opacity: 1;
    display: block; }
  .cms-layout-team.cms-team-layout1 .cms-team-header a:hover .mask {
    opacity: 0.3; }
  .cms-layout-team.cms-team-layout1 .cms-team-header img {
    -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-layout-team.cms-team-layout1 .cms-team-body .cms-team-title {
    font-weight: 700; }
  .cms-layout-team.cms-team-layout1 .cms-team-body .cms-team-position {
    color: #565656;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal; }
  .cms-layout-team.cms-team-layout1 .cms-team-overlay {
    -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-layout-team.cms-team-layout1 .cms-team-social {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0.5);
    -khtml-transform: translate(0, -50%) scale(0.5);
    -moz-transform: translate(0, -50%) scale(0.5);
    -ms-transform: translate(0, -50%) scale(0.5);
    -o-transform: translate(0, -50%) scale(0.5);
    transform: translate(0, -50%) scale(0.5);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-layout-team.cms-team-layout1 .cms-team-wrapper:hover .cms-team-social {
    -webkit-transform: translate(0, -50%) scale(1);
    -khtml-transform: translate(0, -50%) scale(1);
    -moz-transform: translate(0, -50%) scale(1);
    -ms-transform: translate(0, -50%) scale(1);
    -o-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-layout-team.cms-team-layout1 .owl-controls {
    display: none !important; }
  .cms-layout-team.cms-team-layout1 .cms-team-layout1-social ul {
    text-align: center; }
  .cms-layout-team.cms-team-layout1 .cms-team-layout1-social ul li {
    margin: 5px;
    display: inline-block; }
  .cms-layout-team.cms-team-layout1 .cms-team-layout1-social ul li a {
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: block;
    text-align: center;
    -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 */
    background-color: #222;
    color: #fff; }
    .cms-layout-team.cms-team-layout1 .cms-team-layout1-social ul li a:hover {
      background-color: var(--main-color); }
    .cms-layout-team.cms-team-layout3 .cms-team-header {
      position: relative; }
  .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social, .cms-layout-team.cms-team-layout3 .cms-team-header .mask {
    position: absolute;
    opacity: 0; }
  .cms-layout-team.cms-team-layout3 .cms-team-header .mask {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    background-color: #fff; }
  .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social {
    top: 50%;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    transform: translate(0px, -50%);
    width: 100%;
    text-align: center; }
  .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social ul {
    width: 100%;
    text-align: center; }
  .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social ul li {
    display: inline-block;
    margin: 4px; }
    .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social ul li a {
      display: block;
      width: 25px;
      height: 25px;
      line-height: 25px;
      text-align: center;
      font-size: 15px;
      color: #fff;
      background-color: #2f2f2f; }
      .cms-layout-team.cms-team-layout3 .cms-team-header .cms-team-layout3-social ul li a:hover {
        background-color: var(--main-color); }
      .cms-layout-team.cms-team-layout3 .cms-team-header:hover .mask {
        opacity: 0.4; }
  .cms-layout-team.cms-team-layout3 .cms-team-header:hover .cms-team-layout3-social {
    opacity: 1; }
  .cms-layout-team.cms-team-layout3 .cms-team-body .cms-team-title {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif; }
  .cms-layout-team.cms-team-layout3 .cms-team-body .cms-team-title a:hover {
    color: var(--main-color); }
  .cms-layout-team.cms-team-layout3 .cms-team-body .cms-team-position {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #565656; }
  .cms-layout-team .cms-team-wrapper:hover .cms-team-overlay {
    bottom: 20px;
    left: 20px;
    top: 20px;
    right: 20px;
    opacity: 1; }
  .cms-layout-team.cms-grid-wraper .cms-team-wrapper {
    margin-bottom: 45px; }

.cms-heading-wrapper {
  margin: auto;
  text-align: center;
  position: relative; }
  .cms-heading-wrapper .h-line {
    position: relative;
    border: 1px solid #e4e4e4; }
  .cms-heading-wrapper .h-line:before {
    width: 40px;
    content: "";
    height: 4px;
    position: absolute;
    top: -3px;
    left: -1px;
    z-index: 22;
    background: var(--main-color); }
  .cms-heading-wrapper .h-icon {
    height: 54px;
    width: 54px;
    display: block;
    background-color: #222;
    margin: auto auto 24px;
    -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-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/bg-h-icon.png); }
  .cms-heading-wrapper .subtitle {
    color: #616161;
    font-family: "Droidserif Italic";
    font-size: 16px; }
  .cms-heading-wrapper .title {
    font-size: 28px;
    margin: 11px 0 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; }
  .cms-heading-wrapper .description {
    font-size: 15px;
    line-height: 24px; }
  .cms-heading-wrapper .description + .h-line {
    margin-top: 25px;
    margin-bottom: 0; }
  .cms-heading-wrapper.cms-heading-default {
    text-align: left; }
  .cms-heading-wrapper.cms-heading-default .cms-heading-content {
    font-family: 'Montserrat', sans-serif; }
  .cms-heading-wrapper.cms-heading-default .cms-heading-content .title1 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif; }
  @media screen and (max-width: 767px) {
      .cms-heading-wrapper.cms-heading-default .cms-heading-content .title1 {
        text-align: center;
        margin-bottom: 20px; }
        .cms-heading-wrapper.cms-heading-default .cms-heading-content .title1 span {
          font-size: 50px !important; }
      .cms-heading-wrapper.cms-heading-default .cms-heading-content .description1 {
        font-size: 35px !important;
        text-align: center;
        line-height: 35px; } }
  .cms-heading-wrapper.cms-heading-default .cms-heading-content .description1, .cms-heading-wrapper.cms-heading-default .cms-heading-content .title1 {
    font-weight: 700; }
  .cms-heading-wrapper.cms-heading-layout1 {
    text-align: left; }
  .cms-heading-wrapper.cms-heading-layout1 .title {
    font-size: 35px;
    line-height: 1.2; }
  .cms-heading-wrapper.cms-heading-layout1 .h-line {
    width: inherit; }
  .cms-heading-wrapper.cms-heading-layout1 .description {
    color: #a5a5a5;
    font-size: 15px;
    line-height: 25px;
    font-family: "Droidserif Italic"; }
  .cms-heading-wrapper.cms-heading-layout1 .description + .h-line {
    margin-bottom: 0;
    margin-top: 22px; }
  .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;
    font-family: 'Montserrat', sans-serif;
    position: relative; }
  .cms-heading-wrapper.cms-heading-layout2 .title:before {
    position: absolute;
    bottom: -37px;
    content: "";
    width: 45px;
    background: var(--main-color);
    height: 4px;
    text-align: center;
    margin: 0 auto;
    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 */ }

.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: var(--main-color);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  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 .cms-fancybox-title {
    font-size: 18px;
    line-height: 29px;
    color: #565656;
    font-family: 'Montserrat', sans-serif; }
  .cms-fancyboxes-wraper .cms-fancybox-icon i {
    font-size: 40px;
    color: var(--main-color);
    -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.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 var(--main-color);
    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: var(--main-color);
    color: #fff;
    border: 1px solid #f90; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-title {
    margin-bottom: 15px;
    color: #777;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif; }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item .cms-fancybox-content {
    font-family: 'PT Sans', sans-serif; }
  .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 .cms-fancybox-title {
    color: var(--main-color); }
  .cms-fancyboxes-wraper.cms-fancyboxes-deault .cms-fancybox-item:hover i {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid #f90; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout0 .cms-fancybox-icon {
    text-align: left;
    width: 100%;
    margin-right: 20px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout0 .cms-fancybox-icon i {
    font-size: 55px;
    float: left;
    margin-right: 20px;
    margin-bottom: 2px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout0 .cms-fancybox-icon .cms-fancybox-title {
    padding-left: 80px;
    padding-top: 15px;
    margin-bottom: 0;
    font-size: 20px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout0 .cms-fancybox-content {
    clear: both; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-icon {
    max-width: 113px;
    max-height: 113px;
    margin-right: 20px;
    float: left; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-icon img {
    max-width: 45px;
    padding: 12px;
    border: 1px solid #ddd;
    -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-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-icon i {
    width: 113px;
    height: 113px;
    line-height: 113px;
    text-align: center;
    font-size: 55px;
    border: 2px solid var(--main-color);
    -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-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-icon i:hover {
    border: 2px solid var(--main-color); }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-content {
    padding-left: 120px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout1 .cms-fancybox-title {
    margin-bottom: 10px;
    padding-top: 6px;
    font-size: 20px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-icon {
    margin-bottom: 24px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-icon img {
    width: 100%; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-title {
    color: #222;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-content {
    padding-right: 50px;
    font-family: 'PT Sans', sans-serif; }
  @media screen and (max-width: 991px) {
    .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-content {
      padding-right: 0px; } }
  @media screen and (max-width: 767px) {
    .cms-fancyboxes-wraper.cms-fancyboxes-layout2 .cms-fancybox-item {
      margin-top: 40px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item {
    text-align: center;
    position: relative;
    margin: 15px 0; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-icon img {
    -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-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .mask {
    background-color: #000;
    opacity: 0.25; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content {
    position: absolute;
    bottom: 15%;
    width: 100%;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    transform: translate(0px, 50%); }
  @media (min-width: 768px) and (max-width: 1000px) {
        .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content {
          bottom: 40px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-title {
    color: #fff;
    font-size: 22px;
    font-weight: normal; }
  @media (min-width: 768px) and (max-width: 1000px) {
          .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-title {
            font-size: 15px;
            margin-bottom: 5px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-button-wrapper a {
    width: 135px;
    height: 45px;
    margin: 0 auto;
    opacity: 0;
    text-align: center;
    line-height: 45px;
    -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 */
    background-color: var(--main-color);
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms; }
    .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-button-wrapper a .btn-text {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 15px; }
    @media (min-width: 768px) and (max-width: 1000px) {
          .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-button-wrapper a {
            width: 100px;
            height: 30px;
            line-height: 30px; } }
  @media (min-width: 768px) and (max-width: 1000px) {
          .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item .cms-fancybox-content .cms-button-wrapper {
            margin-bottom: 10px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item:hover .mask {
    opacity: 0.6;
    -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 */ }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item:hover .cms-fancybox-content {
    bottom: 35%; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout3 .cms-fancybox-item:hover .cms-fancybox-content .cms-button-wrapper a {
    opacity: 1; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 {
    overflow: hidden; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item {
    margin-bottom: 30px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-icon {
    margin-bottom: 30px; }
  @media screen and (min-width: 768px) {
        .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-icon {
          max-width: 558px;
          width: 50%;
          float: left;
          margin-right: 30px; } }
  @media screen and (max-width: 767px) {
        .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-icon {
          max-width: 100%;
          max-width: 100%;
          margin-right: 0; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-content {
    font-family: 'PT Sans', sans-serif; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-title {
    font-size: 20px;
    line-height: 16px;
    margin-bottom: 20px;
    font-weight: normal; }
  @media screen and (max-width: 767px) {
          .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-title {
            margin-bottom: 20px;
            line-height: 20px; } }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-content p {
    margin-bottom: 24px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout4 .cms-fancybox-item .cms-fancybox-content p:last-child {
    margin-bottom: 0; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .cms-fancybox-icon {
    overflow: hidden;
    margin-bottom: 10px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .cms-fancybox-icon i {
    font-size: 15px;
    float: left;
    margin-right: 12px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .cms-fancybox-icon .cms-fancybox-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 15px;
    margin-bottom: 0; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px; }
  .cms-fancyboxes-wraper.cms-fancyboxes-layout5 .cms-fancybox-item .cms-fancybox-content .cms-fancybox-description p {
    margin-bottom: 10px; }

.cms-button-wrapper {
  /* 
   [Start] 13. Acordant
   +-----------------------------------+
*/ }
  .cms-button-wrapper.button-center {
    text-align: center;
    font-weight: bold; }
  .cms-button-wrapper.button-center a {
    width: 160px;
    height: 57px;
    line-height: 57px;
    display: inline-block;
    text-transform: capitalize;
    background-color: var(--main-color);
    margin: 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    -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-button-wrapper.button-center a span {
    color: #fff; }
  .cms-button-wrapper.button-center a:hover {
    background-color: #565656; }
  .cms-button-wrapper.button-left {
    text-align: left; }
  .cms-button-wrapper.button-left a {
    width: 145px;
    font-family: 'Montserrat', sans-serif;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--main-color);
    margin: 20px 0;
    font-weight: bold;
    font-size: 13px;
    -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-button-wrapper.button-left a span {
    color: #fff; }
  .cms-button-wrapper.button-left a:hover {
    background-color: #565656; }

.vc_tta.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: #777;
  font-family: 'Montserrat', sans-serif;
  padding: 0 18px !important; }
  .vc_tta.vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:before {
    width: 0 !important;
    height: 0 !important; }
  .vc_tta.vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:after {
    width: 0 !important;
    height: 0 !important; }
  .vc_tta.vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
    border: 1px solid var(--main-color) !important;
    background-color: var(--main-color) !important;
    color: #fff !important; }
  .vc_tta.vc_tta-tabs .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    border: 1px solid var(--main-color) !important;
    background-color: var(--main-color) !important;
    color: #fff !important; }
  .vc_tta.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;
    font-family: 'PT Sans', sans-serif;
    color: #777; }
  .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body p {
    margin-bottom: 23px; }
  .vc_tta.vc_tta-tabs.vc_tta-style-classic {
    padding: 14px 80px 14px 17px;
    border: 1px solid #d2d2d2; }
  .vc_tta.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.vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading {
      font-family: 'Montserrat', sans-serif !important;
      color: #565656;
      font-size: 15px;
      text-transform: uppercase;
      margin-top: 23px;
      margin-bottom: 19px; }
      .vc_tta.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-family: 'Montserrat', sans-serif !important;
        font-weight: 400 !important; }
  .vc_tta.vc_tta-tabs.vc_tta-style-modern {
    padding: 30px 40px 14px 17px;
    border: 1px solid #d2d2d2; }
  .vc_tta.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: #777; }
    .vc_tta.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.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.vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container {
    max-width: 150px;
    width: 150px; }
  .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
    margin-bottom: 5px; }
  .vc_tta.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.vc_tta-tabs.vc_tta-style-modern .vc_tta-panel-body {
      padding-bottom: 17px !important; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel {
    border: 1px solid #c5c5c5;
    border-bottom: none; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
    margin: 0 !important; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
    color: #777;
    padding: 12px 45px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif; }
    .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i {
      left: 17px; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    border: none;
    padding: 18px 25px 24px;
    font-family: 'PT Sans', sans-serif; }
  .vc_tta.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 #c5c5c5;
    font-family: 'Montserrat', sans-serif; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel:last-child {
    border-bottom: 1px solid #c5c5c5; }
  .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel:last-child .vc_tta-panel-heading .vc_tta-panel-title {
    font-family: 'Montserrat', sans-serif; }
  .vc_tta.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.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.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i {
      display: none; }
  .vc_tta.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.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.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel:last-child .vc_tta-panel-body {
    padding-bottom: 0; }
  .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
    border: 1px solid var(--main-color);
    background-color: var(--main-color); }
    .vc_tta.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.vc_tta-accordion .vc_tta-panels .vc_tta-panel-heading .vc_tta-panel-title a {
    color: #777;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif; }
  @media screen and (max-width: 767px) {
/* 
   [Start] 14. Blog Grid
   +-----------------------------------+
*/
/* Grid Blog */
  .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
    display: block;
    border: 1px solid #d3d3d3 !important;
    height: 38px;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 38px;
    font-weight: bold;
    color: #777;
    font-family: 'Montserrat', sans-serif;
    padding: 0 18px !important; }
    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:before {
      width: 0 !important;
      height: 0 !important; }

    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:after {
      width: 0 !important;
      height: 0 !important; }

    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover {
      border: 1px solid var(--main-color) !important;
      background-color: var(--main-color) !important;
      color: #fff !important; }

    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_active a {
      border: 1px solid var(--main-color) !important;
      background-color: var(--main-color) !important;
      color: #fff !important; }

    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
      padding-bottom: 30px;
      border: none !important; }

    .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-title a {
      border: 1px solid var(--main-color) !important;
      background-color: var(--main-color) !important;
      color: #fff !important; }

    .vc_tta.vc_tta-tabs.vc_tta-style-classic {
      padding: 14px 15px;
      border: 1px solid #d2d2d2; }

    .vc_tta.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.vc_tta-tabs.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .vc_custom_heading {
      font-family: 'PT Sans', sans-serif;
      color: #565656;
      font-size: 15px;
      text-transform: uppercase;
      margin-top: 23px;
      margin-bottom: 19px; }

    .vc_tta.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.vc_tta-tabs.vc_tta-style-modern {
      padding: 15px;
      border: 1px solid #d2d2d2; }

    .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
      padding-right: 0px; }

    .vc_tta.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: #565656;
      margin: 20px 0; }

    .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container {
      max-width: 150px;
      width: 150px; }

    .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
      margin-bottom: 5px; }

    .vc_tta.vc_tta-tabs.vc_tta-style-modern .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
      text-transform: uppercase; }

    .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel {
      border: 1px solid #c5c5c5;
      border-bottom: none; }

    .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
      margin: 0 !important; }

    .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
      padding: 12px 52px; }

    .vc_tta.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 #c5c5c5; }

    .vc_tta.vc_tta-accordion.vc_tta-style-classic .vc_tta-panels .vc_tta-panel:last-child {
      border-bottom: 1px solid #c5c5c5; }

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

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

    .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i {
      display: none; }

    .vc_tta.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.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
      border: 1px solid var(--main-color);
      background-color: var(--main-color); }

    .vc_tta.vc_tta-accordion.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #fff !important; }

    .vc_tta.vc_tta-accordion .vc_tta-panels .vc_tta-panel-heading .vc_tta-panel-title a {
      color: #777;
      font-size: 15px; } }

.cms-grid-blog-layout1 .entry-blog, .cms-carousel-blog-layout1 .entry-blog {
  margin-bottom: 30px;
  padding-bottom: 30px; }
  .cms-grid-blog-layout1 .entry-blog .entry-header a, .cms-carousel-blog-layout1 .entry-blog .entry-header a {
    display: block;
    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 */
    overflow: hidden; }
  .cms-grid-blog-layout1 .entry-blog .entry-header a img, .cms-carousel-blog-layout1 .entry-blog .entry-header a img {
    width: 100%;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .cms-grid-blog-layout1 .entry-blog .entry-header a:hover img, .cms-carousel-blog-layout1 .entry-blog .entry-header a:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-grid-blog-layout1 .entry-blog .entry-meta li, .cms-carousel-blog-layout1 .entry-blog .entry-meta li {
    font-size: 12px; }
  .cms-grid-blog-layout1 .entry-blog .entry-meta li a, .cms-carousel-blog-layout1 .entry-blog .entry-meta li a {
    color: #565656; }
  .cms-grid-blog-layout1 .entry-blog .entry-meta li a:hover, .cms-carousel-blog-layout1 .entry-blog .entry-meta li a:hover {
    color: var(--main-color); }
  .cms-grid-blog-layout1 .entry-blog .entry-meta .detail-comment, .cms-carousel-blog-layout1 .entry-blog .entry-meta .detail-comment {
    display: inline-block;
    text-transform: uppercase; }
  .cms-grid-blog-layout1 .entry-blog .entry-title, .cms-carousel-blog-layout1 .entry-blog .entry-title {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 20px; }
  .cms-grid-blog-layout1 .pagination, .cms-carousel-blog-layout1 .pagination {
    margin-top: 20px; }

.cms-carousel-blog-layout1, .cms-carousel-blog-layout2 {
  position: relative; }
  .cms-carousel-blog-layout1 .entry-blog, .cms-carousel-blog-layout2 .entry-blog {
    margin-bottom: 23px;
    background-color: transparent;
    box-shadow: none; }
  .cms-carousel-blog-layout1 .entry-blog .entry-body, .cms-carousel-blog-layout2 .entry-blog .entry-body {
    padding: 15px 0; }
  .cms-carousel-blog-layout1 .entry-blog .entry-body .entry-title, .cms-carousel-blog-layout2 .entry-blog .entry-body .entry-title {
    margin-bottom: 5px; }
  .cms-carousel-blog-layout1 .entry-blog .entry-body .detail-date, .cms-carousel-blog-layout2 .entry-blog .entry-body .detail-date {
    margin-bottom: 20px;
    text-transform: uppercase; }
  .cms-carousel-blog-layout1 .entry-blog .entry-body .post-details li i, .cms-carousel-blog-layout2 .entry-blog .entry-body .post-details li i {
    margin-right: 5px; }
  .cms-carousel-blog-layout1 .entry-blog .entry-body:hover, .cms-carousel-blog-layout2 .entry-blog .entry-body:hover {
    box-shadow: none; }
  .cms-carousel-blog-layout1 .entry-blog .entry-footer .read-more, .cms-carousel-blog-layout2 .entry-blog .entry-footer .read-more {
    color: #fff;
    width: 135px;
    height: 45px;
    line-height: 45px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    display: inline-block;
    background-color: var(--main-color);
    -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-carousel-blog-layout1 .entry-blog .entry-footer .read-more:hover, .cms-carousel-blog-layout2 .entry-blog .entry-footer .read-more:hover {
    color: #fff;
    background-color: #222; }
  .cms-carousel-blog-layout1 .owl-nav, .cms-carousel-blog-layout2 .owl-nav {
    position: absolute; }
  .cms-carousel-blog-layout1 .owl-nav i, .cms-carousel-blog-layout2 .owl-nav i {
    margin: 0 !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center; }

.cms-carousel-blog-layout1 .owl-nav {
  text-align: right;
  top: -90px;
  right: 0;
  width: 120px;
  height: 50px; }
  .cms-carousel-blog-layout1 .owl-nav .owl-prev, .cms-carousel-blog-layout1 .owl-nav .owl-next {
    margin-top: 30px !important;
    width: 39px;
    height: 39px;
    line-height: 39px; }
  .cms-carousel-blog-layout1 .owl-nav .owl-prev i, .cms-carousel-blog-layout1 .owl-nav .owl-next i {
    background-color: transparent;
    border: 1px solid #999; }
  .cms-carousel-blog-layout1 .owl-nav .owl-prev i:hover, .cms-carousel-blog-layout1 .owl-nav .owl-next i:hover {
    background-color: var(--main-color);
    border-color: var(--main-color); }
  .cms-carousel-blog-layout1 .owl-nav .owl-prev {
    margin-right: 5px; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-title {
    margin-top: 0px;
    font-size: 20px;
    text-transform: normal; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body {
    padding: 15px 0;
    margin-bottom: 8px;
    border: none; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-title {
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 20px; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-title a {
    color: #222; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-title a:hover {
    color: var(--main-color); }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-meta {
    margin-bottom: 0; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-meta ul li {
    text-transform: uppercase;
    font-size: 11px;
    font-family: 'PT Sans', sans-serif; }
  .cms-carousel-blog-layout1 .cms-carousel-item .entry-body .entry-content {
    font-family: 'PT Sans', sans-serif;
    padding-right: 30px; }

.cms-carousel-blog-layout2 .owl-controls {
  position: absolute;
  top: 13%;
  width: 100%; }
  .cms-carousel-blog-layout2 .owl-controls .owl-nav {
    width: 100%; }
  .cms-carousel-blog-layout2 .owl-controls .owl-nav .owl-prev, .cms-carousel-blog-layout2 .owl-controls .owl-nav .owl-next {
    position: absolute; }
  .cms-carousel-blog-layout2 .owl-controls .owl-nav .owl-prev {
    left: -60px;
    float: left; }
  .cms-carousel-blog-layout2 .owl-controls .owl-nav .owl-next {
    right: -60px;
    float: right; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-title {
    margin-top: 0px;
    font-size: 20px;
    text-transform: normal; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body {
    padding: 15px 0;
    margin-bottom: 8px;
    border: none; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-title {
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 20px; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-title a {
    color: #222; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta {
    margin-bottom: 0; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta ul li {
    text-transform: uppercase;
    font-size: 11px;
    font-family: 'PT Sans', sans-serif; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta ul li:before {
    content: "|";
    position: absolute;
    right: -4px;
    background-color: #fff;
    color: #fff; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta ul li a {
    color: #565656; }
    .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta ul li a:hover {
      color: var(--main-color); }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-meta ul li.detail-date {
    padding-right: 22px; }
  .cms-carousel-blog-layout2 .cms-carousel-item .entry-body .entry-content {
    font-family: 'PT Sans', sans-serif;
    padding-right: 30px; }

.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: var(--main-color); }

.cms-carousel-client.cms-carousel-client-layout1 .cms-carousel-item .has-thumbnail {
  display: block;
  border: 2px solid #b7b7b7; }
  @media screen (min-width: 992px) {
    max-height: 68px; }
  .cms-carousel-client.cms-carousel-client-layout1 .cms-carousel-item .has-thumbnail:hover {
    border: 2px solid var(--main-color); }

.header-3 {
  /* 
   [Start] 19. Image Grid Gallery
   +-----------------------------------+
*/ }
  .header-3 .cms-carousel-client.cms-carousel-client-layout1 .cms-carousel-item .has-thumbnail {
    position: relative;
    display: block;
    border: 2px solid #b7b7b7;
    opacity: 0.5; }
  .header-3 .cms-carousel-client.cms-carousel-client-layout1 .cms-carousel-item .has-thumbnail:hover {
    border: 2px solid var(--main-color);
    opacity: 1; }

.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: var(--main-color);
    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 {
  padding: 17px 0;
  margin-top: -35px; }
  @media (max-width: 991px) {
  .cms-cta-wrapper {
    padding-bottom: 40px; } }
  .cms-cta-wrapper .cms-cta-content .title {
    font-size: 20px;
    font-weight: normal;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize; }
  .cms-cta-wrapper .btn-primary-white {
    background: white !important;
    color: #2f2f2f !important;
    max-width: 145px;
    height: 54px;
    line-height: 52px;
    padding: 0 15px;
    width: 145px;
    font-size: 15px;
    text-align: 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 */ }
  @media (min-width: 991px) and (max-width: 1199px) {
    .cms-cta-wrapper .btn-primary-white {
      margin-top: 10px; } }
  .cms-cta-wrapper .btn-primary-white:hover {
    background: #2f2f2f !important;
    color: white !important;
    border-color: white; }
  @media (max-width: 991px) {
    .cms-cta-wrapper .cms-cta-button {
      margin-top: 20px; } }
  .cms-cta-wrapper .cms-cta-button .btn-primary-alt {
    color: #565656 !important;
    height: 48px;
    line-height: 46px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 100%;
    padding: 0 10px;
    max-width: 135px;
    -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-cta-wrapper .cms-cta-button .btn-primary-alt:hover {
    background: #2f2f2f !important;
    color: white !important;
    border-color: white; }
  .cms-cta-wrapper .cms-cta-button .btn-primary-white {
    font-family: 'Montserrat', sans-serif; }

.header-3 {
  /* 
   [Start] 21. CMS Timeline
   +-----------------------------------+
*/ }
  .header-3 .cms-cta-wrapper .cms-cta-content .title {
    font-size: 18px;
    letter-spacing: -0.2px;
    font-weight: bold;
    text-transform: 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: var(--main-color);
    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: var(--main-color);
    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: var(--main-color);
    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(250, 183, 2, 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: var(--main-color);
    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: var(--main-color); }
  .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-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-content.style2 .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 */
    background-color: #222;
    color: #fff; }
  .cms-dropcap-content.style3 .first-letter {
    background-color: #898989;
    color: #fff;
    font-size: 25px; }

.cms-higlighted-style1 {
  background-color: var(--main-color);
  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; }
  .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-typingout {
  font-size: 16px;
  color: #222;
  line-height: 26px;
  font-weight: 600;
  /* 
   [Start] 24. CMS Portfolio
   +-----------------------------------+
*/ }

.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: var(--main-color); }

.cms-portfolio .cms-portfolio-category {
  font-size: 13px;
  line-height: normal; }
  .cms-portfolio .cms-portfolio-category a {
    color: #222; }
  .cms-portfolio .cms-portfolio-category a:after {
    content: ", "; }
  .cms-portfolio .cms-portfolio-category a:hover {
    color: var(--main-color); }
  .cms-portfolio .cms-portfolio-category a:last-child:after {
    content: ""; }
  .cms-portfolio .cms-grid-item.col-lg-3 .cms-portfolio-holder .cms-portfolio-title {
    font-size: 16px;
    line-height: 26px; }
  .cms-portfolio .cms-load-posts {
    padding-top: 20px; }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-image {
    position: relative; }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-image a {
    color: #333; }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-image a span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0);
    -khtml-transform: translate(0, -50%) scale(0);
    -moz-transform: translate(0, -50%) scale(0);
    -ms-transform: translate(0, -50%) scale(0);
    -o-transform: translate(0, -50%) scale(0);
    transform: translate(0, -50%) scale(0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    text-align: center;
    font-size: 36px;
    -webkit-transition: all 400ms linear 0ms;
    -moz-transition: all 400ms linear 0ms;
    -ms-transition: all 400ms linear 0ms;
    transition: all 400ms linear 0ms; }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-image:hover a {
    opacity: 1;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px; }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-image:hover a span {
    -webkit-transform: translate(0, -50%) scale(1);
    -khtml-transform: translate(0, -50%) scale(1);
    -moz-transform: translate(0, -50%) scale(1);
    -ms-transform: translate(0, -50%) scale(1);
    -o-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-portfolio.cms-portfolio-standard .cms-portfolio-holder {
    text-align: center;
    padding: 24px 20px 58px 20px; }
  .cms-portfolio.cms-portfolio-standard .pagination {
    margin: 0; }
  .cms-portfolio.cms-portfolio-standard .outline .btn-primary {
    background-color: #fff;
    border-color: #222;
    color: #222; }
  .cms-portfolio.cms-portfolio-standard .outline .btn-primary:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image {
    position: relative; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .mask, .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .cms-portfolio-overlay {
    position: absolute; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .mask {
    background-color: #000; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .cms-portfolio-overlay {
    width: 100%;
    top: 50%;
    opacity: 0;
    text-align: center;
    left: 0;
    min-height: 80px;
    display: block;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    transform: translate(0px, -50%); }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .cms-portfolio-overlay .cms-portfolio-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .cms-portfolio-overlay .cms-portfolio-title a {
    color: #fff; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image .cms-portfolio-overlay .cms-portfolio-readmore a {
    display: inline-block;
    padding: 0px 15px;
    width: 107px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    background-color: var(--main-color);
    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 */ }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image:hover .mask {
    opacity: 0.6; }
  .cms-portfolio.cms-portfolio-grid .cms-portfolio-image:hover .cms-portfolio-overlay {
    opacity: 1; }
  .cms-portfolio.cms-portfolio-grid .cms-load-posts {
    padding-top: 50px; }
  .cms-portfolio.cms-portfolio-grid .cms-paging-navigation {
    margin-top: 25px; }
  .cms-portfolio.cms-portfolio-grid .cms-grid-filter ul li a {
    padding-bottom: 15px;
    font-weight: bold;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif; }
  .cms-portfolio.cms-portfolio1 .cms-filter-category li a {
    font-weight: 700;
    color: #fff; }
  .cms-portfolio.cms-portfolio1 .cms-filter-category li a:hover {
    color: var(--main-color); }
  .cms-portfolio.cms-portfolio1 .cms-filter-category li .active {
    color: var(--main-color); }
  .cms-portfolio.cms-portfolio1 .cms-portfolio-holder {
    text-align: left !important; }
  .cms-portfolio.cms-portfolio1 .cms-portfolio-holder .cms-portfolio-title, .cms-portfolio.cms-portfolio1 .cms-portfolio-holder .cms-portfolio-readmore {
    margin-left: 50px; }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image {
    position: relative;
    display: block;
    width: 100%;
    height: 700px;
    overflow: hidden; }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image .cms-portfolio-cover {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image .cms-portfolio-cover img {
    position: absolute;
    display: block;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-holder {
    padding-top: 150px;
    padding-bottom: 150px; }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-holder .cms-portfolio-title {
    font-size: 30px;
    line-height: 1;
    margin-top: 22px;
    margin-bottom: 18px; }
  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-holder .cms-portfolio-readmore {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600; }

.cms-grid-shop .cshere-woo-item-wrap {
  margin-bottom: 32px; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image {
    background-color: #f4f4f4;
    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 */ }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image img {
    margin-bottom: 0;
    padding: 30px; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image .cshero-add-to-cart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 260ms ease 0ms;
    -moz-transition: all 260ms ease 0ms;
    -ms-transition: all 260ms ease 0ms;
    transition: all 260ms ease 0ms;
    background-color: rgba(250, 183, 2, 0.95);
    opacity: 0; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image .cshero-add-to-cart a {
    background-color: transparent;
    border: medium none;
    color: #fff;
    display: inline-block;
    left: 0;
    margin: auto;
    max-width: 150px;
    padding: 10px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0);
    -khtml-transform: translate(0, -50%) scale(0);
    -moz-transform: translate(0, -50%) scale(0);
    -ms-transform: translate(0, -50%) scale(0);
    -o-transform: translate(0, -50%) scale(0);
    transform: translate(0, -50%) scale(0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    opacity: 0; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image .cshero-add-to-cart a.add_to_cart_button.added {
    display: none; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image .cshero-add-to-cart a:hover {
    border-color: var(--main-color);
    background-color: var(--main-color) !important;
    color: #fff; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image:hover .cshero-add-to-cart {
    opacity: 1;
    left: 30px;
    top: 30px;
    right: 30px;
    bottom: 30px; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-image:hover .cshero-add-to-cart a {
    opacity: 1;
    -webkit-transform: translate(0, -50%) scale(1);
    -khtml-transform: translate(0, -50%) scale(1);
    -moz-transform: translate(0, -50%) scale(1);
    -ms-transform: translate(0, -50%) scale(1);
    -o-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta {
    padding: 22px 0 10px;
    text-align: center; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    padding: 4px 0 10px;
    margin-bottom: 0; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a {
    color: #222; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a:hover, .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-title a:focus {
    color: var(--main-color); }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-price {
    color: #9b9b9b;
    font-size: 17px;
    font-weight: 600; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-category a:after {
    content: ""; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .cshero-product-category a:last-child:after {
    content: ""; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .star-rating {
    display: none; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .posted_in {
    font-family: Lora; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .posted_in a {
    color: #b8b8b8; }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .posted_in a:hover {
    color: var(--main-color); }
  .cms-grid-shop .cshere-woo-item-wrap .cshero-woo-meta .content {
    display: none; }

.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  transition: all 500ms ease 0ms; }

.move-top {
  margin-top: -110px !important; }
  @media screen and (max-width: 767px) {
  .move-top {
    margin-top: 0 !important; } }

.cms-grid-services .cms-grid-item {
  margin-bottom: 75px; }
  .cms-grid-services .cms-grid-item .entry-services .entry-header a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000; }
  @media screen (min-width: 992px) {
    min-height: 230px; }
  .cms-grid-services .cms-grid-item .entry-services .entry-header a .mask {
    background-color: #000; }
  .cms-grid-services .cms-grid-item .entry-services .entry-header a i {
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    position: absolute;
    height: 30px;
    width: 30px;
    top: 50%;
    z-index: 88;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    font-size: 30px;
    opacity: 0;
    color: #fff; }
  .cms-grid-services .cms-grid-item .entry-services .entry-header a:hover i {
    opacity: 1;
    display: block; }
  .cms-grid-services .cms-grid-item .entry-services .entry-header a:hover .mask {
    opacity: 0.7; }
  .cms-grid-services .cms-grid-item .entry-services .entry-body .entry-title {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin: 18px 0 17px; }
  .cms-grid-services .cms-grid-item .entry-services .entry-body .entry-title a {
    color: #565656; }
  .cms-grid-services .cms-grid-item .entry-services .entry-body .entry-title a:hover {
    color: var(--main-color); }
  .cms-grid-services .cms-grid-item .entry-services .entry-body .entry-content-excerpt {
    font-family: 'PT Sans', sans-serif; }

.cms-grid-demo {
  text-align: center; }
  .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: var(--main-color); }
  .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-carousel-showcase {
  /* ==========================================================================
   [Start] Typopraphy
========================================================================== */ }
  .cms-carousel-showcase .owl-item .cms-carousel-item {
    -webkit-transform: translateZ(0) translateY(7%) scale(0.86);
    -khtml-transform: translateZ(0) translateY(7%) scale(0.86);
    -moz-transform: translateZ(0) translateY(7%) scale(0.86);
    -ms-transform: translateZ(0) translateY(7%) scale(0.86);
    -o-transform: translateZ(0) translateY(7%) scale(0.86);
    transform: translateZ(0) translateY(7%) scale(0.86);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    transition: transform 0.4s ease; }
  .cms-carousel-showcase .owl-item .cms-carousel-item 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-carousel-showcase .owl-item.center .cms-carousel-item {
    -webkit-transform: translateZ(0) translateY(0%) scale(1);
    -khtml-transform: translateZ(0) translateY(0%) scale(1);
    -moz-transform: translateZ(0) translateY(0%) scale(1);
    -ms-transform: translateZ(0) translateY(0%) scale(1);
    -o-transform: translateZ(0) translateY(0%) scale(1);
    transform: translateZ(0) translateY(0%) scale(1);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-carousel-showcase .owl-item:not(.center):hover .cms-carousel-item {
    -webkit-transform: translateZ(0) translateY(7%) scale(0.88);
    -khtml-transform: translateZ(0) translateY(7%) scale(0.88);
    -moz-transform: translateZ(0) translateY(7%) scale(0.88);
    -ms-transform: translateZ(0) translateY(7%) scale(0.88);
    -o-transform: translateZ(0) translateY(7%) scale(0.88);
    transform: translateZ(0) translateY(7%) scale(0.88);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-carousel-showcase .owl-controls .owl-prev, .cms-carousel-showcase .owl-controls .owl-next {
    margin-top: 0;
    position: absolute;
    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-carousel-showcase .owl-controls .owl-prev i, .cms-carousel-showcase .owl-controls .owl-next i {
    border: none;
    background-color: transparent; }
  .cms-carousel-showcase .owl-controls .owl-prev i:before, .cms-carousel-showcase .owl-controls .owl-next i:before {
    font-size: 35px; }
  .cms-carousel-showcase .owl-controls .owl-prev i:hover, .cms-carousel-showcase .owl-controls .owl-next i:hover {
    background-color: transparent; }
  .cms-carousel-showcase .owl-controls .owl-prev i:hover:before, .cms-carousel-showcase .owl-controls .owl-next i:hover:before {
    color: var(--main-color); }
  .cms-carousel-showcase .owl-controls .owl-prev {
    left: 21%; }
  .cms-carousel-showcase .owl-controls .owl-next {
    right: 21%; }

@media screen and (max-width: 767px) {
  .cms-testimonial.cms-testimonial-layout1 {
    margin-top: 30px;
    margin-bottom: 30px; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content, .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-image {
      float: none;
      width: 100%; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content {
      padding-left: 0 !important; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-image {
      margin: 0 auto;
      margin-bottom: 30px; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-meta .cms-testimonial-title {
      text-align: center; }
    .cms-testimonial.cms-testimonial-layout1 .owl-dots {
      display: none !important; } }

@media screen and (max-width: 360px) {
  .cms-testimonial.cms-testimonial-layout1 {
    margin-top: 30px;
    margin-bottom: 30px; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content, .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-image {
      float: none;
      width: 100%; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-content {
      padding-left: 0 !important; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-image {
      margin: 0 auto;
      margin-bottom: 30px; }
    .cms-testimonial.cms-testimonial-layout1 .cms-testimonial-meta .cms-testimonial-title {
      text-align: center; }
    .cms-testimonial.cms-testimonial-layout1 .owl-dots {
      display: none !important; }

  .cms-cta-wrapper {
    margin-top: -20px;
    padding-bottom: 60px;
    padding-top: 0px; }
    .cms-cta-wrapper .cms-cta-content .title {
      line-height: 30px; }

  .btn-filter-wrap .btn-filter {
    margin-bottom: 15px; } }

.cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio {
  position: relative; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio:hover .entry-meta {
    opacity: 1; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio:hover .mask {
    opacity: 0.3; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .mask {
    background-color: #000; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-header {
    -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 */ }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    transform: translate(0px, 50%); }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 27px; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title a {
    color: #fff; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .read-more {
    text-align: center;
    width: 135px;
    height: 45px;
    line-height: 45px;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    -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 */
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif; }
  .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title, .cms-carousel-portfolio-home .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .read-more {
    font-family: 'Montserrat', sans-serif; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .entry-header img {
    -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 */ }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio:hover .mask {
    opacity: 0.3; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .mask {
    background-color: #000;
    -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 */ }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    bottom: 35%;
    -webkit-transition: all 500ms ease 0ms;
    -moz-transition: all 500ms ease 0ms;
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
    transform: translate(0px, 50%); }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title {
    font-weight: normal;
    font-size: 22px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title a {
    color: #fff; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .read-more {
    text-align: center;
    padding: 10px 15px;
    -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 */
    display: inline-block;
    background-color: var(--main-color);
    color: #fff; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio1 .entry-blog-crs-portfolio .entry-meta {
    text-align: center; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .cms-carousel-item .entry-blog-crs-portfolio:hover .mask {
    opacity: 0.6; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .cms-carousel-item .entry-blog-crs-portfolio .mask {
    background-color: var(--main-color); }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta {
    top: 50%;
    font-family: 'Montserrat', sans-serif;
    transform: translate(0px, -50%) !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .entry-title {
    text-align: center;
    font-size: 20px;
    font-weight: normal; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .cms-carousel-item .entry-blog-crs-portfolio .entry-meta .cms-short-text {
    padding: 15px 5px;
    border: 2px solid white;
    margin: 0 35px;
    text-align: center;
    color: white;
    font-size: 15px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-prev, .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-next {
    margin-top: 45px !important;
    margin-bottom: 45px !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-prev i, .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-next i {
    background-color: transparent;
    border: 1px solid #999;
    margin-right: 3px;
    margin-left: 3px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-prev i:hover, .cms-carousel-portfolio-home.cms-carousel-portfolio2 .owl-controls .owl-nav .owl-next i:hover {
    border-color: var(--main-color);
    background-color: var(--main-color); }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .cms-carousel-item {
    -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;
    -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-carousel-portfolio-home.cms-carousel-portfolio3 .cms-carousel-item.item-loading {
    opacity: 0;
    -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 */ }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .cms-carousel-item .has-feature-img .entry-meta {
    bottom: 63px !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .cms-carousel-item .has-feature-img:hover .mask {
    opacity: 0.6; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .owl-controls .owl-nav {
    text-align: center;
    max-width: 200px;
    top: -98px;
    right: 0;
    position: absolute;
    text-align: right; }
  @media (max-width: 991px) {
      .cms-carousel-portfolio-home.cms-carousel-portfolio3 .owl-controls .owl-nav {
        display: none !important; } }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .owl-controls .owl-nav div i {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .owl-dots {
    display: none !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio3 .entry-blog-crs-portfolio .entry-meta, .cms-carousel-portfolio-home.cms-carousel-portfolio4 .entry-blog-crs-portfolio .entry-meta {
    padding-left: 27px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .cms-carousel-item .entry-meta {
    bottom: 63px !important; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav div {
    position: absolute;
    top: 30%; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav div i {
    background-color: transparent;
    border: 3px solid #999; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav div i:hover {
    border: 3px solid var(--main-color);
    color: #fff;
    background-color: var(--main-color); }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav div i:before {
    position: absolute;
    line-height: 34px !important;
    top: 3px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav .owl-prev {
    left: -73px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav .owl-prev i:before {
    left: 20px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav .owl-next {
    right: -73px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-nav .owl-next i:before {
    right: 20px; }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls .owl-dots {
    display: none !important; }
  @media (max-width: 1100px) {
      .cms-carousel-portfolio-home.cms-carousel-portfolio4 .owl-controls {
        display: none !important; } }
  .cms-carousel-portfolio-home.cms-carousel-portfolio4 .has-feature-img:hover .entry-meta {
    opacity: 1; }

.cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer i {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 0;
  z-index: 11;
  opacity: 0;
  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; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer i:before {
    color: #fff;
    font-size: 25px; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer i:hover:before {
    color: #fff; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: relative; }
  @media (min-width: 992px) {
        .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image {
          min-height: 530px; } }
  @media (min-width: 461px) and (max-width: 991px) {
        .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image {
          min-height: 300px; } }
  @media (max-width: 460px) {
        .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image {
          min-height: 200px; } }
  .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image:before {
    position: absolute;
    background-color: #333;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: ""; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-stage-outer .cms-carousel-image:hover i {
    opacity: 1; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-controls .owl-nav {
    margin-top: -5px;
    text-align: right; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-controls .owl-nav i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #e3e7f3;
    margin: 0;
    border: 1px solid #efefef;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25); }
  .cms-carousel-wrap .cms-carousel-gallery .owl-controls .owl-nav i:before {
    color: #333;
    font-size: 25px; }
  .cms-carousel-wrap .cms-carousel-gallery .owl-controls .owl-nav i:hover {
    background-color: var(--main-color); }
  .cms-carousel-wrap .cms-carousel-gallery .owl-controls .owl-nav i:hover:before {
    color: #fff; }
  @media (max-width: 360px) {
      .cms-carousel-wrap .cms-carousel-gallery .owl-controls {
        display: none !important; } }
  .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: var(--main-color); }
  .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 #777 !important;
        margin-bottom: 12px !important;
        height: 40px;
        line-height: 40px;
        padding: 0 15px;
        font-size: 13px;
        background-color: transparent !important; }
        .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: var(--main-color);
    width: 40px;
    display: block;
    height: 4px;
    z-index: 3px;
    top: -4px;
    left: 0; }

.vc_custom_heading {
  font-size: 20px;
  color: var(--main-color);
  font-family: arial !important;
  font-weight: bold !important;
  font-family: 'Montserrat', sans-serif !important; }
  body.single-portfolio .vc_custom_heading, body.single-services .vc_custom_heading {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; }
  body.single-portfolio .site-content, body.single-services .site-content {
    padding-bottom: 10px; }
  body.single-portfolio #sidebar .widget, body.single-services #sidebar .widget {
    margin-bottom: 62px !important; }
  body.single-portfolio #sidebar .widget_custom_html, body.single-services #sidebar .widget_custom_html {
    border: 1px solid #efefef !important; }
  body.single-portfolio #sidebar .widget_custom_html .wg-title, body.single-services #sidebar .widget_custom_html .wg-title {
    background-color: #f1f1f1;
    padding: 5px 15px 5px 37px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: normal;
    color: #565656; }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget, body.single-services #sidebar .widget_custom_html .custom-html-widget {
    padding: 0 10px 0 13px; }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget li, body.single-services #sidebar .widget_custom_html .custom-html-widget li {
    line-height: 30px;
    padding: 10px 10px 10px 15px;
    margin: 15px 0;
    border: 1px solid #efefef; }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget li a, body.single-services #sidebar .widget_custom_html .custom-html-widget li a {
    font-size: 13px;
    color: #888;
    font-family: 'PT Sans', sans-serif;
    text-transform: capitalize; }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget li a:hover, body.single-services #sidebar .widget_custom_html .custom-html-widget li a:hover {
    color: var(--main-color); }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget li a i, body.single-services #sidebar .widget_custom_html .custom-html-widget li a i {
    margin-right: 10px;
    color: #222;
    font-size: 18px; }
  body.single-portfolio #sidebar .widget_custom_html .custom-html-widget li:hover, body.single-services #sidebar .widget_custom_html .custom-html-widget li:hover {
    border: 1px solid var(--main-color); }

.single-portfolio .page-title, .single-services .page-title {
  padding: 58px 0 !important; }
  .single-portfolio .page-title .cms-page-title-inner h1, .single-services .page-title .cms-page-title-inner h1 {
    font-size: 45px !important;
    color: #fff;
    margin-left: -2px !important;
    margin-top: -20px; }
  .single-portfolio .page-title .cms-breadcrumb ul li:first-child, .single-services .page-title .cms-breadcrumb ul li:first-child {
    padding-left: 0; }
  .single-portfolio .page-title .btn-gat, .single-services .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-portfolio .page-title .btn-gat, .single-services .page-title .btn-gat {
        float: none;
        margin: 40px auto 0; } }
  .single-portfolio .page-title .btn-gat:hover, .single-services .page-title .btn-gat:hover {
    background-color: #222;
    color: white; }
  @media screen and (max-width: 360px) {
      .single-portfolio .page-title .btn-gat, .single-services .page-title .btn-gat {
        margin: 30px auto 0;
        float: none; } }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 18px; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: none !important; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
    padding: 12px 15px !important;
    background-color: #bbb;
    color: #fff !important;
    font-size: 15px;
    text-transform: uppercase;
    -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 */ }
    @media (max-width: 991px) {
            .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
              font-size: 12px !important; } }
    .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a:hover {
      color: #fff; }
    .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i {
      display: none; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-body, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
    padding: 15px 0 !important;
    border: none;
    background-color: #fff !important;
    font-family: 'PT Sans', sans-serif; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel.last-child, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel.last-child {
    margin-bottom: 0 !important; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_tta-panel.last-child .vc_tta-panel-body, .single-services .vc_tta-style-classic .vc_tta-panels .vc_tta-panel.last-child .vc_tta-panel-body {
    padding-bottom: 0 !important; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_active .vc_tta-panel-heading .vc_tta-panel-title, .single-services .vc_tta-style-classic .vc_tta-panels .vc_active .vc_tta-panel-heading .vc_tta-panel-title {
    border-bottom: none !important; }
  .single-portfolio .vc_tta-style-classic .vc_tta-panels .vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .single-services .vc_tta-style-classic .vc_tta-panels .vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
    background-color: var(--main-color);
    color: #fff !important; }
  .single-portfolio .vc_tta-style-classic .vc_custom_heading, .single-services .vc_tta-style-classic .vc_custom_heading {
    font-size: 20px;
    color: var(--main-color);
    font-family: arial !important;
    font-weight: bold; }
  .single-portfolio .wpb_raw_html .document-icon-pdf a, .single-services .wpb_raw_html .document-icon-pdf a {
    margin: 22px 0 0;
    padding-left: 5px 0;
    display: block;
    font-size: 13px; }
  .single-portfolio .wpb_raw_html .document-icon-pdf a i, .single-services .wpb_raw_html .document-icon-pdf a i {
    margin-right: 17px;
    color: #222;
    font-size: 20px; }

#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: var(--main-color); }
  #cms-element-box-contact .vc_message_box a {
    color: #777; }

.vc_message_box {
  border: none !important;
  color: #777;
  margin-bottom: 10px !important;
  padding: 5px; }
  .vc_message_box p {
    margin-bottom: 10px; }
  .vc_message_box .vc_message_box-icon i {
    color: var(--main-color); }
  .vc_message_box a {
    color: #777; }

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

.vc_single_image_custom {
  max-width: 524px;
  margin-right: 25px; }
  .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 */ }
  #colophon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 13px;
    line-height: 22px;
    position: relative; }
  #colophon:before {
    background-color: #222;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ""; }
  @media (min-width: 992px) {
      #colophon #cms-footer-top .cms-footer-top-item:nth-child(2) {
        width: 30%; } }
  @media (max-width: 767px) {
      #colophon #cms-footer-top .cms-footer-top-item:nth-child(2) {
        width: 100%; } }
  @media (min-width: 992px) {
      #colophon #cms-footer-top .cms-footer-top-item:nth-child(3) {
        width: 20%; } }
  @media (max-width: 767px) {
      #colophon #cms-footer-top .cms-footer-top-item:nth-child(3) {
        width: 100%; } }
  #colophon .cms-footer-bottom-item1 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; }
  @media (min-width: 992px) {
    #colophon.cms-footer2 {
      background-size: cover !important;
      background-attachment: fixed !important;
      background-position: center center; } }
  #colophon.cms-footer2:before {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ""; }

.cms-footer1 .widget_cs_social_widget {
  margin-top: 25px; }
  .cms-footer1 .widget_cs_social_widget ul li {
    margin-bottom: 20px; }
  .cms-footer1 .widget_cs_social_widget ul li a {
    color: #abc;
    font-size: 25px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    background: #333;
    text-align: center;
    border-radius: 50%; }
  @media (min-width: 768px) and (max-width: 1199px) {
          .cms-footer1 .widget_cs_social_widget ul li a {
            width: 35px;
            height: 35px;
            line-height: 35px;
            font-size: 18px; } }
  .cms-footer1 .widget_cs_social_widget ul li a:hover {
    background-color: var(--main-color); }
  .cms-footer1 .widget_cs_social_widget ul li a i {
    color: #fff; }

.cms-footer2 .widget_cs_social_widget ul, .cms-footer3 .widget_cs_social_widget ul {
  margin-top: 50px; }
  .cms-footer2 .widget_cs_social_widget ul li, .cms-footer3 .widget_cs_social_widget ul li {
    margin: 10px 10px 10px 0; }
  .cms-footer2 .widget_cs_social_widget ul li a, .cms-footer3 .widget_cs_social_widget ul li a {
    color: #abc;
    font-size: 25px;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #333;
    text-align: center;
    line-height: 50px; }
  .cms-footer2 .widget_cs_social_widget ul li a:hover, .cms-footer3 .widget_cs_social_widget ul li a:hover {
    background-color: var(--main-color); }

.cms-footer2 #cms-footer-bottom .cms-footer-bottom-item1, .cms-footer3 #cms-footer-bottom .cms-footer-bottom-item1 {
  padding: 25px 0 80px; }
  @media (max-width: 767px) {
      .cms-footer2 #cms-footer-bottom .cms-footer-bottom-item1, .cms-footer3 #cms-footer-bottom .cms-footer-bottom-item1 {
        padding: 25px 0; } }

.site-footer .widget_newsletterwidget {
  color: #fff;
  font-family: 'Montserrat', sans-serif; }
  .site-footer .widget_newsletterwidget .tnp-widget {
    font-family: 'Montserrat', sans-serif; }
  .site-footer .cms-footer-contact li, .site-footer .cms-footer-time li {
    line-height: 29px;
    font-family: 'PT Sans', sans-serif; }
  .site-footer .cms-footer-contact li i, .site-footer .cms-footer-time li i, .site-footer .cms-footer-contact li span, .site-footer .cms-footer-time li span {
    color: #fff; }
  .site-footer .cms-footer-contact i {
    margin-right: 5px;
    font-size: 15px; }
  .site-footer .cms-footer-time li {
    float: none; }
  .site-footer .cms-footer-time li span {
    float: right;
    font-weight: 500; }

#cms-footer-top {
  padding-top: 70px;
  padding-bottom: 30px;
  color: #9b9b9b; }
  #cms-footer-top .wg-title {
    font-size: 20px;
    line-height: normal;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px; }
  #cms-footer-top a {
    color: #cecece; }
  #cms-footer-top a:hover {
    color: #fff; }

#cms-footer-bottom {
  position: relative; }
  #cms-footer-bottom a {
    color: var(--main-color); }
  #cms-footer-bottom a:hover {
    color: #fff; }
  #cms-footer-bottom .border-top-footer {
    border-top: 1px solid rgba(71, 71, 71, 0.25); }
  #cms-footer-bottom .cms-footer-bottom-item1 {
    color: #565656;
    padding: 21px 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif; }
  #cms-footer-bottom .cms-footer-bottom-item1 a {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #565656; }
  #cms-footer-bottom .cms-footer-bottom-item1 a:hover {
    color: var(--main-color); }

.cshero-popup-search, .cshero-popup-menu {
  display: none; }

#back_to_top span {
  bottom: 41px;
  right: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: fixed;
  background-color: var(--main-color);
  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(0, 0, 0, 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: var(--main-color);
    -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);
    -webkit-transition: all 150ms linear 0ms;
    -moz-transition: all 150ms linear 0ms;
    -ms-transition: all 150ms linear 0ms;
    transition: all 150ms linear 0ms; }
  #back_to_top.on span {
    opacity: 1;
    visibility: visible; }

@media (max-width: 991px) {
  #colophon .text-center-sm {
    text-align: left !important; }

  .site-footer .cms-footer-time li span {
    float: none; } }

@media (max-width: 768px) {
  #colophon .text-center-sm {
    text-align: left; } }

@media (max-width: 640px) {
  #colophon #cms-footer-top {
    padding-top: 40px;
    padding-bottom: 0; }
    #colophon .text-center-sm {
      text-align: left !important; }
    #colophon .cms-footer-time li span {
      float: none;
      margin-left: 15px; } }

@media (max-width: 360px) {
  .site-footer .widget_newsletterwidget {
    color: #fff; }
    .site-footer .widget_newsletterwidget .tnp-widget {
      display: inline-block;
      width: 100%; } }

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: var(--main-color); }

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 {
    font-family: 'Montserrat', sans-serif; }
  .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
    height: 122px; }

body span.wpcf7-not-valid-tip {
  color: var(--main-color);
  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: var(--main-color);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px; }
  .get-contact-page a:before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: var(--main-color);
    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; }

.cms-cshero-contact-us {
  /*Contact Us*/ }
  .cms-cshero-contact-us .cms-input-contact-us {
    margin-bottom: 28px; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control {
    background-color: rgba(30, 30, 30, 0);
    border: 1px solid #efefef;
    -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 */
    font-size: 14px;
    font-family: 'PT Sans', sans-serif;
    font-style: italic; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control:focus {
    border: 1px solid #abc; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control::-webkit-input-placeholder {
    color: #777;
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control::-moz-placeholder {
    color: #777;
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control::-ms-input-placeholder {
    color: #777;
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control::-moz-placeholder {
    color: #777;
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-form-control.wpcf7-textarea {
    font-style: italic;
    font-family: 'PT Sans', sans-serif; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-text, .cms-cshero-contact-us .cms-input-contact-us .wpcf7-number {
    height: 59px;
    line-height: 57px;
    padding: 0 15px; }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-text:focus, .cms-cshero-contact-us .cms-input-contact-us .wpcf7-number:focus, .cms-cshero-contact-us .cms-input-contact-us .wpcf7-textarea:focus {
    border: 1px solid var(--main-color); }
  .cms-cshero-contact-us .cms-input-contact-us .wpcf7-textarea {
    min-height: 234px;
    -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 */
    font-style: italic; }
  .cms-cshero-contact-us .cms-input-phone .wpcf7-form-control {
    padding-right: 0px; }
  .cms-cshero-contact-us .cms-input-message, .cms-cshero-contact-us .cms-input-subject {
    margin-bottom: -10px; }
  .cms-cshero-contact-us .cms-contact-submit {
    text-align: right;
    position: relative; }
  @media screen and (max-width: 767px) {
    .cms-cshero-contact-us .cms-contact-submit {
      text-align: center; } }
  .cms-cshero-contact-us .cms-contact-submit .wpcf7-submit {
    background-color: var(--main-color);
    color: #fff;
    padding: 0 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    width: 174px;
    height: 56px;
    font-style: normal;
    line-height: 56px; }
  .cms-cshero-contact-us .cms-contact-submit .wpcf7-submit:hover {
    background-color: #222; }
  .cms-cshero-contact-us .cms-contact-submit .ajax-loader {
    position: absolute;
    right: 0;
    bottom: -30px; }
  .cms-cshero-contact-us.home-page-phome .cms-input-contact-us {
    margin-bottom: 37px; }
  .cms-cshero-contact-us.home-page-phome .cms-contact-submit {
    text-align: center;
    margin-top: 38px; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-submit {
    border: none; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-text, .cms-cshero-contact-us.home-page-phome .wpcf7-number {
    height: 59px;
    line-height: 59px; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-textarea {
    min-height: 220px; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-form-control {
    font-family: 'Montserrat', sans-serif;
    color: #fff; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-form-control::-webkit-input-placeholder {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-form-control::-moz-placeholder {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-form-control::-ms-input-placeholder {
    color: white;
    font-style: normal;
    font-family: 'Montserrat', sans-serif; }
  .cms-cshero-contact-us.home-page-phome .wpcf7-form-control::-moz-placeholder {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal; }
  @media screen and (max-width: 767px) {
  .cms-cshero-contact-us {
    margin-top: 70px; } }

.wp-contact-us-form .bg-page-contact-info {
  padding: 22px 32px 0;
  min-height: 234px;
  background-color: #fafafa; }
  .wp-contact-us-form .cms-contact-info li {
    position: relative;
    padding-left: 33px;
    font-size: 14px;
    color: #777;
    margin-bottom: 5px; }
  .wp-contact-us-form .cms-contact-info li i {
    font-size: 20px;
    color: var(--main-color);
    position: absolute;
    left: 0px; }
  .wp-contact-us-form .cms-contact-info li.info-input-map {
    line-height: 22px; }
  .wp-contact-us-form .cms-contact-info li.info-input-map i {
    top: 40%; }
  .wp-contact-us-form .cms-contact-info li.info-input-phone {
    line-height: 41px; }
  .wp-contact-us-form .cms-contact-info li.info-input-phone i {
    top: 11px; }
  .wp-contact-us-form .cms-contact-info li.info-input-email {
    line-height: 12px; }
  .wp-contact-us-form .cms-contact-info li.info-input-email i {
    top: 8px; }
  .wp-contact-us-form .cms-contact-info li a {
    color: #777; }
  .wp-contact-us-form .cms-contact-social {
    margin-top: 20px;
    text-align: center; }
  @media (max-width: 991px) {
    .wp-contact-us-form .cms-contact-social {
      text-align: left; } }
  .wp-contact-us-form .cms-contact-social li {
    display: inline-block;
    margin: 5px; }
  .wp-contact-us-form .cms-contact-social li a {
    display: block;
    height: 32px;
    font-size: 15px;
    text-align: center;
    width: 32px;
    line-height: 30px;
    -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 */
    text-align: center;
    border: 1px solid #333;
    color: #777; }
  .wp-contact-us-form .cms-contact-social li a:hover {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color); }
  .wp-contact-us-form .cms-contact-social li a i {
    font-size: 15px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .wp-contact-us-form .col-box-contact-info:nth-child(1) {
      margin-bottom: 50px; } }
  @media (max-width: 767px) {
    .wp-contact-us-form .cms-input-message {
      margin-top: 40px; } }
  .wp-contact-us-form .wpcf7-form-control {
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-form-control::-webkit-input-placeholder {
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-form-control::-moz-placeholder {
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-form-control::-ms-input-placeholder {
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-form-control::-moz-placeholder {
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-textarea {
    min-height: 234px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic; }
  .wp-contact-us-form .wpcf7-textarea::-webkit-input-placeholder {
    color: #777;
    font-family: 'Montserrat', sans-serif;
    font-style: italic; }
  .wp-contact-us-form .wpcf7-textarea::-moz-placeholder {
    font-style: italic;
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-textarea::-ms-input-placeholder {
    font-style: italic;
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .wpcf7-textarea::-moz-placeholder {
    font-style: italic;
    color: #777;
    font-family: 'Montserrat', sans-serif; }
  .wp-contact-us-form .cms-contact-submit {
    text-align: right;
    position: relative; }
  @media screen and (max-width: 767px) {
    .wp-contact-us-form .cms-contact-submit {
      text-align: center; } }
  .wp-contact-us-form .cms-contact-submit .wpcf7-submit {
    background-color: var(--main-color);
    color: #fff;
    padding: 0 15px;
    font-size: 15px;
    width: 174px;
    height: 56px;
    margin-top: 12px;
    line-height: 56px;
    border: none;
    -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 */ }
  .wp-contact-us-form .cms-contact-submit .wpcf7-submit:hover {
    background-color: #333; }
  .wp-contact-us-form .cms-contact-submit .ajax-loader {
    position: absolute;
    right: 0;
    bottom: -30px; }

@media screen and (max-width: 767px) {
    .home-page-phome {
      margin-top: 0px; } }

@media screen and (max-width: 360px) {
  /* ==========================================================================
   [End] All Style Form
========================================================================== */
    .cms-cshero-contact-us .cms-input-contact-us .wpcf7-textarea {
      min-height: auto; }
      .cms-cshero-contact-us .cms-contact-submit {
        text-align: center; } }

#cshero-header-inner #cshero-header-top .h-top-box.h-top-login li {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; }
  #cshero-header-inner #cshero-header-top .h-top-box.h-top-login li span {
    font-family: 'Montserrat', sans-serif;
    color: #777; }
  #cshero-header-inner #cshero-header-top .h-top-box ul li {
    display: inline-block;
    height: 50px;
    line-height: 50px; }
  #cshero-header-inner #cshero-header-top .h-top-contact ul li {
    padding-left: 30px;
    padding-right: 30px; }
  #cshero-header-inner #cshero-header-top .h-top-contact ul li i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 18px; }
  #cshero-header-inner #cshero-header-top .h-top-contact ul li a {
    color: #222;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: lowercase; }
  #cshero-header-inner #cshero-header-top .h-top-contact ul li a .fa {
    color: var(--main-color); }
  #cshero-header-inner #cshero-header-top .h-top-social-media ul li {
    padding-left: 0px;
    padding-right: 5px; }
  #cshero-header-inner .bodebr-botton-tobar {
    border-top: 1px solid #ccc; }
  #cshero-header-inner.header-1 .h-top-box ul li a {
    font-family: 'Montserrat', sans-serif;
    color: #777; }
  #cshero-header-inner.header-1 .h-top-box ul li a:hover {
    color: var(--main-color); }
  #cshero-header-inner.header-1 .h-top-login ul li {
    padding-right: 35px;
    font-family: 'Montserrat', sans-serif; }
  #cshero-header-inner.header-1 .h-top-login ul li a {
    font-size: 14px;
    font-weight: 700;
    padding-left: 0; }
  #cshero-header-inner.header-1 .h-top-login ul li span:hover {
    color: var(--main-color);
    cursor: pointer; }
  #cshero-header-inner.header-1 .h-top-contact {
    text-align: right; }
  #cshero-header-inner.header-1 .h-top-contact li:last-child {
    padding-right: 0 !important; }
  #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a {
    font-family: 'Montserrat', sans-serif !important; }
  #cshero-header-inner.header-1 .main-navigation .nav-menu > li > a:hover {
    color: var(--main-color) !important; }
  #cshero-header-inner.header-2 .h-top-contact ul li {
    line-height: 28px; }
  #cshero-header-inner.header-2 .h-top-contact ul li:first-child {
    padding-left: 0 !important; }
  #cshero-header-inner.header-2 .h-top-social-media ul li:last-child {
    padding-right: 0 !important; }
  @media (max-width: 991px) {
      #cshero-header-inner.header-2 #cshero-header-top {
        display: none; } }
  #cshero-header-inner.header-3 .social-top li {
    padding-top: 5px;
    padding-bottom: 5px; }
  #cshero-header-inner.header-3 .social-top li a {
    font-family: 'Montserrat', sans-serif;
    color: #c6c6c6; }
  #cshero-header-inner.header-3 .h-top-social-media {
    width: 12%; }
  #cshero-header-inner.header-3 .h-top-social-media ul li {
    padding-right: 0 !important; }
  #cshero-header-inner.header-3 .h-top-social-media ul li a {
    line-height: 20px; }
  #cshero-header-inner.header-3 .h-top-social-media ul li a:hover {
    color: var(--main-color);
    background-color: #fff !important; }
  #cshero-header-inner.header-3 .cshero-box-header-contact .cshero-box-title-label {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif; }
  #cshero-header-inner.header-3 .cshero-box-header-contact .cshero-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: bold; }
  #cshero-header-inner.header-3 #cshero-header-logo a {
    display: inline-block;
    line-height: 100px; }
  #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
    color: var(--main-color) !important; }
  #cshero-header-inner.header-4 .h-top-social-media {
    text-align: left; }
  #cshero-header-inner.header-4 .h-top-social-media ul li:first-child {
    padding-left: 15px; }
  #cshero-header-inner.header-4 .h-top-social-media ul li a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    margin: 10px 0;
    text-align: center;
    display: block; }
  @media (min-width: 991px) {
            #cshero-header-inner.header-4 .h-top-social-media ul li a {
              color: #fff !important; } }
  #cshero-header-inner.header-4 .h-top-social-media ul li a:hover {
    background-color: var(--main-color);
    color: white !important; }
  #cshero-header-inner.header-4 .h-top-contact {
    text-align: right; }
  #cshero-header-inner.header-4 .h-top-contact ul li {
    padding-right: 0 !important; }
  #cshero-header-inner.header-4 .h-top-contact ul li a {
    font-family: 'Montserrat', sans-serif;
    color: #fff !important; }
  #cshero-header-inner.header-4 .h-top-contact ul li a:hover {
    color: var(--main-color) !important; }
  #cshero-header-inner.header-4 .h-top-contact ul li i {
    margin-right: 10px; }
  #cshero-header-inner.header-4 .h-top-contact ul li:last-child {
    padding-left: 62px !important; }
  #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: var(--main-color) !important; }

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

  .header-fixed #cshero-header-logo img {
    margin-top: 2px;
    margin-bottom: 10px;
    max-height: 48px;
}

  #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 .h-top-contact {
      text-align: right;
      float: none; }
      #cshero-header-inner #cshero-header .h-top-contact ul li {
        display: inline-block;
        font-family: 'Montserrat', sans-serif; }
        #cshero-header-inner #cshero-header .h-top-contact ul li a {
          font-family: 'Montserrat', sans-serif;
          color: white; }
          #cshero-header-inner #cshero-header .h-top-contact ul li a:hover {
            color: var(--main-color); }
    #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: 16px; }
      #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: var(--main-color); }
        #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: var(--main-color); }
        #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: var(--main-color);
          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-navigation-right {
        line-height: 60px; }
    #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: var(--main-color); }
      #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: var(--main-color); }
    #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: var(--main-color); }
      #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: var(--main-color); }
    #cshero-header-inner.header-full-width #cshero-header > .container {
      width: 100%;
      padding: 0 50px; }
    #cshero-header-inner.header-1 .cshero-topbar {
      background-color: white !important;
      border-bottom: none !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
    #cshero-header-inner.header-1 .sticky-desktop #cshero-header-logo a {
      line-height: 117px; }
    #cshero-header-inner.header-1 .header-fixed #cshero-header-logo a {
      line-height: 42px; }
    #cshero-header-inner.header-1 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-1 .cshero-navigation-right {
      line-height: 117px; }
    #cshero-header-inner.header-1 #cshero-header-logo a {
      display: block;
      line-height: 117px; }
    #cshero-header-inner.header-2 .cshero-topbar {
      background-color: #f1f1f1; }
      #cshero-header-inner.header-2 .cshero-topbar .h-top-contact ul li a {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #222; }
        #cshero-header-inner.header-2 .cshero-topbar .h-top-contact ul li a:hover {
          color: var(--main-color) !important; }
      #cshero-header-inner.header-2 .cshero-topbar .h-top-social-media {
        text-align: right; }
      #cshero-header-inner.header-2 .cshero-topbar .h-top-social-media ul li:first-child {
        margin-left: 0; }
        #cshero-header-inner.header-2 .cshero-topbar .h-top-social-media ul li a {
          width: 26px;
          height: 26px;
          font-size: 15px;
          line-height: 26px;
          margin: 12px 0;
          text-align: center;
          color: #fff !important;
          background-color: #565656;
          display: block; }
        #cshero-header-inner.header-2 .cshero-topbar .h-top-social-media ul li a:hover {
          background-color: var(--main-color);
          color: #fff !important; }
    #cshero-header-inner.header-2 #cshero-header-logo a, #cshero-header-inner.header-2 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-2 .cshero-navigation-right {
      line-height: 100px; }
    #cshero-header-inner.header-3 .header-fixed #cshero-header-logo {
      display: none; }
    #cshero-header-inner.header-3 div#cshero-header-wrapper {
      position: relative;
      padding-bottom: 40px; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .sticky-desktop {
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper #cshero-header-navigation .cshero-header-navigation-inner {
        position: relative; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper #cshero-header-navigation .cshero-header-navigation-inner .cshero-header-navigation {
        position: absolute;
        width: 100%;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a {
        color: var(--main-color); }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a, #cshero-header-inner.header-3 div#cshero-header-wrapper .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
        position: relative; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a > span:after, #cshero-header-inner.header-3 div#cshero-header-wrapper .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover > span:after {
        height: 2px;
        display: block;
        color: var(--main-color);
        background-color: var(--main-color);
        content: " ";
        bottom: -30px;
        width: 100%;
        position: absolute; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed {
        background-color: transparent;
        -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-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a, #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
        line-height: 60px; }
      #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a > span, #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover > span {
        position: relative; }
        #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-parent > a > span:after, #cshero-header-inner.header-3 div#cshero-header-wrapper .header-fixed .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover > span:after {
          height: 2px;
          display: block;
          color: var(--main-color);
          background-color: var(--main-color);
          content: " ";
          bottom: -22px;
          width: 100%;
          position: absolute; }
    #cshero-header-inner.header-3 #cshero-header-navigation {
      width: 100% !important; }
    #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation {
      text-align: left;
      padding-left: 51px; }
    #cshero-header-inner.header-3 .sticky-desktop .cshero-navigation-right .h-icon i {
      color: white !important; }
      #cshero-header-inner.header-3 .sticky-desktop .cshero-navigation-right .h-icon i:hover {
        color: var(--main-color) !important; }
    #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      color: #fff; }
    #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
      color: var(--main-color); }
    #cshero-header-inner.header-3 .cshero-header-navigation-inner .cshero-header-navigation {
      background-color: #565656; }
    #cshero-header-inner.header-3 .cshero-box-header-contact:first-child {
      margin-left: 56px; }
    #cshero-header-inner.header-3 .cshero-box-header-contact, #cshero-header-inner.header-3 .h-top-box {
      display: inline-block;
      height: 100px;
      padding-top: 18px;
      float: left; }
    #cshero-header-inner.header-3 .h-top-box {
      float: right; }
      #cshero-header-inner.header-3 .h-top-box ul li {
        display: inline-block;
        font-family: 'Montserrat', sans-serif; }
      #cshero-header-inner.header-3 .h-top-box ul li a {
        display: block;
        width: 30px;
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        height: 30px;
        color: #222 !important;
        text-align: center;
        line-height: 30px; }
      #cshero-header-inner.header-3 .h-top-box ul li a:hover {
        background-color: var(--main-color);
        color: white !important; }
      #cshero-header-inner.header-3 .h-top-box.h-top-social-media ul li:last-child {
        padding-right: 0 !important; }
      #cshero-header-inner.header-3 .h-top-box.h-top-social-media ul li a {
        font-size: 20px;
        color: #999 !important; }
      #cshero-header-inner.header-3 .h-top-box.h-top-social-media ul li a:hover {
        background-color: transparent !important;
        color: var(--main-color) !important; }
    #cshero-header-inner.header-3 .cshero-box-header-contact {
      padding-right: 25px;
      position: relative;
      padding-left: 50px;
      margin-left: 20px; }
      #cshero-header-inner.header-3 .cshero-box-header-contact:hover i {
        color: #565656; }
      #cshero-header-inner.header-3 .cshero-box-header-contact i, #cshero-header-inner.header-3 .cshero-box-header-contact .h-topbar-bdr {
        position: absolute; }
      #cshero-header-inner.header-3 .cshero-box-header-contact a {
        line-height: 23px !important;
        display: block !important; }
      #cshero-header-inner.header-3 .cshero-box-header-contact i {
        top: 50%;
        left: -2px;
        font-size: 38px;
        color: #999;
        transform: translate(0px, -50%); }
      #cshero-header-inner.header-3 .cshero-box-header-contact .h-topbar-bdr {
        width: 1px;
        height: 30px;
        min-height: 30px;
        max-height: 100px;
        background-color: #eee;
        top: 50%;
        transform: translate(0px, -50%);
        right: 0; }
      #cshero-header-inner.header-3 .cshero-box-header-contact .cshero-box-title {
        margin-top: 13px;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        color: #565656;
        display: block; }
      #cshero-header-inner.header-3 .cshero-box-header-contact .cshero-box-title-label {
        color: #999;
        font-size: 10px;
        display: block;
        margin-top: -4px;
        font-family: 'Montserrat', sans-serif; }
      #cshero-header-inner.header-3 .cshero-box-header-contact .cshero-box-title-label:hover {
        color: var(--main-color); }
    #cshero-header-inner.header-3 #cshero-headerinfor-right {
      position: relative; }
      #cshero-header-inner.header-3 #cshero-headerinfor-right .h-top-social-media ul {
        text-align: right; }
      #cshero-header-inner.header-3 #cshero-headerinfor-right .h-top-social-media ul li a i {
        position: absolute;
        top: 53%;
        transform: translate(-5px, -50%); }
    #cshero-header-inner.header-3 .cshero-navigation-right {
      padding-right: 80px;
      padding-left: 15px !important; }
    #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a {
      padding-left: 15px;
      padding-right: 15px; }
      #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a.current-menu-ancestor > a, #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a.current-page-parent > a, #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a.current-menu-parent > a, #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a.current-menu-item > a, #cshero-header-inner.header-3 .main-navigation .nav-menu > li > a > a:hover {
        color: var(--main-color) !important; }
    #cshero-header-inner.header-3 .cshero-navigation-right, #cshero-header-inner.header-3 .cshero-header-navigation .main-navigation .menu-main-menu > li > a {
      line-height: 77px; }
    #cshero-header-inner.header-4 {
      position: absolute;
      left: 0;
      width: 100%;
      top: 0;
      right: 0;
      z-index: 3; }
    #cshero-header-inner.header-4 #cshero-header-logo a, #cshero-header-inner.header-4 .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-4 .cshero-navigation-right {
      line-height: 117px; }
    #cshero-header-inner.header-4 #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-inner.header-4 #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i {
      color: white; }
      #cshero-header-inner.header-4 #cshero-header:not(.header-fixed) .cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover, #cshero-header-inner.header-4 #cshero-header:not(.header-fixed) .cshero-navigation-right .h-icon i:hover {
        color: var(--main-color); }
    #cshero-header-inner.header-4 .bodebr-botton-tobar {
      border-top: 1px solid #5b5f62; }
    #cshero-header-inner.header-4 .h-top-contact {
      text-align: right;
      float: none; }
      #cshero-header-inner.header-4 .h-top-contact ul li {
        padding-right: 0;
        padding-left: 60px;
        font-family: 'Montserrat', sans-serif; }
      #cshero-header-inner.header-4 .h-top-contact ul li a {
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px; }
      #cshero-header-inner.header-4 .h-top-contact ul li a:hover {
        color: var(--main-color); }

  .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 {
      top: 32px; }
    .admin-bar #cshero-header-inner.header-4 {
      top: 32px; } }

#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;
    padding: 0 15px;
    font-family: 'Montserrat', sans-serif;
    color: #565656;
    position: relative;
	text-align:center;}
	@media (max-width: 800px) {
	 #cshero-header-top-mobile { text-align:center !important; }
	 }
  @media (max-width: 630px) {
      
	 
	  #cshero-header-top-mobile ul li {
        font-size: 14px; 
		} }
  @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: var(--main-color); }
  #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: var(--main-color); }
  @media (max-width: 899px) {
  #cshero-header-top-mobile {
    display: block; } }

@media (max-width: 991px) {
  #cshero-header #cshero-header-navigation {
    max-width: 100% !important; }

  #cshero-header-inner #cshero-header #cshero-header-logo a.sticky-logo {
    display: none; }

  .cshero-header-navigation .main-navigation .menu-main-menu > li {
    padding-left: 0;
    padding-right: 0; }

  .header-1 .h-top-login li {
    font-family: 'Montserrat', sans-serif; }
    .header-1 .h-top-login li a {
      font-family: 'Montserrat', sans-serif; }
    .header-1 .h-top-contact li {
      padding-right: 0 !important;
      padding-left: 15px !important; }

  .header-4 .h-top-box ul li a, .header-4 .h-top-box ul li i {
    color: #222 !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  #cshero-header-inner.header-3 #cshero-headerinfor-right .cshero-box-header-contact {
    padding-right: 15px;
    padding-left: 35px; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right .cshero-box-header-contact i {
      left: 0;
      font-size: 25px; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right .cshero-box-header-contact .cshero-box-title {
      font-weight: normal; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right .cshero-box-header-contact.cshero-box-time .h-topbar-bdr {
      display: none; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right .h-top-social-media {
      display: none; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right .cshero-box-header-contact:first-child {
      margin-left: 20px; } }

@media (max-width: 991px) {
  #cshero-header-inner.header-4 #cshero-header-top .h-top-contact ul li a {
    color: #222 !important; }
    #cshero-header-inner.header-3 #cshero-headerinfor-right {
      display: none; } }

@media (max-width: 800px) {
  .header-2 .h-top-box {
    display: none; }

  .header-4 .cshero-topbar {
    display: none; } }

@media (max-width: 899px) {
  .header-1 #cshero-header-top {
    display: none; } }

@media (max-width: 640px) {
  /* ==========================================================================
   [End] 1. Header Main
========================================================================== */
    body#cms-theme #cshero-menu-mobile i {
      display: inline-block; }
      body#cms-theme #cshero-header-logo a img {
        height: auto;
        max-width: 150px; }
    body.header-1 #cshero-menu-mobile {
      margin-top: 45px;
      right: 10px;
      top: 10px; }
      body.header-1 #cshero-menu-mobile i {
        display: block;
        margin: 0 0 10px 0; }
      body.header-1 #cshero-header-left {
        padding: 10px 30px 30px; }
      body.header-1 #cshero-header-left #cshero-header #cshero-header-left-navigation {
        padding: 20px 30px 40px; }
      body.header-1 #primary .vc_row:not(.vc_inner) > .wpb_column > .vc_column-inner {
        padding-left: 15px !important;
        padding-right: 15px !important; }
        body.header-1 #primary .vc_row.vc_row-no-padding > .wpb_column > .vc_column-inner {
          padding-left: 0px !important;
          padding-right: 0px !important; }
      body.header-1 #cms-footer-top > .container, body.header-1 #cms-footer-bottom > .container {
        padding-left: 15px;
        padding-right: 15px; }
    .header-3 .main-navigation .nav-menu > li > a {
      line-height: normal; }
    .cshero-topbar {
      display: none; } }

@font-face {
  font-family: 'Poppins Regular';
  src: url('../fonts/poppins-regular-webfont.html') 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.html') 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.html') 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.html') 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.html') 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.html') 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.html') 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.html') 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; }

.wpb_revslider_element .cms_rvl_color_title1 {
  color: var(--main-color) !important; }

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

.cms-breadcrumb {
  padding: 12px 0 0; }
  .cms-breadcrumb .breadcrumbs li {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 0 6px;
    color: #fff;
    position: relative; }
  .cms-breadcrumb .breadcrumbs li:first-child {
    padding-left: 14px; }
  .cms-breadcrumb .breadcrumbs li:last-child {
    color: var(--main-color) !important; }
  .cms-breadcrumb .breadcrumbs li a {
    color: #fff; }
  .cms-breadcrumb .breadcrumbs li a:hover {
    color: var(--main-color) !important; }
  .cms-breadcrumb .breadcrumbs li:after {
    content: "/";
    font-size: 12px;
    position: absolute;
    right: -3px;
    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-size: cover;
  padding: 65px 0;
  position: relative;
  z-index: 4; }
  #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 {
    position: relative;
    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;
    margin-left: 0px;
    letter-spacing: 5px;
    font-family: 'Montserrat', sans-serif; }
  #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: 45px;
    line-height: 45px;
    color: #222; }
  @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: #222; }
  #cms-page-title.pt-style4 .cms-breadcrumb .breadcrumbs li a {
    color: #222; }
  #cms-page-title.page-title-404 {
    padding: 0px 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: 90px 0; }
  #cms-content.noPadding {
    padding: 0 !important; }

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

.tax-product_cat #cms-content {
  padding-bottom: 12px; }
  .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: var(--main-color); }
  .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: var(--main-color); }
  .cms-video-popup-wrapper.button-style2 .cms-button-video:hover:before, .cms-video-popup-wrapper.button-style3 .cms-button-video:hover:before {
    border-color: var(--main-color); }
  .cms-video-popup-wrapper.button-style3 .cms-button-video:before {
    border: 2px solid var(--main-color); }
  .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 .cms-page-title-inner .ft-nvb {
  font-size: 60px !important; }
  .error404 .site-content {
    background-image: url(../images/404.jpg);
    background-repeat: no-repeat;
    background-size: cover; }
  .error404 #main .error-404 {
    background: rgba(0, 0, 0, 0.5);
    margin: auto;
    padding: 90px 15px 130px; }
  .error404 #main .error-404 .title404 {
    font-size: 200px;
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    letter-spacing: 0.02em; }
  .error404 #main .error-404 .title404 {
    color: var(--main-color); }
  .error404 #main .error-404 .title404-sub {
    color: #fff; }
  .error404 #main .error-404 .h-line {
    height: 2px;
    width: 40px;
    position: relative;
    margin: auto; }
  .error404 #main .error-404 .page-content {
    padding: 25px 0 20px 0;
    color: #fefefe;
    margin-bottom: 50px; }
  .error404 #main .error-404 .btn-primary {
    -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 */ }

@media screen and (max-width: 360px) {
  /* 
   [Start] Slider
   +-----------------------------------+
*/
    #cms-page-title.page-title-404 {
      padding: 60px 0; }
    .error404 #main .error-404 {
      padding: 50px 0; }
      .error404 #main .error-404 .title404 {
        font-size: 50px; } }

.rev_slider_wrapper .text-center {
  text-align: center !important; }
  .rev_slider_wrapper .btn {
    line-height: 1 !important;
    padding-top: 16px;
    padding-bottom: 16px; }
  .rev_slider_wrapper .btn-space {
    margin: 0 15px; }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet {
    display: block;
    height: 5px;
    width: 5px;
    background-color: #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 */ }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet:before, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet:before {
    content: "";
    height: 9px;
    width: 9px;
    position: absolute;
    top: -2px;
    left: -2px;
    border: 2px 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 */
    -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; }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet:after, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet:after {
    content: "";
    height: 13px;
    width: 13px;
    border: 2px solid transparent;
    position: absolute;
    top: -4px;
    left: -4px;
    -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 */ }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet.selected, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected {
    background-color: #fff; }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet.selected:before, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected:before {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  .rev_slider_wrapper .tp-bullets.custom .tp-bullet.selected:after, .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected:after {
    border-color: #fff; }
  .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet {
    border: 2px solid #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: none; }
  .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet:before {
    border-color: #222;
    -webkit-box-shadow: 0 0 10px #222 inset;
    -moz-box-shadow: 0 0 10px #222 inset;
    -ms-box-shadow: 0 0 10px #222 inset;
    box-shadow: 0 0 10px #222 inset; }
  .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected {
    border: 2px solid var(--main-color); }
  .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected:before {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  .rev_slider_wrapper .tp-bullets.hephaistos .tp-bullet.selected:after {
    border-color: #222; }
  .rev_slider_wrapper .tparrows.custom, .rev_slider_wrapper .tparrows.hephaistos {
    background-color: transparent !important;
    height: 100px;
    overflow: hidden;
    width: 50px; }
  .rev_slider_wrapper .tparrows.custom:before, .rev_slider_wrapper .tparrows.hephaistos:before, .rev_slider_wrapper .tparrows.custom:after, .rev_slider_wrapper .tparrows.hephaistos:after {
    content: "" !important;
    position: absolute;
    background-color: #fff;
    height: 55px;
    width: 1px;
    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; }
  .rev_slider_wrapper .tparrows.custom:before, .rev_slider_wrapper .tparrows.hephaistos:before {
    -webkit-transform: rotate(36deg) translateY(0px);
    -khtml-transform: rotate(36deg) translateY(0px);
    -moz-transform: rotate(36deg) translateY(0px);
    -ms-transform: rotate(36deg) translateY(0px);
    -o-transform: rotate(36deg) translateY(0px);
    transform: rotate(36deg) translateY(0px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    top: 20px; }
  .rev_slider_wrapper .tparrows.custom:after, .rev_slider_wrapper .tparrows.hephaistos:after {
    -webkit-transform: rotate(-36deg) translateY(0px);
    -khtml-transform: rotate(-36deg) translateY(0px);
    -moz-transform: rotate(-36deg) translateY(0px);
    -ms-transform: rotate(-36deg) translateY(0px);
    -o-transform: rotate(-36deg) translateY(0px);
    transform: rotate(-36deg) translateY(0px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    top: 22px; }
  .rev_slider_wrapper .tparrows.custom.tp-rightarrow:before, .rev_slider_wrapper .tparrows.hephaistos.tp-rightarrow:before, .rev_slider_wrapper .tparrows.custom.tp-rightarrow:after, .rev_slider_wrapper .tparrows.hephaistos.tp-rightarrow:after {
    left: inherit;
    right: 0; }
  .rev_slider_wrapper .tparrows.custom:hover:before, .rev_slider_wrapper .tparrows.hephaistos:hover:before {
    -webkit-transform: rotate(36deg) translateY(10px);
    -khtml-transform: rotate(36deg) translateY(10px);
    -moz-transform: rotate(36deg) translateY(10px);
    -ms-transform: rotate(36deg) translateY(10px);
    -o-transform: rotate(36deg) translateY(10px);
    transform: rotate(36deg) translateY(10px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .rev_slider_wrapper .tparrows.custom:hover:after, .rev_slider_wrapper .tparrows.hephaistos:hover:after {
    -webkit-transform: rotate(-36deg) translateY(-10px);
    -khtml-transform: rotate(-36deg) translateY(-10px);
    -moz-transform: rotate(-36deg) translateY(-10px);
    -ms-transform: rotate(-36deg) translateY(-10px);
    -o-transform: rotate(-36deg) translateY(-10px);
    transform: rotate(-36deg) translateY(-10px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .rev_slider_wrapper .tparrows.custom.tp-leftarrow:hover:before, .rev_slider_wrapper .tparrows.hephaistos.tp-leftarrow:hover:before {
    -webkit-transform: rotate(36deg) translateY(-10px);
    -khtml-transform: rotate(36deg) translateY(-10px);
    -moz-transform: rotate(36deg) translateY(-10px);
    -ms-transform: rotate(36deg) translateY(-10px);
    -o-transform: rotate(36deg) translateY(-10px);
    transform: rotate(36deg) translateY(-10px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .rev_slider_wrapper .tparrows.custom.tp-leftarrow:hover:after, .rev_slider_wrapper .tparrows.hephaistos.tp-leftarrow:hover:after {
    -webkit-transform: rotate(-36deg) translateY(10px);
    -khtml-transform: rotate(-36deg) translateY(10px);
    -moz-transform: rotate(-36deg) translateY(10px);
    -ms-transform: rotate(-36deg) translateY(10px);
    -o-transform: rotate(-36deg) translateY(10px);
    transform: rotate(-36deg) translateY(10px);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .rev_slider_wrapper .tparrows.hephaistos:before, .rev_slider_wrapper .tparrows.hephaistos:after {
    background-color: #333; }
  .rev_slider_wrapper .tparrows.hephaistos.tp-leftarrow:before {
    top: 23px; }

.site-content .rev_slider_wrapper .tparrows {
  width: 77px;
  height: 80px; }
  .site-content .rev_slider_wrapper .tparrows.gyges {
    background-color: #494c4d !important; }
  .site-content .rev_slider_wrapper .tparrows.gyges:before {
    line-height: 80px;
    font-size: 20px; }
  .site-content .rev_slider_wrapper .tparrows.gyges:before:hover {
    color: var(--main-color) !important; }
  .site-content .rev_slider_wrapper .tparrows.gyges:hover:before {
    color: var(--main-color) !important; }
  .site-content .rev_slider_wrapper .tparrows.persephone {
    background-color: transparent;
    border: ; }
  .site-content .rev_slider_wrapper .tparrows.persephone:before {
    line-height: 80px; }
  .site-content .rev_slider_wrapper .tparrows.persephone:hover {
    border: 1px solid var(--main-color); }
  .site-content .rev_slider_wrapper .tparrows.persephone:hover:before {
    color: var(--main-color) !important; }
  .site-content .rev_slider_wrapper .tparrows.metis {
    width: 77px !important;
    height: 80px !important;
    background-color: #2b2e2f !important; }
  .site-content .rev_slider_wrapper .tparrows.metis:before {
    line-height: 60px !important;
    color: #fff !important; }
  .site-content .rev_slider_wrapper .tparrows.metis:before:hover {
    color: var(--main-color) !important; }
  @media (max-width: 360px) {
      .site-content .rev_slider_wrapper .tparrows.metis {
        width: 40px !important;
        height: 50px !important; }
        .site-content .rev_slider_wrapper .tparrows.metis:before {
          line-height: 35px !important; } }
  .site-content .rev_slider_wrapper .tp-leftarrow.tparrows.persephone {
    margin-left: 30px; }
  .site-content .rev_slider_wrapper .tp-rightarrow.tparrows.persephone {
    margin-right: 30px; }
  .site-content .rev_slider_wrapper .tp-bullets.ares {
    top: 89% !important; }
  .site-content .rev_slider_wrapper .tp-bullets.ares .tp-bullet {
    background-color: transparent !important;
    border: 1px solid #efefef;
    width: 14px;
    height: 14px; }
  .site-content .rev_slider_wrapper .tp-bullets.ares .tp-bullet.selected {
    top: -2px !important;
    border: 3px solid #fff;
    background-color: #fff !important; }

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

#bg-position-bottom {
  background-position: center bottom !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: 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; }

.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 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: 50px !important;
        font-size: 15px; }
      .site-content .rev_slider_wrapper .tparrows.gyges {
        background-color: transparent !important;
        border: 1px solid #777; }
    .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: 40px !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: var(--main-color); }

.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: var(--main-color); }
  .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 {
  /* Menu Popup */ }
  .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 #searchform input[type="text"] {
    background-color: transparent;
    border: medium none;
    padding: 0 40px 0 0;
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    color: #9e9e9e;
    font-weight: 600;
    height: 80px; }
  .cms-search-wrap .cshero-search-inner #searchform > div::before {
    color: #9e9e9e;
    font-size: 28px;
    right: 0; }
  .cms-search-wrap .cshero-search-inner #searchform #searchsubmit {
    height: 80px;
    width: 40px; }
  .cms-search-wrap.open {
    opacity: 1;
    visibility: visible; }
  .cms-search-wrap.open .cshero-search-inner {
    top: 50%;
    opacity: 1; }

.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: var(--main-color); }
  .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%; }

#fp-nav.right {
  right: 30px; }
  #fp-nav ul li {
    margin: 5px 0; }
  #fp-nav ul li a span {
    display: block;
    height: 5px !important;
    width: 5px !important;
    background-color: #222;
    -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: relative;
    margin: 0 !important; }
  #fp-nav ul li a span:before {
    content: "";
    height: 9px;
    width: 9px;
    position: absolute;
    top: -2px;
    left: -2px;
    border: 2px solid #222;
    -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 */
    -webkit-box-shadow: 0 0 10px #222 inset;
    -moz-box-shadow: 0 0 10px #222 inset;
    -ms-box-shadow: 0 0 10px #222 inset;
    box-shadow: 0 0 10px #222 inset; }
  #fp-nav ul li a span:after {
    content: "";
    height: 13px;
    width: 13px;
    border: 2px solid transparent;
    position: absolute;
    top: -4px;
    left: -4px;
    -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 */ }
  #fp-nav ul li a.active span {
    background-color: #222; }
  #fp-nav ul li a.active span:before {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  #fp-nav ul li a.active span:after {
    border-color: #222; }

#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: var(--main-color); }
  #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 {
  /* Sign In & Sign Up */
  0%, 100% {
    box-shadow: -6px 20px 0 var(--main-color), 13px 20px 0 rgba(250, 183, 2, 0.2), 13px 39px 0 rgba(250, 183, 2, 0.2), -6px 39px 0 rgba(250, 183, 2, 0.2); }

  25% {
    box-shadow: -6px 20px 0 rgba(250, 183, 2, 0.2), 13px 20px 0 var(--main-color), 13px 39px 0 rgba(250, 183, 2, 0.2), -6px 39px 0 rgba(250, 183, 2, 0.2); }

  50% {
    box-shadow: -6px 20px 0 rgba(250, 183, 2, 0.2), 13px 20px 0 rgba(250, 183, 2, 0.2), 13px 39px 0 var(--main-color), -6px 39px 0 rgba(250, 183, 2, 0.2); }

  75% {
    box-shadow: -6px 20px 0 rgba(250, 183, 2, 0.2), 13px 20px 0 rgba(250, 183, 2, 0.2), 13px 39px 0 rgba(250, 183, 2, 0.2), -6px 39px 0 var(--main-color); } }

.cms-popup {
  background-color: rgba(34, 34, 34, 0.99);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 320ms linear 0ms;
  -moz-transition: all 320ms linear 0ms;
  -ms-transition: all 320ms linear 0ms;
  transition: all 320ms linear 0ms;
  /* ==========================================================================
   [End] 3. Primary
========================================================================== */ }
  .cms-popup.open {
    opacity: 1;
    visibility: visible; }
  .cms-popup .cms-modal-close {
    background-color: var(--main-color);
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    height: 18px;
    line-height: 18px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 15px;
    width: 18px;
    z-index: 1;
    -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-popup .cms-modal-dialog {
    max-width: 370px;
    width: 100%;
    position: absolute;
    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 */
    left: 0;
    right: 0;
    margin: auto; }
  .cms-popup .cms-modal-content {
    background-color: #fff;
    padding: 37px 40px 40px;
    -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-popup .cms-modal-content .cms-heading-wrapper {
    padding-bottom: 23px; }
  .cms-popup .cms-modal-content .cms-heading-wrapper .cms-heading-title {
    font-size: 20px; }
  .cms-popup .cms-modal-content .cms-heading-wrapper .cms-heading-line:before, .cms-popup .cms-modal-content .cms-heading-wrapper .cms-heading-line:after {
    background-color: var(--main-color);
    margin-left: 0; }
  .cms-popup .cms-modal-content .cms-modal-body {
    padding: 0; }
  .cms-popup .cms-modal-content .field-group {
    margin-bottom: 21px; }
  .cms-popup .cms-modal-content .field-group label, .cms-popup .cms-modal-content .field-group .forget {
    color: #9b9b9b;
    font-size: 13px;
    font-style: italic;
    font-weight: normal; }
  .cms-popup .cms-modal-content .field-group .forget {
    color: var(--main-color); }
  .cms-popup .cms-modal-content .field-group .forget:hover {
    color: #222; }
  .cms-popup .cms-modal-content:hover .cms-modal-close {
    opacity: 1; }
  .cms-popup .cms-modal-footer {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding-top: 24px; }
  .cms-popup .cms-modal-footer a {
    color: #fff;
    border-bottom: 2px solid #fff; }
  .cms-popup .cms-modal-footer a:hover {
    color: var(--main-color);
    border-color: var(--main-color); }
  .cms-popup .fields-footer .field-group {
    margin-bottom: 0; }

.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.
*/
    .new-item-menu a {
      line-height: 117px;
      color: #222;
      padding: 0 15px; }
      .new-item-menu a:hover {
        color: var(--main-color); }
    .header-fixed .new-item-menu a {
      line-height: 60px;
      color: #222; }
      .header-fixed .new-item-menu a:hover {
        color: var(--main-color); }
    #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;
        padding: 0 16px;
        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: 14px;
          color: #222;
          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;
          font-weight: 700 !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: var(--main-color); }
          .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: var(--main-color); }
        .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 */
      /* Start Mega Menu */ }
      .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: 14px;
          padding: 8px 0;
          font-family: 'Montserrat', sans-serif;
          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: var(--main-color);
          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: var(--main-color); }
        .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: var(--main-color) !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; }
    .cshero-header-navigation .main-navigation {
      /* End Start Mega Menu */
      /* Header Fixed */ }
      .cshero-header-navigation .main-navigation .columns2 > li:nth-of-type(2n+1), .cshero-header-navigation .main-navigation .columns3 > li:nth-child(3n+1), .cshero-header-navigation .main-navigation .columns4 > li:nth-child(4n+1), .cshero-header-navigation .main-navigation .columns5 > li:nth-child(5n+1) {
        clear: left;
        border-right: 0px solid transparent; }
      .cshero-header-navigation .main-navigation .columns5 > li {
        width: 20% !important; }
      .cshero-header-navigation .main-navigation .columns4 > li {
        width: 25% !important; }
      .cshero-header-navigation .main-navigation .columns3 > li {
        width: 33.3344% !important; }
      .cshero-header-navigation .main-navigation .columns2 > li {
        width: 50% !important; }
      .cshero-header-navigation .main-navigation [class*="columns"] {
        padding-top: 30px !important;
        padding-bottom: 30px !important; }
        .cshero-header-navigation .main-navigation [class*="columns"] > li {
          float: left;
          padding: 0; }
        .cshero-header-navigation .main-navigation [class*="columns"] > li ul li {
          padding: 0 25px; }
          .cshero-header-navigation .main-navigation [class*="columns"] > li ul li ul.sub-menu li {
            padding: 0 30px; }
        .cshero-header-navigation .main-navigation [class*="columns"] > li > a {
          width: 100%;
          border-bottom: none; }
          .cshero-header-navigation .main-navigation [class*="columns"] > li > a:after {
            content: "" !important; }
      .cshero-header-navigation .main-navigation .menu-main-menu li.has_full_width {
        position: inherit; }
      .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu {
        left: 0;
        margin: auto;
        right: 0;
        width: 100% !important; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu li a {
          display: block;
          font-size: 13px;
          padding: 6px 0;
          text-align: left;
          color: #7f7f7f; }
          .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu li a:hover {
            color: var(--main-color);
            padding-left: 10px; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu li:before {
          display: none; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu li.current-menu-item > a {
          color: var(--main-color); }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > a {
          padding: 0 25px;
          margin-bottom: 8px;
          margin-top: 6px; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > a, .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > a span {
          color: #222;
          font-weight: 600; }
          .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > a:hover, .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > a span:hover {
            background-color: transparent; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_full_width.sub-menu > li > ul.sub-menu {
          background-color: transparent;
          border-top: none !important; }
      .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_to_right.sub-menu {
        left: auto;
        right: 90px;
        margin: auto; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_to_right.sub-menu .sub-menu {
          background-color: transparent; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_to_right.sub-menu > li > a {
          display: block;
          font-size: 13px;
          padding: 6px 0;
          text-align: left;
          color: #7f7f7f; }
        .cshero-header-navigation .main-navigation .menu-main-menu li:not(.group) > ul.drop_to_right.sub-menu > li > a:hover {
          color: var(--main-color); }
      .cshero-header-navigation .main-navigation li.group > ul.sub-menu {
        display: block;
        float: left;
        left: 0;
        position: relative;
        width: 100%;
        height: inherit; }
      .cshero-header-navigation .main-navigation ul.multicolumn > li {
        border-left: 1px solid #f2f2f2;
        padding-left: 10px; }
        .cshero-header-navigation .main-navigation ul.multicolumn > li.hidden-menu-item > a {
          display: none !important; }
        .cshero-header-navigation .main-navigation ul.multicolumn > li ul.sub-menu ul.sub-menu {
          background-color: #fff !important;
          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 ul.multicolumn > li ul.sub-menu > li:hover > ul.sub-menu {
          opacity: 1; }
        .cshero-header-navigation .main-navigation ul.multicolumn > li > ul.sub-menu {
          height: inherit;
          opacity: 1;
          overflow: visible;
          padding-bottom: 0;
          visibility: visible;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          -ms-box-shadow: none;
          box-shadow: none;
          -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 ul.multicolumn > li > ul.sub-menu > li > a {
          border-bottom: none; }
        .cshero-header-navigation .main-navigation ul.multicolumn > li:hover {
          position: relative;
          z-index: 10; }
        .cshero-header-navigation .main-navigation ul.multicolumn > li.hidden-menu-item > a {
          display: none; }
      .cshero-header-navigation .main-navigation ul.standar-dropdown 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 ul.standar-dropdown li:hover ul.sub-menu {
          opacity: 1; }
    .header-fixed .effect-line .menu-main-menu > li > a .menu-title:before {
      bottom: -9px; } }

.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: var(--main-color); }

.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: var(--main-color); }
  .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: var(--main-color); }
  .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: var(--main-color); }
  .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 30px;
        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: var(--main-color); }
          #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: var(--main-color); }
      #cshero-menu-mobile cite {
        background-color: var(--main-color);
        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: 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 {
  overflow: hidden; }

#sidebar #searchform #s {
  font-family: 'PT Sans', sans-serif; }

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

@media screen and (max-width: 767px) {
    #sidebar .widget {
      overflow: hidden; } }

body {
  overflow-x: hidden;
  font-family: 'Poppins Regular';
  letter-spacing: 0;
  color: #777;
  font-size: 14px;
  line-height: 23px; }

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

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

.wp-caption.alignright img {
  margin-left: 30px; }

.wp-caption.alignleft img {
  margin-right: 30px; }

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

.bg-primary {
  background-color: var(--main-color); }

.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: var(--main-color); }
  a:hover, a:focus {
    color: var(--main-color); }

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: 52px; }

h2 {
  font-size: 42px; }

h3 {
  font-size: 38px; }

h4 {
  font-size: 32px; }

h5 {
  font-size: 24px; }

h6 {
  font-size: 20px; }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }

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

.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: var(--main-color); }

.color-secondary {
  color: #222 !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: var(--main-color); }
  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: var(--main-color); }

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

.woocommerce ins {
  background-color: transparent; }

.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: var(--main-color); }
  dl + h2 + ul li ul {
    padding-left: 35px; }

.wg-title, #reply-title, .comments-title {
  font-size: 25px;
  line-height: 30px;
  color: #222;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 5px;
  font-weight: 700; }

#sidebar .wg-title {
  font-size: 20px;
  color: #565656; }

.widget_categories .title {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif; }
  .widget_categories .wp-title {
    font-size: 20px; }

#sidebar #widget-area > aside, .wpb_widgetised_column #widget-area > aside, #sidebar .slidingbar-widget-col, .wpb_widgetised_column .slidingbar-widget-col {
  margin-bottom: 30px; }
  #sidebar #widget-area > aside:last-child, .wpb_widgetised_column #widget-area > aside:last-child, #sidebar .slidingbar-widget-col:last-child, .wpb_widgetised_column .slidingbar-widget-col:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none; }
  #sidebar #widget-area > aside.widget_search, .wpb_widgetised_column #widget-area > aside.widget_search, #sidebar .slidingbar-widget-col.widget_search, .wpb_widgetised_column .slidingbar-widget-col.widget_search {
    margin-bottom: 18px; }
  #sidebar .widget_products ul li, .wpb_widgetised_column .widget_products ul li {
    margin-bottom: 20px;
    padding: 0; }
  #sidebar .widget_products ul li:last-child, .wpb_widgetised_column .widget_products ul li:last-child {
    border: none;
    margin-bottom: 0; }
  #sidebar .widget_products ul li a, .wpb_widgetised_column .widget_products ul li a {
    font-size: 15px;
    line-height: 24px;
    color: #222;
    font-weight: 600; }
  #sidebar .widget_products ul li a:hover, .wpb_widgetised_column .widget_products ul li a:hover {
    color: var(--main-color); }
  #sidebar .widget_products ul li a img, .wpb_widgetised_column .widget_products ul li a img {
    float: left;
    margin: 0 20px 0px 0;
    max-width: 70px;
    width: 100%; }
  #sidebar .widget_products ul li .amount, .wpb_widgetised_column .widget_products ul li .amount, #sidebar .widget_products ul li ins .amount, .wpb_widgetised_column .widget_products ul li ins .amount {
    font-size: 14px;
    color: #9b9b9b; }
  #sidebar .widget_products ul li del .amount, .wpb_widgetised_column .widget_products ul li del .amount {
    color: #9b9b9b;
    font-size: 14px;
    font-weight: normal; }

.woocommerce-widget {
  /* 
   [Start] 1. Newletter
   +-----------------------------------+
*/ }
  .woocommerce-widget .widget_top_rated_products .wg-title {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li {
    margin-bottom: 10px;
    padding: 23px 18px 23px 95px;
    border: 1px solid #e4e4e4;
    position: relative; }
  @media (min-width: 768px) and (max-width: 880px) {
        .woocommerce-widget .widget_top_rated_products .product_list_widget li {
          padding: 10px;
          position: static; } }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li:last-child {
    margin-bottom: 0; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li:hover {
    box-shadow: 2px 0 0 0 var(--main-color) inset; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li a {
    color: #777; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li a img {
    margin-right: 10px;
    width: 65px;
    background-color: #f9f9f9;
    margin-left: 0;
    box-shadow: none;
    position: absolute;
    top: 23px;
    left: 18px; }
  @media (min-width: 768px) and (max-width: 880px) {
            .woocommerce-widget .widget_top_rated_products .product_list_widget li a img {
              max-width: 100%;
              width: 100%;
              position: static;
              float: none;
              margin-bottom: 15px; } }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li .star-rating {
    float: none;
    margin-left: 0; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li .product-title {
    font-size: 15px;
    color: #565656;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li .amount, .woocommerce-widget .widget_top_rated_products .product_list_widget li ins .amount {
    font-size: 14px;
    color: var(--main-color); }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li ins {
    font-weight: 700; }
  .woocommerce-widget .widget_top_rated_products .product_list_widget li del .amount {
    color: var(--main-color);
    font-size: 14px;
    font-weight: normal; }

.site-footer .widget_newsletterwidget .newsletter-subscription {
  margin: 0; }
  .site-footer .widget_newsletterwidget .tnp-widget {
    margin-top: 12px; }
  .site-footer .widget_newsletterwidget form {
    position: relative; }
  .site-footer .widget_newsletterwidget form .tnp-field-email {
    margin-top: 15px; }
  .site-footer .widget_newsletterwidget form .tnp-field-email label {
    display: none; }
  .site-footer .widget_newsletterwidget form .tnp-field-email .tnp-email {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 1px solid #222 !important;
    background-color: rgba(25, 25, 25, 0.6) !important;
    font-style: italic;
    height: 42px !important;
    font-size: 12px !important;
    color: #474747; }
  .site-footer .widget_newsletterwidget form .tnp-field-button {
    position: absolute;
    right: 0;
    top: 0;
    margin-bottom: 0; }
  .site-footer .widget_newsletterwidget form .tnp-field-button:before {
    content: "\f178";
    color: var(--main-color);
    display: block;
    font-family: FontAwesome;
    font-size: 11px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    width: 42px; }
  .site-footer .widget_newsletterwidget form .tnp-field-button:after {
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    display: block;
    position: absolute;
    right: 16px;
    bottom: 0;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .site-footer .widget_newsletterwidget form .tnp-field-button:hover:after {
    width: 11px; }
  .site-footer .widget_newsletterwidget form .tnp-field-button .tnp-submit {
    height: 42px !important;
    width: 42px !important;
    padding: 0 15px;
    background-color: transparent !important;
    border: none !important;
    font-weight: 700 !important;
    color: #fff;
    position: initial !important;
    text-indent: -9999px;
    position: absolute !important;
    top: 0;
    right: 0; }
  .site-footer .widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
    background-color: var(--main-color); }

.tnp-widget {
  margin-top: 12px;
  width: 90%; }
  .tnp-widget form {
    padding-left: 35px;
    position: relative;
    background-color: var(--main-color);
    overflow: hidden;
    max-width: 455px; }
  .tnp-widget form::before {
    content: "\f0e0";
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: FontAwesome;
    color: #fff;
    font-size: 15px; }
  .tnp-widget form p {
    margin-bottom: 0; }
  .tnp-widget form p input {
    padding: 10px; }
  .tnp-widget form p .tnp-email {
    width: 100%; }
  .tnp-widget form p .tnp-submit {
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    font-size: 15px;
    border: none;
    padding: 11px 0 11px;
    font-weight: 700;
    text-transform: unset;
    text-align: center; }
  @media screen and (max-width: 767px) {
        .tnp-widget form p .tnp-submit {
          padding: 11px 0;
          width: 100px; } }

.wpb_widgetised_column .widget_newsletterwidget {
  text-align: center;
  /* 
   [Start] 2. Search
   +-----------------------------------+
*/ }
  .wpb_widgetised_column .widget_newsletterwidget .newsletter-subscription {
    margin: 0; }
  .wpb_widgetised_column .widget_newsletterwidget form {
    position: relative; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-email {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    max-width: 370px;
    width: 100%;
    margin: 20px 13px 0 13px; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-email label {
    display: none; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-email .tnp-email {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border: 2px solid #eee !important;
    background-color: transparent !important;
    height: 40px !important;
    font-size: 12px !important;
    color: #fff;
    padding-left: 18px; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-button {
    position: static;
    right: 0;
    top: 0;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 20px 13px 0 13px; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-button .tnp-submit {
    height: 50px !important;
    padding: 0 50px;
    background-color: var(--main-color) !important;
    border: none !important;
    color: #fff;
    position: static !important; }
  .wpb_widgetised_column .widget_newsletterwidget form .tnp-field-button .tnp-submit:hover {
    background-color: #bd8b02 !important; }

#searchform {
  position: relative; }
  #searchform .screen-reader-text {
    display: none; }
  #searchform > div:before {
    color: var(--main-color);
    content: "\f002";
    font-family: 'FontAwesome';
    font-size: 14px;
    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: #fff;
    content: "\f002";
    font-family: 'FontAwesome';
    font-size: 14px;
    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;
    background-color: var(--main-color); }
  #sidebar #searchform #s {
    max-width: 690px;
    padding: 4px 45px 4px 15px;
    font-weight: 600 !important; }
  #sidebar #searchform #searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid var(--main-color);
    z-index: 99;
    font-size: 0;
    padding: 0;
    height: 40px;
    color: #fff;
    width: 40px; }

.tagcloud a {
  font-size: 12px !important;
  color: #9b9b9b;
  line-height: 30px;
  padding: 1px 14px 0;
  background-color: #f9f9f9;
  border: 1px solid #eee !important;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  /* 
   [Start] 4. Categories
   +-----------------------------------+
*/ }
  .tagcloud a:hover {
    color: var(--main-color); }

.widget_categories li, .widget_pages li, .widget_meta li, .widget_nav_menu li, .widget_archive li, .widget_recent_entries li, .widget_recent_comments li {
  line-height: 31px;
  font-size: 15px; }
  .widget_categories li a, .widget_pages li a, .widget_meta li a, .widget_nav_menu li a, .widget_archive li a, .widget_recent_entries li a, .widget_recent_comments li a {
    color: #565656; }
  .widget_categories li a:hover, .widget_pages li a:hover, .widget_meta li a:hover, .widget_nav_menu li a:hover, .widget_archive li a:hover, .widget_recent_entries li a:hover, .widget_recent_comments li a:hover {
    color: var(--main-color); }
  .widget_categories li.page_item_has_children, .widget_pages li.page_item_has_children, .widget_meta li.page_item_has_children, .widget_nav_menu li.page_item_has_children, .widget_archive li.page_item_has_children, .widget_recent_entries li.page_item_has_children, .widget_recent_comments li.page_item_has_children {
    padding-left: 10px; }

.widget_nav_menu .menu > li:first-child {
  margin-top: -10px; }
  .widget_nav_menu .menu li {
    font-family: 'Montserrat', sans-serif; }
  @media screen and (max-width: 767px) {
  .widget_nav_menu {
    margin-top: 40px; } }

.widget_categories .cat-item, .vc_wp_custommenu .cat-item, .widget_nav_menu .cat-item, .widget_categories li, .vc_wp_custommenu li, .widget_nav_menu li {
  line-height: 42px;
  font-family: 'PT Sans', sans-serif;
  position: relative; }
  .widget_categories .cat-item a, .vc_wp_custommenu .cat-item a, .widget_nav_menu .cat-item a, .widget_categories li a, .vc_wp_custommenu li a, .widget_nav_menu li a {
    display: inline-block; }
  .widget_categories .cat-item a:hover::after, .vc_wp_custommenu .cat-item a:hover::after, .widget_nav_menu .cat-item a:hover::after, .widget_categories li a:hover::after, .vc_wp_custommenu li a:hover::after, .widget_nav_menu li a:hover::after {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 20px;
    content: "\f105";
    color: var(--main-color);
    font-family: 'FontAwesome'; }
  .widget_categories .cat-item a:hover:before, .vc_wp_custommenu .cat-item a:hover:before, .widget_nav_menu .cat-item a:hover:before, .widget_categories li a:hover:before, .vc_wp_custommenu li a:hover:before, .widget_nav_menu li a:hover:before {
    position: absolute; }

.woocommerce-widget .menu li {
  font-family: 'PT Sans', sans-serif;
  font-size: 15px; }
  .woocommerce-widget .menu li a {
    font-family: 'PT Sans', sans-serif; }

.widget_categories ul li {
  line-height: 30px !important; }
  .widget_categories ul li a {
    font-family: 'PT Sans', sans-serif; }

.widget_product_categories li {
  line-height: 31px; }
  .widget_product_categories li a {
    color: #565656; }
  .widget_product_categories li a + span {
    color: var(--main-color);
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms; }
  .widget_product_categories li a:hover {
    color: var(--main-color); }
  .widget_product_categories li a:hover + span {
    color: var(--main-color); }

.widget_price_filter .wg-title {
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif; }

.widget_cs_social_widget li {
  display: inline-block; }
  .widget_cs_social_widget li a {
    color: #222;
    font-size: 14px;
    padding: 0 9px; }
  .widget_cs_social_widget li a:hover {
    color: var(--main-color); }
  .widget_cs_social_widget li:first-child {
    padding-left: 0; }

#cms-recent-post .wg-title {
  display: none;
  font-family: 'Montserrat', sans-serif; }

.cms-recent-post {
  width: 100% !important; }
  .cms-recent-post .item {
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #e4e4e4; }
  .cms-recent-post .item:last-child {
    margin-bottom: 0; }
  .cms-recent-post .item:hover {
    background-color: #f1f1f1;
    box-shadow: 2px 0 0 0 var(--main-color) inset; }
  .cms-recent-post .cms-recent-media {
    width: 45%;
    float: left; }
  @media (max-width: 767px) {
    .cms-recent-post .cms-recent-media {
      width: 100%;
      float: none; } }
  .cms-recent-post .cms-recent-media a {
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden; }
  .cms-recent-post .cms-recent-details {
    width: 50%;
    float: right; }
  @media (max-width: 767px) {
    .cms-recent-post .cms-recent-details {
      width: 100%;
      float: none; } }
  .cms-recent-post .cms-recent-details .title {
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 5px; }
  .cms-recent-post .cms-recent-details .title a {
    color: #565656; }
  .cms-recent-post .cms-recent-details .title a:hover {
    color: var(--main-color); }
  .cms-recent-post .cms-recent-details .date {
    font-size: 13px;
    line-height: 26px;
    color: #616161;
    font-family: 'Droidserif Italic'; }
  .cms-recent-post .cms-recent-details .entry-content {
    font-size: 11px;
    color: #999; }

.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_archive .screen-reader-text, .widget_categories .screen-reader-text, .widget_meta .screen-reader-text, .widget_nav_menu .screen-reader-text {
  display: 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; }

.widget_product_search .woocommerce-product-search {
  position: relative; }
  .widget_product_search .woocommerce-product-search .screen-reader-text {
    display: none; }
  .widget_product_search .woocommerce-product-search .search-field {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    color: #222;
    border: 1px solid #efefef;
    height: 50px;
    padding-right: 42px; }
  .widget_product_search .woocommerce-product-search input[type="submit"] {
    background-color: transparent;
    border: medium none;
    font-size: 0;
    max-width: 50px;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    z-index: 3; }
  .widget_product_search .woocommerce-product-search input[type="submit"]:hover {
    background-color: transparent !important; }
  .widget_product_search .woocommerce-product-search:before {
    color: var(--main-color);
    content: "\f002";
    font-family: FontAwesome;
    font-size: 14px;
    position: absolute;
    right: 21px;
    top: 13px;
    z-index: 2; }

@media (min-width: 768px) and (max-width: 991px) {
  .cms-recent-post .item .cms-recent-media, .cms-recent-post .item .cms-recent-details {
    width: 100%;
    float: none; } }

@media screen and (max-width: 991px) {
  .cms-recent-post .item .cms-recent-media a {
    width: 100%;
    height: auto;
    display: block;
    text-align: center; }
    .cms-recent-post .item .cms-recent-details .title {
      margin-top: 15px;
      line-height: normal;
      font-family: 'Montserrat', sans-serif; } }

@media (max-width: 360px) {
  .cms-recent-post .item {
    padding-left: 15px;
    padding-right: 15px; }
    .cms-recent-post .item .cms-recent-media, .cms-recent-post .item .cms-recent-details {
      width: 100%;
      float: none; }
    #searchform > div::before {
      right: 5.5%; }
    #searchform #s {
      width: 83%; }
    #searchform #searchsubmit {
      width: 15.2%; } }

@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: var(--main-color); }
    .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-portfolio-simple .cms-carousel-portfolio-wrap {
    min-height: 510px; }
    .cms-carousel-portfolio-simple .cms-carousel-portfolio-wrap .cms-portfolio-content {
      padding: 50px 30px; }

  .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; }
    body.body-border-wrapper .cms-carousel-portfolio-slider .cms-carousel-portfolio-wrap {
      min-height: calc(100vh - 60px);
      min-height: -moz-calc(100vh - 60px);
      min-height: -webkit-calc(100vh - 60px);
      min-height: -ms-calc(100vh - 60px);
      min-height: -o-calc(100vh - 60px); }

  .sg-portfolio-layout6 .sg-portfolio-masonry .single-portfolio-image-item:last-child {
    width: 100%; }

  .sg-portfolio-layout7 .sg-portfolio-masonry .single-portfolio-image-item:nth-child(3), .sg-portfolio-layout7 .sg-portfolio-masonry .single-portfolio-image-item:nth-child(4) {
    width: 50%; }

  .cms-testimonial-layout1 .cms-testimonial-wrapper {
    padding: 0 100px; }
    .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) {
  .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 (min-width: 992px) and (max-width: 1280px) {
  .cms-grid-services .cms-grid-item {
    margin-bottom: 15px;
    min-height: 380px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .cms-cta-wrapper .cms-cta-button .btn-primary-alt {
    margin-top: 10px; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* ==========================================================================
   [Start] Extra small devices 
========================================================================== */
    .text-center-sm {
      text-align: center; }
    .cms-grid-services .cms-grid-item {
      margin-bottom: 15px;
      min-height: 440px; } }

@media screen and (max-width: 767px) {
  .cms-portfolio .cms-portfolio-image img {
    width: 100%; }

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

  .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image {
    height: inherit; }
    .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image .cms-portfolio-cover {
      position: static;
      -webkit-transform: translateZ(0px) translateY(0px) !important;
      -khtml-transform: translateZ(0px) translateY(0px) !important;
      -moz-transform: translateZ(0px) translateY(0px) !important;
      -ms-transform: translateZ(0px) translateY(0px) !important;
      -o-transform: translateZ(0px) translateY(0px) !important;
      transform: translateZ(0px) translateY(0px) !important;
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
      .cms-portfolio.cms-portfolio-parallax .cms-portfolio-image .cms-portfolio-cover img {
        position: static;
        width: 100%;
        min-width: inherit;
        min-height: inherit;
        -webkit-transform: translate(0%);
        -khtml-transform: translate(0%);
        -moz-transform: translate(0%);
        -ms-transform: translate(0%);
        -o-transform: translate(0%);
        transform: translate(0%);
        /* BACKGROUND GRADIENT */
        /* TRANSFORM STYLE */ }
    .cms-portfolio.cms-portfolio-parallax .cms-portfolio-holder {
      padding-top: 50px;
      padding-bottom: 50px; }

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

  .pt-xs-10 {
    padding-top: 10px; }

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

  .text-center-xs {
    text-align: center !important; }

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

  .cms-footer5 {
    position: relative !important;
    z-index: 999; }

  .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; }
    .cms-carousel-portfolio3 .owl-controls .owl-nav {
      top: 100%;
      right: 50%;
      transform: translate(50%, 0%); }

  .cms-cta-wrapper {
    padding-bottom: 40px; }

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

  .single-portfolio .page-title .cms-page-title-inner h1, .single-services .page-title .cms-page-title-inner h1 {
    font-size: 45px !important;
    margin-left: 0 !important; }

  #comments .comment-list .comment-body .comment-inner {
    text-align: center; }
    #comments .comment-list .comment-body .comment-inner .comment-author .avatar {
      float: none;
      margin: auto; }
    #comments .comment-list .comment-body .comment-inner .comment-right {
      padding: 0;
      padding-top: 15px; }
    #comments .comment-list .comment-body .commetn-text {
      padding-left: 0;
      text-align: center; }

  .wpb_gallery_slides.wpb_image_grid .wpb_image_grid_ul .isotope-item {
    width: 100%; } }

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

.post-type-archive-product .page-title {
  padding: 130px 0 !important; }
  .post-type-archive-product .site-content {
    padding-top: 78px !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; }

.products {
  padding-top: 30px !important; }
  .products li.product .woocommerce-loop-product__title {
    font-size: 20px !important;
    color: #777;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; }
  .products li.product .star-rating {
    display: none; }
  .products li.product .price {
    margin-bottom: 13px; }
  .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 .add_to_cart_button, .products li.product .added_to_cart {
    height: 40px;
    background-color: transparent !important;
    border: 1px solid #777 !important;
    line-height: 40px !important;
    padding: 0 20px;
    color: #777 !important; }
  .products li.product .add_to_cart_button:hover, .products li.product .added_to_cart:hover {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important; }
  .products li.product .woocommerce-LoopProduct-link {
    display: inline-block; }
  .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: 15px;
    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; }

#cms-theme.woocommerce .products, #cms-theme.woocommerce-page .products {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.single-product .product {
  position: relative; }
  .single-product .product .onsale {
    position: absolute;
    left: 0 !important; }
  .single-product .related > h2 {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #565656;
    text-transform: capitalize;
    font-weight: normal; }
  .single-product .woocommerce-product-gallery__image {
    border: 1px solid #fff; }
  .single-product .woocommerce-product-gallery__image:hover {
    background-color: #f2f2f2;
    border: 1px solid #efefef; }
  .single-product .woocommerce-tabs .wc-tab > h2 {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #565656;
    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: #323232;
    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: var(--main-color) !important;
    color: #fff;
    border-bottom: 1px solid var(--main-color) !important; }
  .single-product .woocommerce-tabs .tabs li a {
    background-color: transparent;
    color: #323232;
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    padding: 15px !important; }

@media (max-width: 767px) {
      .post-type-archive-product .page-title, .single-product .page-title, .woocommerce-cart .page-title, .woocommerce-checkout .page-title {
        padding: 65px 0 !important; } }
  .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 var(--main-color);
  top: 117px;
  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: var(--main-color); }
  #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: var(--main-color); }
    #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: var(--main-color); }
  #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: var(--main-color);
    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: var(--main-color);
    color: #000;
    background-color: var(--main-color);
    -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 var(--main-color);
    color: #222;
    margin-top: 10px; }
    #cms-theme .site-header .widget_shopping_cart .widget_shopping_cart_content p.buttons .button.checkout:hover {
      background-color: var(--main-color);
      color: #fff; }
  #cms-theme .site-header .header-3 .widget_shopping_cart {
    top: 77px; }
  #cms-theme #cshero-header.header-fixed .widget_shopping_cart {
    top: 60px; }
  #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: var(--main-color);
    color: #fff;
    border-color: var(--main-color); }
  #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 var(--main-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    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;
    background-color: #222;
    border-color: #222; }
  #cms-theme.woocommerce input#submit, #cms-theme.woocommerce-page input#submit {
    background-color: #323232;
    color: #fff;
    border-color: #323232; }
  #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: var(--main-color);
    border-color: var(--main-color);
    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: #323232;
    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 {
    margin-left: -15px;
    margin-right: -15px; }
  #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: 25px; } }
  #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: #777;
      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: #777;
      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: var(--main-color);
      color: #fff;
      border: 1px solid var(--main-color); }
    #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: var(--main-color); }
  #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: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    font-weight: 700;
    right: -15px;
    line-height: 45px;
    margin: 0;
    min-height: 0;
    padding: 0;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    top: -15px;
    font-size: 15px;
    background-color: var(--main-color);
    font-size: 11px;
    width: 45px;
    height: 45px;
    left: inherit;
    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: var(--main-color);
    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: #fcd68d;
    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: var(--main-color); }
  #cms-theme.woocommerce .star-rating span::before, #cms-theme.woocommerce-page .star-rating span::before {
    color: var(--main-color); }
  #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: var(--main-color);
    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: #323232; }
  #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 var(--main-color);
    /* [End] 4. Archive Product */ }
  #cms-theme.woocommerce .woocommerce-message:before, #cms-theme.woocommerce-page .woocommerce-message:before {
    color: var(--main-color); }
  #cms-theme.woocommerce .quantity, #cms-theme.woocommerce-page .quantity {
    position: relative;
    margin-right: 12px;
    width: 76px; }
  #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;
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
  #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: var(--main-color); }
  #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 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 .pr-single-product .cs-product-wrap {
    position: relative;
    margin-bottom: 20px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .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: var(--main-color);
    font-size: 12px;
    width: 50px;
    height: 50px;
    z-index: 1; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery, #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary {
    width: 100%;
    float: none; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary h3.product_title {
    margin-bottom: 13px;
    margin-top: 5px;
    font-size: 30px !important;
    font-weight: 800;
    color: #565656;
    font-family: 'Montserrat', sans-serif; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary .pr-price-rating .woo-price {
    float: none;
    width: 100%; }
    #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary .pr-price-rating .woo-price .price {
      color: ; }
    #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary .pr-price-rating .woo-price .price .amount {
      font-size: 25px !important;
      font-weight: 700; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary .pr-price-rating .woocommerce-product-rating {
    float: none;
    width: 100%; }
    #cms-theme.single-product .pr-single-product .cs-product-wrap .entry-summary .pr-price-rating .woocommerce-product-rating .star-rating {
      margin-left: 0; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .content {
    margin-bottom: 15px;
    padding-bottom: 24px;
    margin-top: 28px;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap form.cart {
    margin-bottom: 20px;
    padding-bottom: 30px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap form.cart .add-whish-list {
    margin-left: 20px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap 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 .pr-single-product .cs-product-wrap .woocommerce-product-gallery {
    position: relative;
    margin-bottom: 40px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
    border-color: var(--main-color); }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
    background-color: var(--main-color); }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery .cshero-product-images-wrap {
    text-align: center; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .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 .pr-single-product .cs-product-wrap .woocommerce-product-gallery .cshero-product-images-wrap .woocommerce-main-image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery .cshero-product-thumbnails {
    padding-top: 20px;
    margin: 0 -10px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .woocommerce-product-gallery .cshero-product-thumbnails a {
    margin: 0 0 20px;
    padding: 0 10px;
    width: 25%;
    float: left;
    clear: none; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .cshero-product-meta .share-label {
    color: #222;
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 13px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .cshero-product-meta a {
    display: inline-block; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .cshero-product-meta a + a {
    margin-left: 10px; }
  #cms-theme.single-product .pr-single-product .cs-product-wrap .cshero-product-meta a i {
    background-color: var(--main-color);
    -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 */
    color: #fff;
    font-size: 15px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    width: 34px; }
    #cms-theme.single-product .pr-single-product .cs-product-wrap .cshero-product-meta a i:hover {
      background-color: #222; }
  #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs {
    margin: 0;
    padding: 0;
    margin-bottom: 5px; }
  #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs:before, #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs:after {
    border: none;
    display: none; }
  #cms-theme.single-product .pr-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 .pr-single-product .woocommerce-tabs .tabs li {
              width: 50%; } }
  #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs li a {
    background-color: transparent;
    color: #323232;
    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 .pr-single-product .woocommerce-tabs .tabs li.active a, #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs li:hover a {
    background-color: var(--main-color);
    color: #fff; }
  #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs li:before, #cms-theme.single-product .pr-single-product .woocommerce-tabs .tabs li:after {
    border: none;
    display: none; }
  #cms-theme.single-product .pr-single-product .cms-related-products-wrapper .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 */
    right: 0;
    top: 0;
    line-height: 45px;
    text-transform: uppercase;
    background-color: var(--main-color);
    font-size: 12px;
    width: 45px;
    height: 45px;
    z-index: 1; }
  #cms-theme.single-product .pr-single-product .cms-related-products-wrapper .products .cshere-woo-item-wrap .cshero-woo-meta {
    padding-top: 17px; }
  #cms-theme.single-product .pr-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 .pr-single-product .panel .list-style-1 ul {
    margin-bottom: 20px; }
  #cms-theme.single-product .pr-single-product .panel ul a {
    color: var(--main-color); }
  #cms-theme.single-product .pr-single-product .panel ul a:hover {
    color: ; }
  #cms-theme.single-product .pr-single-product #tab-reviews #comments > h2 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600; }
  #cms-theme.single-product .pr-single-product #tab-reviews #comments ul, #cms-theme.single-product .pr-single-product #tab-reviews #comments ol {
    padding: 0;
    margin: 0; }
  #cms-theme.single-product .pr-single-product #tab-reviews .comment-text {
    margin: 0;
    border: 1px dashed #dedede !important; }
  #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta .author, #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta time {
    color: #333;
    font-weight: normal; }
    #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta .author:before, #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta time:before {
      content: "\f007";
      font-family: FontAwesome;
      font-size: 14px;
      padding-right: 10px;
      color: #222; }
  #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta .author {
    margin-right: 14px; }
  #cms-theme.single-product .pr-single-product #tab-reviews .commentlist .comment-meta time:before {
    content: "\f073"; }
  #cms-theme.single-product .pr-single-product #tab-reviews #reply-title, #cms-theme.single-product .pr-single-product #tab-reviews .title-rating {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 600; }
  #cms-theme.single-product .pr-single-product #tab-reviews .title-rating {
    margin-top: 25px; }
  #cms-theme.single-product .pr-single-product #tab-reviews textarea {
    height: 210px;
    margin-top: 10px; }
  #cms-theme.single-product .pr-single-product #tab-reviews .stars a:after {
    color: var(--main-color); }
  #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: var(--main-color); }
  #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: #323232;
    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: #222; }
  #cms-theme.woocommerce-checkout {
    /* Woo Widget */ }
  #cms-theme.woocommerce-checkout #customer_details {
    margin-bottom: 32px; }
  #cms-theme.woocommerce-checkout .woocommerce-info {
    border-color: var(--main-color); }
  #cms-theme.woocommerce-checkout .woocommerce-info:before {
    color: var(--main-color); }
  #cms-theme.woocommerce-checkout .amount {
    color: #222; }
  #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: #323232;
    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: var(--main-color);
    -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: #222;
    color: #222; }
  #cms-theme .widget_price_filter .price_slider_wrapper .price_slider_amount button:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff; }
  #cms-theme #sidebar {
    /* Apply All Style */ }
  #cms-theme #sidebar.woocommerce-widget .wg-title {
    font-size: 20px;
    color: #565656;
    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: var(--main-color); }
  #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: var(--main-color); }
  #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: #565656;
    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: var(--main-color); }

@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; } }
	  
.mfp-title { font-size:120%; font-weight:bold; text-align:center; }	  
.mfp-bottom-bar { margin-top:15px !important; }
.mfp-bg { opacity:0.95 !important; }
