@charset "UTF-8";
/* Scss Document */
/* Scss Document  colors*/
/*$color5: #fff;
$color6: #fff;
$color7: #fff;
$color8: #fff;
$color9: #fff;
$color10: #fff;*/
/* Scss Document grid ovk*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.flex {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around; }

@media (min-width: 250px) {
  .col-4-sm {
    width: 21%;
    margin: 2%; }

  .col-3-sm {
    width: 29.33333%;
    margin: 2%; }

  .col-2-sm {
    width: 46%;
    margin: 2%; }

  .col-1-sm {
    width: 96%;
    margin: 2%; }

  .col-4-sm-nm {
    width: 25%; }

  .col-3-sm-nm {
    width: 33.33333%; }

  .col-1-sm-nm {
    width: 100%; } }
@media (min-width: 576px) {
  .col-4-md {
    width: 21%;
    margin: 2%; }

  .col-3-md {
    width: 29.33333%;
    margin: 2%; }

  .col-2-md {
    width: 46%;
    margin: 2%; }

  .col-1-md {
    width: 96%;
    margin: 2%; }

  .col-4-md-nm {
    width: 25%; }

  .col-3-md-nm {
    width: 33.33333%; }

  .col-2-md-nm {
    width: 50%; }

  .col-1-md-nm {
    width: 100%; } }
@media (min-width: 825px) {
  .col-4-dt {
    width: 21%;
    margin: 2%; }

  .col-3-dt {
    width: 29.33333%;
    margin: 2%; }

  .col-2-dt {
    width: 46%;
    margin: 2%; }

  .col-1-dt {
    width: 96%;
    margin: 2%; }

  .col-4-dt-nm {
    width: 25%; }

  .col-3-dt-nm {
    width: 33.33333%; }

  .col-2-dt-nm {
    width: 50%; }

  .col-1-dt-nm {
    width: 100%; } }
@media (min-width: 1200px) {
  .col-4 {
    width: 21%;
    margin: 2%; }

  .col-3 {
    width: 29.33333%;
    margin: 2%; }

  .col-2 {
    width: 46%;
    margin: 2%; }

  .col-1 {
    width: 96%;
    margin: 2%; }

  .col-4-nm {
    width: 25%; }

  .col-3-nm {
    width: 33.33333%; }

  .col-2-nm {
    width: 50%; }

  .col-1-nm {
    width: 100%; } }
/* Scss Document layout -algemeen*/
* {
  margin: 0;
  padding: 0; }

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  background-color: #a4191c; }

.overlayslider {
  position: absolute;
  /* Of 'fixed' voor een vaste overlay */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Donker met 50% transparantie */
  z-index: 10;
  /* Zorg ervoor dat de overlay boven andere elementen komt */ }

.button-container {
  display: flex;
  justify-content: center;
  /* Zorgt ervoor dat de knoppen in het midden staan */
  gap: 20px;
  /* Dit voegt ruimte toe tussen de knoppen */ }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #a4191c;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: bold;
  border: none !important;
  border-radius: 10px;
  font-style: normal;
  text-transform: none;
  transition: background-color 0.3s ease, transform 0.2s ease; }

.button:hover {
  background-color: #821517;
  transform: scale(1.05); }

.button3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #a4191c;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: bold;
  border: none !important;
  border-radius: 10px;
  font-style: normal;
  text-transform: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap; }

