/*
Theme Name: My Custom Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom theme for my website.
Version: 1.0
*/

@import "tailwindcss";

@font-face {
  font-family: 'Pretendard';
  src: url('assets/fonts/Pretendard/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Pretendard', sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
}

ul {
  padding: 0;
}

a {
  color: unset;
  text-decoration: unset;
}


.h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.small-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 60px;
  gap: 10px;
  padding: 20px 30px;
  border-radius: 100px;
  width: fit-content;
  min-width: 177px;
  justify-content: center;
}

.btn.primary {
  background: #254099;
}

.btn.primary:hover {
  background: #1D337A;
}

.btn p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.btn.primary p {
  color: white;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn.secondary {
  border: 1px solid #666
}

.btn.secondary:hover {
  border: none;
  background: #254099
}

.btn.secondary:hover p {
  color: white;
}

.btn.secondary:hover img {
  filter: brightness(0) invert(1);
}

.btn.secondary p {
  color: #666666;
}

/* Beyond Slider Styles */
.beyondSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.beyondSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beyondSwiper .swiper-slide img {
  /* width: 100%; */
  /* height: 560px; */
  object-fit: cover;
}

.beyondSwiper .swiper-button-next,
.beyondSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.beyondSwiper .swiper-button-next:after,
.beyondSwiper .swiper-button-prev:after {
  content: none;
}

.beyondSwiper .swiper-button-next {
  background-image: url('assets/icons/ico_slider_arrow_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.beyondSwiper .swiper-button-prev {
  background-image: url('assets/icons/ico_slider_arrow_left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.beyondSwiper .swiper-button-disabled {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .btn {
    min-width: 160px;
    height: 56px;
    gap: 8px;
  }

  .btn p {
    font-size: 16px;
  }

  .btn img {
    width: 20px;
  }


  .beyondSwiper .swiper-button-next {

    width: 24px;
    height: 24px;
  }

  .beyondSwiper .swiper-button-prev {
    width: 24px;
    height: 24px;
  }
}

/* Factory Slider Styles */
.factorySwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.factorySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.factorySwiper .swiper-slide img {
  object-fit: cover;
}

.factorySwiper .swiper-button-next,
.factorySwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.factorySwiper .swiper-button-next:after,
.factorySwiper .swiper-button-prev:after {
  content: none;
}

.factorySwiper .swiper-button-next {
  background-image: url('assets/icons/ico_slider_arrow_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.factorySwiper .swiper-button-prev {
  background-image: url('assets/icons/ico_slider_arrow_left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.factorySwiper .swiper-button-disabled {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .factorySwiper .swiper-button-next {
    width: 24px;
    height: 24px;
  }

  .factorySwiper .swiper-button-prev {
    width: 24px;
    height: 24px;
  }
}


[data-aos="fade-up"] {
  transform: translate3d(0, 40px, 0) !important;
}

[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-down"] {
  transform: translate3d(0, -40px, 0) !important;
}

[data-aos="fade-down"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-right"] {
  transform: translate3d(-40px, 0, 0) !important;
}

[data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-left"] {
  transform: translate3d(40px, 0, 0) !important;
}

[data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}