/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
 */
/* lato-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v23-latin-regular.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/lato-v23-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/lato-v23-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/lato-v23-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
  /* Legacy iOS */
}

/* lato-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v23-latin-italic.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/lato-v23-latin-italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/lato-v23-latin-italic.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/lato-v23-latin-italic.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/lato-v23-latin-italic.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/lato-v23-latin-italic.svg#Lato') format('svg');
  /* Legacy iOS */
}

/* lato-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v23-latin-700.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/lato-v23-latin-700.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/lato-v23-latin-700.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/lato-v23-latin-700.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
  /* Legacy iOS */
}

/* lato-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lato-v23-latin-700italic.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/lato-v23-latin-700italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/lato-v23-latin-700italic.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/lato-v23-latin-700italic.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/lato-v23-latin-700italic.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/lato-v23-latin-700italic.svg#Lato') format('svg');
  /* Legacy iOS */
}

* {
  margin: 0;
  padding: 0;
  hyphens: none;
  font-family: 'Lato', sans-serif;
  color: inherit;
  border: none;
  background: none;
}

:root {
  --padding: 1.5rem;
  --color-black: #1A1A1A;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey: #F0F0F0;
  --color-code-yellow: #F8CF47;
  --color-code-fullyellow: #FFC400;
  --color-code-red: #FF5C38;
  --color-code-blue: #2762BF;
}


/* style links */

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* in p */
p a {
  color: var(--color-code-blue);
}

p a:hover {
  text-decoration: underline;
}


.download a {
  display: block;
  margin-top: 0.5rem;
}

/* general styles*/

.main {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-bottom: 0px;
  min-height: 50vh;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img_taubi{
  margin-bottom: 1rem;

}

section {
  padding: 0rem 1.25rem 3rem 1.25rem;
}


.aboutimage {
  width: full;
  max-width: 800px;
  padding: 1rem 0rem;
}

@media (min-width: 700px) {}

/* font styles */

html {
  font-size: 16px;
}

h2 {
  font-size: 1rem;
  font-weight: bold;
  color: #2762BF;
  hyphens: none;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

h3 {
  color: var(--color-black);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 0.4rem;
  max-width: 800px;
}

.heroteaser {
  font-size: 2.25rem;
}

.text h4 {
  hyphens: auto;
  font-weight: bold;
  font-size: 1.33rem;
  color: var(--color-black);
}

h4 {
  hyphens: auto;
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--color-code-blue);
}

.h4teaser {
  font-size: 1.5rem;
}

.introtext p {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--color-black);
  line-height: 1.66rem;
  margin-bottom: 1.5rem;
}

p {
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 800px;
}

.column p {
  margin-bottom: 1rem;
}

ol {
  max-width: 800px;
  margin-left: 1.25rem;
  margin-bottom: 2rem;
}

.text p {
  margin-bottom: 1rem;
}


.site-title h3 strong {
  background-color: var(--color-code-blue);
  padding: 0 1rem;
  border-radius: 3rem;
  color: var(--color-white)
}

@media (min-width: 500px) {
  h3 {
    font-size: 2.75rem;
  }

  .h4teaser {
    font-size: 2rem;
  }

  .heroteaser {
    font-size: 3rem;
  }
}

@media (min-width: 700px) {
  html {
    font-size: 20px;
  }

  h3 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .heroteaser {
    font-size: 3.5rem;
  }

  .h4teaser {
    font-size: 1.5rem;
  }

  .site-title h3 strong {
    background-color: var(--color-code-blue);
    padding: 0 1rem;
    border-radius: 2rem;
    color: var(--color-white)
  }
}

.main ul {
  margin-left: 1.25rem;
}

.main li {
  margin: 0.625rem 0;
  line-height: 1.5rem;
}

.teasertext {
  padding-top: 2rem;
}


/*forms*/

.field {
  padding-top: 0.5rem;
}

input {
  width: 100%;
  padding: 0.75rem 0.75rem;
  margin: 0.5rem 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0.33rem;
  background-color: var(--color-white);
}

textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  margin: 0.5rem 0rem;
  box-sizing: border-box;
  border: none;
  border-radius: 0.33rem;
  background-color: var(--color-white);

}

#labelcontact {
  color: #1A1A1A;
}