.button3:hover {
  background-color: #821517;
  transform: scale(1.05);
  color: #fff; }

.button2 {
  display: block;
  padding: 10px 20px;
  background-color: #a4191c;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: bold;
  border: none !important;
  border-radius: 10px;
  font-style: normal;
  text-transform: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  text-align: center; }

.button2:hover {
  background-color: #821517;
  transform: scale(1.05);
  color: #fff; }

@media (max-width: 680px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    /* Zorgt ervoor dat de knoppen gecentreerd blijven */ } }
input, select, textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #ccc; }

p {
  padding: 5px 0; }

div:hover, a:hover, li:hover, input:hover, span:hover {
  transition: all 0.5s ease-out; }

img {
  border: 0;
  display: block; }

a, input {
  outline: none;
  text-decoration: none;
  transition: all 0.2s 0s ease-out; }

a {
  color: #000; }

a:hover {
  color: #a4191c; }

.clear {
  clear: both;
  height: 0;
  overflow: hidden; }

.centering {
  margin: 0 auto;
  max-width: 1200px; }

html {
  scroll-behavior: smooth; }

h1, .custom-h1 {
  color: #a4191c;
  display: block;
  font-size: 44px;
  margin-bottom: 15px;
  line-height: 64px;
  font-family: 'Montserrat', sans-serif; }

h2, .custom-h2 {
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 700;
  line-height: 30px;
  color: #a4191c;
  font-family: 'Montserrat', sans-serif; }

h3, .custom-h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px; }

.dividergrey {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIzMXB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2NjY2NjYyI+PHBhdGggZD0iTTEyODAgODZjLTE5LjktMTcuMjEtNDAuMDgtMzkuNjktNzkuODktMzkuNjktNTcuNDkgMC01Ni45MyA0Ni41OS0xMTUgNDYuNTktNTMuNjEgMC01OS43Ni0zOS42Mi0xMTUuNi0zOS42MkM5MjMuNyA1My4yNyA5MjQuMjYgODcgODUzLjg5IDg3Yy04OS4zNSAwLTc4Ljc0LTg3LTE4OC4yLTg3QzU1NCAwIDU0My45NSAxMjEuOCA0MjMuMzIgMTIxLjhjLTEwMC41MiAwLTExNy44NC01NC44OC0xOTEuNTYtNTQuODgtNzcuMDYgMC0xMDAgNDguNTctMTUxLjc1IDQ4LjU3LTQwIDAtNjAtMTIuMjEtODAtMjkuNTF2NTRIMTI4MHoiLz48L2c+PC9zdmc+");
  background-size: 100% 31px;
  bottom: 0;
  height: 31px;
  z-index: 1;
  transform: scale(1, 1);
  z-index: 100;
  width: 100%;
  position: absolute; }

body {
  height: 2000px;
  /* Zodat je kunt scrollen */ }

.car-container {
  position: fixed;
  bottom: 146px;
  left: 0;
  width: 100%;
  z-index: 999999; }

.car {
  width: 271px;
  height: 147px;
  background-image: url(../images/graaf.png);
  background-size: cover;
  position: absolute;
  top: 0;
  transition: transform 0.2s ease, left 0.2s linear; }

@media (max-width: 680px) {
  .car-container {
    bottom: 107px; }

  .car {
    width: 185px;
    height: 110px; } }
.mx_buttons {
  display: inline-block;
  position: relative; }

.footer-copyright {
  float: left;
  color: #cccccc;
  font-size: 10px;
  text-align: center;
  width: 100%;
  padding-top: 20px; }

.footer-copyright a {
  color: #cccccc;
  text-decoration: none; }

.footer-copyright a:hover {
  color: #ff6600;
  text-decoration: underline; }

.label {
  width: 65px;
  height: 67px;
  position: absolute;
  top: 0;
  left: 10px;
  background-image: url(../images/label.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -15px;
  padding: 15px;
  z-index: 12;
  display: none; }

.label2 {
  width: 65px;
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 10px;
  background-image: url(../images/label.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -15px;
  padding: 15px;
  z-index: 12;
  display: none; }

/* maatwerkfoto */
.foto ul {
  margin-top: 60px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-left: 0 !important; }

.foto ul li {
  list-style: none;
  width: 48%;
  position: relative;
  margin-bottom: 20px; }

.foto ul li img {
  width: 100%;
  height: auto;
  border-radius: 20px; }

/*bloklogo*/
.bloklogo-wrapper {
  width: 100%;
  padding: 40px 5% 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around; }

.bloklogo {
  position: relative; }

.bloklogo img {
  width: auto;
  max-height: 60px;
  margin: 10px auto; }

.content3 {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 20px 3%; }

.content3 h2 {
  color: #fff; }

.content3 li {
  list-style: none;
  padding: 5px 0px;
  padding-left: 1.6em;
  text-indent: -2.1em; }

.content3 li:before {
  content: "\0025A0";
  color: #487e9c;
  padding-right: 2%; }

.darklayer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5; }

#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: url(../images/top.png) no-repeat #666;
  border-radius: 8px;
  background-size: 50px;
  display: none; }

/* Scss Document content1-1 2kolom1 media*/
.centering-wit-content-2kolom1 {
  width: 100%;
  padding: 0 5%;
  padding-bottom: 80px;
  padding-top: 80px;
  float: left;
  position: relative;
  background-color: #ccc; }

.content-2kolom1-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around; }

.content-2kolom1 {
  float: left;
  width: 60%;
  padding: 0 5% 0 0;
  position: relative; }

.content-2kolom1 td:first-child {
  width: 10%;
  height: 30px; }

.content-2kolom1 ul {
  margin-left: 35px;
  margin-top: 15px;
  margin-bottom: 15px; }

.content-2kolom1:last-child {
  width: 40%;
  padding: 0 0 0 5%;
  border-left: 1px solid #f7f7f7; }

.content-2kolom1 h1 {
  color: #a4191c;
  display: block; }

/*.content-2kolom1 h1:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}*/
.content-2kolom1 h2 {
  color: #000;
  display: block; }

/*.content-2kolom1 h2:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}*/
.content-2kolom1 h3 {
  color: #000;
  display: block; }

/*.content-2kolom1 h3:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}*/
@media (max-width: 768px) {
  .centering-wit-content-2kolom1 {
    padding-top: 40px; }

  .content-2kolom1 {
    width: 100%; }

  .content-2kolom1:last-child {
    width: 100%;
    padding: 40px 0;
    border-left: 0px solid #f7f7f7; } }
@media (max-width: 520px) {
  .centering-wit-content-2kolom1 {
    padding-bottom: 40px;
    padding-top: 40px; }

  .content-2kolom1 {
    width: 100%; }

  .content-2kolom1:last-child {
    width: 100%;
    padding: 0 5% 0 0; }

  .content-2kolom1 h1 {
    font-size: 1.5rem;
    line-height: 38px; } }
/* Scss Document  content1w-1 content-wide media*/
.centering-wit-content-breed1 {
  width: 100%;
  padding: 0 5%;
  background-color: #ccc;
  padding-bottom: 80px;
  padding-top: 60px;
  float: left;
  position: relative; }

.content-breed1-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around; }

.content-breed1 {
  float: left;
  width: 100%;
  padding: 0; }

.content-breed1 ul ul {
  margin-left: 35px; }

.content-breed1 h1 {
  font-size: 2rem;
  padding-bottom: 20px;
  line-height: 30px;
  display: table;
  text-transform: uppercase;
  color: #000; }

.content-breed1 h2 {
  color: #000;
  display: block; }

/*.content-breed1 h2:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}*/
.content-breed1 h3 {
  color: #000;
  display: block; }

/*.content-breed1 h3:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}*/
@media (max-width: 768px) {
  .content-breed1 h1 {
    margin: 0 auto; }

  .centering-wit-content-breed1 {
    padding-top: 45px;
    float: left; } }
@media (max-width: 520px) {
  .content-breed1 h1 {
    margin: 0 auto; }

  .centering-wit-content-breed1 {
    padding-top: 45px;
    float: left; } }
/* Scss Document  openingstijden1-2 salon*/
#footer-wrapper {
  background-color: #a4191c;
  position: relative;
  padding: 65px 0 0; }

#footer-wrapper ul {
  margin-left: 5%; }

#footer-wrapper img {
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  height: auto;
  max-width: 100%; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative; }

.widget-column-1 {
  width: 28%;
  float: left;
  margin: 0 0 4% 0;
  color: #ccc; }

.widget-column-2 {
  width: 36%;
  float: left;
  margin: 0 4% 4% 4%;
  padding: 0 5%;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
  color: #ccc; }

.widget-column-3 {
  width: 28%;
  float: left;
  margin: 0 0 4% 0;
  color: #ccc; }

.cols-3 h5, .cols-3 .custom-h5 {
  color: #ffffff;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 35px; }

.social-icons {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  /* Ruimte tussen de iconen */ }

.cols-3 ul li img {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(33deg) brightness(103%) contrast(101%);
  width: 50px;
  height: 50px; }

.cols-3 p {
  margin-bottom: 7px; }

.cols-3 a {
  color: #ccc; }

.phone-no {
  margin-top: 35px;
  line-height: 22px; }

.cols-3 .phone-no p {
  margin-bottom: 0; }

.cols-3 ul li a {
  color: #ccc; }

.cols-3 ul li a:hover {
  color: #fff; }

.phone-no span {
  width: 30%;
  display: inline-block; }

.copyright-wrapper {
  background-color: #fff;
  position: relative;
  padding: 15px 0; }

.copyright-wrapper a {
  color: #000; }

.copyright-txt {
  color: #000;
  float: left; }

.design-by {
  color: #000;
  float: right; }

@media screen and (max-width: 1169px) and (min-width: 768px) {
  .container {
    width: auto;
    padding: 0 20px; } }
@media (max-width: 768px) {
  .container {
    width: auto;
    padding: 0 20px; }

  .widget-column-1, .widget-column-2, .widget-column-3 {
    width: 44%;
    float: none;
    padding: 0;
    clear: both;
    display: block;
    border: none;
    margin: 5% auto; }

  .widget-column-2 {
    width: 280px;
    margin: 2% auto;
    color: #ccc; }

  .copyright-txt, .design-by {
    text-align: center;
    float: none; }

  #footer-wrapper img {
    margin: 0 auto; } }
@media (max-width: 568px) {
  #footer-wrapper {
    padding: 20px 0 0; }

  .widget-column-1 {
    width: 96%;
    margin: 2% auto 40px;
    color: #ccc; }

  .widget-column-2 {
    width: 96%;
    margin: 2% auto 40px;
    color: #ccc; }

  .widget-column-3 {
    width: 96%;
    margin: 2% auto 60px; } }
/* Scss Document homepage1-2 salon*/
.centering-wit-blok1 {
  width: 100%;
  padding: 0 5%;
  padding-bottom: 60px;
  padding-top: 60px;
  float: left;
  position: relative;
  background-color: #ccc; }

.blok1-column-img {
  left: 100px;
  width: 150%;
  max-width: 425px;
  height: auto;
  padding: 10%; }

.blok1-column img {
  width: 100%;
  height: auto; }

.blok1-column iframe {
  width: 150%;
  max-width: 370px;
  height: 250px; }

.blok1-column.left {
  width: 100%; }

.blok1-column.right {
  width: 0%; }

.blok1-column {
  box-sizing: border-box;
  float: left;
  /*margin-bottom : 30px;*/
  padding-left: 2%;
  padding-right: 2%;
  width: 50%;
  min-height: 1px; }

.blok1-column span {
  color: #fff; }

.blok1-column h1, .blok1-column .custom-h1 {
  color: #a4191c;
  display: block;
  font-size: 44px;
  margin-bottom: 15px;
  line-height: 64px; }

.blok1-columns-row {
  float: left; }

.blok1-columns-row:after {
  clear: both;
  content: "";
  display: block; }

.blok1-column .knop2 a {
  padding: 0 15px;
  height: 40px;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  text-transform: uppercase;
  border: #fff solid 1px;
  background-color: transparent;
  color: #fff;
  display: block;
  text-align: center;
  margin: 15px auto 0;
  float: left;
  width: 100%;
  max-width: 250px; }

.blok1-column .knop2 a:hover {
  background-color: #fff;
  color: #ffff;
  border-color: #fff; }

.blok1-column ul,
.blok1-column ol {
  padding-left: 20px;
  /* Inspringing voor de lijst */
  margin: 10px 0; }

.blok1-column li {
  margin-bottom: 5px; }

.blok1-column ul {
  list-style-type: disc;
  /* Bolletjes voor ongeordende lijst */ }

.blok1-column ol {
  list-style-type: decimal;
  /* Genummerde lijst */ }

/* Specifieke stijlen voor .left en .right indien nodig */
.blok1-column.left ul,
.blok1-column.left ol,
.blok1-column.right ul,
.blok1-column.right ol {
  padding-left: 25px;
  /* Iets meer inspringing voor deze kolommen */ }

@media screen and (max-width: 1169px) and (min-width: 768px) {
  .blok1-column.right {
    width: 100%; }

  .blok1-column {
    margin-left: 0%;
    width: 100%;
    margin-bottom: -3px; } }
@media (max-width: 767px) {
  .blok1-column.left {
    width: 100%; }

  .blok1-column.right {
    width: 100%; }

  .blok1-column {
    width: 100%; }

  .blok1-column iframe {
    max-width: 415px; } }
@media (max-width: 500px) {
  .blok1-column h1 {
    font-size: 1.5rem;
    line-height: 38px; }

  .blok1-column iframe {
    max-width: 250px; } }
/* Scss Document  homepage2-1 media*/
.centering-grijs-blok2 {
  width: 100%;
  padding: 0 5%;
  background-color: #ffffff;
  padding-bottom: 60px;
  padding-top: 60px;
  float: left;
  position: relative; }

.container-blok2 {
  background-color: #fff;
  background-image: url();
  padding-bottom: 60px;
  padding-top: 100px;
  box-sizing: border-box; }

.blok2-column {
  width: 31%;
  float: left;
  margin: 0 3% 2.9% 0;
  position: relative;
  padding: 0;
  border: solid 1px #fff;
  background-color: #2e2f2e;
  -webkit-border-top-right-radius: 500px;
  -webkit-border-bottom-right-radius: 200px;
  -webkit-border-bottom-left-radius: 400px;
  -moz-border-radius-topright: 500px;
  -moz-border-radius-bottomright: 200px;
  -moz-border-radius-bottomleft: 400px;
  border-top-right-radius: 500px;
  border-bottom-right-radius: 200px;
  border-bottom-left-radius: 400px;
  border-top-left-radius: 68px; }

.blok2-column:last-child {
  margin-right: 0 !important; }

.blok2-column a {
  color: #fff; }

.blok2-column img {
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  border-radius: 20px;
  border-top-left-radius: 27px; }

.blok2-column:hover img {
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  opacity: 0.8;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.blok2-column img {
  vertical-align: middle;
  opacity: 0.6; }

.blok2-service-column-image {
  display: block;
  /*margin: 2%;*/ }

.blok2-content {
  position: absolute;
  top: 0;
  padding: 16% 11.5%;
  text-align: center;
  left: 0;
  right: 0; }

.blok2-content h2, .blok2-content .custom-h2 {
  font-weight: bold !important;
  color: #fff !important;
  display: block;
  text-align: center;
  font-size: 23px !important;
  margin-bottom: 015px !important;
  margin-top: 11px !important;
  font-weight: 700;
  line-height: 30px !important;
  border-bottom: none; }

.blok2-column span {
  color: #fff; }

.centering-grijs-blok2 .centering h2, .centering-grijs-blok2 .custom-h2 {
  color: #a4191c;
  display: block;
  text-align: center;
  font-size: 38px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  display: table;
  padding-bottom: 15px;
  margin: 0 auto 60px auto; }

.blok2-columns-row:after {
  clear: both;
  content: "";
  display: block; }

.blok2-column .knop2 a {
  padding: 0 15px;
  height: 40px;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  text-transform: uppercase;
  border: #fff solid 1px;
  background-color: transparent;
  color: #fff;
  display: block;
  text-align: center;
  margin: 15px auto 0;
  float: left;
  width: 100%;
  max-width: 165px; }

.blok2-column .knop2 a:hover {
  background-color: #fff;
  color: #ffff;
  border-color: #fff; }

@media screen and (max-width: 1169px) and (min-width: 768px) {
  .centering-grijs-blok2 .centering h2, .centering-grijs-blok2 .centering .custom-h2 {
    font-size: 30px;
    margin: 0 auto 7px auto; } }
@media (max-width: 960px) {
  .blok2-column {
    width: 48%; }

  .blok2-column:nth-child(2n) {
    margin-right: 0; }

  .blok2-column:last-child {
    width: 99.4%;
    height: 200px; }

  .blok2-content {
    padding: 6% 11.5%; }

  .centering-grijs-blok2 .centering h2, .centering-grijs-blok2 .centering .custom-h2 {
    font-size: 22px;
    margin: 8px auto 25px auto; } }
@media (max-width: 767px) {
  .blok2-content {
    padding: 23% 11.5%; }

  .blok2-content h2, .blok2-content .custom-h2 {
    margin: 0 auto !important; }

  .blok2-column {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 40px auto !important; }

  .blok2-column:last-child {
    margin-right: auto !important;
    width: 100%;
    height: auto; } }
/*
@media (max-width: 568px) {

	
}*/
/* Scss Document  pricing1-1 salon*/
@media (min-width: 768px) and (max-width: 3600px) {
  .referenties1-content {
    max-width: 260px; } }
.centering-grijs-pricing1 {
  background-color: #ffffff;
  background-image: url("../images/images_salon/pricing-table.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
  font-size: 13px;
  float: left;
  width: 100%; }

.centering-grijs-pricing1 .container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative; }

/*.fade-up {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
	animation-fill-mode: both;
    visibility: visible !important;
	animation-duration: 1s;
}
*/
.our-pricing-table {
  position: relative; }

h2.section_title {
  font-family: 'Roboto', sans-serif;
  color: #343434; }

.our-pricing-table h2.section_title {
  text-align: left;
  border: none;
  display: inherit; }

.pricing-table {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'Roboto';
  border-bottom: dashed 1px #c9c9c9 !important; }

.pricing-table-content {
  width: 50%;
  border-radius: 10px;
  padding: 25px;
  background-color: #ffffff; }

@media (max-width: 600px) {
  .pricing-table-content {
    width: 100%; }

  .centering-grijs-pricing1 {
    background-position: 61% 78%; } }
/* Scss Document  openingstijden1-2 salon*/
.centering-openingstijden1 {
  background-image: url("../images/slider1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  font-family: 'Arimo', sans-serif;
  color: #78797c;
  float: left;
  width: 100%;
  padding: 125px 0; }

.centering-openingstijden1 .container {
  width: 100%;
  max-width: 1160px;
  margin: 0px auto;
  position: relative; }

#some-facts {
  width: auto;
  margin: 0;
  visibility: visible !important; }

#some-facts .everydaytime {
  width: 12%;
  text-align: center;
  float: left;
  margin: 0 2.6% 0 0;
  padding: 0;
  font-family: "Roboto",sans-serif; }

#some-facts .everydaytime:last-child {
  margin: 0 0 0 0; }

#some-facts .everydaytime .everydays {
  width: 100%;
  border-radius: 100%;
  background-color: #fff;
  padding: 43% 0;
  margin: 0 0 20% 0;
  font-size: 26px;
  font-weight: bold;
  color: #5b5a5a; }

#some-facts .everydaytime .everytime {
  font-size: 18px; }

@media screen and (max-width: 1169px) and (min-width: 768px) {
  #some-facts .everydaytime {
    width: 13.8%;
    margin: 0 4px 0 0; }

  #some-facts .everydaytime .everydays {
    padding: 38% 0; } }
@media (max-width: 768px) {
  #some-facts .everydaytime {
    float: none;
    margin: 0 auto 10% auto !important;
    width: 50%; } }
/* Scss Document  openingstijden1-2 salon*/
.centering-wit-fotogalerij1 {
  width: 100%;
  padding-bottom: 80px;
  padding-top: 80px;
  float: left;
  position: relative;
  display: none; }

.container-gallery {
  width: 100%; }

/* Scss Document  pricing1-1 salon*/
.centering-grijs-referenties1 {
  background-color: #f7f7f7;
  width: 100%;
  float: left; }

.centering-grijs-referenties1 .container {
  width: 100%;
  max-width: 1160px;
  margin: 60px auto;
  position: relative; }

h2.section_title {
  font-size: 38px; }

h2.section_title {
  font-weight: 700;
  border-bottom: solid 2px #fff;
  text-align: center;
  display: table;
  padding-bottom: 15px;
  margin: 0 auto 60px auto; }

.client-say-last {
  margin-right: 0; }

.client-say {
  float: left;
  width: 39%;
  padding: 3% 3%;
  margin: 0 5.5% 0 4.7%;
  border: solid 3px #fff;
  position: relative;
  z-index: 1;
  font: normal 12px/20px 'Arimo';
  color: #626161; }

.say_thumb {
  background-color: #ffffff; }

.say_thumb {
  width: 23%;
  background: #fff;
  padding: 4%;
  float: left;
  box-shadow: 0 1px 10px 0px #ECEBEB;
  text-align: center;
  margin-right: 30px;
  position: absolute;
  left: -11.7%;
  z-index: 99; }

.tm_description {
  width: 74%;
  float: right;
  padding: 0; }

@media (max-width: 568px) {
  .client-say {
    float: none;
    height: 176px;
    width: 90%;
    margin: 0 auto 37px; }

  .say_thumb {
    left: 15px;
    top: 7px; }

  .tm_description {
    width: 64%; } }
/* Scss Document nieuws1-1b block media*/
.centering-wit-nieuws1 {
  width: 100%;
  background-color: #fff;
  padding-bottom: 80px;
  padding-top: 80px;
  float: left;
  position: relative; }

.centering-wit-nieuws1 h2 {
  color: #000;
  display: block;
  text-align: center;
  margin-bottom: 50px; }

.centering-wit-nieuws1 h2:after {
  display: block;
  content: "";
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 250px;
  height: 1px;
  width: 100px;
  border-bottom: 3px solid #fff;
  padding: 14px 0;
  text-align: center;
  margin: 0 auto; }

.centering-grijs-nieuws1 .centering img {
  width: 100%;
  height: auto; }

/*
.nieuw1-row .nieuws-content {
position : absolute;
bottom : 0;
left : 0;
width : 100%;
padding : 20px;
text-align : center;
transition : all 0.2s;
z-index : 9;
}
.nieuws1-column-wrapper {
box-sizing : border-box;
margin-left : -15px;
margin-right : -15px;
}
.nieuws1-column {
float : left;
width : 25%;
}
.nieuws1-inner {
position : relative;
}
.nieuws1-inner:hover {
background-color : transparent;
}
.nieuws1-thumb {
max-height : 330px;
overflow : hidden;
}
.nieuws1-thumb img {
display : block;
width : 100%;
max-width : 100%;
height : auto;
}
.nieuws1-overlay {
background-color : rgba(0,0,0,0.4);
position : absolute;
top : 0;
left : 0;
height : 100%;
width : 100%;
transition : all 0.2s;
z-index : 8;
}
.nieuws1-overlay:hover {
background-color : transparent;
}
.nieuws1-row {
margin-left : -15px;
margin-right : -15px;
}
.nieuws1-overlay .nieuws1-content > div:hover {
background-color : $black;;
}
.nieuws1-content {
position : absolute;
bottom : 0;
left : 0;
width : 100%;
padding : 2%;
text-align : center;
transition : all 0.2s;
z-index : 9;
background-color : rgba(0,0,0,0.5);
}
.nieuws1-content h3 {
color : $white;
}
.nieuws-titel {
font-size : 18px;
font-weight : 600;
margin : 0;
}
.nieuws1-date {
color : $white;
}*/
@media only screen and (max-width: 767px) {
  .centering-wit-nieuws1 {
    padding-bottom: 0px;
    padding-top: 40px; }

  /*.nieuws1-column {
  float : left;
  width : 50%;
  }*/ }
@media only screen and (max-width: 414px) {
  /*.nieuws1-column {
  float : left;
  width : 100%;
  }*/ }
/* Scss Document nieuws1c-1 category media*/
.centering-wit-nieuws2 {
  width: 100%;
  padding: 0 5%;
  background-color: #fff;
  padding-bottom: 60px;
  padding-top: 34px;
  float: left;
  position: relative; }

.content-nieuws2-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-around; }

/*
.content-nieuws2 {
width : 40.5%;
background-color : #fff;
text-align : left;
float : left;
margin : 0 3% 3% 0;
padding : 25px;
border : solid 1px;
border-color : #eaeaea;
display : inline-block;
vertical-align : middle;
transform : translateZ(0);
box-shadow : 0 0 1px rgba(0,0,0,0.0);
backface-visibility : hidden;
position : relative;
transition-property : color;
transition-duration : 0.5s;
}
.content-nieuws2:nth-child(even) {
margin : 0 0 3% 0;
}
.content-nieuws2:hover:before, .content-nieuws2:focus:before, .content-nieuws2:active:before {
transform : scaleX(1);
}
.content-nieuws2:before {
background : #ccc;
}
.content-nieuws2:before {
content : "";
position : absolute;
z-index : -1;
top : 0;
left : 0;
right : 0;
bottom : 0;
background : #ccc;
transform : scaleX(0);
transform-origin : 0 50%;
transition-property : transform;
transition-duration : 0.5s;
transition-timing-function : ease-out;
}
.content-nieuws2-foto {
float : left;
width : 39.42%;
margin-right : 6%;
overflow : hidden;
height : 185px;
}
.content-nieuws2 h1 {
color : $black;;
display : block;
}
.content-nieuws2 h1:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}
.content-nieuws2 h2 {
color : $black;;
display : block;
}
.content-nieuws2 h2:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}
.content-nieuws2 h3 {
color : $black;;
display : block;
}
.content-nieuws2 h3:after {
display : block;
content : "";
position : relative;
left : 0;
bottom : 0;
max-width : 250px;
height : 1px;
width : 100px;
border-bottom : 3px solid $color3;
padding : 4px 0;
}
.knop-nieuws a {
padding : 0;
height : 40px;
font-size : 18px;
line-height : 38px;
text-transform : uppercase;
border : $color3 solid 1px;
background-color : #fff;
color : $color3;
display : block;
text-align : center;
margin : 15px auto 0;
float : right;
width : 100%;
max-width : 165px;
}
.knop-nieuws a:hover {
background-color : $color3;
color : #ffff;
border-color : $color3;
}
@media (min-width: 600px) and (max-width: 920px) {
.content-nieuws2-foto {
width : 100%;
margin-bottom : 10px;
}
.content-nieuws2 {
width : 38.5%;
}
}
@media (max-width: 599px) {
.content-nieuws2 {
width : 98.5%;
}
.content-nieuws2 {
margin : 0 0 40px 0;
}
}*/
/* Scss Document menu1-1 media*/
.afspraak a {
  position: absolute;
  margin-top: -17px;
  right: 42px;
  font-weight: bold;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  padding: 18px 25px;
  background: #a4191c;
  border-radius: 5px; }

.centering-menu-volgpagina {
  background-color: #000000;
  height: 64px;
  position: absolute;
  width: 100%;
  right: 0;
  top: 47px; }

.centering-menu-volgpagina .nav-block {
  margin: inherit !important; }

.sticky#header-wrap .centering-menu-volgpagina .nav-block {
  float: right;
  width: auto;
  padding-right: 0px;
  z-index: 999; }

.sticky#header-wrap .centering-menu-volgpagina .nav-block:after {
  content: '';
  position: absolute;
  left: 60%;
  height: 65px;
  width: 40%;
  background-color: #000;
  z-index: -1; }

.centering-menu-volgpagina .nav-block > ul > li.mx_current > a {
  background-color: #fff !important;
  color: #fff !important; }

.sticky#header-wrap .centering-menu-volgpagina {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.35); }

/* header */
.sticky {
  width: 100%;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.35);
  z-index: 999; }

.sticky#header-wrap .logo a img {
  width: 65px;
  height: auto;
  margin-top: 5px;
  border-radius: inherit;
  padding: 0; }

.sticky#header-wrap .afspraak {
  display: none;
  z-index: 1;
  margin-top: 47px; }

.sticky#header-wrap .top-block {
  padding: 0;
  width: auto;
  float: left;
  background-color: #000; }

.sticky#header-wrap .top-block .media {
  display: none; }

.sticky#header-wrap .nav-block a.phone {
  font-size: 0px; }

/* .sticky#header-wrap .nav-block:after {
   content: '';
   position: absolute;
   left: 60%;
   height: 65px;
   width: 40%;
   background-color: $black;
   z-index: -1; }*/
.sticky#header-wrap .nav-block {
  margin: 0 auto;
  height: 65px;
  padding-right: 0px;
  background-color: #000000; }

.sticky#header-wrap {
  background-color: #fff;
  height: 65px; }

.sticky#header-wrap .nav-block > ul > li.mx_current > a {
  line-height: 20px;
  color: #fff;
  background-color: #a4191c; }

.sticky#header-wrap .nav-block > ul li a {
  line-height: 20px;
  color: #ccc; }

.sticky#header-wrap .nav-block > ul li a:hover {
  line-height: 20px;
  color: #fff; }

.mx_logged_in #header-wrap {
  top: 51px; }

body:not(.fullwidth) #header-wrap {
  max-width: 1240px; }

#header-wrap {
  position: fixed;
  margin-top: 46px;
  width: 100%;
  z-index: 999;
  /* nav block */ }

#header-wrap .top-block {
  padding: 47px 0 0;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  height: 115px; }

#header-wrap .top-block .logo {
  float: left;
  padding-bottom: 0; }

#header-wrap .top-block .logo a {
  display: block; }

#header-wrap .top-block .logo img {
  width: 335px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  position: absolute;
  margin-top: -35px;
  left: 34px;
  background-color: #fff;
  padding: 20px;
  border-radius: 2pc; }

#header-wrap .nav-block {
  padding: 0 2%;
  width: 70%;
  height: 67px;
  background-color: #000000;
  max-width: 1200px;
  float: none;
  margin: -33px auto;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px; }

#header-wrap .nav-block > ul {
  float: left;
  list-style: none; }

#header-wrap .nav-block > ul li {
  float: left;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  border-right: 1px solid #e7e6e6;
  position: relative; }

