@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.button-red {
  text-align: center;
  display: block;
  margin: 2rem auto;
  width: 100%;
  padding: 1.2rem 0;
  color: white;
  border-radius: 0.5rem;
  background-color: #EC1E24;
  font-family: "Astronomus";
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 993px) {
  .button-red {
    font-size: 1rem;
  }
}

.button-red:hover {
  color: white;
  cursor: pointer;
  scale: 1.02;
}

/*
* Checkboxes
*/
.form-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.form-checkbox input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.form-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #DEDEDE;
  border-radius: 0.3rem;
  transition: all 0.2s ease-in-out;
}

/* On mouse-over, add a grey background color */
.form-checkbox:hover input ~ .checkmark {
  background-color: lightgrey;
  cursor: pointer;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #0055A7;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact-form-regular {
  background-color: #F8F0E0;
  margin: 5rem -2rem 0 -2rem;
  padding: 0.5rem 1rem 1rem 1rem;
  text-align: justify;
  scroll-margin-top: 10rem;
}
@media (min-width: 993px) {
  .contact-form-regular {
    margin: 5rem -4rem 0 -4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1201px) {
  .contact-form-regular {
    margin: 5rem -8rem 0 -8rem;
    padding-right: 8rem;
    padding-left: 8rem;
  }
}

form {
  margin: 1rem auto;
}
form input[type=text],
form input[type=email],
form input[type=number],
form textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  outline: none;
  margin: 0.2rem auto;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border: 0;
  background-color: #DEDEDE;
  color: #3B3B3B;
  border-radius: 0.3rem;
  transition: all 0.2s ease-in-out;
}
form input[type=text]:hover,
form input[type=email]:hover,
form input[type=number]:hover,
form textarea:hover {
  background-color: lightgray;
}
form textarea {
  resize: vertical;
  min-height: 5rem;
  max-height: 30rem;
}
form label {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: rgba(59, 59, 59, 0.8);
}

.form-input-container {
  display: flex;
  flex-direction: column;
}

#form-message {
  height: 10rem;
  margin-bottom: 1rem;
}

@media (min-width: 993px) {
  .contact-form-regular > div > form > fieldset:first-child {
    display: flex;
  }
  .contact-form-regular > div > form > fieldset:first-child .form-input-container {
    margin: 0 0.5rem;
    width: 100%;
  }
  .contact-form-regular > div > form > fieldset:first-child .form-input-container:first-child {
    margin-left: 0;
  }
  .contact-form-regular > div > form > fieldset:first-child .form-input-container:last-child {
    margin-right: 0;
  }
  .contact-form-regular > div > form .button-red {
    width: 15rem;
    margin: 1rem 0;
  }
}

/**************************************************
* Contact Page exceptions
**************************************************/
#contact-page .contact-form-regular {
  background-color: white;
}
#contact-page .contact-form-regular h3 {
  text-align: left;
}
#contact-page .contact-form-regular p:nth-child(2) {
  display: none;
}
#contact-page .subpage-service-info a {
  text-decoration: none;
  color: #EC1E24;
}

.gallery {
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(12, 150px);
  margin: 0 auto;
  max-width: 90%;
  padding: 3rem 0;
}

/* Grid images --------------------------------------------*/
.img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Grid items --------------------------------------------*/
.item-4 {
  grid-row: 2/5;
}

.item-5 {
  grid-row: 2/6;
}

.item-6 {
  grid-row: 2/4;
}

.item-7 {
  grid-row: 5/6;
}

.item-8 {
  grid-row: 4/6;
}

.item-9 {
  grid-row: 6/11;
}

.item-10 {
  grid-row: 6/7;
}

.item-11 {
  grid-row: 6/9;
}

.item-12 {
  grid-row: 7/12;
}

.item-13 {
  grid-row: 9/13;
}

.item-14 {
  grid-row: 11/13;
}

/*
*
Hamburger Mobile Menu
*
*/
/*Animated Hamburger Icon*/
#btn-ham-open {
  position: fixed;
  right: 6%;
  top: 1.6rem;
  width: 38px;
  height: 25px;
  margin: 5px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9999;
}

#btn-ham-open span {
  display: block;
  position: absolute;
  height: 0.3rem;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#btn-ham-open span:nth-child(1) {
  top: 0px;
}

#btn-ham-open span:nth-child(2),
#btn-ham-open span:nth-child(3) {
  top: 12px;
}

#btn-ham-open span:nth-child(4) {
  top: 24px;
}

#btn-ham-open.mobile-menu-active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#btn-ham-open.mobile-menu-active span:nth-child(2) {
  transform: rotate(45deg);
}

#btn-ham-open.mobile-menu-active span:nth-child(3) {
  transform: rotate(-45deg);
}

#btn-ham-open.mobile-menu-active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.grid-wrapper {
  margin: 2rem -1rem;
}

.grid-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

