@import url("https://use.typekit.net/eql6hzq.css");

:root {
  --primary: #585759;
  --primary-light: #d7d7d7;
  --secondary: #0d000d;
  --tertiary: #f2a007;
  --text: #a9aaac;
  --gradient: linear-gradient(to right, #f7e095, #f2a007);
}

body {
  font-family: solex, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--primary) !important;
}

h1 {
  /* line-height: 1.5; */
  color: var(--tertiary);
  font-size: 2.5rem;
  font-weight: 500;
  font-family: solex, sans-serif;
}
h2 {
  font-family: solex, sans-serif;
  font-weight: 500;
  color: var(--tertiary);
}
h3 {
  font-family: solex, sans-serif;
  font-weight: lighter;
  color: var(--primary-light);
  font-size: 1.75rem;
}
h4 {
  font-family: solex, sans-serif;
  font-weight: 100;
  color: var(--primary-light);
  font-size: 1.2rem;
}
h5 {
  font-family: solex, sans-serif;
  font-weight: lighter;
  color: rgba(255, 255, 255, 0.5);
}
h6 {
  font-family: solex, sans-serif;
  font-weight: 200;
  color: var(--primary-light);
}

p {
  font-size: 20px;
  font-family: solex, sans-serif;
  color: var(--primary-light);
}

/* portfoliovideo */

.portfoliovideo a {
  color: var(--tertiary);
  text-decoration: none;
}

/* index button */

.text-index {
  text-align: justify;
  orphans: 3;
}

button {
  color: var(--primary);
  background-color: var(--primary-light);
  border: none;
}

button a {
  color: var(--primary);
  text-decoration: none;
}

/* Kontakt button */

#kontakt-button-div {
  text-align: center;

  padding: 10px;
}

#kontakt-button-div a {
  font-family: solex, sans-serif;
  font-size: 22px;
  color: #f2a007;
  letter-spacing: 4px;
  z-index: 1000;
  text-decoration: none;
}

#kontakt-button-div a:hover {
  border: 2px solid var(--tertiary);
  padding: 5px;
}

#kontakt-link-div {
  width: 100%;
  height: 5%;
}

#kontakt-row {
  height: 5%;
  margin-bottom: 140px;
}

/* Portfolio Section */

.portfolio-section .container-fluid {
  padding-left: 20px;
}

.portfolio-section.portfolio-page {
  padding-top: 40px;
}

.portfolio-section .section-title {
  margin-bottom: 22px;
  text-align: center;
}

.portfolio-section .section-title h2 {
  margin-bottom: 0;
  text-align: center;
  color: var(--tertiary);
}

.filter-controls {
  margin-bottom: 43px;
  text-align: center;
}

#startfilter {
  opacity: 1 !important;
}

