/*
    Name: Bernd
    Description: Minimal WordPress Portfolio Theme
    Version: 3.0.0
    Author: Mountain-Themes
    
    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. WordPress Core
     3. Header
     4. Portfolio
     5. Blog
     6. Footer
     7. WooCommerce
     8. Shortcodes
     9. Responsive CSS
*/

/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */


html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  line-height: 25px;
  -webkit-font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #000;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  background: #ffffff;
}


h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: none;
}

p, pre {
  margin: 0 0 28px;
}

/* Image */

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a,
a:active,
a:focus,
a:active {
  text-decoration: none!important;
  color: #000;
  transition: all 0.4s;
}

/* The Loader */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  
  //
  Modernizr no-js fallback
  .no-js & {
    display: none;
  }
}


#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  margin: -55px 0 0 -55px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #000;
  animation: spin 1.7s linear infinite;
  z-index: 11;
  }

  #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #000;
    animation: spin 1.7s linear infinite;
  }
  
  #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #000;
    animation: spin 1.1s linear infinite;
  }


#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 10;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.image-page-loader {
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
}

.loader-icon {
  top: 50%;
  left: 50%;
  right: 0;
  position: absolute;
  margin: -20px 0 0 -20px;
  bottom: 0;
}

::-webkit-input-placeholder {
  color: #8e8e8e;
}

:-moz-placeholder {
  color: #8e8e8e;
  opacity: 1;
}

::-moz-placeholder {
  color: #8e8e8e;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8e8e8e;
}

.error-404 {
  text-align: center;
}



.error-404 .input-group {
  width: 30%;
  margin: 0 auto 80px;
}


.error-404 h1 {
  margin-bottom: 0;
  line-height: 50px;
  padding-top: 70px;
  padding-bottom: 20px;
  font-size: 3.5em;
  font-weight: 500;
}

.error-404 h4 {
  padding-bottom: 20px;
}

#wrapper {
  padding: 70px 0;
}


.bernd-padding-right {
  padding-right: 5%;
}

.bernd-padding-left {
  padding-left: 5%;
}

a,
a:hover {
  color: #000;
}

 @-webkit-keyframes spin
  {
    0%
    {
      -webkit-transform:rotate(0deg);
      transform:rotate(0deg)
    }
    100%
    {
      -webkit-transform:rotate(359deg);
      transform:rotate(359deg)
    }
  } 

  @keyframes fa-spin 
  {
    0%
    {
      -webkit-transform:rotate(0deg);
      transform:rotate(0deg)
    }
    100%
    {
      -webkit-transform:rotate(359deg);
      transform:rotate(359deg)
    }
  }        


/* ================================= */
/* :::::: 2. WordPress Core :::::::: */
/* ================================= */

.wp-video-shortcode {
  width: 100%;
  height: 100%;
}

.alignnone {
  margin: 5px 20px 20px 0;
  max-width: 100%;
  height: auto;
}

.wrapper .alignnone {
  width: 100%;
  height: auto;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  display: none;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.bypostauthor {
  color: #000;
}

.no-results p {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 14px;
}

.logged-in-as {
  font-weight: 300;
  font-size: 12px;
}

.logged-in-as a {
  color: #000000;
}

ul,
ol {
  list-style-position: inside;
}

/* Widgets */

.mt-widget {
  margin-bottom: 50px;
  text-align: left;
}

.mt-widget img {
  max-width: 100%;
  height: auto;
}

.mt-widget select {
  width: 100%;
  text-overflow: ellipsis;
  border: none;
  background-color: #f8f8f8d9;
  padding: 7px;
}

.mt-widget ul,
.footer .mt-widget ul {
  margin-left: 0;
  padding-left: 0;
}


.mt-widget ul li a,
.mt-widget li,
.footer ul li a,
.footer .mt-widget li {
  list-style: none;
  color: #000000;
  line-height: 25px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mt-widget.widget_categories ul ul, .mt-widget.widget_categories ul ul ul, .mt-widget.widget_categories ul ul ul ul, .mt-widget.widget_pages ul ul, .mt-widget.widget_pages ul ul ul, .mt-widget.widget_pages ul ul ul ul {
  margin-left: 20px;
  margin-top: 10px;

}

.mt-widget ul li a:hover, .mt-widget li:hover, .footer .mt-widget li:hover {
    color: #000;
}

.bernd-widget-title {
  padding: 10px 10px 15px 0;
  font-size: 1.2em;
  font-weight: 500;
  border-bottom: 2px solid #000;
  margin-bottom: 25px;
}

.mt-widget.tagcloud a,
.footer .tagcloud a {
  border: 2px solid #000000;
  padding: 5px;
  line-height: 35px;
  color: #000000;
  font-size: 12px!important;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.mt-widget.tagcloud a:hover,
.footer .tagcloud a:hover {
  background: #000000;
  color: #fff;
}


.mt-widget > :last-child {
  margin-bottom: 0;
}

.widget_calendar table {
  margin: 0;
}

.widget_calendar td,
.widget_calendar th {
  line-height: 2.3333;
  text-align: center;
  padding: 0;
}

.widget_calendar caption {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  margin: 0 0 1.6em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.widget_calendar tbody a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  background-color: none;
  color: #fff;
  display: block;
  font-weight: 700;
}

.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
  background-color: none;
  color: #fff;
}

.widget_archive a,
.widget_categories a,
.widget_links a,
.widget_meta a,
.widget_nav_menu a,
.widget_pages a,
.widget_recent_comments a,
.widget_recent_entries a {
  border: 0;
}

.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
  list-style: none;
  margin: 0;
}

.widget_archive li,
.widget_categories li,
.widget_links li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li,
.widget_recent_comments li,
.widget_recent_entries li {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 0.7667em 0;
}

.widget_archive li:first-child,
.widget_categories li:first-child,
.widget_links li:first-child,
.widget_meta li:first-child,
.widget_nav_menu li:first-child,
.widget_pages li:first-child,
.widget_recent_comments li:first-child,
.widget_recent_entries li:first-child {
  border-top: 0;
  padding-top: 0;
}

.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_links li:last-child,
.widget_meta li:last-child,
.widget_nav_menu li:last-child,
.widget_pages li:last-child,
.widget_recent_comments li:last-child,
.widget_recent_entries li:last-child {
  padding-bottom: 0;
}

.widget_categories .children,
.widget_nav_menu .sub-menu,
.widget_pages .children {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  margin: 0.7667em 0 0 0.8em!important;
  padding-top: 0.7667em;
}

.search-widget input[type=search] {
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-right: none;
  color: #000;
  padding-left: 12px;
  font-size: 12px;
  padding-right: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  height: 40px;
}

.search-widget input[type=search]::-webkit-input-placeholder {
  color: #000000;
}

.search-widget input[type=search]:-moz-placeholder {
  color: #000000;
  opacity: 1;
}

.search-widget input[type=search]::-moz-placeholder {
  color: #000000;
  opacity: 1;
}

.search-widget input[type=search]:-ms-input-placeholder {
  color: #000000;
}

.search-widget input[type=search]:focus {
  outline: 0;
  box-shadow: none;
}

.search-widget .input-group, .widget_search .input-group {
  flex-wrap: nowrap;
}

.search-widget button {
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding-right: 11px;
  padding-left: 11px;
  font-size: 14px;
  background: #000;
  height: 40px;
  border-radius: 0;
  color: #ffffff;
  border-left: 2px solid #000;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.search-widget button:hover {
  background: #000;
  }

  .search-widget button i {
      -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  }

.search-widget button:hover i {
  color: #fff;
}


.search-widget button:focus {
  outline: none;
}

.widget_nav_menu a {
  padding-left: 5px;
  color: #000000;
  margin-right: 10px;
}

.widget_calendar table {
  width: 100%;
}

#wp-calendar {
  font-size: 12px;
  font-weight: 300;
}

#wp-calendar > tfoot > tr > td {
  border: none;
}

#wp-calendar caption {
  display: none;
}

table#wp-calendar {
  margin-bottom: 0;
}

#wp-calendar tbody td {
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}

#wp-calendar tbody td:hover {
  border-color: #e2e2e2;
}

#wp-calendar tbody td.pad {
  border: 0;
}

#wp-calendar tbody td#today {
  color: #3d4a6e;
  font-weight: 600;
}

#wp-calendar tfoot td#prev a,
#wp-calendar tfoot td#next a {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  bottom: -9px;
  margin-bottom: 1px;
}

#wp-calendar tfoot td#prev {
  text-align: left;
}

#wp-calendar tfoot td#next {
  text-align: right;
}

