@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.culture__title {
  margin-bottom: 30px;
  color: #5c5c5c;
  font-family: "Poppins-Bold";
  --font-size: 42px;
  --font-size-rem: 2.625rem;
  --line-height: 50px;
  --line-height-rem: 3.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  letter-spacing: -0.03em;
}
.culture__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
.culture__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.culture__text p {
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.culture__slider {
  position: relative;
  width: 100%;
}
.culture__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.culture__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}
.culture .swiper-button {
  z-index: 1;
  opacity: 1;
  top: 50%;
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center center;
  transition-property: all 0.2s;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.culture .swiper-button:hover {
  background-color: #000000;
}
.culture .swiper-button-prev {
  left: 2px;
  background-image: url("/assets/image/prev-icon.png");
}
.culture .swiper-button-prev::after {
  content: unset;
}
.culture .swiper-button-next {
  right: 2px;
  background-image: url("/assets/image/next-icon.png");
}
.culture .swiper-button-next::after {
  content: unset;
}
@media screen and (min-width: 768px) {
  .culture__slide {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .culture {
    padding-bottom: 100px;
  }
  .culture__title {
    margin-bottom: 80px;
    --font-size: 50px;
    --font-size-rem: 3.125rem;
    --line-height: 50px;
    --line-height-rem: 3.125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .culture__content {
    flex-direction: row;
    gap: 40px;
  }
  .culture__text {
    width: calc((100% - 40px) / 2);
  }
  .culture__slider {
    width: calc((100% - 40px) / 2);
  }
  .culture .swiper-button {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
}