.filter-controls ul li {
  font-size: 20px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 60px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.filter-controls ul li.active {
  color: rgb(255, 166, 0);
}

.filter-controls ul li:after {
  position: absolute;
  right: -33px;
  top: -1px;
  content: "|";
  color: #d7d7d7;
}

.filter-controls ul li:last-child {
  margin-right: 0;
}

.filter-controls ul li:last-child:after {
  display: none;
}

.portfolio-filter .pf-item {
  width: calc(20% - 20px);
  background-size: cover;
  aspect-ratio: 1 / 1;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position-x: center;
}

.portfolio-filter .pf-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio-filter .pf-item .pf-icon {
  font-size: 36px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio-filter .pf-item:hover:after {
  opacity: 1;
}

.portfolio-filter .pf-item:hover .pf-icon {
  opacity: 1;
}

.portfolio-filter .pf-item:hover .pf-text {
  bottom: 25px;
}

.portfolio-filter .pf-item:hover .pf-text h4 {
  opacity: 1;
  top: 0;
}

.portfolio-filter .pf-item:hover .pf-text span {
  opacity: 1;
  top: 0;
}

.portfolio-filter .pf-item .pf-text {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -113px;
  width: 100%;
}

.portfolio-filter .pf-item .pf-text h4 {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
  top: 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.portfolio-filter .pf-item .pf-text span {
  font-size: 15px;
  color: rgb(255, 166, 0);
  position: relative;
  top: 40px;

  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.portfolio-filter .pf-item.large-width {
  width: calc(40% - 20px);
}

.portfolio-filter .pf-item {
  cursor: pointer;
}

.portfolio-filter .pf-item.large-height {
  height: 740px;
}

.disableonstart {
  display: none !important;
}

/* Kunden Section (Categories) */
.section-title {
  text-align: center;
}

.categories-section {
  margin-top: 10%;
  margin-bottom: 10%;
}

.right-btn {
  text-align: right;
  padding-top: 24px;
}

.categories-slider.owl-carousel .owl-item.active .cs-item .cs-text h4 {
  opacity: 1;
}

.categories-slider.owl-carousel .owl-item.active .cs-item .cs-text span {
  opacity: 1;
}

.categories-slider.owl-carousel .owl-nav button {
  font-size: 24px;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 152px;
}

.categories-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 30px;
}

.cs-item {
  text-align: center;
  width: 100%;
  background: #f5f5f5;
}

.cs-item .cs-pic {
  height: 360px;
}

.cs-item .cs-text {
  padding: 25px 0 22px;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cs-item .cs-text h4 {
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cs-item .cs-text span {
  font-size: 17px;
  color: rgb(255, 166, 0);
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* Kunden Section (Categories) ende */

/* neues */

#search-form {
  margin-top: -10px;
}

.categories a {
  color: var(--primary-light) !important;
}

.categories li {
  list-style-type: none;
  font-size: 20px;
}

.meta span {
  font-size: 18px;
}

.btn-custom {
  color: var(--tertiary);
}
.sidebar-box {
  margin-bottom: 40px;
  padding: 0 25px;
  font-size: 15px;
  width: 100%;
}

.sidebar-box a {
  text-decoration: none;
}
.sidebar-box h3.sidebar-heading {
  font-size: 35px;
  font-weight: normal;
  margin-bottom: 30px;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var (--primary);
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--tertiary) !important;
  outline: none !important;
}

.blog-entry {
  width: 100%;
  margin-bottom: 3em;
}
.blog-entry .img {
  display: block;
  height: 150px;
  width: 80%;
}

.mb-2 a {
  color: var(--primary-light);
  text-decoration: none;
}

.blog-entry .text {
  position: relative;
  z-index: 0;
  width: 100%;
  width: calc(100% - 150px);
}

.blog-entry .text h3 {
  font-weight: 400;
  font-size: 30px;
}

.blog-entry .text h3 a {
  color: #000000;
}
.blog-entry .text .meta-wrap {
  width: 100%;
  display: block;
}

.blog-entry .text .meta-wrap .meta span a {
  color: #000000;
}
.blog-entry-2 {
  margin-bottom: 6em;
}
.blog-entry-2 .img {
  display: block;
  height: 400px;
}
.blog-entry-2 .img.img-2 {
  height: 100px;
}
.blog-entry-2 .text {
  position: relative;
  z-index: 0;
}
.blog-entry-2 .text h3 {
  font-weight: normal;
  font-size: 32px;
}
.blog-entry-2 .text h3 a {
  color: #000000;
}
.blog-entry-2 .text .meta-wrap {
  width: 100%;
  display: block;
}
.blog-entry-2 .text .meta-wrap .half {
  width: 50%;
}
.blog-entry-2 .text .meta-wrap .meta span {
  margin: 0 5px;
  color: #b3b3b3;
}
.blog-entry-2 .text .meta-wrap .meta span i {
  margin-right: 10px;
}
.blog-entry-2 .author .img {
  width: 80px;
  height: 80px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog-entry-2 .author .info {
  width: calc(100% - 80px);
}
.blog-entry-2 .author .info h3 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 400;
}
.blog-entry-2 .author .info h3 a {
  font-weight: 600;
  color: #000000;
  text-decoration: underline;
}
.blog-entry-2 .author .info h3 span {
  color: #000000;
}
.blog-entry-2 .author span {
  font-size: 18px;
  color: #b3b3b3;
}
.blog-entry-2 .text-2 .big {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 60px;
  font-family: "Lora", Arial, serif;
  line-height: 0.8;
  z-index: -1;
  color: #ebebeb;
}
.blog-entry-2 .text-2 h3 {
  font-size: 24px;
  font-weight: 600;
}
.blog-entry-2 .author .img {
  width: 60px;
  height: 60px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog-entry-2 .author .info {
  width: calc(100% - 60px);
}
.blog-entry-2 .author .info h3 {
  font-size: 18px;
}
.blog-entry-2 .author span {
  font-size: 16px;
}

/* maps */
.map-container {
  width: 100%;
  height: 100%;
}
.map-container iframe {
  width: 100%;
}

/*Team*/

.team-section .col-lg-4 {
  position: relative;
}

.team-item img {
  filter: grayscale(100%);
  transition: filter 0.2s;
  transition: all 0.2s ease-in-out;
}
.team-item {
  overflow: hidden;
}
.team-item img:hover {
  filter: grayscale(0%);
  transition: all 0.5s ease-in-out;
  transform: scale(1.02);
}
.team-item:hover .img-text h5 {
  color: rgba(255, 255, 255, 1);
}

.vh-30 {
  margin-bottom: 20px;
}

.img-text {
  text-align: center;
  text-transform: capitalize;
  position: absolute;
  top: 70%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: var(--tertiary);
}
.img-text h5 {
  color: transparent;
  transition: all 1s ease-in-out;
  text-transform: uppercase;
}

.ti-text h5 {
  margin-top: 5%;
  margin-bottom: 8%;
  color: var(--tertiary);
  letter-spacing: 2px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*Team ende*/
/*Leistungen*/

.services-option {
  padding-bottom: 50px;
}

.so-item {
  margin-bottom: 42px;
}

.so-item .so-title {
  overflow: hidden;
  margin-bottom: 12px;
}

.so-item .so-title .so-number {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: rgb(255, 166, 0);
  float: left;
  margin-right: 20px;
}

.so-item .so-title h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  line-height: 36px;
}

.so-item p {
  color: #666666;
  margin-bottom: 0;
}

/*Leistungen ende*/

/* single (blog) */

/* kontak */

.form-group input {
  text-align: center;
  width: 100%;
  margin-top: 3%;
  color: transparent;
  background-color: transparent;
  padding: 10px;
  color: var(--primary-light);
  border-radius: 0;
  border: 1px solid --primary-light;
}

#adress {
  text-align: center;
  margin-bottom: 5%;
}

#adress p {
  font-size: 30px;
  font-weight: 100;
  color: var(--primary-light);
  font-family: solex, sans-serif;
}

#adress p a {
  padding: 5px;
  color: var(--tertiary);
  text-decoration: none;
}
.site-section {
  align-items: center;
  margin-top: 10%;
}
.site-section a {
  color: var(--tertiary) !important;
  text-decoration: none !important;
}
.text-color {
  color: var(--primary-light);
}
.form-control input {
  background-color: transparent;
  border: 1px solid var(--primary-light) !important;
  border-radius: 0;
  color: var(--primary);
  margin-top: 3%;
}

.form-control:focus {
  color: var(--primary-light) !important;
}

#message {
  background-color: transparent;
  color: var(--primary-light);
  border-radius: 0;
  border: 1px solid --primary-light;
}
input:active {
  border: 2px solid var(--tertiary) !important;
}

input:focus,
textarea:focus {
  background: transparent !important;
  border: 1px solid var(--tertiary) !important;
  outline: none !important;
  box-shadow: unset !important;
}

.btn-primary {
  margin-top: 10px;
  color: var(--primary) !important;
  background-color: var(--tertiary) !important;
  border-color: 1px solid var(--tertiary) !important;
  font-weight: bold;
  outline: none !important;
  border-radius: 0%;
  font-family: solex, sans-serif;
}

.form-group label {
  color: var(--primary-light);
}
.ml-auto p {
  font-size: 18px;
  font-family: solex, sans-serif;
}

/* content */

#content {
  display: block;
  margin-top: 120px;
  width: 100%;
  overflow: clip;
  margin-bottom: 100px;
}