main .services-gallery .small-gallery .gallery-intermediate {
  display: none;
}
@media (min-width: 781px) {
  main .services-gallery .small-gallery .gallery-intermediate {
    display: block;
  }
}
@media (min-width: 993px) {
  main .services-gallery .small-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.grid-wrapper .wide {
  grid-column: span 1;
  grid-column: span 2;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 1;
  grid-row: span 1;
  grid-column: span 2;
  grid-row: span 2;
}

.parallax {
  width: 100vw;
  position: relative;
  overflow: hidden;
  /* small visual fallback while script runs */
  min-height: 180px;
  background: #ddd;
  margin-left: -2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-height: 300px;
}
@media (min-width: 781px) {
  .parallax {
    max-height: 400px;
  }
}
@media (min-width: 993px) {
  .parallax {
    max-height: 800px;
    margin-left: -4rem;
  }
}
@media (min-width: 1201px) {
  .parallax {
    margin-left: -8rem;
  }
}

/* The actual image we move precisely */
.parallax__img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(0px);
  will-change: transform;
  width: auto;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -o-object-fit: cover;
     object-fit: cover;
  /* Make the img cover the container both horizontally and vertically */
  min-height: 100%;
}
@media (min-width: 781px) {
  .parallax__img {
    min-width: 100%;
  }
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
}
header .hess-logo {
  position: relative;
  height: 100%;
  width: 10rem;
  margin-left: 5%;
  display: inline-block;
  transition: opacity 0.2s ease-in 0.8s, height 0.1s ease-in 0.4s;
}
header .hess-logo > div {
  position: absolute;
  top: 24%;
  height: 60%;
  width: 100%;
  background: url("/assets/svg/hess-logo.svg") no-repeat;
}
@media (min-width: 993px) {
  header .hess-logo {
    position: inline;
    width: 13rem;
  }
}
header menu {
  opacity: 0;
  display: inline-block;
  margin-top: 5rem;
  transition: opacity 0.3s ease-in;
}
header menu li a {
  font-family: "Astronomus";
  text-decoration: none;
  transition: all 0.2s ease-in;
}
header menu li a:hover {
  color: white;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.2s ease-in;
}

@media (min-width: 993px) {
  header menu {
    display: flex;
    opacity: 1;
    visibility: 1;
    justify-content: flex-end;
    align-items: end;
    width: 100%;
    margin-top: initial;
    margin-bottom: 0.3rem;
    margin-left: 12vw;
  }
  menu > li:nth-child(5) {
    margin-left: auto;
  }
  header li {
    display: inline-block;
  }
  header li a,
  header li #language-switcher {
    font-family: "Astronomus";
    text-decoration: none;
    color: white;
    margin: 0 1rem;
    display: inline-block;
    transition: all 0.2s ease-in;
    cursor: pointer;
  }
  header li a:hover,
  header li #language-switcher:hover {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.navigation-bar {
  background-color: #EC1E24;
  position: fixed;
  border-radius: 0.5rem;
  width: 96%;
  height: 4rem;
  top: 0.8rem;
  z-index: 99;
}
@media (min-width: 993px) {
  .navigation-bar {
    display: flex;
    height: 5rem;
  }
}

menu {
  list-style: none;
  display: none;
}
menu a:hover {
  cursor: pointer;
}
@media (min-width: 993px) {
  menu {
    display: flex;
  }
}

menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.2s ease-in;
}
menu .sub-menu p {
  display: none;
}
menu .sub-menu li a:hover {
  color: #3B3B3B;
}
@media (min-width: 993px) {
  menu .sub-menu {
    height: initial;
    transition: all 0.2s ease-in;
    position: absolute;
    top: 4.5rem;
    padding: 1.5rem;
    padding-bottom: 0;
    margin-top: 2vw;
    box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem) translateX(-15rem);
    display: grid;
    grid-template-columns: 50% 50%;
    width: 50vw;
    max-width: 40rem;
  }
  menu .sub-menu p {
    display: flex;
  }
}
@media (min-width: 1401px) {
  menu .sub-menu {
    margin-top: 1.5rem;
  }
}
menu li {
  margin: 0.2rem 0 0.2rem 2rem;
}
@media (min-width: 993px) {
  menu li {
    margin: 0;
    height: 6vw;
    margin-bottom: -3vw;
  }
}
@media (min-width: 1401px) {
  menu li {
    height: 5rem;
    margin-bottom: -2.2rem;
  }
}
@media (min-width: 993px) {
  menu .sub-menu li {
    margin: 0;
    height: 4vw;
    max-height: 4rem;
  }
  menu .sub-menu li p {
    font-size: 0.85rem;
    color: dimgray;
    margin-top: -0.5rem;
    opacity: 0;
    transition: all 0.2s ease-in;
  }
  menu .sub-menu li a:hover ~ p {
    opacity: 1;
    transition: all 0.2s ease-in;
  }
  menu .sub-menu li a {
    margin: 0;
    color: #3B3B3B;
    height: -moz-fit-content;
    height: fit-content;
  }
  menu > li:nth-child(1)::after {
    display: block;
    content: "";
    background-color: white;
    width: 20px;
    height: 20px;
    transform: translateY(3rem) translateX(6rem) rotate(45deg);
    opacity: 0;
  }
  menu > li:nth-child(1):hover::after {
    opacity: 1;
    transition: all 0.2s ease-in 0.2s;
    transform: translateX(6rem) translateY(1.2rem) rotate(45deg);
  }
  menu > li:nth-child(1):hover > a {
    opacity: 0.6;
  }
  menu > li:nth-child(1):hover .sub-menu {
    opacity: 1;
    visibility: visible;
    background-color: white;
    border-radius: 0.5rem;
    transform: translateY(0.5rem) translateX(-15rem);
    transition: all 0.2s ease-in;
  }
}

@media (min-width: 993px) {
  .mobile {
    display: none;
  }
}
/*********************************************
* Mobile Menu 
*********************************************/
@media (max-width: 781px) {
  menu li a {
    font-size: 7vw;
    line-height: 10vw;
  }
}
@media (min-width: 782px) and (max-width: 992px) {
  menu li a {
    font-size: 3rem;
    line-height: 5rem;
  }
}
@media (max-width: 781px) {
  menu .sub-menu li a {
    font-size: 5vw;
    line-height: 8vw;
  }
}
@media (min-width: 782px) and (max-width: 992px) {
  menu .sub-menu li a {
    font-size: 2rem;
    line-height: 4rem;
  }
}
menu #menu-service-dropdown:after {
  content: "▼";
  padding-left: 0.5em;
  vertical-align: middle;
  font-size: 1rem;
}
@media (min-width: 781px) {
  menu #menu-service-dropdown:after {
    font-size: 1.5rem;
  }
}
@media (min-width: 993px) {
  menu #menu-service-dropdown:after {
    content: "";
  }
}
menu .sub-menu > li:last-child {
  margin-bottom: 1rem;
}

