:root {
  --color1: rgba(4,9,40,0.7);
  --colorBlauw: hsl(205, 100%, 37%);
  --color2: rgba(4,9,45,0.7);
  --color3: hsla(240,97%,17%,.51);
  --color4: white;
  --color5: hsl(205, 100%, 37%);
  --color6: #1e5875;
  --color7: hsla(180,69%,28%,1);
  --color8: #5bafc7;
  --colorText1: white;
  --colorText2: white;
  --colorText3: whitesmoke;
  --colorText4: whitesmoke;
  --colorFormBorders: #5bafc7;
  --color-bg: #FFF;
  --hojoGeel: hsl(156,100,34);
  --hojoCyaan: hsl(180,69,28);
  --hojoBlauw: hsl(204,100,37);
  --color1: rgba(255,255,255,0.9);
  --color2: rgba(200,200,200,0.9);
  --colorText1: rgba(4,9,45,1);
  --colorText2: rgba(4,9,40,1);
  --colorText3: #333;
  --btn-bg: var(--color1);
  --btn-fg: var(--color6);
  --btn-hv-bg: var(--color6);
  --btn-hv-fg: var(--color2);
  --hero-fg: var(--colorText4);
  --bg-accent: darkOrange;
  --nav-witdh:85px;
  --grad-from:var(--color5);
  --grad-to: var(--color6);
  --grad-secLight:linear-gradient(var(--color1),var(--color2) );
  --grad-secDark-from:var(--color2);
  --grad-secDark-to: var(--color1);
  --sec-HeaderBG:var(--color4);
  --sec-HeaderFG:var(--color5);
  --contentBG: whitesmoke;
  --contentFG: var(--color2);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--color-bg);
}

.al {
  text-align: left;
}

.ac {
  text-align: center;
}

.ar {
  text-align: right;
}

.bold {
  font-weight: bold !important;
}

.p1r {
  padding: 1rem !important;
}

a {
  text-decoration: none;
  color: #333;
  opacity: 0.8;
}
a:hover {
  opacity: 1;
}

h1,
h2 {
  font-size: 1.5em;
}

.cmsContentArea h3 {
  text-align: center;
}

h4 {
  font-weight: normal;
  font-style: italic;
  font-size: 1rem;
}

.pageContainer {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  --grad-from: #0006;
  --grad-to: #4448;
  margin-top: 7rem;
  min-height: 620px;
  width: 100%;
  background-color: white;
  background-image: url(../images/Brug_932x445.jpg);
  background-origin: content-box;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
}

.columnDuo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
}

.section {
  width: 100%;
  background-position: center;
  background-size: cover;
  color: var(--colorText2);
}
.section div {
  min-width: 25%;
  padding: 1rem 2rem;
}
.section h2 {
  font-size: 1.4rem;
  line-height: 1;
}
.section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.section p {
  line-height: 1.55;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
  color: var(--colorText3);
}

#btnToTop {
  z-index: 1000;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 64px;
  height: 45px;
  background: var(--sec-HeaderBG);
  color: var(--sec-HeaderFG);
  font-weight: 900;
  border: 0;
  box-shadow: var(--sec-HeaderFG) -2px -2px 3px;
  border-radius: 10px 0 0 0;
  outline: 0;
  cursor: pointer;
  opacity: 0.8;
}
#btnToTop:hover {
  opacity: 1;
}

.ml1 {
  margin-left: 2em;
}

.sectionHeader {
  background: var(--sec-HeaderBG);
  width: inherit;
  padding: 2rem;
  color: var(--sec-HeaderFG);
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.section1 {
  scroll-behavior: smooth;
}

.section2 {
  scroll-behavior: smooth;
}

.section3 {
  scroll-behavior: smooth;
}

#navContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #FFF;
  z-index: 9999;
  transition: 500ms ease-in-out;
}

