nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5rem;
  background: #e8e4e4;
  border-bottom: 0.4rem solid #d51317;
}
nav a {
  z-index: 999;
  cursor: pointer;
}
nav a img {
  margin: 1rem;
  height: 3rem;
  transition: 250ms;
  margin-left: 2.5rem;
}
nav .menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
nav .menu-list li a {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: 250ms;
}
nav .menu-list li a:hover {
  color: #d51317;
}
nav .menu-list li:last-of-type a {
  color: #fff;
  background: #d51317;
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 3px solid #d51317;
  transition: 250ms;
}
nav .menu-list li:last-of-type a:hover {
  background: none;
  color: #000;
}
nav .menu-list.open {
  position: fixed;
  top: 5.6rem;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e8e4e4;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0;
  padding: 2rem 0 0 0;
}
nav .menu-list.open li a {
  font-size: calc(1.5rem + 0.7vw);
}
nav .burger {
  z-index: 999;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
nav .burger svg {
  color: #000;
  transition: all 250ms ease-in-out;
}
nav .burger svg .top,
nav .burger svg .middle,
nav .burger svg .bottom {
  transition: all 250ms ease-in-out;
}
nav .burger svg.open .top {
  transform: rotate(45deg);
  transform-origin: center;
  y: 4.5px;
}
nav .burger svg.open .middle {
  opacity: 0;
}
nav .burger svg.open .bottom {
  transform: rotate(-45deg);
  transform-origin: center;
  y: 6px;
}

@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  nav .menu-list {
    display: none;
  }
  nav .burger {
    display: flex;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #4b4b4b;
  padding: 3rem 5rem;
}
footer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  width: 100%;
}
footer .content .block {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .content .block .title {
  font-weight: 700;
}
footer .content .block p,
footer .content .block a {
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.7rem + 0.4vw);
}
footer .content .block a {
  cursor: pointer;
}
footer .content .block a:hover {
  text-decoration: underline;
}
footer .content .block .email {
  color: #d51317;
}
footer .content .block .menu-item-cookie span button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
}
footer .content .block .menu-item-cookie span button:hover {
  text-decoration: underline;
}
footer .content .block .menu-item-cookie span button:focus, footer .content .block .menu-item-cookie span button:active {
  outline: none;
  --brlbs-tw-ring-offset-shadow: none;
  --brlbs-tw-ring-shadow: none;
}
footer .divider {
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin: 2rem 0;
  opacity: 0.2;
}
footer .copyright p {
  text-align: center;
  color: #fff;
  font-size: calc(0.6rem + 0.35vw);
}
footer .copyright p a {
  color: #d51317;
  text-decoration: none;
  font-size: calc(0.6rem + 0.35vw);
  font-weight: 700;
}
footer .copyright p a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  footer {
    padding: 3rem 2rem;
  }
  footer .content {
    flex-direction: column;
    gap: 2rem;
  }
}
.error {
  background: #ffffff;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 5rem;
  gap: 2rem;
}
.error h1,
.error p {
  margin: 0;
}
.error h1 {
  color: #000;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.error p {
  text-align: center;
  font-size: #fff;
  font-size: calc(0.7rem + 0.4vw);
}

@media (max-width: 1024px) {
  .error {
    padding: 5rem 2rem;
  }
}
.kontakt-form {
  background: #4b4b4b;
  padding: 3rem 5rem;
  display: flex;
}
.kontakt-form .content,
.kontakt-form form {
  width: 50%;
}
.kontakt-form .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-form .content h2,
.kontakt-form .content p {
  margin: 0;
}
.kontakt-form .content p {
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form .content h2 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #fff;
}
.kontakt-form .content .block {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.kontakt-form .content .block .title {
  font-weight: 700;
}
.kontakt-form .content .block a {
  color: #fff;
  font-size: calc(0.7rem + 0.4vw);
  text-decoration: none;
  cursor: pointer;
}
.kontakt-form .content .block a:hover {
  text-decoration: underline;
}
.kontakt-form .content .block .email {
  color: #d51317;
}
.kontakt-form form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-form form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kontakt-form form .field label {
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form form .field label span {
  color: #e95252;
}
.kontakt-form form .field input,
.kontakt-form form .field textarea {
  background: none;
  border: 1px solid #6e6e6e;
  padding: 1rem;
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form form .field input:focus,
.kontakt-form form .field textarea:focus {
  outline: none;
  border: 1px solid #d51317;
}
.kontakt-form form .field input:-webkit-autofill,
.kontakt-form form .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: text;
}
.kontakt-form form .field .checkbox span {
  color: #fff;
  font-size: calc(0.7rem + 0.4vw);
}
.kontakt-form form .field .checkbox span a {
  color: #d51317;
  text-decoration: none;
}
.kontakt-form form .field .checkbox span a:hover {
  text-decoration: underline;
}
.kontakt-form form #loading {
  display: none;
  border: 0.5rem solid #4b4b4b;
  border-top: 0.5rem solid #d51317;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  animation: spin 2s linear infinite;
}
.kontakt-form form .messages #sucess_message,
.kontakt-form form .messages #error_message {
  display: none;
  font-size: calc(0.6rem + 0.35vw);
}
.kontakt-form form .messages #error_message {
  color: #e95252;
}
.kontakt-form form .messages #sucess_message {
  color: #90ee90;
}

