/* Common */
.section {
  padding: 120px 0;
}

.more-btn {
  display: block;
  width: 240px;
  height: 56px;
  margin: 0 auto;
  overflow: hidden;
}

.more-btn .btn-ani {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
  height: 100%;
  padding: 0 17px 0 25px;
}

.more-btn .ani-box {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.more-btn .ani-box::before {
  content:"";
  display: block;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1px solid #3a3a3a;
  transition: all .25s ease;
  z-index:1;
}

.more-btn .ani-box::after {
  content: "";
  display: block;
  position: absolute;
  left: 185px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 2px);
  height: 100%;
  border-radius: 28px;
  background-color: #f79521;
  transition: all .3s ease;
}

.more-btn p {
  width: 100%;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  transition: all .35s ease;
}

.more-btn i {
  width: 20px;
  height: 18px;
  z-index: 1;
  background-image: url('/en/img/main/more-icon.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pin-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  color: #f79521;
  font-family: 'RedHatDisplay';
}

.pin-title span {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 9px;
  background-image: url('/en/img/main/pin-title-icon.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-title {
  margin-bottom: 27px;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 600;
  opacity: 0;
  transform: translateY(100%);
  transition: all .4s ease-out;
}

.section-text {
  opacity: 0;
  transform: translateY(100%);
  font-size: 2.4rem;
  font-weight: 500;
  transition: all .4s ease-out;
}

.section-title.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.section-text.aos-animate {
  opacity: 1;
  transform: translateY(0);
}


@media(min-width:1201px) {
  .more-btn:hover .ani-box::before {
    border-color: #f79521;
  }
  
  .more-btn:hover .ani-box::after  {
    left:0px;
  }

  .more-btn:hover p {
    color: #fff;
  }
  
}

@media(max-width:1200px) {
  .more-btn p {
    font-size: 1.4rem;
  }
  
  .pin-title {
    font-size: 2.2rem;
  }

  
  .section-title {
    font-size: 4.2rem;
  }
  
  .section-text {
    font-size: 2.2rem;
  }
}

@media(max-width:1024px) {
  .section {
    padding: 100px 0;
  }
  
  .more-btn {
    width: 220px;
    height: 50px;
  }
  
  .more-btn .btn-ani {
    padding: 0 15px 0 20px;
  }

  .more-btn i {
    width: 18px;
    height: 16px;
  }
    
  .more-btn .ani-box::after {
    left: 170px;
  }
  
  .pin-title {
    margin-bottom: 5px;
    font-size: 2rem;
  }
  
  .pin-title span {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 3.6rem;
  }
  
  .section-text {
    font-size: 2rem;
  }
}

@media(max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  
  .more-btn {
    width: 200px;
    height: 45px;
  }

  .more-btn p {
    font-size: 1.2rem;
  }
  
  .more-btn i {
    width: 16px;
    height: 14px;
  }
  
  .more-btn .ani-box::after {
    left: 155px;
  }
  
  .pin-title {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  
  .pin-title span {
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
  
  .section-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .section-text {
    font-size: 1.8rem;
  }
  
}

@media(max-width: 500px) {
  .section {
    padding: 60px 0;
  }
  
  .more-btn {
    width: 180px;
    height: 40px;
  }
  
  .more-btn .btn-ani {
    padding: 0 13px 0 20px;
  }
  
  .more-btn p {
    font-size: 1.1rem;
  }
  
  .more-btn .ani-box::after {
    left: 140px;
  }
  
  .pin-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
  
  .section-text {
    font-size: 1.6rem;
  }
}

/* Section01 */
.section--01 {
  width: 100%;
  height: 100vh;
  padding: 0;
}

.section--01 .visual {
  width: 100%;
  height: 100%;
}

.section--01 .swiper-container {
  width: 100%;
  height: 100%;
}

.section--01 .swiper-slide {
  position: relative;
  width: 100%;
}

.section--01 .text-wrap {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  padding: 0 15px;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}

.section--01 .text {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  height: auto;
}

.section--01 .text p {
  transform: translateY(100%);
  opacity: 0;
  line-height: 1.35;
  color: #fff;
  font-family: 'SBAggro';
  font-weight: 300;
}

.section--01 .text--01 {
  margin-bottom: 30px;
}

.section--01 .text--01 p {
  font-size: 4.8rem;
}

.section--01 .text--02 {
  min-height: 141px;
}

.section--01 .text--02 p {
  font-size: 5rem;
}

.section--01 .text--02 p span {
  font-size: 5.4rem;
  font-weight: 500;
  letter-spacing: 0;
}

.section--01 .background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
}

.section--01 .background--01 {
  background-image: url('/en/img/main/section01_visual01.png');
}
.section--01 .background--02 {
  background-image: url('/en/img/main/section01_visual02.png');
}
.section--01 .background--03 {
  background-image: url('/en/img/main/section01_visual03.png');
}

.section--01 .swiper-slide.swiper-slide-active .background {
  animation: visualBackgroundAni 3.5s ease-out forwards;
}

@keyframes visualBackgroundAni {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

.section--01 .swiper-slide.swiper-slide-active .text--01 p {
  animation: visualTextAni .8s ease-out forwards;
  animation-delay: .6s;
}
.section--01 .swiper-slide.swiper-slide-active .text--02 p {
  animation: visualTextAni .8s ease-out forwards;
  animation-delay: 1s;
}


@keyframes visualTextAni {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(5px);
  }
}

.section--01 .swiper-controls {
  display: flex;
  justify-content: center;
  position: absolute;
  left:50%;
  top: calc(70% - 10px);
  transform: translateX(-50%);
  width: fit-content;
  padding: 0px 15px;
  z-index: 3;
}

.section--01 .swiper-controls .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92px;
}

.section--01 .swiper-controls .swiper-pagination-bullet {
  position: relative;
  background-color: #d5d5d5;
  opacity: 1;
}

.section--01 .swiper-controls .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
}

.section--01 .swiper-controls .stop {
  width: 9px;
  height: 14px;
  margin-left: 40px;
  background-image: url('/en/img/main/section01_stop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.section--01 .swiper-controls .stop.pause {
  background-image: url('/en/img/main/section01_pause.png');
}





@media(max-width:1200px) {
  .section--01 .text--01 p {
    font-size: 4.2rem;
  }
  
  .section--01 .text--02 p {
    font-size: 4.4rem;
  }
  
  .section--01 .text--02 p span {
    font-size: 4.8rem;
  }
  
}

@media(max-width:1024px) {
  .section--01 {
    height: 100vh;
  }
  
  .section--01 .text-wrap {
    top: 45%;
  }
  
  .section--01 .text--01 {
    margin-bottom: 25px;
  }
  
  /* .section--01 .text p {
    line-height: 1.2;
  } */
  
  .section--01 .text--01 p {
    font-size: 3.6rem;
  }
  
  .section--01 .text--02 {
    min-height: 110px;
  }

  .section--01 .text--02 p {
    font-size: 3.8rem;
  }
  
  .section--01 .text--02 p span {
    font-size: 4.2rem;
  }
  
  .section--01 .swiper-controls {
    top: 65%;
  }
  
  .section--01 .swiper-controls .pagination {
    width: 80px;
  }

  .section--01 .swiper-controls .stop {
    width: 8px;
    height: 13px;
    margin-left: 35px;
  }
}

@media(max-width:768px) {
  .section--01 {
    height: calc(100vh - 100px);
  }
  .section--01 .text-wrap {
    top: 45%;
  }
  
  .section--01 .text--01 {
    margin-bottom: 20px;
  }
  
  .section--01 .text--01 p {
    font-size: 3rem;
  }
  
  .section--01 .text--02 {
    min-height: 135px;
  }
  
  .section--01 .text--02 p {
    font-size: 3.2rem;
  }
  
  .section--01 .text--02 p span {
    font-size: 3.4rem;
  }
  
  .section--01 .swiper-controls {
    top: 85%;
  }
  
  .section--01 .swiper-controls .pagination {
    width: 70px;
  }
  
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  
  .section--01 .swiper-controls .swiper-pagination-bullet-active::after {
    width: 12px;
    height: 12px;
  }
  
  .section--01 .swiper-controls .stop {
    width: 7px;
    height: 11px;
    margin-left: 30px;
  }
}

@media(max-width:500px) {
  .section--01 .text-wrap {
    top: 45%;
  }
  
  .section--01 .text--01 {
    margin-bottom: 15px;
  }
  
  .section--01 .text--01 p {
    font-size: 2.8rem;
  }
  
  .section--01 .text--02 {
    min-height: 125px;
  }
  
  .section--01 .text--02 p {
    font-size: 2.8rem;
  }
  
  .section--01 .text--02 p span {
    font-size: 3.2rem;
  }
  
  .section--01 .swiper-controls .pagination {
    width: 60px;
  }
  
  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  
  .section--01 .swiper-controls .swiper-pagination-bullet-active::after {
    width: 10px;
    height: 10px;
  }
  
  .section--01 .swiper-controls .stop {
    width: 7px;
    height: 11px;
    margin-left: 25px;
  }
}

@media(max-width:395px) {
  .section--01 .text--02 {
    min-height: 165px;
  }
}
/* Section02 */
.section--02 {
  padding: 140px 0 120px;
  background-image: url('/en/img/main/section02_background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.section--02 .logo-img {
  position: relative;
  width: 392px;
  height: 72px;
  left: -23vw;
  margin: 0 auto 35px;
  opacity: 0;
  background-image: url('/en/img/main/section02_logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all ease 2.2s;
}

.section--02 .line {
  font-size: 6rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.section--02 .line--01 {
  margin-bottom: 15px;
}

.section--02 .line--02 {
  position: relative;
  opacity: 0;
  left: 23vw;
  transition: all ease 2.2s;
}

.section--02 .line--01 span {
  font-weight: 700;
  color: #014099;
}

.section--02 .line--02 span {
  font-size: 5.6rem;
  font-weight: 600;
}

.section--02 .text-wrap--01 {
  margin-bottom: 45px;
}

.section--02 .text-wrap--02 {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.section--02 .text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.section--02 .text:first-of-type {
  margin-bottom: 35px;
}

.section--02 .more-btn {
  margin-top: 70px;
}

.section--02 .logo-img.active {
  left: 0;
  opacity: 1;
}

.section--02 .line--02.active {
  left: 0;
  opacity: 1;
}

@media(max-width:1200px) {
  .section--02 .line {
    font-size: 5.2rem;
  }

  .section--02 .line--02 span {
    font-size: 4.8rem;
  }
  
  .section--02 .text {
    font-size: 2.2rem;
  }
}

@media(max-width:1024px) {
  .section--02 {
    padding: 120px 0 100px;
  }
  
  .section--02 .logo-img {
    width: 314px;
    height: 58px;
    left: -23vw;
    margin: 0 auto 30px;
  }
  
  .section--02 .line {
    font-size: 4.4rem;
  }
  
  .section--02 .line--01 {
    margin-bottom: 15px;
  }
  
  .section--02 .line--02 {
    left: 23vw;
  }
  
  .section--02 .line--02 span {
    font-size: 4rem;
  }

  .section--02 .text-wrap--01 {
    margin-bottom: 40px;
  }
  
  .section--02 .text-wrap--02 {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .section--02 .text {
    font-size: 2rem;
  }
  
  .section--02 .text:first-of-type {
    margin-bottom: 30px;
  }
  
  .section--02 .more-btn {
    margin-top: 60px;
  }
}

@media(max-width:768px) {
  .section--02 {
    padding: 100px 0 80px;
  }
  
  .section--02 .logo-img {
    width: 283px;
    height: 52px;
    left: -23vw;
    margin: 0 auto 25px;
  }
  
  .section--02 .line {
    font-size: 3.4rem;
  }
  
  .section--02 .line--01 {
    margin-bottom: 10px;
  }
  
  .section--02 .line--02 {
    left: 23vw;
  }

  .section--02 .line--02 span {
    font-size: 3.2rem;
  }
  
  .section--02 .text-wrap--01 {
    margin-bottom: 35px;
  }
  
  .section--02 .text-wrap--02 {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .section--02 .text {
    font-size: 1.8rem;
  }
  
  .section--02 .text:first-of-type {
    margin-bottom: 25px;
  }
  
  .section--02 .more-btn {
    margin-top: 50px;
  }
}

@media(max-width:500px) {
  .section--02 {
    padding: 80px 0 60px;
  }
  
  .section--02 .logo-img {
    width: 255px;
    height: 47px;
    left: -23vw;
    margin: 0 auto 20px;
  }
  
  .section--02 .line {
    font-size: 3.2rem;
  }
  
  .section--02 .line--01 {
    margin-bottom: 10px;
  }
  
  .section--02 .line--02 {
    left: 23vw;
  }

  .section--02 .line--02 span {
    font-size: 3rem;
  }
  
  .section--02 .text-wrap--01 {
    margin-bottom: 30px;
  }
  
  .section--02 .text-wrap--02 {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .section--02 .text {
    font-size: 1.6rem;
  }
  
  .section--02 .text:first-of-type {
    margin-bottom: 20px;
  }
  
  .section--02 .more-btn {
    margin-top: 40px;
  }
}

/* Section03 */
.section--03 {
  padding: 80px 0;
  overflow: hidden;
}

.section--03 .inner {
  max-width: 1790px;
  width: 100%;
  padding: 120px 15px;
  margin: 0 auto;
  height: 100%;
  background-image: url('/en/img/main/section03_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section--03 .text-wrap {
  text-align: center;
  color: #fff;
}

.section--03 .product-slide {
  max-width: 1425px;
  width: 100%;
  height: 100%;
  margin: 37px auto 0;
  overflow: visible;
}

.section--03 .swiper-container {
  overflow: visible;
}

.section--03 .arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 10px;
  margin: 0 70px 40px 0;
}

.section--03 .arrow div {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all .25s ease;
}

.section--03 .arrow .prev {
  background-image: url('/en/img/main/section03_prev.png');
}

.section--03 .arrow .next {
  background-image: url('/en/img/main/section03_next.png');
}

.section--03 .prev.swiper-button-disabled {
  opacity: 0.25;  
  cursor: default;
}

.section--03 .next.swiper-button-disabled {
  opacity: 0.25;  
  cursor: default;
}

.section--03 .swiper-slide {
  height: 498px;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform .3s ease;
}

.section--03 .swiper-slide a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section--03 .swiper-slide .thumbnail {
  width: 274px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all .2s ease;
}

.section--03 .swiper-slide .thumbnail--01 {
  background-image: url('/en/img/main/section03_thumbnail01.png');
}

.section--03 .swiper-slide .thumbnail--02 {
  background-image: url('/en/img/main/section03_thumbnail02.png');
}

.section--03 .swiper-slide .thumbnail--03 {
  background-image: url('/en/img/main/section03_thumbnail03.png');
}

.section--03 .swiper-slide .thumbnail--04 {
  background-image: url('/en/img/main/section03_thumbnail04.png');
}

.section--03 .swiper-slide .thumbnail--05 {
  background-image: url('/en/img/main/section03_thumbnail05.png');
}

.section--03 .swiper-slide .thumbnail--06 {
  background-image: url('/en/img/main/section03_thumbnail06.png');
}

.section--03 .swiper-slide .thumbnail--07 {
  background-image: url('/en/img/main/section03_thumbnail07.png');
}

.section--03 .swiper-slide .product-name {
  margin-top: 40px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}


@media(min-width:1201px){
  .section--03 .arrow .prev:hover {
    background-image: url('/en/img/main/section03_prev-on.png');
  }
  
  .section--03 .arrow .next:hover {
    background-image: url('/en/img/main/section03_next-on.png');
  }
  
  
  .section--03 .arrow .prev.swiper-button-disabled:hover  {
    background-image: url('/en/img/main/section03_prev.png');
  }

  .section--03 .arrow .next.swiper-button-disabled:hover  {
    background-image: url('/en/img/main/section03_next.png');
  }
  
  .section--03 .swiper-slide:hover {
    transform: translate(0, -5px);
    border: 3px solid #f79521;
  }
  
  .section--03 .swiper-slide:hover .thumbnail  {
    width: 300px;
  }
  
  .section--03 .swiper-slide:hover .product-name {
    font-style: italic;
  }
}

@media(max-width:1200px) {
  .section--03 .swiper-slide .product-name {
    font-size: 2.8rem;
  }
}

@media(max-width:1024px) {
  .section--03 {
    padding: 70px 0;
  }
  
  .section--03 .inner {
    padding: 100px 15px;
  }
  
  .section--03 .product-slide {
    margin: 30px auto 0;
  }

  .section--03 .arrow {
    margin: 0 60px 35px 0;
  }
  
  .section--03 .arrow div {
    width: 40px;
    height: 40px;
  }

  .section--03 .swiper-slide {
    height: 460px;
  }
  
  .section--03 .swiper-slide .thumbnail {
    width: 250px;
  }

  .section--03 .swiper-slide .product-name {
    margin-top: 35px;
    font-size: 2.4rem;
  }
}

@media(max-width:768px) {
  .section--03 {
    padding: 60px 0;
  }
  
  .section--03 .inner {
    padding: 80px 15px;
  }
  
  .section--03 .swiper-container {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
  }
  
  .section--03 .product-slide {
    margin: 25px auto 0;
  }

  .section--03 .arrow {
    order: 1;
    margin: 30px auto 0;
  }
  
  .section--03 .arrow div {
    width: 35px;
    height: 35px;
  }

  .section--03 .swiper-slide {
    height: 420px;
  }
  
  .section--03 .swiper-slide .thumbnail {
    width: 230px;
  }

  .section--03 .swiper-slide .product-name {
    margin-top: 30px;
    font-size: 2.2rem;
  }
}

@media(max-width:500px) {
  .section--03 {
    padding: 50px 0;
  }
  
  .section--03 .inner {
    padding: 70px 15px;
  }
  
  .section--03 .swiper-container {
    margin-top: 40px;
  }
  
  .section--03 .product-slide {
    margin: 20px auto 0;
  }

  .section--03 .arrow {
    gap: 0 15px;
    margin: 25px auto 0;
  }
  
  .section--03 .arrow div {
    width: 32px;
    height: 32px;
  }

  .section--03 .swiper-slide {
    height: 380px;
  }
  
  .section--03 .swiper-slide .thumbnail {
    width: 200px;
  }

  .section--03 .swiper-slide .product-name {
    margin-top: 25px;
    font-size: 2rem;
  }
}

@media(max-width:460px) {
  .section--03 .swiper-slide {
    height: 270px;
    padding: 20px 15px;
  }
  
  .section--03 .swiper-slide .thumbnail {
    width: 100%;
  }
}

/* Section04 */
.section--04 {
  padding: 240px 0;
  background-image: url('/en/img/main/section04_background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  background-attachment: fixed;
}

.section--04 .section-title {
  color: #fff;
}

.section--04 .section-text {
  color: #fff;
}

.section--04 .more-btn {
  margin-top: 77px;
}

.section--04 .more-btn .ani-box::before {
  border-color: #fff;
}

.section--04 .more-btn p {
  text-align: left;
  color: #fff;
}

@media(min-width:1201px) {
  .section--04 .more-btn:hover .ani-box::before {
    border-color: #f79521;
  }
}

@media(max-width:1024px) {
  .section--04 {
    padding: 200px 0;
  }

  .section--04 .more-btn {
    margin-top: 70px;
  }
}

@media(max-width:768px) {
  .section--04 {
    padding: 160px 0;
  }

  .section--04 .more-btn {
    margin-top: 60px;
  }
}

@media(max-width:500px) {
  .section--04 {
    padding: 120px 0;
  }

  .section--04 .more-btn {
    margin-top: 50px;
  }
}


/* Section05 */
.section--05 {
  background-image: url('/en/img/main/section05_background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.section--05 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section--05 .short-cut {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 610px; */
  /* width: 48%; */
  width: 100%;
  height: 130px;
  /* height: 232px; */
  padding: 0 30px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  transition: all .3s ease;
}

.section--05 .short-cut .text-wrap {
  /* max-width: 350px; */
  width: 80%;
  text-align: left;
}

.section--05 .short-cut .pin-title {
  justify-content: start;
  margin-bottom: 10px;
}

.section--05 .short-cut  .section-title {
  transform: translate(-50% , 0);
  font-size: 3.6rem;
}

.section--05 .short-cut  .section-title.aos-animate {
  transform: translate(0 , 0);
  opacity: 1;
}

.section--05 .short-cut .section-text {
  opacity: 1;
  transform: translateY(0);
  line-height: 1.3;
}

.section--05 .short-cut .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  transition: all .45s ease;
}

.section--05 .short-cut .icon-ani {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all .3s ease;
  border: 1px solid #1a1a1a;
}

.section--05 .short-cut .icon-ani::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f79521;
  transition: all .3s ease;
}


.section--05 .short-cut .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: 18px;
  z-index: 2;
  background-image: url('/en/img/main/section05_arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all .35s ease;
}

@media(min-width:1201px) {
  .section--05 .short-cut:hover {
    box-shadow: 5px 5px 12px rgba(25, 25, 25, 0.15);
  }
  
  .section--05 .short-cut:hover .icon-ani  {
    border-color: #f79521;
  }

  .section--05 .short-cut:hover .icon-ani::after {
    width: 101%;
    height: 101%;
  }
  
  .section--05 .short-cut:hover .icon i {
    background-image: url('/en/img/main/section05_arrow-on.png');
  }
}

@media(max-width:1200px) {
  .section--05 .short-cut {
    max-width: 610px;
    width: 48%;
    /* height: 232px; */
    padding: 0 30px;
  }
  
  .section--05 .short-cut .text-wrap {
    max-width: 350px;
    width: 80%;
  }
  
  .section--05 .short-cut .pin-title {
    margin-bottom: 10px;
  }
  
  .section--05 .short-cut  .section-title {
    font-size: 3.2rem;
  }
  
  .section--05 .short-cut .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  
  .section--05 .short-cut .icon i {
    width: 20px;
    height: 18px;
  }
}

@media(max-width:1024px) {
  .section--05 .short-cut {
    height: 100px;
    /* height: 210px; */
    padding: 0 25px;
  }
  
  .section--05 .short-cut .text-wrap {
    width: calc(100% - 80px);
  }
  
  .section--05 .short-cut .pin-title {
    margin-bottom: 10px;
  }
  
  .section--05 .short-cut .icon {
    width: 50px;
    height: 50px;
  }
  
  .section--05 .short-cut .icon i {
    width: 18px;
    height: 16px;
  }
  
  .section--05 .short-cut  .section-title {
    font-size: 2.8rem;
  }
}

@media(max-width:768px) {
  .section--05 .container {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
  }
  
  .section--05 .short-cut {
    max-width: 100%;
    width: 100%;
    height: 90px;
    /* height: 190px; */
    padding: 0 20px;
  }
  
  .section--05 .short-cut .text-wrap {
    max-width: 100%;
    width: calc(100% - 70px);
  }
  
  .section--05 .short-cut .pin-title {
    margin-bottom: 8px;
  }
  
  .section--05 .short-cut  .section-title {
    font-size: 2.4rem;
  }
  
  .section--05 .short-cut .icon {
    width: 45px;
    height: 45px;
  }
  
  .section--05 .short-cut .icon i {
    width: 16px;
    height: 14px;
  }
}

@media(max-width:500px) {
  .section--05 .short-cut {
    height: 80px;
    /* height: 170px; */
    padding: 0 15px;
  }
  
  .section--05 .short-cut .text-wrap {
    width: calc(100% - 60px);
  }
  
  .section--05 .short-cut .pin-title {
    margin-bottom: 5px;
  }
  
  .section--05 .short-cut  .section-title {
    font-size: 2.2rem;
  }
  
  .section--05 .short-cut .icon {
    width: 40px;
    height: 40px;
  }
  
  .section--05 .short-cut .icon i {
    width: 14px;
    height: 12px;
  }
}

/* Popup */
#popup {
	position: relative;
  }
  
  .popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
  }
  
  @keyframes popup-fade {
	0% { opacity: 0;
	  -webkit-transform: translateY(25px);
	  -ms-transform: translateY(25px);
	  transform: translateY(25px); }
	100% { opacity: 1;
	  -webkit-transform: translateY(0);
	  -ms-transform: translateY(0);
	  transform: translateY(0); }
  }
  .popup-layer__body {
	background: #fff;
  }
  
  .popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
  }
  
  .popup-layer__foot {
	background: #424242;
  }
  
  .popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
  }
  
  .popup-layer__foot li {
	width:50%;
	padding:10px;
  }
  
  .popup-layer__foot li:first-child {
	padding-right:0;
  }
  
  .popup-layer__foot li:last-child {
	text-align: right;
  }
  
  .popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
  }
  
  .popup-layer__foot label:hover span { opacity: .7; }
  
  /* .popup-layer-foot { background: #424242; }
  .popup-layer-foot span { font-size: 15px; color: #fff; }
  .popup-layer-foot label:hover span { opacity: .7; }
  .popup-layer-foot li:first-child { padding-right: 0; }
  .popup-layer-foot li:last-child { text-align: right; } */
  
  
  @media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
  }
  @media (max-width: 768px){
  
	.popup-layer {
	  width:calc(100% - 10px);
	}
  
	.popup-layer img {
	  max-width: none;
	  width:100%;
	  height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }
  
  }
  @media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
  }