#menu-service-dropdown.mobile-menu-active ~ ul.sub-menu {
  height: 15rem;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease-in;
}
@media (min-width: 481px) {
  #menu-service-dropdown.mobile-menu-active ~ ul.sub-menu {
    height: 53vw;
  }
}
@media (min-width: 782px) {
  #menu-service-dropdown.mobile-menu-active ~ ul.sub-menu {
    height: 25rem;
  }
}
@media (min-width: 993px) {
  #menu-service-dropdown.mobile-menu-active ~ ul.sub-menu {
    height: initial;
  }
}

/*Transition Timing:
 * Click ->
 * -> hess-logo opacity: .1
 * -> hess-logo height: .1s (delay: .1s)
 * -> menu opacity: .3s (delay: .6s)
 * -> li a opacity: .2s
 */
#btn-ham-open.mobile-menu-active span {
  background: #3B3B3B;
}

.hess-logo.mobile-menu-active {
  opacity: 0;
  height: 0;
  transition: opacity 0.1s ease-in, height 0.1s ease-in 0.1s;
}

.navigation-bar {
  transition: all 0.2s ease-in 0.5s;
}
.navigation-bar menu {
  visibility: hidden;
}
@media (min-width: 993px) {
  .navigation-bar menu {
    visibility: visible;
  }
}

.navigation-bar.mobile-menu-active {
  transition: all 0.3s ease-in;
  transition-delay: 0.2s;
  height: 96vh;
  background-color: white;
}

menu.mobile-menu-active {
  opacity: 1;
  visibility: visible;
  display: inline-block;
  transition: opacity 0.3s ease-in 0.6s;
}
menu.mobile-menu-active li a {
  transition: opacity 0.2s ease-in;
}
menu.mobile-menu-active li a:hover {
  transition: opacity 0.2s ease-in;
  opacity: 0.6;
  color: #3B3B3B;
}

footer {
  background-color: #0055A7;
}
footer p,
footer a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.6rem;
}
@media (min-width: 993px) {
  footer p,
  footer a {
    font-size: 1rem;
    line-height: 1.8rem;
  }
}
footer a:hover {
  text-decoration: underline;
  color: white;
}

#upper-footer {
  padding: 1rem 0;
  margin: 0 0 2rem 0;
}
#upper-footer p {
  display: flex;
  align-items: center;
}
#upper-footer .hess-logo {
  text-align: center;
  background: url("/assets/svg/hess-logo.svg") no-repeat;
  height: 5rem;
  margin: 2rem auto;
}
@media (min-width: 993px) {
  #upper-footer .footer-content {
    display: flex;
    justify-content: space-between;
  }
}
#upper-footer .footer-content-r {
  text-transform: uppercase;
  margin-top: 4rem;
}
#upper-footer .footer-content-r > div:nth-child(1),
#upper-footer .footer-content-r > div:nth-child(2) {
  margin-top: 1rem;
}
@media (min-width: 993px) {
  #upper-footer .footer-content-r > div:nth-child(1),
  #upper-footer .footer-content-r > div:nth-child(2) {
    margin-top: 0rem;
  }
}
#upper-footer .footer-content-r > div:nth-child(1) {
  margin-right: 3rem;
}
#upper-footer .footer-content-r p {
  font-family: "Nunito-Bold";
  margin-bottom: 0.5rem;
}
@media (min-width: 993px) {
  #upper-footer .footer-content-r {
    display: flex;
    margin-top: 0;
  }
}
#upper-footer .footer-content-l > div {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
}

.icn-location,
.icn-phone,
.icn-mail {
  margin-right: 1rem;
}

.icn-location {
  background: url("/assets/svg/icn-location.svg") no-repeat;
  height: 2.7rem;
  width: 2rem;
}

.icn-phone {
  background: url("/assets/svg/icn-phone.svg") no-repeat;
  height: 2rem;
  width: 2rem;
}

.icn-mail {
  background: url("/assets/svg/icn-mail.svg") no-repeat;
  background-position: center;
  height: 2rem;
  width: 2.2rem;
}

#lower-footer {
  background-color: white;
  margin: 0 -2rem;
  padding: 1rem 0;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 993px) {
  #lower-footer {
    padding-left: 4rem;
    padding-right: 4rem;
    margin: 0 -4rem;
  }
}
@media (min-width: 1201px) {
  #lower-footer {
    padding-left: 8rem;
    padding-right: 8rem;
    margin: 0 -8rem;
  }
}
#lower-footer ul {
  display: flex;
  justify-content: center;
}
@media (min-width: 993px) {
  #lower-footer ul {
    justify-content: end;
  }
}
#lower-footer li a {
  color: #3B3B3B;
  margin: 0 1rem;
}
@media (min-width: 993px) {
  #lower-footer li a:last-child {
    margin-right: 0;
  }
}

#footer-socials {
  display: flex;
}
#footer-socials #icn-li,
#footer-socials #icn-ig,
#footer-socials #icn-fb,
#footer-socials #icn-yt {
  width: 2rem;
  height: 2rem;
  margin: 3rem 1rem 1rem 0;
}
#footer-socials #icn-li {
  background: url("/assets/svg/icn-li.svg") no-repeat;
}
#footer-socials #icn-ig {
  background: url("/assets/svg/icn-ig.svg") no-repeat;
}
#footer-socials #icn-fb {
  background: url("/assets/svg/icn-fb.svg") no-repeat;
}
#footer-socials #icn-yt {
  background: url("/assets/svg/icn-yt.svg") no-repeat;
}

