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;
}

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;
}

@keyframes slide-in-ep {
  0% {
    transform: translateX(-20rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fade-in-slide-left {
  0% {
    opacity: 0%;
    transform: translateX(-80px);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes lace-rotation {
  0% {
    transform: rotate3d(0, 1, 0, 0deg); /* Start rotation */
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg); /* Halfway rotation */
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg); /* Full rotation */
  }
}
@keyframes go-up {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-350px);
  }
}
@keyframes go-down {
  0% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes appear {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes cross-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
* {
  font-family: "Montserrat", sans-serif;
}

.spacer {
  width: 100%;
  height: 11rem;
  background-color: #F6F6F6;
}
@media (max-width: 500px) {
  .spacer {
    height: 8rem;
  }
}

#recruitment {
  box-sizing: border-box;
  background-color: #F6F6F6;
  text-align: center;
  padding-bottom: 2%;
}
#recruitment .title {
  width: 100%;
  height: 70px;
  justify-content: center;
}
#recruitment .title h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  font-weight: 300;
}
#recruitment .image {
  position: relative;
  width: 100%;
  height: auto;
}
#recruitment .image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  #recruitment .image img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#recruitment .image .text-overlay {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6F6F6; /* Adjust the color as needed */
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #recruitment .image .text-overlay {
    margin-left: 10%; /* Apply margin only for mobile screens */
    margin-right: 10%;
    width: 80%; /* Adjust width to account for margin */
    align-self: center;
  }
}
#recruitment .container-accordion {
  margin-left: 4%;
  margin-right: 4%;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
#recruitment .container-accordion .accordion {
  background-color: #F1F1F1;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  margin-bottom: 2px;
  font-weight: 300;
  gap: 10px;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  transition: 0.4s;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .accordion {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  #recruitment .container-accordion .accordion {
    font-size: 0.3 rem;
  }
  #recruitment .container-accordion .accordion image {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#recruitment .container-accordion .accordion:hover, #recruitment .container-accordion .accordion.active {
  background-color: #F1F1F1;
}
#recruitment .container-accordion .accordion::after {
  content: url(/assets/vectors/arrow-right.svg);
  color: black;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#recruitment .container-accordion .accordion.active::after {
  content: url(/assets/vectors/arrow-down2.svg);
  align-self: center;
}
#recruitment .container-accordion .apply {
  justify-content: center;
  align-self: center;
  margin-top: 2%;
}
#recruitment .container-accordion .apply button {
  background-color: #0E0E0E;
  color: #F6F6F6;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
}
#recruitment .container-accordion .panel {
  padding: 0 0px;
  background-color: #F1F1F1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
#recruitment .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#recruitment .container-accordion .panel p {
  font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 3px);
  line-height: 2.5ch;
  margin-left: 30px;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#recruitment .container-accordion .panel .apply {
  display: inline-block;
  padding: 8px 18px;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  font-family: "Montserrat", sans-serif;
  color: #F6F6F6;
  background-color: black;
  border: none;
  border-radius: 1px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 30px;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .panel .apply {
    font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 2px);
    padding: 8px 16px;
  }
}
#recruitment .subtitle {
  margin-top: 10px;
  font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
  font-weight: 600;
  text-align: left;
  padding-top: 10px;
  margin-bottom: 0.625rem;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  #recruitment .text-overlay {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */