@font-face {
  font-family: "standard";
  src: url("fonts/regular.woff2");
  font-display: swap;
}
@font-face {
  font-family: "light";
  src: url("fonts/AktivGroteskCdLt.ttf");
  font-display: swap;
}
@font-face {
  font-family: "regular";
  src: url("fonts/AktivGroteskCdRg.ttf");
  font-display: swap;
}
@font-face {
  font-family: "medium";
  src: url("fonts/AktivGroteskCdMd.ttf");
  font-display: swap;
}
@font-face {
  font-family: "bold";
  src: url("fonts/AktivGroteskCdBd.ttf");
  font-display: swap;
}
html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  transition: 0.1s linear;
}

body {
  font-family: "regular";
  background-color: #fff;
  margin: 0px;
  padding: 0px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}

.btn {
  transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear !important;
}

.sticky-top {
  position: sticky !important;
  top: 0px;
}

.btn,
a {
  box-shadow: none;
  outline: none !important;
}
.btn:focus,
a:focus {
  box-shadow: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: "bold";
  margin: 0px;
}

a {
  text-decoration: none !important;
}

select:focus,
input:focus,
button:focus {
  box-shadow: none !important;
}

.wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.btn {
  padding: 15px 20px;
  border: none !important;
  font-size: 14px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: nowrap;
  font-family: bold;
}
.btn.btn-outline {
  box-shadow: inset 0 0 0 2px rgb(225, 225, 225);
  color: #fff;
}
.btn.btn-outline:hover {
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
  color: #000;
}
.btn.btn-default {
  color: #000;
  background-color: #fff;
}
.btn.btn-default:hover {
  background-color: #000;
  color: #fff;
}

.title {
  color: #000;
  font-size: calc(0.8vw + 1.3em);
  text-transform: uppercase;
  margin: 0 0 40px;
  font-family: "standard";
  line-height: calc(0.5vw + 1em);
  padding: 0 5vw;
}
.title span {
  font-size: calc(0.4vw + 1.2em);
  display: block;
  font-family: "standard";
  -webkit-text-stroke: 2px #000;
  color: transparent;
}
@media (max-width: 767px) {
  .title span {
    -webkit-text-stroke: 1px #000;
  }
}

.nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
}
.nav-pills a {
  background-color: transparent;
  padding: 5px 10px;
  font-size: 16px;
  color: #000000 !important;
  font-family: bold;
  text-transform: uppercase;
  opacity: 0.75;
  position: relative;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 991px) {
  .nav-pills a {
    font-size: 11px;
    padding: 5px 5px;
  }
}
.nav-pills a:hover {
  opacity: 1;
}
.nav-pills a::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 991px) {
  .nav-pills a::after {
    height: 7px;
    width: 7px;
  }
}
.nav-pills a.active {
  opacity: 1;
  background-color: transparent !important;
}
.nav-pills a.active::after {
  opacity: 1;
  top: 90%;
}

.pagination {
  display: inline-flex;
  margin-top: 30px;
  align-items: center;
}
.pagination a {
  color: #000;
  font-family: regular;
  padding: 10px;
  font-size: 18px;
}
.pagination a.num {
  opacity: 0.6;
}
.pagination a.active {
  opacity: 1;
  font-family: bold;
  font-size: 22px;
}
.pagination a i {
  font-size: 22px;
  position: relative;
  top: 2px;
}

.bulleted-list {
  margin: 0 0 30px;
}
.bulleted-list li {
  display: block;
  position: relative;
  padding-left: 20px;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-family: light;
  margin: 5px 0px;
}
.bulleted-list li a {
  font-family: medium;
  color: #000;
}
.bulleted-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  height: 8px;
  width: 8px;
  background-color: #000;
  border-radius: 7px;
}

.alert.fade.in {
  opacity: 1;
}

@media (min-width: 991px) {
  .vacancies {
    min-height: 62vh;
  }
}
.vacancies .wrapper {
  padding: 50px 5vw;
}

.jCard {
  padding: 20px;
  background-color: #f0f0f0;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ddd;
  box-shadow: 0px 6px 10px -10px rgba(0, 0, 0, 0.7);
}
.jCard h5 {
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
}
.jCard p {
  font-size: 14px;
  text-align: center;
  margin: 0;
  color: #575757;
  font-family: medium;
  letter-spacing: 0.5px;
  height: 42px;
  overflow: hidden;
}
.jCard span {
  display: inline-block;
  padding: 7px 15px 6px;
  margin-top: 5px;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: bold;
  font-size: 12px;
}
.jCard:hover {
  background-color: #000;
}
.jCard:hover h5 {
  color: #fff;
}
.jCard:hover p {
  color: rgba(255, 255, 255, 0.6431372549);
}
.jCard:hover span {
  background-color: #fff;
  color: #000;
}

.modal-backdrop {
  backdrop-filter: blur(3px) !important;
  background-color: rgba(0, 0, 0, 0.5019607843) !important;
}
.modal-backdrop.show {
  z-index: 1068 !important;
}

.modal-backdrop.show {
  opacity: 1 !important;
}

.modal-open {
  padding-right: 0px !important;
  overflow: initial !important;
}

.modal {
  padding-right: 0px !important;
  z-index: 1270 !important;
}
.modal .modal-dialog {
  margin-top: 80px;
}
@media (min-width: 1200px) {
  .modal .modal-dialog {
    margin-top: 100px;
  }
}
.modal .modal-body {
  padding: 3vw;
}
@media (max-width: 991px) {
  .modal .modal-body {
    padding: 30px;
  }
}
.modal .modal-body .btn-close {
  box-shadow: none;
  text-shadow: none;
  color: #000;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 991px) {
  .modal .modal-body .btn-close {
    top: 10px;
    right: 10px;
  }
}
.modal .modal-body h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.modal .modal-body h5 {
  font-family: light;
  font-size: 24px;
  margin: 0 0 0px;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  .modal .modal-body h5 {
    font-size: 17px;
    margin: 0 0 15px;
  }
}
.modal .modal-body h5 a {
  font-family: bold;
  color: #000;
}
.modal .modal-body h6 {
  font-family: medium;
  font-size: 18px;
  margin: 0 0 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  .modal .modal-body h6 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.modal .modal-body h6 strong {
  font-family: bold;
  color: #000;
}
.modal .modal-body p {
  letter-spacing: 0.5px;
  font-size: 16px;
  font-family: light;
  margin: 0 0 25px;
}