.home-services {
  text-align: center;
}
.home-services h3 {
  margin: 2rem 0;
}
.home-services > div {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
  margin-top: 7rem;
}
@media (min-width: 550px) {
  .home-services > div {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1201px) {
  .home-services > div {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-tile {
  text-align: center;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  padding: 10% 0;
  margin: 1.5rem 0;
  height: 70%;
  overflow: hidden;
  margin-top: -5rem;
  transition: all 0.2s ease-in;
  transition-delay: 0.1s;
}
@media (min-width: 550px) {
  .service-tile {
    height: 75%;
  }
}
@media (min-width: 993px) {
  .service-tile {
    height: 70%;
  }
}
.service-tile :nth-child(1) {
  font-family: "Astronomus";
  font-size: 1.3rem;
  width: 90%;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
  position: relative;
}
.service-tile :nth-child(2) {
  position: relative;
  width: 60%;
  margin: 0 auto;
  overflow: hidden;
}
.service-tile :nth-child(2) video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  z-index: 5;
  transition: all 0.05s ease-in;
}
.service-tile :nth-child(2) img {
  width: 100%;
  position: relative;
  transition: all 0.2s ease-in;
}
.service-tile :nth-child(3) {
  font-size: 0.85rem;
  color: dimgray;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.service-tile :nth-child(4) {
  opacity: 0;
  padding: 0rem;
  margin: 0 auto 0 auto;
  width: 70%;
  padding: 1.2rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.service-tile:hover :nth-child(4),
.service-tile:active :nth-child(4),
.service-tile:focus :nth-child(4) {
  display: block;
  opacity: 1;
  font-size: 0.85rem;
  transition: all 0.2s ease-in;
  transition-delay: 0.2s;
}

.service-tile:hover,
.service-tile:active,
.service-tile:focus {
  background: #0055A7;
  transform: scale(1.05);
  overflow: visible;
  z-index: 5;
  height: 100%;
}
@media (min-width: 481px) {
  .service-tile:hover,
  .service-tile:active,
  .service-tile:focus {
    height: 90%;
  }
}
@media (min-width: 550px) {
  .service-tile:hover,
  .service-tile:active,
  .service-tile:focus {
    height: 100%;
  }
}
@media (min-width: 993px) {
  .service-tile:hover,
  .service-tile:active,
  .service-tile:focus {
    height: 90%;
  }
  .service-tile:hover video,
  .service-tile:active video,
  .service-tile:focus video {
    transition: all 0.2s ease-in;
    transition-delay: 0.2s;
    opacity: 1;
  }
  .service-tile:hover .video-container img,
  .service-tile:active .video-container img,
  .service-tile:focus .video-container img {
    transition: all 0.2s ease-in;
    transition-delay: 0.3s;
    opacity: 0;
  }
}
@media (min-width: 1201px) {
  .service-tile:hover,
  .service-tile:active,
  .service-tile:focus {
    height: 100%;
  }
}
@media (min-width: 1401px) {
  .service-tile:hover,
  .service-tile:active,
  .service-tile:focus {
    height: 90%;
  }
}
.service-tile:hover p,
.service-tile:active p,
.service-tile:focus p {
  color: white;
}

.service-tile,
.service-tile:hover,
.service-tile:active,
.service-tile:focus,
.service-tile :nth-child(4) {
  transition: all 0.2s ease-in;
}

.home-about {
  margin: 1rem 0 3rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}
@media (min-width: 993px) {
  .home-about {
    margin-top: 5rem;
  }
}
.home-about div {
  margin-left: -2rem;
  margin-right: -2rem;
  background-color: #0055A7;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 993px) {
  .home-about div {
    padding: 2rem 0;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
@media (min-width: 1201px) {
  .home-about div {
    padding: 4rem 0;
    margin-left: -8rem;
    margin-right: -8rem;
  }
}
.home-about h3 {
  color: white;
  margin: 0.8rem 0;
  position: relative;
  z-index: 10;
  text-align: left;
}
.home-about p {
  color: white;
  position: relative;
  text-align: justify;
  z-index: 10;
}
@media (min-width: 481px) {
  .home-about h3,
  .home-about p {
    text-align: left;
    width: 80%;
  }
}
@media (min-width: 781px) {
  .home-about h3,
  .home-about p {
    width: 50%;
    margin-left: 4rem;
  }
}
@media (min-width: 993px) {
  .home-about h3,
  .home-about p {
    width: 45%;
    margin-left: 4rem;
  }
}
@media (min-width: 1201px) {
  .home-about h3,
  .home-about p {
    width: 30%;
    margin-left: 8rem;
  }
}
.home-about img {
  position: absolute;
  height: 120%;
  right: calc(-30rem + 40vw);
  margin-top: -3rem;
  z-index: 5;
  filter: brightness(0.5);
}
@media (min-width: 481px) {
  .home-about img {
    right: calc(-30rem + 40vw);
  }
}
@media (min-width: 781px) {
  .home-about img {
    right: calc(-35rem + 40vw);
    height: 140%;
    margin-top: -4rem;
  }
}
@media (min-width: 993px) {
  .home-about img {
    filter: none;
    height: 150%;
    right: calc(-25rem + 8vw);
    margin-top: -7rem;
  }
}
@media (min-width: 1201px) {
  .home-about img {
    right: calc(-30rem + 8vw);
    margin-top: -6rem;
    height: 140%;
  }
}
@media (min-width: 1401px) {
  .home-about img {
    margin-top: -8rem;
    height: 145%;
    right: -25rem;
    right: calc(-27rem + 6vw);
  }
}

.home-rental {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
}
@media (min-width: 481px) {
  .home-rental {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 781px) {
  .home-rental {
    margin-top: 10vw;
  }
}
@media (min-width: 993px) {
  .home-rental {
    margin-left: -4rem;
    margin-right: -4rem;
    text-align: center;
  }
  .home-rental > div {
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    gap: 3%;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 5rem;
  }
}
@media (min-width: 993px) and (min-width: 1201px) {
  .home-rental > div {
    grid-template-columns: 55% 45%;
    width: 80%;
  }
}
@media (min-width: 993px) {
  .home-rental h3,
  .home-rental p {
    text-align: left;
  }
}
@media (min-width: 1201px) {
  .home-rental {
    margin-top: 10rem;
    margin-left: -8rem;
    margin-right: -8rem;
  }
}
.home-rental h3 {
  margin: 1rem 0;
  grid-row: 1;
  grid-column: 2;
  align-self: end;
}
.home-rental p {
  text-align: justify;
  margin-bottom: 1rem;
  grid-row: 2;
  grid-column: 2;
  align-self: center;
}
.home-rental img {
  width: 100%;
  margin-bottom: 1rem;
  grid-row: 2;
  grid-column: 1;
  grid-row: span 3;
  /* Merges the first column */
}
.home-rental a {
  grid-row: 3;
  grid-column: 2;
  align-self: start;
}
@media (min-width: 993px) {
  .home-rental a {
    margin-top: 0.5rem;
  }
}

.home-career {
  background-color: #0055A7;
  margin: 0 -2rem;
}
@media (min-width: 993px) {
  .home-career {
    margin: 0 -4rem;
  }
}
@media (min-width: 1201px) {
  .home-career {
    margin: 0 -8rem;
  }
}
.home-career div {
  padding: 0.5rem 1rem;
}
@media (min-width: 993px) {
  .home-career div {
    padding: 0 0 0 4rem;
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
@media (min-width: 1201px) {
  .home-career div {
    padding: 0 0 0 8rem;
  }
}
.home-career h3 {
  grid-column: 1;
  color: white;
}
@media (min-width: 993px) {
  .home-career h3 {
    margin: 4rem 0 0.5rem 0;
  }
}
.home-career p {
  grid-column: 1;
  color: white;
  margin-top: 1rem;
  text-align: justify;
  margin-bottom: 2rem;
}
.home-career .jobs-img {
  grid-column: 2;
  grid-row: span 3;
  background: url("/assets/img/01_home/home-karriere.jpg") no-repeat;
  background-size: cover;
  min-height: 9rem;
  height: 30vw;
  margin: 1rem -1rem;
}
@media (min-width: 993px) {
  .home-career .jobs-img {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .home-career .jobs-img:before {
    content: "";
    left: 0;
    width: 20%;
    height: 100%;
    background: #0055A7;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}
.home-career .button-red {
  grid-column: 1;
}
@media (min-width: 993px) {
  .home-career p,
  .home-career h3,
  .home-career .button-red {
    justify-self: start;
    width: 65%;
    text-align: left;
  }
  .home-career .button-red {
    text-align: center;
    margin: 1rem 0 4rem 0;
  }
}

.home-gallery .grid-wrapper {
  max-width: 1549px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 993px) {
  .home-gallery {
    margin: 7rem auto;
  }
}

.hero {
  position: relative;
  height: 50vh;
  width: 100%;
  background: url("/assets/img/01_home/ladekran-hero-banner.jpg") no-repeat;
  background-size: cover;
  background-position: bottom;
  max-height: 85vh;
}
@media (min-width: 781px) {
  .hero {
    height: 60vw;
  }
}

.hero:before {
  content: "\a";
  position: absolute;
  top: 0;
  background-color: black;
  width: 100%;
  height: 50vh;
  max-height: 85vh;
  opacity: 0.5;
  z-index: 1;
}
@media (min-width: 781px) {
  .hero:before {
    opacity: 1;
    height: 60vw;
    background: black;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0) 60%);
  }
}

.hero-infobox {
  position: absolute;
  width: 100%;
  bottom: 3em;
  z-index: 5;
  text-align: center;
}
.hero-infobox h1 {
  font-size: 1.3rem;
  color: white;
  text-shadow: 0.1rem 0.1rem 0 rgba(59, 59, 59, 0.3);
}
@media (max-width: 781px) {
  .hero-infobox h1 {
    padding: 0 1rem;
  }
}
.hero-infobox h2 {
  padding-top: 0.5em;
  color: white;
  text-shadow: 0.1rem 0.1rem 0 rgba(59, 59, 59, 0.3);
}
@media (max-width: 781px) {
  .hero-infobox h2 {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 781px) {
  .hero-infobox {
    position: relative;
    margin-top: 22vw;
    text-align: left;
    width: 50%;
  }
  .hero-infobox h1 {
    font-size: 4vw;
  }
  .hero-infobox h2 {
    font-size: 2vw;
  }
}
@media (min-width: 993px) {
  .hero-infobox {
    margin-top: 20vw;
    width: 55%;
  }
}
@media (min-width: 1201px) {
  .hero-infobox {
    margin-top: 20vw;
  }
  .hero-infobox h1 {
    font-size: 3rem;
  }
  .hero-infobox h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1401px) {
  .hero-infobox {
    margin-top: 20rem;
    width: 50%;
  }
}

.btns-hero {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2em;
}
@media (min-width: 781px) {
  .btns-hero {
    justify-content: center;
  }
}
.btns-hero a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40%;
  border-style: solid;
  border-color: white;
  border-width: 2px;
  padding: 0.5rem;
  color: white;
  text-decoration: none;
}
@media (min-width: 781px) {
  .btns-hero a {
    width: 45%;
  }
  .btns-hero a:first-child {
    margin-right: 1rem;
  }
}
.btns-hero a:visited {
  color: white;
}

.jmg-rental-container {
  margin: 5rem 0;
}
@media (min-width: 993px) {
  .jmg-rental-container {
    margin: 8rem -2rem;
  }
}

.jmg-rental-obj {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 300px;
  text-align: center;
  margin: auto;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  padding: 5%;
}
@media (min-width: 481px) {
  .jmg-rental-obj {
    padding: 10%;
  }
}
@media (min-width: 993px) {
  .jmg-rental-obj {
    padding: 10% 15%;
  }
}
.jmg-rental-obj img {
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
}
.jmg-rental-obj .button-red {
  margin-bottom: 0;
}

.jmg-rental-head p {
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Astronomus";
}
.jmg-rental-head p:nth-child(2) {
  color: #888888;
  font-size: 1.5rem;
  font-family: "Nunito";
  font-size: 1.05rem;
}

.jmg-rental-row {
  text-align: center;
  --auto-grid-min-size: 20rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  grid-gap: 2rem;
  justify-content: center;
}
@media (min-width: 993px) {
  .jmg-rental-row {
    grid-gap: 5rem;
    --auto-grid-min-size: 16rem;
  }
}

.jmg-datasheet {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}
.jmg-datasheet img {
  max-height: 1.2rem;
  margin: 0;
}
.jmg-datasheet a {
  font-size: 1rem;
  padding: initial !important;
  margin: 0;
  color: #868686 !important;
  text-decoration: none;
}
.jmg-datasheet a:hover {
  text-decoration: underline;
}

.subpage-service-info {
  margin-top: 5%;
}
.subpage-service-info p {
  text-align: justify;
  margin: 1rem 0;
}
.subpage-service-info h3 {
  text-align: left;
}

@media (min-width: 993px) {
  .subpage-service-upper-info {
    display: flex;
    justify-content: space-between;
  }
  .subpage-service-upper-info p {
    width: 48%;
  }
}

.subpage-service-lower-info {
  text-align: center;
}
.subpage-service-lower-info img {
  margin: 1rem auto;
  width: 100%;
}
@media (min-width: 993px) {
  .subpage-service-lower-info {
    display: flex;
    align-items: center;
  }
  .subpage-service-lower-info img {
    margin: 0 auto 0 0;
    width: 90%;
  }
  .subpage-service-lower-info > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .subpage-service-lower-info > div,
  .subpage-service-lower-info img {
    width: 48%;
  }
  .subpage-service-lower-info .button-red {
    margin-bottom: 0;
  }
}

.locations-info {
  margin-top: 8rem;
  margin-bottom: 8rem;
  align-items: center;
}
.locations-info h3 {
  margin: 0;
}

@media (min-width: 993px) {
  .locations-info-mirrored {
    flex-direction: row-reverse;
  }
  .locations-info-mirrored img {
    margin: 0 0 0 auto;
  }
}

.subpage-service-overview {
  margin: 2rem -2rem;
  padding: 1rem 2rem;
  background-color: #0055A7;
}
.subpage-service-overview ul {
  padding-left: 1rem;
  list-style: none;
}
.subpage-service-overview h3,
.subpage-service-overview li {
  text-align: left;
  color: white;
}
.subpage-service-overview li {
  padding: 0.5rem 0;
}
.subpage-service-overview li:before {
  background-image: url("/assets/svg/icn-hook.svg");
  background-size: cover;
  background-position: center;
  content: "";
  height: 100%;
  min-height: 2rem;
  min-width: 1.2rem;
  display: block;
  float: left;
  margin-left: -1.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (min-width: 1201px) {
  .subpage-service-overview li:before {
    height: 3rem;
    width: 1.6rem;
    margin-left: -2rem;
  }
}
.subpage-service-overview > div {
  margin-bottom: 1rem;
}
@media (min-width: 993px) {
  .subpage-service-overview {
    margin: 4rem -4rem;
    padding: 1rem 4rem;
  }
  .subpage-service-overview > div {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }
  .subpage-service-overview ul {
    width: 45%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1201px) {
  .subpage-service-overview {
    margin: 4rem -8rem;
    padding: 1rem 8rem;
  }
}

.services-gallery .grid-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 993px) {
  .services-gallery .grid-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.services-gallery .grid-wrapper .gallery-hidden {
  display: none;
}
@media (min-width: 550px) {
  .services-gallery .grid-wrapper .gallery-hidden {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-subpage {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 80vh;
  width: 100%;
  text-align: center;
  background-color: #F8F0E0;
  background-image: none;
}
.hero-subpage > div {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 781px) {
  .hero-subpage > div {
    flex-direction: row;
  }
}
.hero-subpage:before {
  content: none;
}
.hero-subpage img {
  margin: 6rem auto 1rem auto;
  width: 90%;
  right: 0;
  filter: drop-shadow(0.3rem 0 0 white) drop-shadow(-0.3rem 0 0 white) drop-shadow(0 0.3rem 0 white) drop-shadow(0 -0.3rem 0 white);
}
@media (min-width: 781px) {
  .hero-subpage img {
    order: 2;
    margin: 6rem 0 1rem auto;
  }
}
@media (min-width: 1500px) {
  .hero-subpage img {
    width: 60%;
  }
}
@media (min-width: 993px) {
  .hero-subpage {
    flex-direction: row;
  }
}
@media (min-width: 1401px) {
  .hero-subpage {
    padding-bottom: 1.5rem;
  }
}

#hero-info-subpage {
  position: relative;
  text-align: left;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}
#hero-info-subpage h1,
#hero-info-subpage h2 {
  text-shadow: none;
  font-family: "Astronomus";
}
#hero-info-subpage h1 {
  position: relative;
  font-size: 7vw;
  color: #888888;
  z-index: 5;
  text-shadow: 2px 2px 0 #F8F0E0, -2px 2px 0 #F8F0E0, 2px -2px 0 #F8F0E0, -2px -2px 0 #F8F0E0;
}
@media (min-width: 781px) {
  #hero-info-subpage h1 {
    font-size: 4.5vw;
  }
}
@media (min-width: 993px) {
  #hero-info-subpage h1 {
    line-break: unset;
  }
}
@media (min-width: 1401px) {
  #hero-info-subpage h1 {
    white-space: nowrap;
    font-size: 4.5rem;
  }
}
#hero-info-subpage h2 {
  padding-top: 0;
  color: #888888;
  padding-right: 0;
  font-size: 3.3vw;
}
@media (min-width: 781px) {
  #hero-info-subpage h2 {
    font-size: 1.5vw;
  }
}
@media (min-width: 1401px) {
  #hero-info-subpage h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 781px) {
  #hero-info-subpage {
    width: 50%;
    align-self: flex-end;
  }
}

.hero-subpage-stripes {
  width: 100%;
  height: 6rem;
  position: relative;
  background-color: #F8F0E0;
}
.hero-subpage-stripes div {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: white;
  height: 0.3rem;
}
.hero-subpage-stripes div:first-child {
  bottom: 4rem;
}
.hero-subpage-stripes div:nth-child(2) {
  bottom: 2.5rem;
}
.hero-subpage-stripes div:nth-child(3) {
  bottom: 1.4rem;
}
.hero-subpage-stripes div:nth-child(4) {
  bottom: 0.35rem;
}
@media (min-width: 781px) {
  .hero-subpage-stripes div {
    height: 0.4rem;
  }
  .hero-subpage-stripes div:first-child {
    bottom: 5rem;
  }
  .hero-subpage-stripes div:nth-child(2) {
    bottom: 3rem;
  }
  .hero-subpage-stripes div:nth-child(3) {
    bottom: 1.5rem;
  }
  .hero-subpage-stripes div:nth-child(4) {
    bottom: 0.4rem;
  }
}

.mobile-crane-rental-form {
  margin: 5rem -2rem 0 -2rem;
  padding: 0.5rem 1rem 1rem 1rem;
  text-align: left;
}
.mobile-crane-rental-form > div {
  width: 100%;
}
@media (min-width: 993px) {
  .mobile-crane-rental-form {
    margin: 5rem -4rem 0 -4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1201px) {
  .mobile-crane-rental-form {
    margin: 5rem -8rem 0 -8rem;
    padding-right: 8rem;
    padding-left: 8rem;
  }
}

.form-customer-details > div {
  width: 100%;
  margin: 0.5rem 0;
}
@media (min-width: 993px) {
  .form-customer-details {
    display: flex;
    justify-content: space-between;
  }
  .form-customer-details > div {
    margin: 0 2rem 0 0;
  }
  .form-customer-details > div:first-child {
    margin-left: 0;
  }
  .form-customer-details > div:last-child {
    margin-right: 0;
  }
}

@media (min-width: 993px) {
  #contact-form > div:nth-child(1) > div:nth-child(3) {
    display: flex;
    align-items: baseline;
  }
}

#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form input[type=date],
#contact-form textarea,
#contact-form #form-rental-crane-selection,
#contact-form #form-job-application-selection {
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0.3rem;
  background: #ebebeb;
  margin: 0 0 5px;
  padding: 10px;
  width: 95%;
}
@media (min-width: 993px) {
  #contact-form input[type=text],
  #contact-form input[type=email],
  #contact-form input[type=tel],
  #contact-form input[type=url],
  #contact-form input[type=date],
  #contact-form textarea,
  #contact-form #form-rental-crane-selection,
  #contact-form #form-job-application-selection {
    width: 100%;
  }
}

@media (min-width: 993px) {
  .rental-dropdown {
    width: 25%;
    margin-right: 0.75rem;
  }
}

#form-rental-date-container {
  width: 95%;
}
#form-rental-date-container > div {
  margin-top: 0.5rem;
}
@media (min-width: 993px) {
  #form-rental-date-container {
    width: 50%;
    display: flex;
    justify-content: left;
  }
  #form-rental-date-container > div:nth-child(1) {
    margin-right: 2rem;
  }
  #form-rental-date-container div {
    /* margin: auto 2rem; */
    width: 35%;
  }
}