#wp-calendar thead {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

#wp-calendar thead th {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  text-align: center;
  padding-bottom: 5px;
}

#wp-calendar tbody td a,
#wp-calendar tfoot td#prev a:hover,
#wp-calendar tfoot td#next a:hover {
  color: #000000;
  font-weight: 600;
}

iframe {
  width: 100%;
}

/** Gallery **/

.gallery .gallery-item {
  float: left;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
  width: auto;
}

.gallery-columns-2 .gallery-item {
  max-width: 48%;
  max-width: -webkit-calc(50% - 14px);
  max-width: calc(50% - 14px);
  width: auto;
}

.gallery-columns-3 .gallery-item {
  max-width: 32%;
  max-width: -webkit-calc(33.3% - 11px);
  max-width: calc(33.3% - 11px);
  width: auto;
}

.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 9px);
  max-width: calc(25% - 9px);
  width: auto;
}

.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 8px);
  max-width: calc(20% - 8px);
  width: auto;
}

.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 7px);
  max-width: calc(16.7% - 7px);
  width: auto;
}

.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 7px);
  max-width: calc(14.28% - 7px);
  width: auto;
}

.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 6px);
  max-width: calc(12.5% - 6px);
  width: auto;
}

.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 6px);
  max-width: calc(11.1% - 6px);
  width: auto;
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}

.gallery .gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery .gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* newsletters widget */

.newsletters-widget button {
  outline: none;
  color: #000000;
  border: none;
  font-size: 12px;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 auto;
  display: block;
  text-align: center;
  border: 1px solid #000;
  margin-top: 20px;
  padding: 7px 20px 7px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.newsletters-widget button:hover {
   color: #ccc;
  border: 1px solid #ccc;
}

.newsletters-widget button i {
  font-size: 12px;
}



.newsletters-widget button i {
  padding-left: 5px;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.newsletters-widget input[type=email] {
  border: 1px solid #000000;
  font-size: 13px;
  color: #000;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-top: 6px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  margin-top: 10px;
}

/* ================================= */
/* ::::::::::: 3. Header ::::::::::: */
/* ================================= */

header {
    height: 70px;
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 999;
}

header.sticky {
  position: fixed;
  height: 98px;
  width: 100%;
  background: #fff;
  margin-top: 0;
  padding-top: 25px;
}

.sticky {
  background: #fff;
}

.icon-mobile {
  display: none;
}

.slicknav_menu, .mobile-menu {
  display: none;
}

header .logo {
    font-size: 17px;
    font-weight: 500;
    padding-top: 13px;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    display: inline-block;
    position:  relative;
    z-index: 9999;
    letter-spacing: 1px;
}

header .logo a {
  color: #000;
  text-decoration: none;
  border: 2px solid #000;
  padding: 6px 15px;
}

header .logo a.logo-image {
  border: none;
  padding: 0;
}

nav {
    float: right;
    height: 50px;
    margin-top: -3px;
    padding-top: 0;
    display: block;
    margin-right: -8px;
}


.icon-mobile {
  display: none;
}

.slicknav_menu {
  display: none;
}

#bernd_menu,
#bernd_menu ul,
#bernd_menu li,
#bernd_menu a {
  border: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#bernd_menu > ul > li.active > ul > li a {
  color: #fff!important;
}

#bernd_menu > ul {
  list-style: inside none;
  padding: 0;
  margin: 0;
}

#bernd_menu > ul > li {
  list-style: inside none;
  float: left;
  display: block;
  padding: 0;
  position: relative;
  margin: 23px 15px 11px 15px;
  padding-bottom: 14px;
}

#bernd_menu > ul > li > a {
  outline: none;
  display: block;
  position: relative;
  margin: 0;
  z-index: 999;
  color: #000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 12px;
}

#bernd_menu > ul > li > a span {
    margin-right: -1px;
    display: inline-block;
}

#bernd_menu > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: 0 auto;
    text-align:  center;
    height: 2px;
    width: 100%;
    border-bottom: 2px solid;
    margin-top: 15px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}
#bernd_menu > ul > li > a:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
#bernd_menu > ul > li.active > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: 0 auto;
    text-align:  center;
    height: 2px;
    width: 100%;
    border-bottom: 2px solid;
    margin-top: 15px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#bernd_menu ul li.has-sub:hover > ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-0%);
  -moz-transform: translateY(-0%);
  -ms-transform: translateY(-0%);
  -o-transform: translateY(-0%);
  transform: translateY(-0%);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

#bernd_menu ul li > ul {
  visibility: hidden;
  padding: 9px 0 9px 0;
  opacity: 0;
  width: auto;
  position: absolute;
  top: 24px;
  background: #000000;
  z-index: 999;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

#bernd_menu ul li > ul {
  width: 200px;
}

#bernd_menu ul li > ul li {
  display: block;
  list-style: inside none;
  padding: 0;
  margin: 0;
  position: relative;
  padding: 9px 20px;
}

#bernd_menu ul li ul ul {
  left: 200px;
  top: 0;
}

#bernd_menu ul li > ul li a {
  outline: none;
  position: relative;
  margin: 0;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 12px;
}

/* ================================= */
/* :::::::: 4. Portfolio ::::::::::: */
/* ================================= */

.single-portfolio .col-md-4.details-right {
  padding-right: 0;
}

.single-portfolio .col-md-8.details-right {
  padding-left: 0;
}

.single-portfolio .col-md-4.details-left {
  padding-left: 0;
}

.single-portfolio .col-md-8.details-left {
  padding-right: 0;
}

.title-project {
  text-align: left;
  font-size: 1.5em;
  margin-bottom: 35px;
}

.title-project:after {
    content: " ";
    border-bottom: 2px solid #000000;
    display: block;
    width: 25px;
}

.gallery-projects {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}
.gallery-projects i {
    font-size: 23px;
    color: #000;
    display: table-cell;
    vertical-align: middle;
}
.gallery-projects img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.gallery-projects .gallery-projects-item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.gallery-projects .gallery-projects-item .item-info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
}
.gallery-projects .gallery-projects-item .item-info span {
    display: inline-block;
    font-weight: 400;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.gallery-projects:hover .gallery-projects-item {
    opacity: 1;
}
.gallery-projects:hover .item-info span {
    opacity: 1;
}

.vp-portfolio.vp-portfolio__loading .vp-portfolio__layout-elements {
  opacity: 1!important;
}

/* single projects */

.single-navigation {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.single-navigation.image-nav {
  margin-top: 70px;
}

.portfolio-single-nav {
  margin-top: 95px;
}

.portfolio-single-nav .single-navigation .next-button, .portfolio-single-nav .single-navigation .prev-button {
  margin-bottom: 50px;
}

.header-cover {
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   max-width: none;
   min-height: 100vh;
   height: 100vh;
   margin-top: -180px;
   margin-bottom: 80px;
}

.cover-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: absolute;
}

.header-cover .title-cover .box-project p {
  font-size: 1.7em;
}

.header-cover .title-cover h4 {
    font-size: 3.5em;
}

.single-project .col-md-9 {
  padding-left: 0;
}

.single-project .col-md-3 {
  padding-right: 0;
  padding-left: 5%;
}

.single-project h4.title-project:after {
    content: " ";
    border: solid 1px #000000;
    display: block;
    width: 25px;
    margin-top: 20px;
}

.single-navigation .next-button {
  text-align: center;
  order: 1;
}

.single-navigation .next-button.classic-nav:after {
  content: "\f178";
  padding-left: 10px;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-size: inherit;
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.single-navigation .next-button.classic-nav:hover:after {
    -webkit-transform: translateX(.25rem);
    -ms-transform: translateX(.25rem);
    transform: translateX(.25rem);
}

.single-navigation .prev-button.classic-nav:before {
  content: "\f177";
  padding-right: 10px;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-size: inherit;
  font-weight: 400;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.single-navigation .prev-button.classic-nav:hover:before {
    -webkit-transform: translateX(-.25rem);
    -ms-transform: translateX(-.25rem);
    transform: translateX(-.25rem);
}

.single-navigation .prev-button {
  text-align: center;
  margin-right: auto;
}

ul.single-navigation li {
  list-style: none;
}


.single-navigation  p {
  font-size: 13px;
  font-weight: 300;
  margin-top: 15px;
  text-align:  center;
}

.nav-img-box span {
   position: relative;
   bottom: -10px;
   z-index: -1;
   display: block;
   margin: 0;
   padding: 0;
   color: #444;
   font-size: 1em;
   text-decoration: none;
   text-align: center;
   -webkit-transition: .3s ease-in-out;
   transition: .3s ease-in-out;
   opacity: 0;
   pointer-events: none;
   overflow: hidden;
}


.single-navigation .nav-img {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  width: 110px;
  height: 110px;
  background-size: cover;
  background-position: center center;
}

.single-navigation .nav-img-box {
  position: relative;
}
.single-navigation .nav-img-box:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.single-navigation .nav-img-box:hover:before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.single-navigation .nav-img-box:hover span {
    opacity: 1;
}

.single-navigation .prev-button a,
.single-navigation .next-button a {
  color: #090808;
  border: none;
  font-size: 1.0em;
  border-radius: 0;
  margin-top: 5px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  z-index: 999;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}


.single-navigation .prev-button a i {
  padding-right: 10px;
  font-weight: 500;
}

.single-navigation .next-button a i {
  padding-left: 10px;
  font-weight: 500;
}

.project-details p {
  font-size: 14px;
}

ul.project-details {
  padding: 0;
}

.project-details li {
  list-style: none;
}

.project-details h4 {
  display: block;
  padding-bottom: 10px;
  font-size: 1.2em;
}

.project-details h5 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.project-details h5 {
  font-size: 15px;
}

.project-details h4:after {
    content: " ";
    border-bottom: 2px solid #000000;
    display: block;
    width: 25px;
    margin-top: 20px;
}

.project-details .share-icons {
  /* display: inline-block; */
  /* vertical-align: middle; */
  padding: 0;
}

.project-details .share-icons span {
  margin-right: -10px;
}

.project-details .share-icons li {
  list-style: none;
  display: inline-block;
  margin-right: 0px;
}

.project-details .share-icons li a {
  color: #000000;
  font-size: 15px;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  background-color: transparent;
}

.project-details .share-icons li:last-child a {
  margin-right: 0;
}



.project-details .share-icons li i {
  color: rgb(33, 31, 31);
}


.nav-portfolio {
  margin-top: 60px!important;
}

.vp-portfolio.vp-portfolio__loading .vp-portfolio__items-wrap, .vp-portfolio.vp-portfolio__loading .vp-portfolio__filter-wrap, .vp-portfolio.vp-portfolio__loading .vp-portfolio__pagination-wrap {
  opacity: 1!important;
}

.gallery-projects {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.col-md-12 .gallery-projects {
  margin-bottom: 50px;
}

.gallery-projects i {
  font-size: 23px;
  color: #000;
  display: table-cell;
  vertical-align: middle;
}

.gallery-projects img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.gallery-projects .gallery-projects-item {
  position: absolute;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}

.gallery-projects .gallery-projects-item .item-info{
  text-align: center;
  position: absolute;
  top:50%;
  left: 50%;
}

.gallery-projects .gallery-projects-item .item-info span{
  display: inline-block;
  font-weight: 400;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
  opacity: 0;
}

.gallery-projects:hover .gallery-projects-item {
  opacity: 1;
}

.gallery-projects:hover .item-info span
{
  opacity: 1;
}

.header-cover .mouse-wrapper {
  display:block;
  z-index:10;
  position: absolute;
  margin-left: 18px;
  z-index: 999;
  bottom: 0;
  right: 0;
  left: 0;
}

.header-cover .mouse {
  margin-left: -20px;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 50%;
  animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
  -o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
}

.header-cover .mouse span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.2em;
  display: block;
  color: #000;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-cover .mouse a {
  color: #000000;
  position: relative;
  top: 20px;
  line-height: 36px;
  text-align: center;
  outline: none;
}

.header-cover .mouse a i {
  font-size: 1.3em;
  font-weight: 300;
}
@keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}
@-webkit-keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}

/* ================================= */
/* ::::::::::: 5. Blog ::::::::::::: */
/* ================================= */

.author-name {
  margin-bottom: 50px;
}

.author-name p {
  font-weight: 500;
  font-size: 1.6em;
  margin-top: 10px;
}

.author-name h4 {
  font-size: 13px;
  text-align: center;
  margin-bottom: -5px;
}

.author-name img {
    display: block;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.single-navigation.classic-nav {
  margin-bottom: -5px;
}

.single-post .format-image .entry-header .image-box {
    height: 750px;
    background-size: cover;
    background-position: center center;
}

/* box post */

.work-box {
    background-position: center center;
    background-size: cover;
    height: 0;
    width: 100%;
    padding-top: 66.64%;
    background-repeat: no-repeat;
}

/* type link */

.entry-header .type-link {
  text-align: center;
  background-size: cover;
  background-position: center center;
}

.entry-header .type-link.img-none {
  background: rgb(0, 0, 0);
}

.entry-header .type-link a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 70px 28px;
  text-decoration: none;
  color: #fff;
  word-break: break-all;
}

.entry-header .type-link a:before {
  content: '\f0c1';
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: #000;
  margin-bottom: 18px;
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 0 auto 10px;
}

/* type quote */

.entry-header .type-quote {
  text-align: center;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.entry-header .type-quote.img-none {
  background: rgb(0, 0, 0);
}

.entry-header .type-quote a {
  text-decoration: none;
  color: #fff;
}

.entry-header .type-quote blockquote:before {
  content: '\f10d';
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #000;
  margin-bottom: 18px;
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 0 auto 10px;
}

.entry-header .type-quote blockquote {
  border: none;
  font-size: 15px;
  padding: 70px 28px;
}

.entry-header .type-quote blockquote p {
  font-style: italic;
  margin-bottom: 5px;
}

.entry-header .type-quote blockquote cite {
  font-size: 13px;
  font-weight: 400;
}
/* type status */

.entry-header .type-status {
  text-align: center;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.entry-header .type-status .twitter-tweet {
  text-align: center;
  margin: 0 auto!important;
}

.entry-header .type-status {
  border: none;
  text-align: center;
  padding: 70px 28px;
}

/* type video and audio */

.type-video .wp-video {
  width: 100%!important;
}

.type-video iframe {
  width: auto;
}

.type-video .parallax {
  height: 450px;
  min-height: 450px;
  margin: 0;
}

.type-audio iframe {
  width: 100%!important;
  height: 450px;
}

.entry-header .type-audio.image-audio {
  text-align: center;
  padding: 25em 0 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
}

.entry-header .type-audio h2 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  color: #fff;
}

/* type chat */

.format-chat .post-info p {
  border-bottom: 1px dashed #ebebeb;
  padding-bottom: 10px;
}

/* type gallery */

.format-gallery ul.gallery-blog {
  text-align: left;
}

.format-gallery ul.gallery-blog {
  padding: 0;
  margin: 0;
}

.format-gallery ul.gallery-blog li {
  list-style: none;
  float: left;
  width: 33.33%;
  height: 25%;
}

.gallery-blog img {
  max-width: 100%;
  width: 100%;
}

.gallery-blog {
  overflow: hidden;
  position: relative;
}

.format-gallery .flexslider ul li div {
  height: 450px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-repeat: no-repeat;
}

.format-gallery .flex-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-bottom: 0;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

.format-gallery .entry-header img.flex-resize {
  opacity: 0;
  visibility: hidden;
  height: 50px;
}

.format-gallery .flex-direction-nav a {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.format-gallery .flex-direction-nav a i {
  font-size: 20px;
  line-height: 40px;
  color: #ffffff;
}

.format-gallery .flexslider:hover .flex-direction-nav .flex-next {
  right: 0;
}

.format-gallery .flexslider:hover .flex-direction-nav .flex-prev {
  left: 0;
}

.format-gallery .gallery-post {
  overflow: hidden;
}

.post {
  margin-bottom: 80px;
  overflow: hidden;
}



@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.single-post .post {
  margin-bottom: 0;
}

.blog-no-border .post {
  border: none;
  margin-bottom: 2.5%;
  padding-bottom: 0;
}

.blog-column-two {
  float: left;
}

.blogContainer .gutter-sizer,
.shopContainer .gutter-sizer {
  width: 3%;
}

.blogContainer .blog-column-one {
  width: 100%;
}

.blogContainer .blog-column-two {
  width: 48.5%;
}

.blogContainer .blog-column-three {
  width: 31.333%;
}

.entry-title a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

h2.entry-title {
  font-size: 1.6em;
  text-align: left;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.blog-minimal h2.entry-title {
  padding-bottom: 0;
  text-align: left;
  padding-top: 0;
  margin-top: 0;
}

.blog-minimal .entry-header {
  display: flex;
}

.blog-minimal .col-md-7 {
  padding-left: 30px;
}

.post-intro img {
  height: auto;
  text-align: left;
  max-width: 100%;
  display: block;
}

.post-button {
  margin-top: 35px;
}

.post-button a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-align:  center;
  font-weight: 400;
  outline: none;
  letter-spacing: 1px;
  background: #000;
  line-height: 20px;
  border: 2px solid #000;
  padding: 11px 20px 11px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-button a:hover {
  background: none;
  color: #ccc;
  border: 2px solid #ccc;
}

.post-button a:hover i {
  -webkit-transform: translateX(.15rem);
      -ms-transform: translateX(.15rem);
          transform: translateX(.15rem);
}

.post-button a i {
  padding-left: 10px;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.load-more a {
  color: #000;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

.load-more a:after {
  content: "\f178";
  padding-left: 10px;
  display: inline-block;
  font-size: inherit;
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.load-more a:hover:after {
    -webkit-transform: translateX(.25rem);
    -ms-transform: translateX(.25rem);
    transform: translateX(.25rem);
}


.load-more {
  margin-top: 55px;
  margin-bottom: 70px;
}

.load-more a.disabled {
  cursor: default;
  opacity: 1;
  color: #c8c8c8;
}

.load-more a.disabled:after {
  display: none;
}

.load-more a.loaded {
  color: #000;
  pointer-events: none;
}

.load-more a.loaded span {
  margin-left: 5px;
}

.load-more a .fa-spin {
  display: none;
  font-size: 1.7em;
  color: #000;
}

.ajax-button.loaded span, .ajax-button.loaded:after {
  display: none;
}

.load-more a.loaded .fa-spin {
  display: table-row;
  animation: fa-spin 1s infinite linear;
}

.load-more span i.fa-spin {
  -webkit-animation: fa-spin 1.2s infinite linear;
  animation: fa-spin 1.2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.load-more a span {
  opacity: 1.0;
  -webkit-transition: opacity .25s;
  -moz-transition: opacity .25s;
  -o-transition: opacity .25s;
  -ms-transition: opacity .25s;
  transition: opacity .25s;
}

.blogContainer .col-md-6 .line {
  border-top: 3px double #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.blogContainer .col-md-6 .post-details {
  padding-top: 15px;
}

.post-details {
  text-align: left;
  padding-top: 10px;
}

.post-details div {
  color: #000000;
  margin-right: 20px;
  display: inline-block;
  font-size: 13px;
}

.post-author .avatar-author {
  margin-right: 10px;

}

.entry-header {
  margin-bottom: 33px;
}

.post-author .avatar-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}


.post-details div i {
  color: #000000;
  padding-right: 5px;
}

.post-details div a {
  text-decoration: none;
  color: #000;
}

.post-info {
  color: #000000;
  margin-top: 20px;
  margin-bottom: 45px;
  text-align: left;
}

.single-post .post-info {
  margin-bottom: 0px;
}

.post-info img {
  max-width: 100%;
  height: auto;
}

.pagination {
  display: inline-block;
  margin-top: 55px;
  margin-bottom: 29px;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-numbers {
  text-align: center;
}

.page-numbers li {
  float: left;
  margin: 5px;
  list-style: none;
}

.post-navigation {
  margin-top: -40px;
  padding-top: 25px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 83px;
}

.pagination a,
.pagination span {
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  width: 33px;
  height: 33px;
  margin: 1px;
  padding-top: 4px;
  color: #000000;
}

.pagination span.current {
  background: #0a0a0a;
  color: #fff;
  font-weight: 400;
}

.post-navigation .prev-button {
  float: left;
  padding-bottom: 30px;
}

.post-navigation .next-button {
  float: right;
  padding-bottom: 30px;
}

.post-navigation .prev-button a,
.post-navigation .next-button a {
  color: #000000;
  border: none;
  font-size: 1.2em;
  border-radius: 0;
  margin-top: 5px;
  display: block;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  z-index: 999;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.post-navigation .next-button a:hover i {
  -webkit-transform: translateX(.15rem);
      -ms-transform: translateX(.15rem);
          transform: translateX(.15rem);
}

.post-navigation .prev-button a:hover i {
  -webkit-transform: translateX(-.15rem);
      -ms-transform: translateX(-.15rem);
          transform: translateX(-.15rem);
}

.post-navigation .prev-button a i {
  padding-right: 10px;
  font-weight: 500;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.post-navigation .next-button a i {
  padding-left: 10px;
  font-weight: 500;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.page-links {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
}

.page-links a {
  border: 2px solid #000!important;
  text-decoration: none;
  font-size: 12px;
  width: 32px;
  height: 30px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 1px;
  font-weight: 400!important;
  color: #000!important;
  background: none!important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.page-links a:hover {
  background: #000!important;
  color: #fff!important;
}

.page-links a,
.page-links > span {
  font-weight: 400;
  width: 34px;
  height: 32px;
  display: inline-block;
  border: 2px solid #000;
  background: #000;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding-top: 2px;
}

.post-password-form input[type='password'] {
  background: transparent;
  border: 1px solid #EDEDED;
  font-size: 12px;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 32px;
  margin-left: 5px;
}

.post-password-form label {
  font-weight: 500;
 
}

.post-password-form input[type='submit'] {
  color: #000;
  outline: none;
  border: 2px solid #000;
  font-size: 10px;
  padding-left: 8px;
  padding-right: 8px;
  letter-spacing: 1px;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.post-password-form input[type='submit']:hover {
  background: #000;
  color: #fff;
}

.footer-single {
  color: #000000;
  width: 100%;
  display: inline-block;
  margin-top: 50px;
}

.footer-single a {
  text-decoration: none;
  color: #000000;
}

.footer-single a[rel=tag] {
  margin-bottom: 23px;
  display: inline-block;
}

.post-categories {
    margin-bottom: 10px;
    float: left;
    text-align: left;
    width: 100%;
}

.post-tags {
  float: left;
  width: 100%;
  text-align: left;
}

#comments h3.comment-reply-title,
#comments h3.comments-title {
  text-align: left;
  font-weight: 500;
  font-size: 1.2em;
  display: block;
  margin-bottom: 50px;
}


#comments h3 a {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  margin-left: 10px;
}

#comments .comment-info {
    margin-bottom: 60px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 60px;
}

#comments .comment-info p {
  margin-bottom: 22px;
}

#comments h3.comment-reply-title {
  margin-bottom: 20px;
 
}

.comment-respond {
   margin-top: 75px;
   margin-bottom: 50px;
}

#comments .form-submit {
  margin-top: 5px;
  display: inline-block;
}

.form-comment {
  margin-bottom: 20px;
}


#comments {
  border-top: 1px solid #f5f5f5;
  padding-top: 35px;
  margin-top: 50px;
}

#comments .comment {
  list-style: none;
}

ol.comment-list,
ul.comments,
li.comment {
  padding: 0;
  margin: 0;
}

.no-comments {
  font-weight: 400;
  margin: 40px 0 0;
  text-align: center;
}

#comments .child-comment {
  padding-left: 7%;
}

.comment .avatar-author img {
  float: left;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.comment .name-author {
  display: inline-block;
  text-align: left;
  font-size: 13px;
}

.comment .name-author h5 {
  font-size: 13px;
}

.comment .name-author a {
  color: #000000;
  text-decoration: none;
  font-size: 1.0em;
}


.comment .date-comment {
  text-align: left;
  font-size: 13px;
  color: #000000;
  padding-left: 10px;
}

.comment .date-comment a {
  color: #000000;
}

.comment .header-comment a {
  color: #000000;
  text-decoration: none;
}

.comment .body-comment {
  text-align: left;
  margin-top: 30px;
  color: #000000;
  margin-left: 80px;
  margin-bottom: 20px;
}

.comment .reply a {
    margin-top: 16px;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 11px;
    text-transform: lowercase;
    letter-spacing: 1px;
    background: #000;
    padding: 2px 12px 2px 12px;
    border: 2px solid #000000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.comment .reply a:hover {
 background: none;
 color: #ccc;
 border: 2px solid #ccc;
}

#comments input[type='text'],
#comments input[type='email'] {
  width: 100%;
  background: #fdfdfd;
  border: 1px solid #f3f3f3;
  height: 50px;
  padding: 5px 20px 5px 20px;
  font-size: 13px;
  margin-bottom: 17px;
  outline: none;
  font-weight: 300;
}

#comments .navigation {
  background: none;
  width: auto;
  text-align: center;
  height: auto;
  position: relative;
  left: 0;
  top: -5px;
}

.comment-navigation .nav-links {
  margin-top: 60px;
  margin-bottom: -50px;
}

#comments .navigation a {
  color: #000000;
  font-size: 13px;
}

#comments textarea {
  width: 100%;
  background: #fdfdfd;
  padding: 20px;
  border: 1px solid #f3f3f3;
  outline: none;
  color: #000000;
  resize: vertical;
  font-size: 13px;
  font-weight: 300;
}

#comments input[type='submit'] {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-align:  center;
  font-weight: 400;
  outline: none;
  background: #000;
  letter-spacing: 1px;
  border: 2px solid #000;
  padding: 9px 20px 9px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#comments input[type='submit']:hover {
  background: none;
  color: #ccc;
  border: 2px solid #ccc;
}

