.grid_wrapper {
  opacity: 0.3;
}

@media (min-width: 1200px) {
  .backgroundShape {
    top: 65vh;
    left: 45vw;
  }
}
.backgroundShape.header_3 {
  display: none;
}
.backgroundShape.header_4 {
  display: none;
}
.backgroundShape.header_5 {
  display: none;
}
.backgroundShape.header_6 {
  display: none;
}

.pageTitle {
  opacity: 0;
  margin-top: 24px;
  animation: fadeIn 0.75s 0.25s forwards 1 ease-in;
}
.pageTitle h3 {
  font-size: 24px;
}

.longTitle {
  height: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  animation: fadeIn 0.75s 0.35s forwards 1 ease-in;
  opacity: 0;
}
@media (min-width: 768px) {
  .longTitle {
    padding: 20px 45px;
  }
}
.longTitle h1 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .longTitle h1 {
    line-height: 80px;
    font-size: 72px;
  }
}

.description {
  animation: fadeIn 0.75s 0.4s forwards 1 ease-in;
  opacity: 0;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .description {
    margin-bottom: 4.5rem;
  }
}
.description p {
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .description p {
    font-size: 28px;
    line-height: 45px;
    font-weight: bolder;
  }
}

.introWrapper {
  display: flex;
  justify-content: center;
  animation: fadeIn 0.75s 0.5s forwards 1 ease-in;
  opacity: 0;
}
.introWrapper img {
  width: 90%;
  height: auto;
  object-fit: cover;
}
.introWrapper a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.introWrapper a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgba(34, 60, 88, 0.1);
}
.introWrapper a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  transform-origin: bottom right;
}
.introWrapper a:hover::after {
  bottom: 0;
  width: 100%;
  background-color: rgb(34, 60, 88);
  transform-origin: bottom left;
  transition: all 0.5s;
}

.competence-wrapper {
  background-color: transparent;
  opacity: 0;
  animation: fadeIn 0.75s 0.6s forwards 1 ease-in;
  border: none;
  padding: 30px;
}
@media (min-width: 768px) {
  .competence-wrapper {
    margin-bottom: 4.5rem;
  }
}
.competence-wrapper h2 {
  font-weight: 500;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .competence-wrapper h2 {
    margin-bottom: 24px;
  }
}
.competence-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.competence-wrapper ul li {
  padding: 10px;
  border-radius: 17px;
  margin-bottom: 15px;
  background-color: #FFCD30;
  cursor: pointer;
  transition: background-color 0.5s ease-out;
}
@media (min-width: 768px) {
  .competence-wrapper ul li {
    padding: 13px;
  }
}
.competence-wrapper ul li p {
  font-size: 14px;
}
@media (min-width: 768px) {
  .competence-wrapper ul li p {
    font-size: 18px;
  }
}
.competence-wrapper ul li:hover {
  background-color: #0b0c0f;
}
.competence-wrapper ul li:hover p {
  color: #FFCD30;
}

.content-wrapper {
  animation: fadeIn 0.75s 0.75s forwards 1 ease-in;
  opacity: 0;
}
.content-wrapper h3 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
  margin-bottom: 14px;
}
.content-wrapper p {
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.2px;
}
.content-wrapper img {
  width: 100%;
  height: auto;
}

.splide {
  display: none;
}
.splide:has(ul.splide__list li.splide__slide) {
  display: block;
}
.splide:has(ul.splide__list li.splide__slide) .splide__list .splide__slide > div {
  min-height: 250px;
  display: grid;
  justify-content: center;
  align-content: center;
  height: 100%;
}
.splide:has(ul.splide__list li.splide__slide) .splide__list .splide__slide > div img {
  object-fit: contain;
  max-height: 80vh;
  height: auto;
  width: 100%;
}

.splide__pagination {
  bottom: 5px;
}
.splide__pagination .splide__pagination__page.is-active {
  background: #767b7b;
}

.button_prev_wrapper {
  top: 110px;
  height: auto;
  width: 40px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .button_prev_wrapper {
    top: 140px;
  }
}
@media (min-width: 1360px) {
  .button_prev_wrapper {
    transform: translateX(-70px);
  }
}
.button_prev_wrapper path {
  fill: #000;
  transition: all 0.5s;
}
.button_prev_wrapper:hover path {
  fill: #767676;
  transition: all 0.5s;
}

@media (prefers-color-scheme: dark) {
  .grid_wrapper {
    opacity: 1;
  }
  .competence-wrapper {
    background-color: rgba(11, 12, 15, 0.79);
    border: 1px solid rgba(213, 213, 214, 0.368627451);
    border-radius: 30px;
  }
  .competence-wrapper ul li {
    background-color: rgba(255, 205, 48, 0.8);
  }
  .competence-wrapper ul li:hover {
    background-color: #0b0c0f;
    opacity: 0.8;
  }
  .competence-wrapper ul li:hover p {
    color: #FFCD30;
  }
  .competence-wrapper ul li p {
    color: #0b0c0f;
  }
  .button_prev_wrapper path {
    fill: #c7c7c8;
  }
  .button_prev_wrapper:hover path {
    fill: #e3e3e3;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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