@media (min-width: 993px) {
  #form-submit-register-btn {
    width: 15rem;
  }
}

.form-checkbox {
  margin-top: 1rem;
}

.hero-subpage-jobs {
  height: 45vw;
  max-height: 25rem;
}
.hero-subpage-jobs #hero-info-subpage {
  margin-top: 33vw;
}
@media (min-width: 481px) {
  .hero-subpage-jobs {
    height: 40vw;
  }
  .hero-subpage-jobs #hero-info-subpage {
    margin-top: 30vw;
  }
}
@media (min-width: 781px) {
  .hero-subpage-jobs {
    height: 35vw;
  }
  .hero-subpage-jobs #hero-info-subpage {
    margin-top: 28vw;
  }
}
@media (min-width: 1201px) {
  .hero-subpage-jobs {
    height: 35vw;
  }
  .hero-subpage-jobs #hero-info-subpage {
    margin-top: 18rem;
  }
}

.jobs-container button {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  text-align: left;
  margin: 0;
}

#subsite-jobs .contact-form-container {
  margin-top: 5rem;
}

#subsite-jobs h5 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  margin: 1rem 0 0 0;
}
@media (min-width: 781px) {
  #subsite-jobs h5 {
    font-size: 2.5vw;
  }
}
@media (min-width: 993px) {
  #subsite-jobs h5 {
    font-size: 1.5rem;
  }
}