#header-wrap .nav-block > ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #ccc;
  padding: 23px 20px;
  display: block;
  text-align: center;
  text-transform: uppercase; }

#header-wrap .nav-block > ul li ul {
  display: none;
  padding-bottom: 2px;
  width: 219px;
  position: absolute;
  top: 65px;
  left: 0px;
  background-color: #000000; }

#header-wrap .nav-block > ul li ul li {
  padding: 0;
  width: 100%;
  list-style: none; }

#header-wrap .nav-block > ul li ul li.mx_parent a {
  background: #000000 url("../images/arrow_hover2.png") 98% center no-repeat; }

#header-wrap .nav-block > ul li ul li.mx_parent li a {
  background: none; }

#header-wrap .nav-block > ul li ul li:hover a, #header-wrap .nav-block > ul li ul li.mx_current a {
  background: #fff;
  color: #000000 !important; }

#header-wrap .nav-block > ul li ul li a {
  padding: 7px 19px;
  font-size: 16px;
  line-height: 31px;
  font-weight: normal;
  color: #fff !important;
  border-bottom: 1px solid #fff; }

#header-wrap .nav-block > ul li ul li:last-child a {
  border-bottom: 0; }

#header-wrap .nav-block > ul li ul li ul {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: inherit; }

#header-wrap .nav-block > ul li ul li ul li {
  margin-left: 3px;
  background-color: #222; }

