/* Theme Name: kommpass gmbh */
@import url("https://fonts.googleapis.com/css?family=Barlow:200,300,400,500&display=swap");
html {
  font-size: 18px;
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #404040;
  font-family: Barlow, sans-serif;
  text-align: center;
  font-weight: 300;
  overflow-x: hidden;
}

h1, .h1, h2, .h2, h3 .h3, h4, .h4 {
  font-weight: 300;
  color: #2b1f58;
}

h2 {
  margin-bottom: 1rem !important;
}

a {
  font-weight: 400;
  text-decoration: underline;
  color: #2b1f58;
}

.kp_button {
  background-color: white;
  color: #2b1f58;
  border: 1px solid #2b1f58;
  border-radius: 0 !important;
  display: block;
  transition: 0.3s ease all;
  width: fit-content;
  padding: 0.1rem 1rem;
  margin-left: auto;
  margin-right: auto;
}
.kp_button:hover {
  background-color: #2b1f58;
  color: white !important;
  transform: scale(1.1);
}
.kp_button:focus {
  outline: none;
}
.kp_button:visited {
  color: #2b1f58;
}

#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 1rem;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
#main-menu > a {
  height: 3rem;
}
#main-menu > a img {
  height: 100%;
}
#main-menu .menu-container {
  width: 80%;
  margin-left: 2rem;
}
#main-menu .menu-container #primary-menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-evenly;
}
#main-menu .menu-container #primary-menu li a {
  display: block;
  font-size: 1.2rem;
  color: #2b1f58;
  font-weight: 300;
  text-decoration: none !important;
}
#main-menu .menu-container #primary-menu .current-menu-item {
  position: relative;
}
#main-menu .menu-container #primary-menu .current-menu-item::after {
  content: "";
  height: 15px;
  position: absolute;
  width: 100%;
  background-color: #2b1f58;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 80%);
  clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 80%);
}

@media all and (-ms-high-contrast: none) {
  #main-menu .menu-container #primary-menu {
    justify-content: space-around;
  }
}
@supports (-ms-ime-align: auto) {
  #main-menu .menu-container #primary-menu {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1000px) {
  #mobile-bar {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #masthead {
    margin-top: 5rem;
  }

  #main-menu {
    bottom: 0;
    background-color: white;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease all;
  }
  #main-menu .logo-top {
    display: none;
  }
  #main-menu .menu-container {
    margin-left: 0;
    width: 100%;
  }
  #main-menu .menu-container #primary-menu {
    flex-direction: column;
  }
  #main-menu .menu-container #primary-menu li a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  #main-menu .menu-container #primary-menu li.current-menu-item::after {
    display: none;
  }

  .menu-open #main-menu {
    opacity: 1;
    pointer-events: auto;
  }

  #mobile-bar {
    height: 5rem;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }
  #mobile-bar .logo-top {
    display: block;
    text-align: left;
    padding-left: 1rem;
  }
  #mobile-bar .logo-top img {
    height: 5rem;
    padding: 1rem 0;
  }

  #menu-toggle {
    position: fixed;
    top: 0;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    cursor: pointer;
    z-index: 9999;
  }
  #menu-toggle #hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
  }
  #menu-toggle #hamburger span {
    display: block;
    height: 3px;
    width: 3rem;
    background-color: #2b1f58;
    margin-bottom: 7px;
    transition: 0.3s ease-in-out all;
  }
  #menu-toggle #cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
  }
  #menu-toggle #cross span {
    display: block;
    height: 3px;
    background-color: #2b1f58;
    transition: 0.3s ease-in-out all;
    position: absolute;
    width: 0;
  }
  #menu-toggle #cross span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  #menu-toggle #cross span:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  #menu-toggle.open #hamburger span {
    width: 0;
  }
  #menu-toggle.open #hamburger span:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #menu-toggle.open #hamburger span:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  #menu-toggle.open #cross span {
    width: 3rem;
  }
  #menu-toggle.open #cross span:nth-of-type(1) {
    transition-delay: 0.4s;
  }
  #menu-toggle.open #cross span:nth-of-type(2) {
    transition-delay: 0.4s;
  }
}
#masthead {
  margin-top: 7rem;
  margin-bottom: 3rem;
}
#masthead .header-box-front {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#masthead .header-box-front .item-left {
  width: 50%;
  padding: 0 4rem;
  opacity: 0;
  transition: 1s ease all;
  transition-delay: 1s;
  max-height: 0;
}
#masthead .header-box-front .item-left .text {
  font-size: 1.5rem;
  color: #2b1f58;
  font-weight: 300;
}
#masthead .header-box-front .item-left .text strong {
  font-weight: 400;
}
#masthead .header-box-front .item-left .scroll-container {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 3rem;
  transform: scale(0.75);
}
#masthead .header-box-front .item-right {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 100%;
  padding-bottom: 35%;
  transition: 1s ease all;
  display: block;
  margin-left: auto;
}
#masthead .header-box-front.open .item-left {
  opacity: 1;
  max-height: 100%;
}
#masthead .header-box-front.open .item-right {
  -webkit-clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 85%);
  clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 85%);
  background-position: left;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #masthead .header-box-front {
    flex-direction: column-reverse;
  }
  #masthead .header-box-front .item-left {
    margin-top: 1rem;
    padding: 0 0.5rem;
    width: 100%;
    opacity: 1;
    max-height: 100%;
  }
  #masthead .header-box-front .item-right {
    padding-bottom: 75%;
  }
  #masthead .header-box-front.open .item-right {
    width: 100%;
  }
}