#subsite-jobs ul {
  padding: 1rem;
  margin: 0;
}

#subsite-jobs ul > li {
  line-height: 1.5rem;
  margin: 0.3rem;
  color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 993px) {
  #subsite-jobs ul > li {
    line-height: 2.3rem;
  }
}

#subsite-jobs #jobs-application-methods li {
  color: black;
}

#subsite-jobs ul > li::marker {
  color: #dd0014;
}

#subsite-jobs .subpage-service-info div.jobs-container:nth-child(3) {
  margin-top: 3rem;
}

.jobs-container {
  width: 90vw;
  max-width: 1000px;
  margin: 2rem auto;
}
.jobs-container h5 {
  font-family: "Astronomus";
}
.jobs-container li {
  list-style-type: square;
  color: #dd0014;
}

.jobs-container a {
  color: #dd0014;
  text-decoration: none;
}

#hero-img-jobs {
  background: url("../img/jobs_header.jpg");
  background-size: cover;
  background-position: center;
}

#form-job-application-selection {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 0;
  color: grey;
}

#contact-form #application-text {
  height: 10rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

#jobs-data-policy-box {
  margin-left: 0 !important;
}

#jobs-data-policy-box p {
  font-size: 1rem;
}

/* Accordion */
.accordion {
  background-color: #ebebeb;
  color: #444;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.job-active,
.accordion:hover {
  background-color: #ccc;
}

.panel {
  background-color: #f5f5f5;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: "➕";
  /* Unicode character for "plus" sign (+) */
  color: #dd0014 !important;
  font-size: 1rem;
  margin-left: 5px;
}

.job-active:after {
  content: "➖";
  /* Unicode character for "minus" sign (-) */
}

/* Upload File Button */
.file-upload-container {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #CCC;
  background-color: #ebebeb;
  /* width: 90vw; */
  margin: 0.5rem 0 !important;
  max-width: 900px;
}

.file-upload-container input[type=file] {
  /* display: none; */
  width: 1px;
  color: #ebebeb;
}

.file-upload-container input[type=file]::file-selector-button {
  border: none;
}

.custom-file-upload {
  padding: 0.5rem;
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.8) !important;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 0.9rem;
}