.phone {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.contactcolumn {
  flex: 1
}

.maincontact {
  background-color: var(--color-code-yellow);
  padding: 2rem 2rem 2rem 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  box-sizing: border-box;
}

.contactimage{
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  box-sizing: border-box;
}


@media (min-width: 500px) {
  .maincontact {
    padding: 2rem;
  }
}

.contact-spacer {
  margin-top: 6rem;
}

@media (min-width: 700px) {

  .maincontact {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }

  .formrow {
    display: flex;
    gap: 1rem;
  }

  .field {
    width: 100%;
  }
}

@media (min-width: 1200px) {

  .contactgrid {
    display: flex;
    gap: 2rem;
    padding: 1rem
  }
}

/* references */
.references {
  margin-top: 3rem;
}


.referencedate {
  margin-top: 0.33rem;
}

.description {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.refitem {
  border-top: solid 2px var(--color-code-blue);
  max-width: 800px;
}

.leistungen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
}

.leistung {
  background-color: var(--color-code-light-grey);
  padding: 0.5rem;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  border-radius: .33rem;

}

@media (min-width:700px) {
  .leistungen {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .625rem;
    max-width: 1000px;
  }

  .leistung {
    padding: 0.75rem 0.25rem 0.75rem 1rem;
  }
}

/* table baumaschinen */
.table {
  margin: 2rem 0.5rem;
}

.tableentry {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tableentry-a {
  color: var(--color-code-blue);
  font-weight: bold;
  font-size: 0.8rem;
}

.tableentry-b {
  font-size: 0.8rem;
}

.details {
  font-size: 0.8rem;
  margin: 1rem 0rem;
}

/* slider */

.leistung-slider {
  background-color: var(--color-code-light-grey);
  padding: 1rem;
  hyphens: auto;
  border-radius: 0.33rem;
  position: relative;
}

.swiper-container {
  position: relative;
  width: 85%;
  margin: auto;
}


.swiper {
  width: calc(100% - 45px);
}

.swiper-prev,
.swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.swiper-prev {
  left: 0;
}

.swiper-next {
  right: 0;
}

.slider_img {
  width: 75%;
  margin: auto;
  padding: 2rem 0rem 3rem 0rem;
}

.slider_text {
  position: absolute;
  bottom: 0;
  padding-bottom: 0.6rem;
}


/* header and navi */

header ul {
  padding: 2rem 0rem 7.5rem 3.75rem;
}


header li {
  font-size: 1.25rem;
  line-height: 3.75rem;
  font-weight: bold;
  color: var(--color-white);
  list-style-type: none;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height .5s ease-in-out;
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem 1rem;
}

.menu {
  z-index: 9999;
  background-color: var(--color-code-blue);
  /* height: 4rem; */
}

.navi-out {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.header {
  width: 100%;
  height: 4rem;
  position: fixed;
  background-color: var(--color-white);
  z-index: 100;
  top: 0;

}

.kontakt {
  padding: 0.1rem 1rem;
  background-color: var(--color-code-yellow);
  border-radius: 2rem;
  color: var(--color-black);
  width: max-content;
}

.kontakt:hover {
  background-color: var(--color-code-blue);
}

.kontakt:hover svg path {
  stroke: var(--color-white);
}

.kontakt:hover {
  color: var(--color-white);
}

.kontakt-container {
  margin: 0.4rem 0rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: 3rem;
}

.logo_menu {
  display: none;
}


/* Desktop */
@media (min-width: 760px) {
  #logo {
    display: none;
  }

  .nav-content-ul {
    padding: 0;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: auto;
    max-width: 1250px;
  }

  .kontakt-container {
    height: 1.5rem;
  }

  .logo_menu {
    display: initial;
    width: 90px;
  }

  .burgericon,
  .navi-out {
    display: none;
  }

  nav {
    height: auto;
  }

  .menu {
    max-width: 1250px;
    margin: auto;
    background-color: var(--color-white);
    left: 50%;
    transform: translateX(-50%);

  }

  header ul {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    align-items: center;
  }

  header li {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 0rem;
  }

  header li:hover {
    color: var(--color-code-blue);
  }

  header a:active {
    color: var(--color-code-red);
  }

  li.kontakt {
    padding: 2rem 1rem;
    border-radius: 2rem;
  }

  li.kontakt:hover {
    background-color: var(--color-code-blue);
    color: var(--color-white);
  }



  .kontakt-container:hover {
    color: var(--color-white);

  }

  .navigation {
    display: flex;
    justify-content: flex-start;
    gap: 8rem;
    align-items: center;

  }
}

/*aboutteaser */
#lineone {
  position: absolute;
  margin-top: 25px;
  margin-left: -98px;
  z-index: -1;
  width: 94px;
}

#linetwo {
  position: absolute;
  margin-top: 26px;
  margin-left: -172px;
  z-index: -1;
  width: 175px;
}