#main {
  position: relative;
}
#main #main-target {
  position: absolute;
  top: -100px;
}
#main .elementor-column-wrap {
  padding: 0 !important;
}

.not_front_page #main {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .not_front_page #main {
    margin-top: 9rem;
  }
}

footer {
  margin-top: 3rem;
  position: relative;
}
footer .footer-bottom {
  display: flex;
  margin-bottom: -3rem;
}
footer .footer-bottom .left {
  padding: 6rem 0;
  width: 50%;
}
footer .footer-bottom #map {
  width: 50%;
  -webkit-clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 92%);
  clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 92%);
}
footer .menu-footer {
  position: relative;
  margin-top: 3rem;
}
footer .menu-footer .angle-bottom {
  border-bottom: 3rem solid #2b1f58;
  border-right: 100vw solid transparent;
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 0;
  pointer-events: none;
}
footer .menu-footer .menu-footer-container {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  z-index: 11;
}
footer .menu-footer .menu-footer-container .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
footer .menu-footer .menu-footer-container .menu li::after {
  content: "|";
  color: white;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 0 0.3rem;
}
footer .menu-footer .menu-footer-container .menu li:last-of-type::after {
  display: none;
}
footer .menu-footer .menu-footer-container .menu li a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.75rem;
}
@media screen and (max-width: 600px) {
  footer .footer-bottom {
    flex-direction: column;
  }
  footer .footer-bottom .left {
    width: 100%;
    padding: 2rem 0 0 0;
  }
  footer .footer-bottom #map {
    height: 20rem;
    width: 100%;
  }
  footer .menu-footer .angle-bottom {
    border-bottom: 6rem solid #2b1f58;
  }
}

.arrow-container {
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 1;
}
.arrow-container.cont-left {
  left: 1rem;
}
.arrow-container.cont-right {
  right: 1rem;
}
.arrow-container .custom {
  height: 1rem;
  width: 1rem;
  border-left: 2px solid #2b1f58;
  border-bottom: 2px solid #2b1f58;
}
.arrow-container .custom.custom-prev {
  transform: rotate(45deg);
}
.arrow-container .custom.custom-next {
  transform: rotate(-135deg);
}

.modal .modal-dialog {
  max-width: 800px;
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.modal .modal-dialog .modal-content .modal-header {
  background-color: #2b1f58;
  border-radius: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 15%, 100% 85%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 15%, 100% 85%, 0% 100%);
  margin-bottom: -1rem;
  z-index: 1;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  color: white;
}
.modal .modal-dialog .modal-content .modal-body {
  background-color: white;
  padding-top: 1rem;
  text-align: left;
}
.modal .modal-dialog .modal-content .modal-body h3 {
  font-weight: 300;
  font-size: 1.25rem;
}
.modal .modal-dialog .modal-content .modal-body .kp_button {
  margin: 1rem auto 1rem 0;
}
.modal .modal-dialog .modal-content .modal-body ul {
  list-style-type: none;
  padding-left: 1rem;
}
.modal .modal-dialog .modal-content .modal-body ul li::before {
  content: "-";
  position: absolute;
  left: 1rem;
}
.modal .modal-dialog .modal-content .modal-footer {
  background-color: white;
  border: none;
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-footer .kp_button {
  margin-right: 0;
}

.wpcf7 form {
  width: 45%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .wpcf7 form {
    width: 95%;
  }
}

.form-group {
  position: relative;
  padding-top: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.form-group .label {
  position: absolute;
  top: 0;
  font-size: 0.75rem;
  transition: 0.3s ease;
}
.form-group .input {
  border: none;
  background: none;
  outline: none;
  padding: 0.25rem;
  width: 100%;
}
.form-group::before, .form-group:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  display: block;
  background-color: rgba(43, 31, 88, 0.2);
}
.form-group::after {
  transition: 0.3s ease;
  background-color: #2b1f58;
}
.form-group.empty .label {
  top: 0.75rem;
  font-size: 1rem;
}
.form-group.empty::after {
  width: 0;
}

#loader {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999999;
}

.elementor-button, .elementor-button-link {
  background-color: white;
  color: #2b1f58;
  border: 1px solid #2b1f58;
  border-radius: 0 !important;
  display: block;
  transition: 0.3s ease all;
  width: fit-content;
  padding: 0.1rem 1rem;
  margin-left: auto;
  margin-right: auto;
}
.elementor-button:hover, .elementor-button-link:hover {
  background-color: #2b1f58;
  color: white !important;
  transform: scale(1.1);
}
.elementor-button:focus, .elementor-button-link:focus {
  outline: none;
}
.elementor-button:visited, .elementor-button-link:visited {
  color: #2b1f58;
}

.elementor-text-editor {
  padding: 0 1rem;
}
.elementor-text-editor ul {
  list-style-type: none;
  padding: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.elementor-text-editor ul li {
  border-bottom: 1px solid lightgray;
  padding: 0.2rem;
}

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