#content-video {
  display: block;
  margin-top: 60px;
  width: 100%;
  width: 100%;
  height: 100%;
  overflow: clip;
}

#content span {
  font-family: solex, sans-serif;
}

/*Video*/

#content video {
  position: relative;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;

  &::-webkit-media-controls {
    display: none !important;
  }
}

.embed-responsive {
  width: 100%;
  overflow: clip;
  padding: 0px;
  margin: 0px;
}

.embed-responsive-item {
  width: 90vw;
  height: 52vh;
  overflow: clip;
}

.embed-responsive-item-home {
  width: 100%;
  height: 100%;
  overflow: clip;
  margin-top: 0px;
}

.map-container {
  max-height: 550px;
}
/*MEDIA TAGS*/

/* @media (max-width: 992px) {
  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--primary);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 3%);
    align-items: center !important;
  }

  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateY(20%);
    height: 23%;
    align-items: center !important;
  }

  .offcanvas-collapse {
    position: fixed;
    height: 0%;
    bottom: 0;
    top: 3px;
    width: 100%;
    overflow-y: auto;
    visibility: hidden;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: 0px;
    background-color: var(--primary);
    transition: all 0.2s ease-in-out;
  }
  .nav-item .social-icons span {
    align-items: center !important;
  }
  #navbarsExampleDefault {
    margin-left: -65px;
    margin-right: 5px;
    margin-top: 27px;
    align-items: center !important;
  }
} */