.form-group {
  margin-bottom: 15px;
}

#comments input[type="submit"]:after {
  content: "\f178";
  padding-left: 10px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;

}

#comments input[type="submit"]:hover:after {
  -webkit-transform: translateX(.25rem);
   -ms-transform: translateX(.25rem);
   transform: translateX(.25rem);
}

#comments::-webkit-input-placeholder {
  color: #000000;
}

#comments:-moz-placeholder {
  color: #000000;
  opacity: 1;
}

#comments::-moz-placeholder {
  color: #000000;
  opacity: 1;
}

#comments:-ms-input-placeholder {
  color: #000000;
}

/* minimal style */

.blog-minimal .col-md-6.left-part {
    padding-left: 0;
}
.blog-minimal .col-md-6.right-part {
    padding-right: 0;
}

.blog-minimal .col-md-6.right-part .post-info {
  text-align: left;
}

.blog-minimal .col-md-6.right-part .post-button {
  text-align: left!important;
}

.blog-minimal .entry-header .image-box {
    height: 350px;
    background-size: cover;
    background-position: center center;
}

/* creative style */

.blog-creative .entry-header {
  overflow: hidden;
  position: relative;
}

.blog-creative img {
  height: auto;
  max-width: 100%;
  display: block;
}

.creative-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blog-creative .blog-creative-item {
  height: 100%;
  width: 101%;
  display: table;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog-creative .blog-creative-item .item-info {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.blog-creative .blog-creative-item .item-info span {
  display: inline-block;
  font-weight: 600;
  width: 100%;
  text-transform: uppercase;
  color: #000000;
  font-size: 14px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
}

.blog-creative .blog-creative-item .item-info em {
  font-style: normal;
  font-weight: 300;
  display: inline-block;
  padding: 5px;
  color: black;
  margin-top: 5px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
}

.blog-creative .blog-creative-item .item-info em a {
  color: #000;
  text-decoration: none;
}

.blog-creative:hover .blog-creative-item {
  opacity: 1;
  background: rgba(255, 255, 255, .9);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog-creative:hover .item-info em,
.blog-creative:hover .item-info span {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer-single .share-icons {
  float: left;
  width: 100%;
}

.footer-single ul.share-icons {
  padding: 0;
}

.footer-single .share-icons span {
  margin-right: -10px;
}

.footer-single .share-icons li {
  list-style: none;
  float: left;
}

.footer-single .share-icons li a {
  color: #000000;
  font-size: 14px;
  display: block;
  position: relative;
  background-color: transparent;
  margin-right: 20px;
}

.footer-single .share-icons li i {
  color: rgb(33, 31, 31);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ================================= */
/* :::::::::: 6. Footer :::::::::::: */
/* ================================= */

.footer {
  padding: 75px 0 75px 0;
  color: #ffffff;
  text-align: center;
  background: #1b1b1c;
  overflow: hidden;
}

.footer .widget {
  margin-bottom: 20px;
}

.footer .row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.footer .col-md-flex-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .col-md-flex-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .col-md-flex-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .col-md-flex-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .social-icons li {
  float:left;
  list-style: none;
}

.footer .social-icons ul {
  margin: 0;
  padding: 0;
}

.footer .social-icons li a {
  color: #ffffff;
  font-size: 15px;
  display: block;
  margin-right: 25px;
  position: relative;
  background-color: transparent;
}

.footer .social-icons li:last-child a {
  margin-right: 0;
}

.footer .social-icons a:hover i {
   color: rgb(255, 255, 255);
}


.footer .social-icons li i {
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .social-icons {
  float: left;
}

.footer .social-icons ul {
  margin: 0;
  padding: 0;
}


.footer .copyright {
  font-size: 13px;
  text-align: right;
  float: right;
}

.footer a {
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer a:hover,
.footer a:focus {
  color: #fff;
  text-decoration: none;
}

/* ================================= */
/* :::::::: 7. WooCommerce ::::::::: */
/* ================================= */

.cart-container {
    position: relative;
    float: right;
    margin-left: 25px;
    margin-top: 10px;
    z-index: 9999;
    margin-right: 10px;
}

.icon-cart {
  cursor: pointer;
}

.icon-cart i {
  font-size: 24px;
}

.icon-cart span {
  position: absolute;
  right: -15px;
  top: -6px;
  font-size: 11px;
  line-height: 18px;
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  width: 19px;
  font-weight: 400;
  height: 19px;
  word-wrap: break-word;
  border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.cart-widget {
  visibility: hidden;
  opacity: 0!important;
  min-width: 280px;
  position: absolute;
  top: 33px;
  right: 0;
  color: #fff;
  padding: 20px;
  background: #000000;
  z-index: 9999;
  text-align: right;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.cart-widget .woocommerce-mini-cart__buttons a {
  color: #fff!important;
  font-weight: 400!important;
}


.cart-widget span.woocommerce-Price-amount {
  color: #fff;
}

.cart-widget.widget-visible {
  visibility: visible;
  opacity: 1!important;
  -webkit-transform: translateY(-0%);
  -moz-transform: translateY(-0%);
  -ms-transform: translateY(-0%);
  -o-transform: translateY(-0%);
  transform: translateY(-0%);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

.cart-widget ul.cart_list li,
.cart-widget ul.product_list_widget li {
  padding-top: 0!important;
  padding-left: 0px!important;
  padding-bottom: 15px!important;
  list-style: none;
}

.cart-widget li:after,
.cart-widget li:before {
  content: "";
  display: table;
  clear: both;
}

.cart-widget img {
  width: 75px;
  height: auto;
  float: left!important;
  margin-left: 0!important;
}

.cart-widget strong,
.cart-widget b {
  font-weight: 500;
}

.cart-widget .total strong {
  float: left;
}

.cart-widget a {
  text-decoration: none;
}

.cart-widget ul {
  padding: 0;
  margin: 0;
}

.cart-widget .quantity {
  display: block;
  color: #ffffff!important;
}

.widget .quantity {
  color: #000;
  padding-top: 5px;
  display: block;
}

.cart-widget ul.cart_list li.empty {
  padding: 0!important;
}

.cart-widget .woocommerce-mini-cart__empty-message {
  text-align: center;
  margin: 0;
}

.cart-widget ul.cart_list li a,
.cart-widget ul.product_list_widget li a {
  color: #ffffff!important;
  font-weight: 500;
  text-decoration: none;
  width: auto;
  display: block;
}

.cart-widget a.remove {
  font-size: 16px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: none!important;
}

.cart-widget a.remove:hover {
  background: #fff!important;
  color: #000!important;
}

.cart-widget .woocommerce-mini-cart__total {
  margin-bottom: 10px;
}

.cart-widget .widget_shopping_cart .total,
.cart-widget.widget_shopping_cart .total {
  border-top: none;
  padding: 0 0 3px 0!important;
}

.cart-widget .widget_shopping_cart .total strong,
.cart-widget.widget_shopping_cart .total strong {
  font-weight: 400;
}

.cart-widget .widget_shopping_cart .total span,
.cart-widget.widget_shopping_cart .total span {
  float: right;
}

.cart-widget .buttons a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  outline: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  padding: 0 0 0 0px!important;
  background: none!important;
}

.cart-widget .buttons a.wc-forward {
  float: left;
  line-height: 1;
  position: relative;
  top: 3px;
}

.cart-widget .buttons a.checkout {
  float: right;
}

.cart-widget .buttons {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 13px;
  margin: 0 0 -5px 0;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 75px;
}

.woocommerce input[type='text'],
.woocommerce input[type='email'],
.woocommerce input[type='tel'],
.woocommerce input[type='password'] {
  background: #fdfdfd;
  height: 50px;
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #f3f3f3;
  padding: 15px;
  outline: none;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: 0;
  border-color: #000;
}

.widget .woocommerce-product-search input {
  background: transparent;
  height: 34px;
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #000;
  font-size: 13px;
  padding: 12px;
  outline: none;
}

.widget input[type='submit'] {
  display: none;
}

.woocommerce form .form-row textarea {
  width: 100%;
  background: #fdfdfd;
  font-size: 14px;
  padding: 15px;
  height: 100px!important;
  border: 1px solid #f3f3f3;
  outline: none;
  margin: 0px 0 3px;
  resize: none;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #fbfbfb;
  color: #000;
  border-radius: 0;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  border-color: #f5eded;
}

.woocommerce-info {
  border-color: #000000;
}

.woocommerce-info:before,
.woocommerce-info a {
  color: #000;
}

.woocommerce-info a {
  font-weight: 400;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    outline: none;
    letter-spacing: 1px;
    border-radius: 0;
    background: #000;
    border: 2px solid #000;
    padding: 12px 18px 12px 18px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.woocommerce .cart-widget .buttons a {
  background: transparent!important;
}

.woocommerce .cart-widget .buttons a:hover {
  color: #fff!important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
   color: #000!important;
   background: transparent;
}

.ajax_add_to_cart:before {
    content: "\f07a";
    margin-right: 7px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  padding: 11px 18px 11px 18px;
  background-color: transparent!important;
  color: #000!important;
  pointer-events: none;
}

.cart-widget .woocommerce a.button {
  letter-spacing: 0;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #wrapper a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: none;
  color: #ccc!important;
  border: 2px solid #ccc!important;
}


.woocommerce .shopContainer .product .button {
  margin-top: 0.2em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  float: right;
  font-size: 12px;
}

.price_slider_amount button.button {
  padding: 8px 13px 8px 13px;
  outline: none;
}

.woocommerce .widget_price_filter .price_slider_amount {
  text-align: left;
  font-size: 13px;
  line-height: 2;
}

.select2-container .select2-choice {
  border-radius: 0;
  height: 40px;
  padding: 7px 0 0 15px;
  border-color: #EDEDED;
}

.select2-drop-active,
.select2-drop.select2-drop-above.select2-drop-active,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #EDEDED;
}

.select2-search input {
  margin-top: 4px;
  padding: 0px 20px 0 5px!important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #000;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #f3f3f3;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 5px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #000;
}

.woocommerce .widget_price_filter .price_slider {
  margin-bottom: 22px;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a,
.woocommerce .shopContainer .product h3 {
  font-weight: 500;
}

.widget_shopping_cart .widget_shopping_cart_content .mini_cart_item a img,
.widget ul.product_list_widget li img {
  width: 45px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 75px;
}

.woocommerce .product {
  line-height: 25px;
  margin-bottom: 50px;
}

.woocommerce .shopContainer .product .single-product .col-md-9 {
  margin-top: 30px;
}

.woocommerce .product p.price {
  color: #000!important;
  font-size: 14px!important;
  font-weight: 400;
}

.woocommerce div.product .product_title {
  font-size: 1.5em;
  line-height: 25px;
  margin-bottom: 15px;
}

.woocommerce .product h2,
.woocommerce .product h3 {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 50px;
}

h2.woocommerce-Reviews-title {
  margin-bottom: 30px!important;
}

.woocommerce-order-received h2,
.woocommerce-order-received h3,
.woocommerce .checkout h3,
.woocommerce .product .up-sells h2,
.woocommerce .product .related.products h2,
.woocommerce .cross-sells h2,
.woocommerce .cart_totals h2 {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.woocommerce-order-received header {
  height: 40px;
}

.woocommerce-thankyou-order-received {
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 14px;
}

.woocommerce .order_details li strong {
  font-weight: 400;
  margin-top: 5px;
}

.woocommerce .order_details {
  margin-bottom: 25px;
}

.woocommerce .product label,
.woocommerce .checkout label {
  font-weight: 500!important;
}

.woocommerce div.product form.cart .variations label {
  color: #000;
  font-size: 13px;
  margin-top: 10px;
}

.widget .woocommerce-Price-amount,
.widget .reviewer {
  font-weight: 400;
  color: #000;
  font-size: 13px;
}

.woocommerce .shopContainer .product .price {
  font-size: 14px;
}

.woocommerce .shopContainer .product .price ins {
    background: 0 0;
    font-weight: 500;
    display: inline-block;
}

a.woocommerce-review-link,
.posted_in a,
.woocommerce-message a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 10px;
}

.woocommerce .product .cart {
  margin-top: 25px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border-color: #000;
  border-radius: 0;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding-bottom: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid #000;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0;
  margin-right: 20px;
  margin-left: 0px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  border-bottom: 2px solid rgba(0, 0, 0, .05);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce #reviews .comment-reply-title {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
  margin-bottom: 5px;
}

.woocommerce .star-rating {
  font-size: 12px;
}

.woocommerce .star-rating:before,
.woocommerce .star-rating span,
.woocommerce p.stars a,
.woocommerce .shopContainer .product h3 {
  color: #000;
  margin-bottom: 5px;
}


.woocommerce .product #comments {
  padding-top: 0;
  margin-top: 0;
  border: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border: none;
  padding-top: 0;
  padding-right: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 13px;
  color: #000;
  margin-bottom: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
  font-weight: 500;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: 0;
}

.woocommerce .product input[type='text'],
.woocommerce .product input[type='email'] {
  background: transparent;
  height: 40px;
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #EDEDED;
  font-size: 12px;
  padding: 15px;
  outline: none;
  -webkit-transition: all 0.3s!important;
  -moz-transition: all 0.3s!important;
  transition: all 0.3s!important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  height: 37px;
}

.shop-qty {
	display: -ms-inline-flexbox;
	display: inline-flex;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	height: 40px;
}

.shop-qty .qty {
	width: 60px;
	text-align: center;
	border-left: none;
	border-right: none;
	border: 2px solid #000000;
	border-radius: 0;
	outline: none;
	line-height: 1;
}

.shop-qty .qty::-webkit-inner-spin-button,
.shop-qty .qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

.shop-qty button.minus {
	background: #000;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	transition: all 0.4s;
	width: 35px;
	font-weight: 300;
	outline: none;
	line-height: 1;
	padding: 0;
	font-size: 17px;
	border-right: none;
	color: #fff;
}

.shop-qty button.plus {
	background:#000;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	border-left: none;
	font-size: 17px;
	transition: all 0.4s;
	width: 35px;
	font-weight: 300;
	outline: none;
	line-height: 1;
	padding: 0;
	color: #fff;
}

.shop-qty button.minus:hover {
     background: none;
    color: #ccc!important;
	border-top: 2px solid #ccc!important;
	border-left: 2px solid #ccc!important;
	border-bottom: 2px solid #ccc!important;
}

.shop-qty button.plus:hover {
      background: none;
    color: #ccc!important;
	border-top: 2px solid #ccc!important;
	border-right: 2px solid #ccc!important;
	border-bottom: 2px solid #ccc!important;
 
}

.woocommerce .product textarea {
  width: 100%;
  background: #fdfdfd;
  font-size: 12px;
  padding: 15px;
  height: 100px!important;
  border: 1px solid #f3f3f3;
  outline: none;
  margin: 0px 0 3px;
  resize: none;
  -webkit-transition: all 0.3s!important;
  -moz-transition: all 0.3s!important;
  transition: all 0.3s!important;
}

.widget .star-rating {
  margin-top: 5px;
  margin-bottom: 5px;
}

.widget .widget_shopping_cart_content a {
  line-height: 12px!important;
}

.widget ul.product_list_widget li {
  padding-bottom: 15px;
}

.widget .widget_shopping_cart .total {
  padding-top: 10px;
}

.widget .mini_cart_item a.remove {
  color: #000!important;
  width: 15px!important;
  height: 15px!important;
  padding-top: 1px;
  font-size: 14px;
}

.widget .mini_cart_item a.remove:hover {
  background: #000;
  color: #fff!important;
}

.woocommerce .widget_shopping_cart h1 {
  margin-bottom: 15px;
}

.woocommerce-message {
  border-color: #000;
}

.woocommerce-message:before {
  color: #000;
}

.widget.widget_shopping_cart .total {
  padding: 17px 0 8px 0;
}

.widget .buttons a {
  padding: 12px 15px;
}

.widget-area p.woocommerce-mini-cart__buttons.buttons {
  margin: 0 auto;
  text-align: center;
}

.woocommerce .woocommerce-ordering select {
  outline: none;
  padding: 10px;
  border-radius: 0;
  border-color: #f5f5f5;
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
    float: none;
    text-align: right;
}

.woocommerce span.onsale {
  background-color: #000;
  border-radius: 0;
  font-weight: 400;
  min-width: 5.0em;
  min-height: 1.0em;
  padding: 0;
  line-height: 30px;
  font-size: 13px;
  z-index: 99;
  right: auto!important;
  top: 10px!important;
  left: 10px!important;
  letter-spacing: 1px;
}

.woocommerce .shopContainer .product .onsale {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding-bottom: 20px;
  box-shadow: none;
}

.woocommerce .coupon input[type='text'] {
  width: 110px!important;
  height: 40px;
  padding-left: 12px!important;
  padding-top: 5px!important;
}

.woocommerce .cart_item a.remove {
  color: #000!important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce .cart_item a.remove:hover {
  background: #000;
  color: #fff!important;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 22px 12px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce .product-quantity {
  font-weight: 500;
}

.woocommerce .cart_item .quantity {
  font-weight: 300;
}

.woocommerce .calculated_shipping td {
  text-align: right;
}

.woocommerce table.shop_table .product-remove {
  padding-left: 50px;
}

.woocommerce table.shop_table > thead > tr > th {
  border-bottom: 0;
  padding: 13px 12px;
  font-weight: 400;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tr.order-total strong {
  font-weight: 500;
}

.woocommerce table.shop_table {
  border-radius: 0;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: #f3f3f3;
}

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border-bottom-color: #f3f3f3!important;
}

.woocommerce .widget_rating_filter .star-rating {
  margin-bottom: 0;
  margin-top: -0;
}

nav.woocommerce-pagination {
  float: none;
  height: auto;
  margin: 35px 0;
}

nav.woocommerce-pagination a,
nav.woocommerce-pagination span {
  text-decoration: none;
  width: 33px;
  height: 33px;
  font-size: 14px!important;
  border: none;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

nav.woocommerce-pagination a.page-numbers {
  padding-top: 9px!important;
}

nav.woocommerce-pagination a.next,
nav.woocommerce-pagination a.prev {
  padding-top: 8px!important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: #ffffff;
  color: #000!important;
}

.woocommerce nav.woocommerce-pagination ul li span.current:hover {
  color: #fff;
}

nav.woocommerce-pagination span.current {
  background: #0a0a0a!important;
  color: #fff!important;
  padding-top: 9px!important;
  font-weight: 500!important;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin-right: 3px;
}

.woocommerce-variation-price {
  margin-bottom: 23px;
}

.woo_second_image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woo_second_image img {
  width: 100%;
}

.product-images:hover .woo_second_image {
  opacity: 1;
}

.woo_first_image img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.woo_first_image.woo_single_image:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.product-images {
  overflow: hidden;
  display: block;
  position: relative;
}

.woo_product-title {
  margin-top: 17px;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.woo_product-title a {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.woocommerce article.product {
  list-style: none;
  padding-left: 15px;
  padding-top: 15px;
  border: 1px solid #f3f3f3;
  padding: 10px!important;
}

.woocommerce article.product a.button {
  color: #fff;
  text-decoration: none;
}

.woocommerce article.product a.button.loading {
  padding-right: 18px;
  pointer-events: none;
}

.woocommerce .product mark {
  font-weight: 400;
  background: transparent;
}

.woo_product-details .price {
  color: #000!important;
  display: inline-block;
  font-weight: 400;
}

.woo_add_to_cart_arcvhive {
  margin-top: 10px;
}

@keyframes show-cart {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.woocommerce .woo_product-details-container a.added_to_cart {
  display: none;
}

.woocommerce a.added_to_cart:hover {
  background: #000;
  color: #fff;
}

.woocommerce a.added_to_cart:hover {
  opacity: 0.9;
  text-decoration: none;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  font-weight: 400;
}

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
  padding-right: 28px;
}

.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after {
  top: 12px!important;
  display: none;
}

.woocommerce .shopContainer .star-rating {
  margin: .5em 0 .9em!important;
  font-size: 12px;
  float: right;
}


.single.woocommerce .parallax {
  display: none;
}

.woocommerce .page-title {
  font-size: 20px;
}

.woocommerce-cart .col-md-9,
.woocommerce-checkout .col-md-9 {
  width: 100%;
}

.woocommerce-cart .col-md-3,
.woocommerce-checkout .col-md-3 {
  display: none;
}

.woocommerce-MyAccount-navigation a {
  color: #000;
  font-weight: 400;
}

.woocommerce-MyAccount-navigation li {
  list-style: none;
  margin-bottom: 10px;
}

.woocommerce-MyAccount-content a,
.woocommerce-LostPassword a {
  font-weight: 400;
  color: #000;
}

nav.woocommerce-MyAccount-navigation {
  margin: 0;
  height: auto;
}

.woocommerce table.my_account_orders {
  font-size: 13px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-cart .cart-collaterals .cart_totals table th {
  width: 100%;
}

.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  font-weight: 500;
}

.woocommerce div.product span.price {
  font-size: inherit;
}

.woocommerce .shopContainer .product a img {
  margin: 0;
}

.select2-container--default .select2-selection--single {
    background-color: #fdfdfd;
    border: 1px solid #f3f3f3;
    border-radius: 0;
    padding: 12px;
    height: 50px;
}

.select2-dropdown {
    background-color: #f8f8f8;
    border: 1px solid #f3f3f3;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e9e9e9;
}

.woocommerce .woocommerce-customer-details address {
    font-style: normal;
    margin-bottom: 0;
    border: 1px solid #ddd;
    border-bottom-width: 1px;
    border-right-width: 1px;
    text-align: left;
    width: 100%;
    border-radius: 0;
    padding: 6px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    position: absolute;
    top: 1px;
    right: 5px;
    width: 20px;
}

.shopContainer .gutter-sizer {
  width: 3%;
}

.shopContainer.columns-1 .product {
  width: 100%;
}

.shopContainer.columns-2 .product {
  width: 48.5%;
}

.shopContainer.columns-3 .product {
  width: 31.333%;
}

.shopContainer.columns-4 .product {
  width: 22.7%;
}


/* ================================= */
/* ::::::::: 8. Shortcodes ::::::::: */
/* ================================= */
/* team */

.team img {
    width: 100%;
}
.team .social-icons a {
  font-size: 14px;
}
.team h2 {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 10px!important;
}
.team p {
    text-align: left;
    word-spacing: 1px;
    line-height: 25px;
    margin-bottom: 15px;
}
.team span {
    font-weight: 400;
    font-size: 14px;
    display: block;
    text-align: left;
    margin-bottom: 10px;
}
.team .social-icons li {
    list-style: none;
    float: left;
    margin: -6px 20px 15px 0;
}
.team .social-icons li i {
    text-align: center;
    line-height: 35px;
    list-style: none;
    font-size: 16px;
    border-bottom: none;
    float: left;
}
.team .social-icons {
    position: relative;
    z-index: 999;
}
.team .social-icons ul {
  padding-left: 0;
}
/* skillbar */

.skills {
    padding-top: 35px;
}
.skillbar-title {
    position: absolute;
    top: -17px;
    left: 0;
    font-weight: 400!important;
    color: #000000;
    font-size: 13px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.skillbar-title h5 {
    display: block;
    font-size: 14px;
    line-height: 0;
}
.skill-bar-percent {
    position: absolute;
    right: 0;
    top: -29px;
    color: #000000;
    font-weight: 400!important;
    letter-spacing: 1px;
}
.skillbar-bar {
    width: 0px;
  height: 2px;
}
.skillbar {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
}

.skillbar:last-child {
  margin-bottom: 0;
}

/* experience & hobbies */

.experience-box .icon i,
.hobbies-box .icon i {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    display: block;
    font-size: 32px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-bottom: none;
    color: #000;
}
.experience-box span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
}
.experience-box,
.hobbies-box {
    text-align: center;
}
h3.title-section {
    font-weight: 400;
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 15px;
    text-align: center;
    display: block;
}
h3.title-section span {
    font-weight: 400;
    font-size: 1.0em;
}
h3.title-section:after {
    content: " ";
    border: solid 1px #000000;
    display: block;
    width: 30px;
    margin: 15px auto;
}
.experience-box h4:after {
    content: '';
    height: 10px;
    line-height: 8px;
    display: block;
    width: 17px;
    margin: 15px auto 18px;
    font-size: 14px;
    border-bottom: 2px solid #000;
}
.experience-box h4,
.hobbies-box h4 {
    font-size: 17px;
    padding-top: 0;
    margin-bottom: 5px;
    margin-top: 18px;
    font-weight: 500;
}

.partners {
  text-align: center;
  margin: 0 auto;
}

/* Google map */

#zoom-in,
#zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  margin-left: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/icon-controller.svg");
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#zoom-in:hover,
#zoom-out:hover {
  background-color: #3d4a6e;
}

#zoom-in {
  background-position: 50% 0;
  margin-top: 50px;
  margin-bottom: 1px;
}

#zoom-out {
  background-position: 50% -32px;
}

#google-container .contact-info-box {
  padding-left: 15px;
}
#google-container .contact-info-box ul {
  list-style: none;
  line-height: 25px;
  padding: 0px;
  text-align: left;
  position: relative;
  margin-bottom: 0;
}
#google-container .contact-info-box ul li {
  margin-top: 0px;
  font-weight: 400;
  font-size: 13px;
}
#google-container .contact-info-box ul li i {
  padding-right: 25px;
  margin-bottom: 8px;
  width: 0;
  line-height: 25px;
}
#google-container .contact-info-box ul a {
  color: #000;
}
#google-container .contact-info-box ul a:hover {
  text-decoration: none;
}
#google-container .contact-info-box h3 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}


/* Contact form */

.contact-form input[type='text'],
.contact-form input[type='email'] {
  background: #fdfdfd;
  height: 50px;
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #f3f3f3;
  color: #000;
  font-weight: 300;
  font-size: 13px;
  padding: 5px 15px 5px 25px;
  outline: none;
  -webkit-transition: all 0.3s!important;
  -moz-transition: all 0.3s!important;
  transition: all 0.3s!important;
  z-index: 99!important;
}

.contact-form textarea {
  width: 100%;
  background: #fdfdfd;
  font-size: 13px;
  padding: 25px 15px 5px 25px;
  height: 150px;
  border: 1px solid #f3f3f3;
  outline: none;
  font-weight: 300;
  margin: 0px 0 3px;
  resize: none;
  -webkit-transition: all 0.3s!important;
  -moz-transition: all 0.3s!important;
  transition: all 0.3s!important;
}

.contact-form input[type='submit'] {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-align:  center;
  font-weight: 400;
  outline: none;
  background: #000;
  letter-spacing: 1px;
  border: 2px solid #000;
  padding: 9px 20px 9px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-form input[type="submit"]:hover {
   background: none;
   color: #ccc;
   border: 2px solid #ccc!important;
}

.contact-form {
  background: #FFF;
  width: 100%;
  z-index: 999;
  border-radius: 3px;
}

.contact-form p {
  margin-bottom: 15px;
}

input[type=text].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
textarea.wpcf7-not-valid,
#block-7 input[type=text].wpcf7-not-valid,
#block-7 input[type=tel].wpcf7-not-valid,
#block-15 input[type=tel].wpcf7-not-valid,
#block-15 input[type=text].wpcf7-not-valid {
  border: 1px solid rgba(243, 0, 0, 0.2);
  z-index: 12000;
  position: relative;
}

div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ng,
.wpcf7-mail-sent-ok {
  background: #fff;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0.5em 1em;
}

input[type=text].wpcf7-not-valid {
  z-index: 99;
}

.contact-form .wpcf7-spinner {
  top: 7px;
}

.contact-form span.wpcf7-not-valid-tip {
  font-size: 13px;
}

.contact-form::-webkit-input-placeholder {
  color: #8e8e8e;
}

.contact-form:-moz-placeholder {
  color: #8e8e8e;
  opacity: 1;
}

.contact-form::-moz-placeholder {
  color: #8e8e8e;
  opacity: 1;
}

.contact-form:-ms-input-placeholder {
  color: #8e8e8e;
}

/* ================================= */
/* :::::: 11. Responsive CSS ::::::: */
/* ================================= */

@media only screen and (max-width: 1478px) {
  #bernd_menu ul li ul ul {
    left: -100%!important;
    right: auto;
  }

  #bernd_menu ul li ul {
    right: 0;
  }
}

@media only screen and (max-width: 1036px) {


  .footer .copyright {
    margin-top: 0;
    text-align:  center;
    float: none;
  }

  .footer .social-icons {
  float: none;
  display:  inline-block;
}

  header nav {
    display: none;
  }
  
.slicknav_menu {
    display: block;
}

  .cart-container {
    z-index: 9999;
    right: 110px;
    margin-top: 12px;
  }

  .load-more,
    .pagination {
    margin-bottom: 75px;
  }

  header .logo {
    z-index: 999;
    position: relative;
  }

  footer .col-md-flex-12.col-md-flex-6, footer .col-md-flex-12.col-md-flex-4, footer .col-md-flex-12.col-md-flex-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }


  .portfolio.carousel img {
    height: 400px;
  }

  .project-details.sticky {
    margin-top: 14px!important; 
  }

  .single-portfolio .col-md-4.details-left {
    padding-right: 0;
  }

  .single-portfolio .col-md-8.details-left {
    padding-left: 0;
  }

  .single-portfolio .col-md-8.details-right {
    padding-right: 0;
  }

  .single-portfolio .col-md-4.details-right {
    padding-left: 0;
  }

  .shopContainer.columns-3 .product, .shopContainer.columns-4 .product {
    width: 48.5%;
  }

}

