@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("./variables.css");
@import url("./components/header.css");
@import url("./components/hero.css");
@import url("./components/aboutus.css");
@import url("./components/services.css");
@import url("./components/reference.css");
@import url("./components/location.css");
@import url("./components/footer.css");
@import url("./components/kontakt.css");
@import url("./components/googlemap.css");
@import url("./components/subpages.css");
/* global reset and global styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--color-bg-white);
  font-size: 16px;
}
input::placeholder {
  color: #888888ac !important;
}
img {
  width: 100%;
}
iframe {
  width: 100%;
  max-width: 100%;
}
html,
body {
  overflow-x: hidden;
}
p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  max-width: 65ch;
}
h1 {
  letter-spacing: -1%;
}
h2 {
  font-size: 40px;
  @media screen and (min-width: 576px) {
    font-size: 48px;
  }
  @media screen and (min-width: 768px) {
    font-size: 56px;
  }
}
h2 {
  font-size: 32px;
  @media screen and (min-width: 576px) {
    font-size: 40px;
  }
  @media screen and (min-width: 768px) {
    font-size: 48px;
  }
}
.slider_content {
  display: none;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 16px;
}
/* layouts */
.twoColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    & > * {
      max-width: 50%;
      min-width: 0;
    }
  }
}
.fourColumn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  @media screen and (min-width: 576px) {
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 768px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media screen and (min-width: 1024px) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* buttons */
.mainBtn {
  border: none;
  display: block;
  padding: 12px 24px;
  background-color: var(--color-brand);
  border-radius: 4px;
  color: var(--color-text-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 150ms;
  width: fit-content;
  font-weight: bold;
  cursor: pointer;

  &:hover {
    background-color: var(--color-brand-hover);
  }
}
.cancelBtn {
  border: none !important;
  display: block;
  padding: 12px 24px;
  background-color: var(--color-btn-cancel);
  border-radius: 4px;
  color: var(--color-text-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 150ms;
  width: fit-content;
  font-weight: bold;
  cursor: pointer;

  &:hover {
    background-color: var(--color-brand-hover);
  }
}

section {
  padding: 32px 16px;
  @media screen and (min-width: 1024px) {
    padding: 64px 16px;
  }
}

.slicknav_menu {
  display: none !important;
}

.language_content {
  img {
    display: none;
  }
  .dropdown dt {
    display: none;
  }
  ul {
    list-style: none;
    display: flex;
    gap: 6px;
    li {
      a {
        color: #fff;
        text-decoration: none;
        transition: all ease-in-out 150ms;
        font-weight: bold;
        &:hover {
          color: cornflowerblue;
        }
      }
    }
  }
}

.header--dark .language_content a {
  color: #333 !important;
  &:hover {
    color: cornflowerblue !important;
  }
}
