body {
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

body .img-holder {
  background: #ccc;
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

body .img-holder .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(93, 93, 93, 0.5);
  -webkit-box-shadow: inset 0px 0px 20px 1px #525252;
          box-shadow: inset 0px 0px 20px 1px #525252;
  color: #fff;
}

body .img-holder .overlay > div {
  height: 100%;
  text-align: center;
}

body .img-holder .overlay > div > div {
  width: 100%;
}

body .img-holder .overlay > div h1 {
  font-size: 4vw;
  text-shadow: 0px 0px 10px #000;
}

body .img-holder .overlay.color-violett {
  background-color: rgba(122, 19, 127, 0.5);
}

body .img-holder .overlay.color-pink {
  background-color: rgba(222, 1, 123, 0.5);
}

body .img-holder .overlay.color-green {
  background-color: rgba(128, 189, 38, 0.5);
}

body .img-holder img {
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
  max-width: 100%;
}

body .menuAnker.color-violett {
  color: #7A137F;
}

body .menuAnker.color-violett p, body .menuAnker.color-violett ul, body .menuAnker.color-violett span {
  color: #000;
}

body .menuAnker.color-violett .imgContainer {
  border-color: #7A137F;
}

body .menuAnker.color-pink {
  color: #DE017B;
}

body .menuAnker.color-pink p, body .menuAnker.color-pink ul, body .menuAnker.color-pink span {
  color: #000;
}

body .menuAnker.color-pink .imgContainer {
  border-color: #DE017B;
}

body .menuAnker.color-green {
  color: #80BD26;
}

body .menuAnker.color-green p, body .menuAnker.color-green ul, body .menuAnker.color-green span {
  color: #000;
}

body .menuAnker.color-green .imgContainer {
  border-color: #80BD26;
}

body .imgContainer {
  border: 10px solid #000;
  border-radius: 15px;
}

body .imgContainer img {
  border-radius: 5px;
}

body.color-violett header {
  border-color: #7A137F;
}

body.color-pink header {
  border-color: #DE017B;
}

body.color-green header {
  border-color: #80BD26;
}

body .textBox {
  text-align: justify;
}

a {
  text-decoration: none;
  color: #7A137F;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

a:hover, a:focus {
  text-decoration: none;
}

p {
  margin-bottom: 10px;
}

header {
  max-height: 100vh;
  background: #f6f6f6;
  overflow: hidden;
  position: relative;
}

header .headerLogo {
  position: absolute;
  z-index: 80;
  left: 25px;
  top: 50px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1vw;
  width: 27vw;
}

header .headerImage {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

header .headerImage img {
  max-width: none;
  top: 0px;
  left: 0px;
  width: 105vw;
  z-index: 5;
}

header .navBtnContainer {
  background: #000;
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  right: 25px;
  top: 50px;
  z-index: 99;
  padding: 10px 0px;
  border-radius: 10px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

header .navBtnContainer.color-violett {
  background: #7A137F;
}

header .navBtnContainer.color-pink {
  background: #DE017B;
}

header .navBtnContainer.color-green {
  background: #80BD26;
}

header .navBtnContainer .toggleNav {
  border: none;
  background: transparent;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  width: 35px;
  height: 30px;
  padding: 0px;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

header .navBtnContainer .toggleNav:after, header .navBtnContainer .toggleNav:before {
  content: '';
  height: 2px;
  width: 100%;
  display: block;
  background: #fff;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

header .navBtnContainer .toggleNav:hover {
  border: transparent;
}

header .navBtnContainer .toggleNav:hover:after, header .navBtnContainer .toggleNav:hover:before {
  height: 4px;
}

header .navBtnContainer .toggleNav:hover:after {
  -webkit-transform: rotate(180deg) translateY(1px);
          transform: rotate(180deg) translateY(1px);
}

header .navBtnContainer .toggleNav:hover:before {
  -webkit-transform: rotate(-90deg) translatey(0px) translateX(-3px);
          transform: rotate(-90deg) translatey(0px) translateX(-3px);
}

header .navBtnContainer .toggleNav.active {
  border: transparent;
}

header .navBtnContainer .toggleNav.active:after, header .navBtnContainer .toggleNav.active:before {
  height: 4px;
}

header .navBtnContainer .toggleNav.active:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .navBtnContainer .toggleNav.active:before {
  -webkit-transform: rotate(-45deg) translatey(3px) translateX(-3px);
          transform: rotate(-45deg) translatey(3px) translateX(-3px);
}

.fullscreenNav {
  position: fixed;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  z-index: 75;
  /* display: none; */
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.fullscreenNav nav ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.fullscreenNav nav ul li {
  display: block;
  text-align: center;
}

.fullscreenNav nav ul li a {
  color: #000;
  line-height: 5rem;
  font-size: 30px;
  padding-bottom: 30px;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}

.fullscreenNav nav ul li a:after {
  content: '';
  height: 3px;
  background: #000;
  width: 120px;
  display: block;
  position: absolute;
  left: calc(50% - 60px);
  bottom: 15px;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.fullscreenNav nav ul li a.color-violett {
  color: #7A137F;
}

.fullscreenNav nav ul li a.color-violett:after {
  background: #7A137F;
}

.fullscreenNav nav ul li a.color-pink {
  color: #DE017B;
}

.fullscreenNav nav ul li a.color-pink:after {
  background: #DE017B;
}

.fullscreenNav nav ul li a.color-green {
  color: #80BD26;
}

.fullscreenNav nav ul li a.color-green:after {
  background: #80BD26;
}

.fullscreenNav nav ul li a:hover:after, .fullscreenNav nav ul li a:focus:after, .fullscreenNav nav ul li a.active:after {
  width: 100%;
  left: 0px;
}

.fullscreenNav.active {
  /* display: block; */
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.fullscreenNav .container {
  height: 100%;
}

.fullscreenNav .container .row {
  height: 100%;
}

.form-group {
  position: relative;
  margin-top: 10px;
}

.form-group label {
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 0px 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 11px;
  border: 1px solid #DE017B;
  border-radius: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  border: 1px solid #80BD26;
  border-radius: 10px;
  padding-top: 10px;
  font-size: 13px;
  line-height: 25px;
}

.form-group .form-control:focus {
  border: 1px solid #7A137F;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(175, 175, 175, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(175, 175, 175, 0.25);
}

.form-group .helper {
  opacity: 0;
  display: none;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.form-group.has-error label {
  background: #f13737;
  color: #fff;
  border-color: #f13737;
}

.form-group.has-error .helper {
  display: block;
  opacity: 1;
  color: #f13737;
}

.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
  border-color: #f13737;
}

.btn-default {
  border-top: 2px solid #80BD26;
  border-left: 2px solid #DE017B;
  border-right: 2px solid #DE017B;
  border-bottom: 2px solid #7A137F;
  background: #fff;
  color: #7A137F;
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.btn-default:hover, .btn-default:focus {
  border-right: 2px solid #80BD26;
  border-top: 2px solid #DE017B;
  border-bottom: 2px solid #DE017B;
  border-left: 2px solid #7A137F;
  color: #DE017B;
}

footer {
  border-top: 1px solid #ccc;
}

footer .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

footer .gmap {
  min-height: 350px;
}

footer .footer-menu {
  font-size: 11px;
  padding: 10px 0px;
  background: #c9c9c9;
  background-image: -webkit-gradient(linear, left top, right top, from(#80BD26), color-stop(#7A137F), color-stop(#DE017B), to(#80BD26));
  background-image: linear-gradient(to right, #80BD26, #7A137F, #DE017B, #80BD26);
  color: #fff;
  text-align: center;
}

footer .footer-menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

footer .footer-menu ul li {
  display: inline-block;
  padding: 0px 5px;
}

footer .footer-menu ul li a {
  color: #fff;
}

footer .footer-menu ul li:after {
  content: '';
  background: #fff;
  height: 10px;
  width: 10px;
  border-radius: 5px;
  display: inline-block;
  margin-left: 15px;
}

footer .footer-menu ul li:last-child:after {
  content: none;
}

/* Small devices (tablets, 768px and up) */
@media (max-width: 767px) {
  .h1, h1 {
    font-size: 2rem !important;
    word-break: break-all;
  }
  header .headerLogo {
    top: 15px;
    left: 15px;
  }
  header .navBtnContainer {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    padding: 3px 0px !important;
  }
  header .navBtnContainer .toggleNav {
    border-width: 2px;
    height: 15px;
    width: 20px;
    top: 8px;
    position: absolute;
    left: 5px;
  }
  header .navBtnContainer .toggleNav::before, header .navBtnContainer .toggleNav::after {
    height: 1px;
  }
  .fullscreenNav nav ul li a {
    font-size: 23px;
    line-height: 4rem;
  }
  body .imgContainer {
    border-width: 5px;
    border-radius: 10px;
  }
  body .imgContainer img {
    border-radius: 5px;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  header .headerLogo {
    left: 15px;
  }
  header .navBtnContainer {
    right: 15px;
  }
}

/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
/*# sourceMappingURL=style.css.map */