.aboutteaser h3 {
  hyphens: none;
}
.contentimage{
  height: auto;
}
.img_container{
  max-width: 1250px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  margin: auto;
  margin-top: 4rem;
}

@media (min-width: 500px) {
  #lineone {
    margin-top: 39px;
    margin-left: -156px;
    width: 151px;
  }

  #linetwo {
    margin-top: 41px;
    margin-left: -268px;
    width: 271px;
  }
}

@media (min-width: 700px) {
  .about_wrap1 {
    display: flex;
    gap: 3rem;
  }
  .image_drei {
    flex: 6;
  }

  .about_wrap2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 4;
    gap: 2rem;
  }

  #lineone {
    margin-top: 54px;
    margin-left: -214px;
    width: 206px;
  }

  #linetwo {
    margin-top: 55px;
    margin-left: -366px;
    width: 369px;
  }

}

.leistung h4 {
  bottom: 0;
  hyphens: auto;
}

/* footer */

footer li {
  font-size: 1rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: var(--color-white);
  list-style-type: none;
}

footer p {
  line-height: 1.5rem;
}

footer {
  background-color: #2762BF;
  padding-bottom: 2rem;
  width: 100%;
}

footer .logo {
  padding: 2.5rem 0rem 0rem 3.75rem;

}

.column {
  flex: 1;
  padding: 2.5rem 0rem 0rem 3.75rem;
}


.column h2 {
  color: white;
  font-size: 1rem;

}

.column p {
  color: white;
}



@media (min-width: 700px) {
  .grid {
    display: flex;
  }

  footer li:hover {
    font-weight: bold;
  }

  .footer_content {
    max-width: 1250px;
    margin: auto;
  }

}

/*buttons*/

.buttonred {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-code-red);
  border-radius: 0.5rem;
  color: var(--color-white);
  width: max-content;
}

.buttonred:hover {
  background-color: var(--color-code-blue);
  transition: all .5s ease-in-out;

}

.buttonred:active {
  background-color: var(--color-code-yellow);
  border: var(--color-black) solid 3px;

}

.button_cont {
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}

.button {
  display: flex;
  gap: 0.5rem;
  padding-top: 1.5rem;
  transition: all .5s ease-in-out;
  color: var(--color-code-blue);

}

.button:hover {
  gap: 1rem;
}

.buttontext {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: -1px;
  hyphens: none;
}


.buttonred:hover {
  background-color: var(--color-code-blue);
}

.button:focus-visible {}

.button:active {}

button:hover svg path {
  stroke: #392848
}

/*  accordion */
.accordion {
  font-weight: bold;
  padding-bottom: 0.5rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-top: 2px solid var(--color-code-blue);
  padding-top: 0.33rem;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel {
  height: 0;
  overflow: hidden;
  transition: all .5s ease-in-out;
}


.content-container p {
  margin-bottom: 0.66rem;
}

.icon {
  transition: all .5s ease-in-out;
}

.download {
  color: #2762BF;
  padding-top: 1rem;
  font-weight: bold;
  /*   display: flex;
  gap: 0.5rem;
  align-items: center; */
}

/* BAUSTELLE */

.leistungimg {
  object-fit: cover;
}
.container_icon {
  background-color:var(--color-code-light-grey);
  border-radius: 50%;
  width: clamp(3rem, 7vw, 7rem);
  padding: 1rem;
  position: absolute;
  left: 65%;
  margin-top: -100px;
  
  }
.honeypot {
  position: absolute;
  left: -9999px;
}

/* .leistung_top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
} */

.leistung_grid_img {
  width: 75%;
  margin: 1rem auto;
}