@media only screen and (max-width: 768px) {

  .error-404 .input-group {
    width: 100%;
    padding: 0 40px 0 40px;
  }
  .blog-minimal h2.entry-title {
    margin-top: 35px;
  }
  .team {
    margin-bottom: 100px;
  }
  .blog-minimal .entry-header {
    display: block;
  }

  .blog-minimal .col-md-7 {
    padding-left: 0px;
}

  .blogContainer .blog-column-two,
    .blogContainer .blog-column-three {
    width: 100%;
  }

  .woocommerce .product-remove a {
    margin: 0 auto;
  }

  .cart-widget .quantity {
    float: none!important;
  }

  .woocommerce .quantity {
    text-align: right;
    float: right;
  }

  .woocommerce td.product-quantity {
    padding: 42px 12px 75px 12px!important;
  }

  .woocommerce table.shop_table .product-remove {
    padding-left: 0;
  }

  .portfolioContainer article {
    width: 100%!important;
  }

  .load-more a.loaded .fa-spin {
    display: inline-block;
  }

  #sidebar {
    margin-top: 100px;
  }

  .bernd-padding-left,
    .bernd-padding-right {
    padding: 15px;
  }

  .header-cover .title-cover .box-project {
    padding-bottom: 0px;
  }

  .vp-portfolio__items-style-fade .vp-portfolio__item-meta-title {
    right: -50px!important;
  }

  .vp-portfolio__items-style-fade .vp-portfolio__item:hover .vp-portfolio__item-img img {
    -webkit-transform: none!important;
    transform: none!important;
}