nav {
  display: flex;
  padding: 0.5rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
nav img {
  height: 8rem;
  margin-right: 0.5rem;
  transition: 500ms ease-in-out;
}
nav #btnHamburgerClose {
  display: none;
}
nav #btnHamburger {
  display: none;
  color: #333;
  cursor: pointer;
  opacity: 0.8;
}
nav #btnHamburger:hover {
  opacity: 1;
}

.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--sec-HeaderFG);
  background-position: center;
  background-size: cover;
  display: block;
  margin: auto;
  transition: 1s;
}
.nav-links ul li:hover::after {
  content: "";
  width: 90%;
}
.nav-links ul li a {
  font-family: "Poppins", sans-serif;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  padding: 0.65rem;
  border-radius: 8px;
}

.text-box {
  display: flex;
  flex-direction: column;
  width: 90%;
  color: var(--hero-fg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
}
.text-box h1 {
  font-size: 4em;
  color: var(--hero-fg);
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--hero-fg);
}
.text-box ul {
  width: 60%;
}
.text-box ul li {
  text-align: left;
  text-shadow: 2px 2px #333;
  text-shadow: 1px 1px #333;
  color: whitesmoke;
  font-size: 14px;
}
.text-box .hero-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
}
.text-box .hero-btn:hover {
  border: 1px solid var(--bg-accent);
  background: var(--bg-accent);
  transition: 1s;
}

.sectionHeader {
  font-size: 2em;
}

.onePageImg {
  aspect-ratio: auto;
  height: 350px;
  margin: 0 20px 10px 0;
  float: left;
}

footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--color6) 75%, var(--color8) 25%);
  color: whitesmoke;
  width: 100%;
}
footer div {
  padding: 0.25rem 1rem;
}
footer div img {
  width: 150px;
}
footer div p {
  padding: 0;
  margin: 5px;
}
footer div a {
  text-decoration: none;
  opacity: 0.65;
  color: whitesmoke;
  transition: 750ms;
}
footer div a:hover {
  opacity: 1;
}

.dieselContainer {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.dieselContainer .dieselRow {
  display: flex;
  flex-wrap: wrap;
}
.dieselContainer .dieselRow .dieselCell {
  font-size: 0.8em;
  padding: 0.25rem 0.5rem;
  color: #333;
  min-width: 70px;
}
.dieselContainer .dieselRow .dieselCell .dieselHeader {
  background: var(--color7);
  text-align: center;
  color: whitesmoke;
}

@media (max-width: 1400px) {
  .text-box h1 {
    font-size: 3rem;
  }
  .section div {
    padding: 1em;
  }
  footer {
    position: relative;
  }
}
@media (max-width: 1050px) {
  .nav-links ul li {
    padding: 2px 4px;
  }
  .nav-links ul li a {
    font-size: 13px;
  }
  #navContainer nav {
    padding: 1rem;
  }
}
@media (max-width: 700px) {
  nav {
    flex-direction: row;
  }
  .onePageImg {
    height: 25vh;
  }
  #btnHamburgerClose {
    position: absolute;
    display: block !important;
    color: whitesmoke !important;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
  }
  #btnHamburgerClose:hover {
    opacity: 1;
  }
  .btnHamburgerClose {
    color: whitesmoke !important;
  }
  #btnHamburger {
    display: block !important;
  }
  .aeictLogo {
    width: 100% !important;
  }
  .text-box h1 {
    font-size: 3rem;
  }
  .column,
  .columnDuo {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section div {
    padding: 1.5em;
  }
  .nav-links {
    position: absolute;
    background-image: linear-gradient(var(--color7), var(--color6));
    width: var(--nav-width);
    top: 5px;
    left: -250px;
    text-align: left;
    transition: 1s;
    z-index: 1;
    box-shadow: 0.25rem 0.25rem 5px #999;
  }
  .nav-links ul {
    padding: 30px;
  }
  .nav-links ul li {
    display: block;
  }
  footer {
    position: relative;
    flex-direction: column;
  }
}
#btnPaginaTerug,
.btnMeer {
  display: inline-block;
  text-decoration: none;
  color: var(--btn-fg);
  border: 1px solid var(--btn-fg);
  border-radius: 25px;
  padding: 0.25rem 1rem;
  font-size: 13px;
  margin: 0.25rem auto;
  background: transparent;
  cursor: pointer;
}
#btnPaginaTerug:hover, #btnPaginaTerug:focus,
.btnMeer:hover,
.btnMeer:focus {
  border: 1px solid var(--btn-hv-bg);
  background: var(--btn-hv-bg);
  color: var(--btn-hv-fg);
  transition: 500ms;
}