/* @media (min-width: 992px) {
  .navbar {
    box-shadow: none;
    transition: all 0.2s;
    padding-top: 1.75rem;
    background-color: transparent;
  }
  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--primary);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
  }
} */

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 767.98px) {
  .sidebar-box {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .blog-entry .img {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .blog-entry .text {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .team-tiles {
    display: block !important;
  }
  .img-text h5 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .portfolio-filter .pf-item .pf-text {
    bottom: -120px;
    position: relative !important;
  }

  .portfolio-filter .pf-item .pf-text span {
    top: 17px;
  }

  .text-index {
    text-align: justify !important;
    width: 100% !important;
    text-align: left !important;
  }
}

@media (min-width: 500px) and (max-width: 1200px) {
  .team-item {
    width: 100%;
  }
  .team-item img {
    width: 80%;
  }

  .portfolio-filter .pf-item .pf-text {
    position: relative !important;
    bottom: 10px;
  }

  .portfolio-filter .pf-item:hover {
    opacity: 0;
  }
  .portfolio-filter .pf-item:hover:after {
    opacity: 0;
  }

  .portfolio-filter .pf-item .pf-text span {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    bottom: -120px;
    position: relative !important;
  }

  .portfolio-filter.pf-item .pf-text h4 {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    bottom: -120px !important;
    position: relative !important;
    font-weight: 200;
    font-size: small;
  }
  .portfoliovideo {
    margin-bottom: 10%;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 450px) {
  .filter-controls ul {
    display: block;
    text-align: center;
    width: 100%;
  }
  #masonry .row .portfolio-filter {
    display: block;
  }

  .pf-item {
    background-size: cover !important;
    position: initial !important;
    float: none !important;
    width: 100% !important;
    /* display: block !important; */
    margin-left: 0px !important;
    margin-bottom: 5px !important;
    margin-right: 0px !important;
  }
  .large-width {
    width: 100% !important;
    background-size: 100%;
    height: 133px !important;
  }
  .large-height {
    width: 100% !important;
    height: 673px !important;
  }
  .large-both {
    height: 313px !important;
  }
  .filter-controls ul li {
    display: block;
    margin-right: 0px;
  }
  .filter-controls ul li:after {
    content: none;
  }
  .filter-controls ul {
    padding-left: 0px;
  }
  .portfoliovideo .container-fluid {
    margin-bottom: 100px;
    padding-bottom: 50px !important;
  }
}

.portfoliovideo {
  padding-bottom: 50px !important;
}