.custom-file-upload:hover {
  background-color: #ccc;
}

.file-name {
  font-size: 14px;
  color: #444;
  overflow: hidden;
  /* text-overflow: ellipsis;
  white-space: nowrap; */
}

#file-help {
  font-size: 0.7rem;
  color: #B4B4B4;
}

.file-name::after {
  content: attr(data-placeholder);
  display: block;
  color: #aaa;
  visibility: visible;
}

.file-name.selected::after {
  content: none;
}

#subsite-jobs #submit-btn {
  float: left;
}
@media (min-width: 993px) {
  #subsite-jobs #submit-btn {
    width: 17rem;
  }
}

.hero-subpage-no-img {
  height: 45vw;
  max-height: 25rem;
}
.hero-subpage-no-img #hero-info-subpage {
  margin-top: 33vw;
}
@media (min-width: 481px) {
  .hero-subpage-no-img {
    height: 40vw;
  }
  .hero-subpage-no-img #hero-info-subpage {
    margin-top: 30vw;
  }
}
@media (min-width: 781px) {
  .hero-subpage-no-img {
    height: 35vw;
  }
  .hero-subpage-no-img #hero-info-subpage {
    margin-top: 28vw;
  }
}
@media (min-width: 1201px) {
  .hero-subpage-no-img {
    height: 35vw;
  }
  .hero-subpage-no-img #hero-info-subpage {
    margin-top: 18rem;
  }
}