#header-wrap .nav-block > ul li ul li ul li:hover ul {
  display: block; }

#header-wrap .nav-block > ul li:hover ul {
  display: block; }

#header-wrap .nav-block > ul li:hover li ul {
  display: none; }

#header-wrap .nav-block > ul li li.mx_parent:hover ul {
  display: block; }

#header-wrap .nav-block > ul li li.mx_parent:hover ul li a {
  background: #737379; }

#header-wrap .nav-block > ul li li.mx_parent:hover ul li:hover a, #header-wrap .nav-block > ul li li.mx_parent:hover ul li.mx_current a {
  background: #fff url("../images/arrow_hover2.png") 96.3% center no-repeat; }

#header-wrap .nav-block > ul li li.mx_parent:hover a {
  background: #fff url("../images/arrow_hover1.png") 96.3% center no-repeat; }

#header-wrap .nav-block > ul li:hover > a {
  background-color: transparent;
  color: #fff; }

#header-wrap .nav-block > ul > li.mx_current > a {
  color: #fff;
  background-color: #a4191c; }

#header-wrap .nav-block a.phone {
  padding-left: 65px;
  float: right;
  font-size: 16px;
  line-height: 67px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.4px;
  border-left: 2px solid #fff;
  position: relative; }

#header-wrap .nav-block a.phone:before {
  width: 29px;
  height: 26px;
  display: block;
  position: absolute;
  top: 21px;
  left: 21px;
  content: "";
  background: url("../images/phone_icon.png") left center no-repeat; }