@media (max-width: 1024px) {
  .kontakt-form {
    flex-direction: column;
    gap: 2rem;
  }
  .kontakt-form .content,
  .kontakt-form form {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .kontakt-form {
    background: #4b4b4b;
    padding: 3rem 2rem;
  }
}
.btn {
  background: none;
  border: 2px solid #4b4b4b;
  border-radius: 0.5rem;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to right, #d51317, #d51317) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  border-color: #d51317;
  background-size: 100% 100%;
}

.btn-dark {
  background: none;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to right, #4b4b4b, #4b4b4b) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn-dark:hover {
  color: #fff;
  border-color: #4b4b4b;
  background-size: 100% 100%;
}

.btn-dark-primary {
  background: linear-gradient(to right, #d51317, #d51317) right/100% 100% no-repeat;
  border: 2px solid #d51317;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  transition: background-size 250ms, background-position 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn-dark-primary:hover {
  color: #fff;
  background-size: 0% 100%;
  background-position: right;
  border-color: #d51317;
}

.btn-primary {
  background: linear-gradient(to right, #d51317, #d51317) right/100% 100% no-repeat;
  border: 2px solid #d51317;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  transition: background-size 250ms, background-position 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn-primary:hover {
  color: #000;
  background-size: 0% 100%;
  background-position: right;
  border-color: #d51317;
}

.hero-default {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-image: url("https://static.wixstatic.com/media/12a930_ebf411d3fac948e288520177a5bb00cd~mv2.jpeg/v1/fill/w_680,h_385,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image-empty-state.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-default::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-default .content {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #fff;
  z-index: 2;
}
.hero-default .content h1,
.hero-default .content h2 {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.hero-default .content h1 {
  font-size: calc(3rem + 1vw);
}
.hero-default .content h2 {
  font-size: calc(1.8rem + 0.8vw);
}
.hero-default .content .button {
  margin-top: 3rem;
}

.impressum-datenschutz {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.impressum-datenschutz h1 {
  font-size: calc(1.5rem + 0.7vw);
  font-weight: 700;
  color: #000;
}
.impressum-datenschutz .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.impressum-datenschutz .content h2 {
  margin: 0;
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #000;
}
.impressum-datenschutz .content .block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.impressum-datenschutz .content .block p {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}
.impressum-datenschutz .content .block p a {
  color: #d51317;
  text-decoration: none;
}
.impressum-datenschutz .content .block p a:hover {
  text-decoration: underline;
}
.impressum-datenschutz .content .block .title {
  font-weight: 700;
}
.impressum-datenschutz .content .block ul li {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}

.startseite-default {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .startseite-default {
    background-attachment: fixed;
  }
}
.startseite-default::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.startseite-default .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 90%;
}
.startseite-default .content h1,
.startseite-default .content h2 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.startseite-default .content h1 {
  font-size: clamp(2rem, 5vw, 3rem + 1vw);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.startseite-default .content h2 {
  font-size: clamp(1rem, 3vw, 0.9rem + 0.5vw);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.startseite-default .content .button {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .startseite-default .content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4e4;
}
.about .text,
.about img {
  height: 70vh;
}
.about .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.about .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.about img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1024px) {
  .about {
    height: auto;
    flex-direction: column;
    padding: 4rem 2rem;
  }
  .about .text,
  .about img {
    width: 100%;
    height: 40vh;
  }
  .about img {
    display: none;
  }
}
.career {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.career .text,
.career img {
  height: 70vh;
}
.career .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.career .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.career .text ul {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.career .text ul li {
  text-align: left;
  font-size: calc(0.7rem + 0.4vw);
}
.career .text .button {
  margin-top: 1rem;
  width: 100%;
}
.career img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1300px) {
  .career .text h2 {
    font-size: calc(0.9rem + 0.5vw);
  }
}
@media (max-width: 1024px) {
  .career {
    flex-direction: column;
    padding: 4rem 0;
  }
  .career .text,
  .career img {
    width: 100%;
    height: 40vh;
  }
  .career img {
    display: none;
  }
}
.projects {
  position: relative;
  width: 100%;
  min-height: 40vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.projects::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.projects .content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 1000px;
}
.projects .content h2,
.projects .content p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin: 0;
}
.projects .content h2 {
  font-size: clamp(1.5rem, 5vw, 1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.projects .content p {
  font-size: clamp(1rem, 2.5vw, 0.7rem + 0.4vw);
  margin: 0.5rem 0 2rem 0;
  line-height: 1.5;
  padding: 0 1rem;
}
.projects .content .button {
  display: inline-block;
  margin-top: 1rem;
}
.projects .content .button a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .projects {
    padding: 3rem 1rem;
    min-height: auto;
    background-attachment: scroll;
  }
}

.news {
  background: #e8e4e4;
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.news .single-news {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.news .single-news img {
  width: 30%;
  height: 100%;
  border-radius: 0.5rem;
}
.news .single-news .content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.news .single-news .content h3,
.news .single-news .content p {
  margin: 0;
}
.news .single-news .content h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
}
.news .single-news .content p {
  font-size: calc(0.7rem + 0.4vw);
  color: #000;
}
.news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.news .pagination .page-numbers {
  padding: 1rem 1.5rem;
  background: #4b4b4b;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.5rem + 0.3vw);
  font-weight: 700;
  text-transform: uppercase;
  transition: 250ms;
}
.news .pagination .page-numbers:hover {
  background: #d51317;
}
.news .pagination .current {
  background: #d51317;
}

@media (max-width: 1024px) {
  .news {
    padding: 3rem 2rem;
  }
  .news .single-news {
    flex-direction: column;
  }
  .news .single-news img,
  .news .single-news .content {
    width: 100%;
  }
}
.news-single {
  background: #e8e4e4;
  padding: 4rem 5rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news-single img {
  width: 50%;
  height: 30%;
  border-radius: 0.5rem;
  object-fit: cover;
}
.news-single .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}
.news-single .content h1 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  text-transform: uppercase;
  color: #000;
}
.news-single .content .text {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}

@media (max-width: 1024px) {
  .news-single {
    padding: 6rem 2rem;
  }
  .news-single img {
    width: 100%;
  }
}
.news-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .news-hero {
    background-attachment: fixed;
  }
}
.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.news-hero .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}
.news-hero .content h1,
.news-hero .content h2 {
  text-transform: uppercase;
  margin: 0.5rem 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.news-hero .content h1 {
  font-size: clamp(2rem, 5vw, 3rem + 1vw);
  font-weight: 900;
}
.news-hero .content h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem + 0.8vw);
  font-weight: 900;
  color: #d51317;
}
@media (max-width: 1024px) {
  .news-hero .content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .news-hero {
    height: 50vh;
    padding: 0 1rem;
  }
}

.banner-news {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.banner-news .text,
.banner-news img {
  height: 60vh;
}
.banner-news .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.banner-news .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.banner-news img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1024px) {
  .banner-news {
    flex-direction: column;
    padding: 4rem 0;
  }
  .banner-news .text,
  .banner-news img {
    width: 100%;
    height: 40vh;
  }
  .banner-news img {
    display: none;
  }
}
.single-banner-news {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.single-banner-news .text,
.single-banner-news img {
  height: 60vh;
}
.single-banner-news .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.single-banner-news .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.single-banner-news img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1024px) {
  .single-banner-news {
    flex-direction: column;
    padding: 4rem 0;
  }
  .single-banner-news .text,
  .single-banner-news img {
    width: 100%;
    height: 40vh;
  }
  .single-banner-news img {
    display: none;
  }
}
.jobs {
  background: #e8e4e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 10%;
  gap: 2rem;
}
.jobs .titles {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}
.jobs .titles h3,
.jobs .titles p {
  margin: 0;
  text-transform: uppercase;
}
.jobs .titles h3 {
  color: #000;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 900;
}
.jobs .titles p {
  color: #d51317;
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 600;
}
.jobs .job {
  background: #d51317;
  padding: 2rem;
  margin: 0;
  color: #fff;
  font-size: calc(1.2rem + 0.6vw);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.4rem solid #d51317;
  transition: 250ms;
}
.jobs .job:hover {
  background: none;
  color: #000;
}

.jobs-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .jobs-hero {
    background-attachment: fixed;
  }
}
.jobs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.jobs-hero .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}
.jobs-hero .content h1,
.jobs-hero .content h2 {
  text-transform: uppercase;
  margin: 0.5rem 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.jobs-hero .content h1 {
  font-size: clamp(2rem, 5vw, 3rem + 1vw);
  font-weight: 900;
}
.jobs-hero .content h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem + 0.8vw);
  font-weight: 900;
  color: #d51317;
}
@media (max-width: 1024px) {
  .jobs-hero .content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .jobs-hero {
    height: 50vh;
    padding: 0 1rem;
  }
}

.jobs-about {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.jobs-about .text,
.jobs-about img {
  height: 70vh;
}
.jobs-about .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.jobs-about .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.jobs-about .text ul {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.jobs-about .text ul li {
  text-align: left;
  font-size: calc(0.7rem + 0.4vw);
}
.jobs-about .text .button {
  margin-top: 1rem;
  width: 100%;
}
.jobs-about img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1300px) {
  .jobs-about .text h2 {
    font-size: calc(0.9rem + 0.5vw);
  }
}
@media (max-width: 1024px) {
  .jobs-about {
    flex-direction: column;
    padding: 4rem 0;
  }
  .jobs-about .text,
  .jobs-about img {
    width: 100%;
    height: 40vh;
  }
  .jobs-about img {
    display: none;
  }
}
.benefits {
  background: #e8e4e4;
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.benefits h2 {
  grid-column: 1/-1;
  font-size: calc(1.5rem + 0.7vw);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
}
.benefits .benefit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 100px;
  border: 2px solid #d51317;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #d51317, #d51317) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
}
.benefits .benefit h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: calc(0.7rem + 0.4vw);
  color: #000;
  transition: color 250ms;
}
.benefits .benefit:hover {
  background-size: 100% 100%;
  border-color: #d51317;
}
.benefits .benefit:hover h3 {
  color: #fff;
}

@media (max-width: 1024px) {
  .benefits {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 2rem;
  }
}
.jobs-single .hero {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .jobs-single .hero {
    background-attachment: fixed;
  }
}
.jobs-single .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.jobs-single .hero .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}
.jobs-single .hero .content h1 {
  text-transform: uppercase;
  margin: 0.5rem 0;
  font-size: clamp(1.5rem, 5vw, 1.8rem + 0.8vw);
  font-weight: 900;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1024px) {
  .jobs-single .hero .content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .jobs-single .hero {
    height: 40vh;
    padding: 0 1rem;
  }
}
.jobs-single .job {
  padding: 4rem 5rem;
  background: #e8e4e4;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 2rem;
}
.jobs-single .job .text {
  color: #000;
}
.jobs-single .job .actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.single-banner-jobs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.single-banner-jobs .text,
.single-banner-jobs img {
  height: 60vh;
}
.single-banner-jobs .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.single-banner-jobs .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.single-banner-jobs img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1024px) {
  .single-banner-jobs {
    flex-direction: column;
    padding: 4rem 0;
  }
  .single-banner-jobs .text,
  .single-banner-jobs img {
    width: 100%;
    height: 40vh;
  }
  .single-banner-jobs img {
    display: none;
  }
}
.team-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipPu4PAP8-YTA3MEwzE5DGQ0ZZN8GcMtCx7Buj4_=s680-w680-h510-rw");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .team-hero {
    background-attachment: fixed;
  }
}
.team-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.team-hero .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 80%;
}
.team-hero .content h1,
.team-hero .content h2 {
  text-transform: uppercase;
  margin: 0.5rem 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.team-hero .content h1 {
  font-size: clamp(2rem, 5vw, 3rem + 1vw);
  font-weight: 900;
}
.team-hero .content h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem + 0.8vw);
  font-weight: 900;
  color: #d51317;
}
@media (max-width: 1024px) {
  .team-hero .content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .team-hero {
    height: 50vh;
    padding: 0 1rem;
  }
}