.subpage-low-content {
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.data-protection ul,
.data-protection li,
.data-protection p {
  color: #3B3B3B;
}
.data-protection h4 {
  font-family: "Astronomus";
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.data-protection h5 {
  font-weight: bold;
  font-family: "Nunito";
  font-size: 1.2rem;
}

@font-face {
  font-display: swap;
  font-family: "Astronomus";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/font/AstronomusRegular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/font/Nunito-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Nunito-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/font/Nunito-ExtraBold.woff") format("woff");
}
body {
  max-width: 2000px;
  margin: auto;
}

main {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
  color: #3B3B3B;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

@media (min-width: 781px) {
  h1,
  h2,
  h3,
  h4 {
    word-wrap: unset;
    -webkit-hyphens: none;
            hyphens: none;
  }
}
h1,
h3 {
  font-family: "Astronomus";
}

h3 {
  line-height: 1.6rem;
  font-size: 1.5rem;
  text-align: center;
  margin: 1.5rem auto;
}
@media (min-width: 993px) {
  h3 {
    font-size: 2.3rem;
  }
}

p,
li {
  line-height: 1.4rem;
}

li {
  line-height: 2rem;
  list-style-position: outside;
}

p,
a,
h2,
h4,
li,
label,
textarea {
  font-family: "Nunito";
}

b {
  font-family: "Nunito-Bold";
}

h1,
h2,
main,
.btns-hero,
footer {
  padding: 0 2rem;
}
@media (min-width: 993px) {
  h1,
  h2,
  main,
  .btns-hero,
  footer {
    padding: 0 4rem;
  }
}
@media (min-width: 1201px) {
  h1,
  h2,
  main,
  .btns-hero,
  footer {
    padding: 0 8rem;
  }
}

a {
  text-decoration: underline;
  color: #3B3B3B;
}

a:hover {
  color: #0055A7;
}

.hover-video {
  opacity: 0;
  display: none;
}

@media (max-width: 992px) {
  body main .desktop {
    display: none;
  }
}
@media (min-width: 993px) {
  h3,
  p {
    font-size: 2.5vw;
    line-height: 2.7vw;
  }
  p,
  li {
    font-size: 1.5vw;
    line-height: 2vw;
  }
  li {
    line-height: 3vw;
  }
  .hover-video {
    opacity: 0;
    display: block;
  }
}
@media (min-width: 1401px) {
  h3,
  p {
    font-size: 2.2rem;
    line-height: 2.3rem;
  }
  p,
  li {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  li {
    line-height: 2.8rem;
  }
}/*# sourceMappingURL=style.css.map */