#header-wrap .nav-block a.phone:hover {
  opacity: 0.7; }

#header-wrap .menuicon {
  display: none; }

html.mm-opening .mm-slideout {
  transform: translate3d(256px, 0px, 0px) !important;
  -webkit-transform: translate3d(256px, 0px, 0px) !important; }

@media only screen and (max-width: 1960px) {
  #header-wrap .top-block .logo img {
    width: 150px;
    margin-top: -56px;
    border-radius: inherit;
    background-color: transparent; } }
@media only screen and (max-width: 1364px) {
  #header-wrap .nav-block {
    max-width: 100%;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px; }

  .afspraak a {
    margin-top: -30px; }

  #header-wrap .top-block .logo img {
    width: 113px;
    margin-top: -58px; } }
/*Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  #header-wrap .nav-block a.phone {
    font-size: 0; } }
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 920px) {
  .centering-menu-volgpagina {
    display: none; }

  .sticky#header-wrap {
    height: 66px; }

  #header-wrap .top-block .logo {
    padding: 0;
    position: absolute;
    top: 0; }

  #header-wrap .top-block .logo img {
    margin-top: 3px;
    background-color: #fff;
    border-radius: 1pc; }

  .mobileHeader.sticky {
    background: #fff;
    padding-bottom: 0px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.6); }

  .mobileHeader.sticky .menuicon {
    top: 27px; }

  .menuicon {
    display: block !important;
    position: absolute;
    right: 16px;
    top: 7px;
    cursor: pointer; }

  .menuicon:hover {
    opacity: .8; }

  .mobileHeader.sticky {
    background: #fff;
    padding-bottom: 0px;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.6); }

  .mobileHeader.sticky .menuicon {
    top: 27px; }

  #header-wrap .nav-block {
    display: none; }

  #header-wrap.sticky .nav-block {
    display: none; }

  .nav-block {
    display: none; }

  .nav-block.mm-menu {
    max-width: 257px;
    background-color: #000000; }

  .nav-block.mm-menu .mm-panels {
    background-color: #000000;
    overflow: visible;
    top: 92px; }

  .nav-block.mm-menu .mm-panels #mm-1.mm-panel.mm-hasnavbar {
    /*                            padding-top: 0px;*/ }

  .nav-block.mm-menu .mm-panels #mm-1 .mm-navbar {
    /*                        display: none;*/ }

  .nav-block.mm-menu .mm-panels .mm-navbar {
    height: 42px; }

  .nav-block.mm-menu .mm-panels .mobile-demo {
    padding: 20px 3%;
    position: absolute;
    left: 0;
    top: -92px;
    z-index: 999;
    width: 100%;
    background-color: #fff; }

  .nav-block.mm-menu .mm-panels .mobile-demo a {
    margin-right: 7px;
    width: 52px;
    height: 52px;
    display: inline-block; }

  .nav-block.mm-menu .mm-panels .mobile-demo a img {
    width: 100%; }

  .nav-block.mm-menu .mm-panels .mobile-demo a:hover {
    opacity: 0.7; }

  .nav-block.mm-menu .mm-panels .mm-navbar {
    border-bottom-color: #fff; }

  .nav-block.mm-menu .mm-panels .mm-navbar a.mm-title {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase; }

  .nav-block.mm-menu .mm-panels .mm-navbar .mm-btn.mm-prev {
    background: url("../images/back.png") no-repeat center center; }

  .nav-block.mm-menu .mm-panels .mm-navbar .mm-btn.mm-prev:before {
    content: none; }

  .nav-block.mm-menu ul.mm-listview {
    width: 236px; }

  .nav-block.mm-menu ul .mm-next + a {
    margin-right: 0; }

  .nav-block.mm-menu ul li {
    margin: 0 -20px; }

  .nav-block.mm-menu ul li:after {
    border-bottom-color: #fff; }

  .nav-block.mm-menu ul li a {
    padding: 10px 35px;
    color: #fff;
    font-size: 17px; }

  .nav-block.mm-menu ul li a:hover {
    background-color: #a4191c; }

  .nav-block.mm-menu ul li a.arrow {
    position: relative; }

  .nav-block.mm-menu ul li a.arrow:hover:before {
    content: '';
    width: 10px;
    height: 17px;
    position: absolute;
    right: 14px;
    top: 11px;
    background: url("../images/arrow_hover1.png") no-repeat; }

  .nav-block.mm-menu ul li a.arrow:before {
    content: '';
    width: 10px;
    height: 17px;
    position: absolute;
    right: 14px;
    top: 11px;
    background: url("../images/arrow.png") no-repeat; }

  .mm-slideout {
    position: relative; }

  .mm-slideout:after {
    position: absolute;
    content: '';
    left: -61px;
    top: 20px;
    width: 52px;
    height: 52px;
    z-index: 99999;
    display: block;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    cursor: pointer;
    background: url("../images/menu_icon4.jpg") no-repeat left top; }

  /*mobile menu*/
  html.mm-opening .mm-slideout {
    transform: translate3d(256px, 0px, 0px);
    -webkit-transform: translate3d(256px, 0px, 0px); }

  .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next) {
    background: #a4191c; }

  .mm-menu .mm-listview > li.mm-selected > a.arrow:before {
    background: url("../images/arrow_hover1.png"); }

  .mm-menu .mm-listview > li.mm-selected > span {
    background: url("../images/arrow.png") no-repeat 96% center; }

  .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next):hover, .mm-menu .mm-listview > li.mm-selected > span {
    background: #a4191c url("../images/arrow.png") no-repeat 96% center; } }
@media screen and (max-width: 1364px) and (min-width: 768px) {
  .centering-menu {
    background-color: #fff; }

  #header-wrap .nav-block {
    padding: 0 2%;
    width: 100%; } }
@media (max-width: 920px) {
  .centering-menu {
    background-color: #fff; }

  #header-wrap .nav-block {
    padding: 0 2%;
    width: 100%; }

  #header-wrap .top-block {
    height: 65px; }

  .mobileHeader .menuicon img {
    border-radius: 14px; } }
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none; } }
@media only screen and (max-width: 600px) {
  #header-wrap .top-block .logo img {
    width: 65px;
    height: auto;
    position: absolute;
    top: -1px;
    left: 21px;
    background-color: transparent;
    border-radius: inherit;
    padding: 0;
    margin-top: 5px; } }