.team {
  background: #e8e4e4;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.team .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, rgb(234.3211206897, 23.1788793103, 27.5323275862), rgb(189.588362069, 16.911637931, 20.4719827586));
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team .person img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.team .person h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0.5rem 0 0.25rem;
  text-align: center;
}
.team .person p {
  color: #fff;
  opacity: 0.85;
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 0.6rem + 0.35vw);
}
.team .person .button {
  margin-top: auto;
}
.team .person .button a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #fff;
  color: #d51317;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.team .person .button a:hover {
  background: #d51317;
  color: #fff;
}
.team .person:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
.team .person:hover img {
  transform: scale(1.05);
}
.team .person::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(25deg);
  pointer-events: none;
}

@media (max-width: 768px) {
  .team {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
.join-us {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d51317;
}
.join-us .text,
.join-us img {
  height: 70vh;
}
.join-us .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2rem;
  text-align: left;
  padding: 0 6rem;
}
.join-us .text h2 {
  margin: 0;
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 700;
  text-transform: uppercase;
}
.join-us img {
  width: 60%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
}

@media (max-width: 1024px) {
  .join-us {
    flex-direction: column;
    padding: 4rem 0;
  }
  .join-us .text,
  .join-us img {
    width: 100%;
    height: 40vh;
  }
  .join-us img {
    display: none;
  }
}
body {
  margin: 0;
  padding: 4.3rem 0 0 0;
  overflow-x: hidden;
  background: #e8e4e4;
}

* {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

*::selection {
  background-color: #d51317;
  color: #fff;
}

img {
  pointer-events: none;
}

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