.woocommerce td.product-quantity .shop-qty {
	margin: 0 0 0 auto;
}

.woocommerce .product-remove a {
  margin: 0 auto;
}

.woocommerce table.shop_table .product-remove {
padding-left: 0;
}

.woocommerce table td.product-quantity {
display: flex!important;
}

}

@media only screen and (max-width: 667px) {

  #comments ul {
    padding: 0;
  }


}

@media only screen and (max-width: 540px) {

  .single-navigation .next-button {
      margin-bottom: 70px;
  }

 .experience-box  {
    width: 100%;
  }

  .footer  {
    padding: 80px 40px 80px 40px;
  }

  .woocommerce .col-md-6, .woocommerce .col-md-4, .woocommerce .col-md-3 {
    width: 100%;
  }

  .cart-widget {
    right: -90px;
  }

  .format-gallery ul.gallery-projects li {
    width: 100%;
  }

  .single-navigation .next-button,
    .single-navigation .prev-button,
    .post-navigation .next-button,
    .post-navigation .prev-button {
    float: none;
  }


  .single-navigation .next-button, 
  .single-navigation .prev-button
   {
      text-align: center;
    }
  
  .post-navigation {
    text-align: center;
    padding-bottom: 0;
  }

   .single-navigation {
    text-align: center;
    padding-bottom: 15px!important;
   }

  .footer-single .share-icons {
    width: auto;
    float: none;
    display: block;
    text-align: right;
  }


  .nav-img {
    display: inline-block;
  }

  #comments {
    margin-top: 50px;
  }

   .shopContainer.columns-3 .product, .shopContainer.columns-4 .product {
      width: 100%;
  }
  .shopContainer.columns-3 .product-category, .shopContainer.columns-4 .product-category {
      width: 100%;
      text-align: center;
  }

}

@media only screen and (max-width: 320px) {
  .footer .text-company span {
 font-size: 13px;
  }
  .footer a
  .cart-widget {
    right: -118px;
  }
}