html.mm-blocking #mm-blocker {
  background-color: rgba(18, 27, 46, 0.7); }

/* Scss Document slider1-2 salon*/
.slider1 {
  float: left;
  width: 100%;
  overflow: hidden;
  margin-top: 160px;
  position: relative;
  z-indez: 1; }

.knop-slider {
  padding: 0 15px;
  height: 40px;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  border: #fff solid 1px;
  background-color: transparent;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 165px; }

.knop-slider:hover {
  background-color: #fff;
  color: #fff;
  border-color: #fff; }

.time-table ul li {
  list-style: none;
  margin-bottom: 5px;
  font-size: clamp(1rem, 1vw, 1.5rem);
  line-height: clamp(1.25rem, 1.5vw, 2rem); }

.time-table ul li a {
  color: #fff; }

.time-table ul li a:hover {
  color: #a4191c; }

.time-table, .time-table h2, .time-table, .time-table .custom-h2 {
  color: #ffffff;
  border-color: #fff; }

.time-table, .time-table h2, .time-table .custom-h2 {
  color: #ffffff; }

.time-table custom-h2, .timingbox {
  border-color: #434548; }

.time-table custom-h2 {
  padding: 20px 0;
  font: 16px/100% 'Roboto';
  color: #fff;
  margin: 0;
  border-bottom: dotted 1px #434548; }

.time-table h2, .timingbox {
  border-bottom: 2px solid #fff; }

.timingbox {
  width: 100%;
  border-bottom: none; }

.openingday, .openingtime {
  font: 14px/100% 'Roboto';
  float: left;
  text-align: left;
  width: 38.3%;
  padding: 12px 0 12px 15px; }

.openingtime {
  width: 47%; }

.openingday, .openingtime {
  font: 14px / 100% 'Roboto';
  float: left;
  text-align: center;
  width: 100%;
  padding: 5px 0 5px 15px; }

.time-table, .time-table h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold; }

.time-table img {
  width: 100%;
  max-width: 300px; }

.time-table {
  width: auto;
  padding: 1%;
  text-align: left;
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: clamp(1.2rem, 2.5vw, 2.4rem);
  top: 16%;
  position: absolute;
  right: 7%;
  z-index: 99;
  border-radius: 20px;
  /*background: rgba(0, 0, 0, 0.4);*/
  color: #fff; }

@media screen and (max-width: 1364px) and (min-width: 768px) {
  .time-table {
    width: 30%;
    top: 62px;
    right: 3%;
    text-align: center; }

  .slider1 {
    margin-top: 193px; }

  .nivo-caption {
    top: 20%;
    left: 2%; } }
@media (max-width: 920px) {
  .slider1 {
    margin-top: 18px; }

  .afspraak a {
    margin-top: -28px;
    right: 83px;
    padding: 5px 25px; } }
@media (max-width: 825px) {
  .time-table {
    width: 100%;
    text-align: center;
    right: 0; }

  .timingbox {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    /* Laat de div de volledige breedte gebruiken */
    height: 300px;
    /* Hoogte naar wens */
    text-align: center;
    padding-top: 36px; }

  .openingtime img {
    max-width: 125px;
    /* Voorkomt dat de afbeelding te groot wordt */
    height: auto; }

  .time-table h2 {
    margin: 8px auto 7px auto;
    width: 176px; }

  .openingday, .openingtime {
    all: unset;
    /* Reset alle geërfde stijlen */ } }
@media (max-width: 768px) {
  .timingbox {
    padding-top: 15px; }

  .slider1 {
    margin-top: 18px; }

  .openingday, .openingtime {
    all: unset;
    /* Reset alle geërfde stijlen */ }

  .nivo-caption {
    top: 20%;
    left: 2%; } }
@media (max-width: 520px) {
  .timingbox {
    height: 215px; }

  .knop-slider {
    padding: 0 7px;
    height: 31px;
    font-size: 12px;
    line-height: 30px;
    max-width: 83px; }

  .afspraak a {
    margin-top: 11px;
    margin: 24px auto 0;
    display: block;
    width: 180px;
    left: 0;
    right: 0;
    text-align: center; }

  .sticky#header-wrap {
    height: 70px; }

  .slider1 {
    margin-top: 57px; }

  #header-wrap .top-block {
    height: 105px; } }
@media (max-width: 352px) {
  .knop-slider {
    display: none; } }
/* Scss Document statisch1-1 media*/
.statische-banner1 {
  float: left;
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden; }

.statische-banner1 img {
  width: 100%;
  height: auto;
  margin-top: 114px; }

.knop-statische-banner {
  padding: 0 15px;
  height: 40px;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  border: #fff solid 1px;
  background-color: transparent;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 165px; }

.knop-statische-banner:hover {
  background-color: #fff;
  color: #fff;
  border-color: #fff; }

@media (max-width: 920px) {
  .statische-banner1 img {
    width: 100%;
    height: auto;
    margin-top: 65px; } }
@media (max-width: 520px) {
  .statische-banner1 img {
    margin-top: 105px;
    min-width: 1000px; } }
@media (max-width: 352px) {
  .knop-statische-banner {
    display: none; } }
/* Scss Document  team1-1 media*/
.centering-wit-team1 {
  width: 100%;
  padding: 0 5%;
  padding-bottom: 70px;
  padding-top: 40px;
  float: left;
  position: relative;
  background-color: #000; }

.centering-wit-team1 h2, .centering-wit-team1 .custom-h2 {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 38px;
  margin-bottom: 15px;
  margin-top: 15px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  display: table;
  padding-bottom: 15px;
  margin: 0 auto 60px auto; }

.teammember-list {
  width: 31%;
  float: left;
  margin: 0 3% 2.9% 0;
  position: relative;
  padding: 0; }

.teammember-list:last-child {
  margin-right: 0 !important; }

.teammember-list h4 {
  text-align: center;
  font: normal 28px/100% 'Roboto';
  border-bottom: 2px solid #fff;
  display: table;
  padding-bottom: 5px;
  margin: 0 auto 15px; }

.teammember-padding {
  padding: 10px;
  /*border: solid 1px #fff;*/ }

.team-thumb-icons {
  background: #2e2f2e; }

.team-thumb-icons {
  position: relative;
  background: #2e2f2e; }

.teammember-list img {
  vertical-align: middle;
  width: 100%;
  height: auto;
  max-width: 100%; }

.team-thumb-icons:hover img {
  opacity: 0.4;
  background: #2e2f2e; }

.teammember-list img {
  vertical-align: middle;
  width: 100%;
  height: auto; }

.team-thumb-icons .member-social-icon {
  opacity: 0; }

.team-thumb-icons:hover .member-social-icon {
  opacity: 1; }

.member-social-icon {
  position: absolute;
  bottom: 9%;
  width: 100%;
  text-align: center; }

.member-social-icon a {
  font-size: 34px;
  padding: 0 10px; }

.teammember-content {
  background-color: #7b2411; }

.teammember-content {
  background: #7b2411;
  padding: 3%; }

.teammember-content p {
  padding: 5px 0; }

.fa {
  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;
  transform: translate(0, 0);
  color: #fff; }

@media (max-width: 767px) {
  .teammember-list {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 40px auto !important; }

  .teammember-list:last-child {
    margin-right: auto !important; } }
/*
@media (max-width: 568px) {

	
}*/
/* Scss Document top1-1 media*/
.topbar1-outer {
  position: fixed;
  float: left;
  width: 100%;
  background: #a4191c;
  font-size: 12px;
  z-index: 1000;
  top: 0;
  padding: 0 5% 13px; }

.topbar1-outer .topbar1-inside {
  margin: 0 auto;
  padding: 14px 2% 5px;
  color: #fff;
  max-width: 1200px;
  width: 100%;
  min-height: 28px; }

.topbar1-outer .topbar1-inside .links {
  float: left;
  max-width: 100%; }

.topbar1-outer .topbar1-inside .rechts {
  float: right;
  max-width: 100%; }

.topbar1-outer .topbar1-inside .rechts ul li img {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(33deg) brightness(103%) contrast(101%); }

.topbar1-outer .topbar1-inside a {
  color: #fff; }

.topbar1-outer .topbar1-inside a:hover {
  opacity: 0.7; }

.topbar1-outer .topbar1-inside ul {
  float: right;
  list-style: none; }

.topbar1-outer .topbar1-inside ul li {
  margin-left: 14px;
  float: left; }

.topbar1-outer .topbar1-inside ul li:first-child {
  margin-left: 0; }

.topbar1-outer .topbar1-inside ul li a {
  display: block; }

.topbar1-outer .topbar1-inside ul li a:hover {
  opacity: 0.7; }

@media (max-width: 520px) {
  .topbar1-outer .topbar1-inside .rechts {
    float: right;
    max-width: 100%;
    position: absolute;
    right: 83px;
    top: 59px;
    padding: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 1000; }

  .topbar1-outer .topbar1-inside .rechts ul li img {
    filter: invert(12%) sepia(72%) saturate(5449%) hue-rotate(351deg) brightness(85%) contrast(90%);
    width: 30px;
    height: 30px; } }

/*# sourceMappingURL=main.css.map */