.posMeer {
  display: block;
  margin-right: 0;
}

.cmsHeadNav {
  margin: 1rem 0;
}

.card {
  display: flex;
  flex-direction: column;
  min-width: 800px;
}
.card .logo {
  height: 3em;
}
.card .posMeer {
  display: block;
  margin-right: 0;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.overons-adres {
  border-left: 10px solid #EFEFEF;
  padding-left: 8px;
}

.frontSection {
  padding-top: 0 !important;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: 1200px;
  gap: 10px; /* Space between text and image */
}
.frontSection .text {
  padding: 0 0 1rem 0;
  line-height: 1.55;
  font-size: 1rem;
  font-weight: 500;
}
.frontSection .image {
  padding: 0;
}
.frontSection img {
  max-width: 200px; /* Adjust as needed */
  scale: 0.85;
  height: auto;
  display: block;
}

.ticker-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: #eeeeee;
  padding-left: 100%;
  box-sizing: content-box;
  z-index: 99999;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 30s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 3rem;
  color: var(--color7);
}
.ticker-wrap .ticker__item a {
  color: var(--color7);
  padding: 0.25rem 5rem;
  border-radius: 15px;
  border: 1px solid #BBB;
  box-shadow: 1px 1px 2px #333;
  opacity: 0.8;
  text-decoration: none;
}
.ticker-wrap .ticker__item a:hover {
  background-color: var(--color7);
  color: var(--color4);
  opacity: 1;
}

#contactForm {
  display: flex;
  flex-direction: column;
  border: #660000 1px solid;
  align-items: center;
  align-content: center;
  gap: 0.25rem;
  max-width: 800px;
  padding: 0;
  margin: 0 auto;
}
#contactForm h1 {
  width: 100%;
  background-color: var(--color6);
  color: var(--color4);
  text-align: center;
  font-weight: normal;
}
#contactForm button {
  width: 80%;
  text-align: center;
}

.contact_inpField {
  width: calc(100% - 25px);
  padding: 0.5rem 0.25rem;
}
.contact_inpField input {
  border: 1px solid var(--colorFormBorders);
  border-left: solid 2em var(--colorFormBorders);
  width: calc(100% - 50px);
  padding: 0.5rem;
}
.contact_inpField textarea {
  border: 1px solid var(--colorFormBorders);
  border-left: solid 2em var(--colorFormBorders);
  width: calc(100% - 50px);
  padding: 0.5rem;
  height: 200px;
}

.overons-container {
  padding-top: 2rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  justify-content: center;
}

.overons-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 2fr;
  gap: 2rem;
  min-width: 275px;
  margin-top: 1rem;
  align-items: start;
  justify-content: space-between;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding: 1rem;
}
.overons-card .cel {
  align-content: start;
  min-width: 45%;
  max-height: fit-content;
}
.overons-card a {
  color: var(--color7);
  opacity: 0.8;
  text-decoration: none;
}
.overons-card a:hover {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  nav {
    flex-direction: row;
  }
  .frontSection {
    grid-template-columns: unset;
  }
  .frontSection img {
    display: none;
  }
  .header {
    min-height: 250px;
  }
  .overons-card {
    grid-template-columns: 1fr; /* Single column layout for smaller screens */
    grid-template-rows: auto; /* Rows adjust automatically */
  }
}

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