@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap");
@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainImg {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    color: #222222;
  }
  51% {
    color: #fff;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes width100 {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes width1200 {
  0% {
    width: 1200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes zIndex {
  0% {
    z-index: 999;
  }
  100% {
    z-index: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #222222;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #222222;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

h1 {
  display: block;
  /*font-size: 3.4375rem;*/
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  white-space: nowrap;
}


h2 {
  font-size: 3.4375rem;
}

h3 {
  font-size: 3rem;
}
@media all and (max-width: 1024px) {
  h3 {
    font-size: 5.5vw;
  }
}

span {
  font-size: 1.125rem;
}

header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 20px;
}

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

.number_font {
  font-family: "Rajdhani", "Pretendard", sans-serif;
}

.logo {
  display: block;
  width: 120px;
}
@media all and (max-width: 1024px) {
  .logo {
    width: 80px;
  }
}
.logo img {
  max-width: 120px;
  width: 100%;
}

.header {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
.header .mo-menu-btn {
  display: none;
  width: 30px;
  position: relative;
  cursor: pointer;
  height: 30px;
}
.header .mo-menu-btn .line {
  transition: 0.4s ease;
  display: bock;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn .line:first-child {
  top: calc(50% - 6px);
}
.header .mo-menu-btn .line:last-child {
  top: calc(50% + 6px);
}
.header .mo-menu-btn.active .line {
  display: bock;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn.active .line:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .mo-menu-btn.active .line:nth-child(2) {
  display: none;
}
.header .mo-menu-btn.active .line:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
}
.header .nav-bg.active {
  display: block;
}
.header_menu {
  font-size: 18px;
  font-weight: 700;
  gap: 60px;
}
@media all and (max-width: 1024px) {
  .header_menu {
    margin-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.header_menu li:hover a {
  color: #F44336;
}
.header_menu li.active a {
  color: #F44336;
}
.header .number {
  left: 36px;
  position: absolute;
  bottom: 44px;
}
.header .number p {
  color: #707070;
  font-size: 14px;
}
.header .number button {
  color: #707070;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
}
@media all and (max-width: 1024px) {
  .header .mo-menu-btn {
    display: block;
    z-index: 11;
  }
  .header nav {
    transition: 0.4s ease;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    width: 320px;
    padding-left: 36px;
  }
  .header nav.active {
    right: 0;
  }
}

footer {
  border-top: 1px solid #D4D4D4;
  width: 100%;
  background-color: #fff;
}

.footer {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_left {
  display: flex;
  gap: 48px;
}
@media all and (max-width: 1024px) {
  .footer_left {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
  }
}
.footer_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 7px 0 0;
}
.footer_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: -24px;
  height: 32px;
  border-left: 1px solid #9D9D9D;
}
.footer_text > ul {
  display: flex;
  gap: 18px;
  font-size: 12px;
}
@media all and (max-width: 1024px) {
  .footer_text > ul {
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer_text > ul li:first-child {
    width: 100%;
  }
}
.footer .copyright {
  color: #9D9D9D;
}

.sub_section {
  padding: 105px 0 135px;
}

.pc-show {
  display: block;
}
@media all and (max-width: 1024px) {
  .pc-show {
    display: none;
  }
}

.mo-show {
  display: none;
}
@media all and (max-width: 1024px) {
  .mo-show {
    display: block;
  }
}

.slider {
  --swiper-pagination-fraction-color:#fff;
}
.slider article {
  width: 100%;
  height: calc(100dvh - 94px);
  padding: 25vh 20px 85px;
  position: relative;
  min-height: 800px;
}
.slider article.slider-1 {
  background: url(../img//images/slier-1.png) no-repeat;
  background-size: cover;
}
.slider article.slider-2 {
  background: url(../img//images/slier-2.png) no-repeat;
  background-size: cover;
}
.slider article.slider-3 {
  background: url(../img//images/slier-3.png) no-repeat;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .slider article {
    min-height: auto;
    height: calc(100dvh - 60px);
  }
}
.slider_text {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: 1.4s textRight ease;
}
.slider_text h2, .slider_text span {
  font-weight: 600;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .slider_text h2, .slider_text span {
    font-size: 2vw;
  }
}
.slider_text h2 {
  line-height: 1.3;
}
@media all and (max-width: 1024px) {
  .slider_text h2 {
    font-size: 6vw;
  }
}
.slider .swiper-pagination-wrap {
  position: absolute;
  left: 50%;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 1300px;
  transform: translateX(-50%);
}
@media all and (min-width: 1025px) and (max-width: 1299px) {
  .slider .swiper-pagination-wrap {
    width: auto;
    left: 20px;
    transform: translateX(0);
  }
}
@media all and (max-width: 1024px) {
  .slider .swiper-pagination-wrap {
    width: auto;
    left: 20px;
    transform: translateX(0);
  }
}
.slider .swiper-pagination-wrap .swiper-pagination {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  width: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider .swiper-pagination-wrap .swiper-pagination span {
  color: #fff;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .slider .swiper-pagination-wrap * {
    font-size: 14px;
  }
}
.slider_bottom {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  padding: 40px 0 0;
  border-top: 1.5px solid #d4d4d4;
}
@media all and (max-width: 1024px) {
  .slider_bottom {
    border-top: none;
    bottom: 30px;
    padding: 0 0 12%;
  }
}
.slider_bottom button {
  color: #fff;
}
.slider_bottom p {
  color: #D1D1D1;
}
.slider_bottom > ul > li, .slider_bottom > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.slider_bottom > ul::-webkit-scrollbar {
  display: none;
}
@media all and (max-width: 1024px) {
  .slider_bottom > ul {
    padding: 0 20px;
    overflow: auto;
    gap: 8px !important;
  }
  .slider_bottom > ul li {
    min-width: 330px;
    width: 330px;
    height: 97px;
    border-radius: 7px;
    padding: 0 27px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    position: relative;
  }
  .slider_bottom > ul li img {
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
  }
}
@media all and (max-width: 1024px) {
  .slider_bottom > div {
    display: none;
  }
}
.slider_bottom > div p {
  color: #fff;
}
.slider_bottom > ul {
  display: flex;
  gap: 66px;
}
.slider_bottom > ul li > a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.slider_bottom > ul li > button {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
.slider_bottom > ul li > button > p {
  font-size: 16px;
}
.slider_bottom > ul li > button > span {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  gap: 9px;
}
.slider_bottom > ul li:nth-child(3) {
  display: flex;
}
@media all and (max-width: 1024px) {
  .slider_bottom > ul li:nth-child(3) {
    display: none;
  }
}
.slider_bottom > ul li:nth-child(4) {
  display: none;
}
@media all and (max-width: 1024px) {
  .slider_bottom > ul li:nth-child(4) {
    display: flex;
  }
}
.slider_bottom button {
  font-size: 26px;
  font-weight: 600;
  gap: 9px;
}
.slider_bottom .scroll_arrow {
  position: absolute;
  bottom: calc(100% + 45px);
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider_bottom .scroll_arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background: url(../img/icons/scroll-down.svg) no-repeat;
}
@media all and (max-width: 1024px) {
  .slider_bottom .scroll_arrow {
    bottom: 0;
  }
}

.section_wrap {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.section-1 {
  background: url(../img/icons/section-one-bg.svg) no-repeat;
  background-position: right bottom;
}
@media all and (max-width: 1024px) {
  .section-1 {
    background-size: 300px;
  }
}
.section-1 .section_wrap {
  padding: 165px 20px 190px;
  display: flex;
  flex-direction: column;
  gap: 125px;
  position: relative;
}
@media all and (max-width: 1024px) {
  .section-1 .section_wrap {
    padding: 70px 0 100px;
  }
}
.section-1 .section-1-circle {
  position: absolute;
  top: 100px;
  left: -130px;
  z-index: -1;
  width: 230px;
  height: 230px;
  background: url(../img/icons/section-one-circle.svg) no-repeat;
}
.section-1 > h3 {
  line-height: 1.3;
}
.section-1 article {
  display: flex;
  justify-content: space-between;
}
.section-1-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1;
  padding: 0 20px;
}
@media all and (max-width: 1024px) {
  .section-1-content {
    gap: 20px;
    width: 100%;
  }
}
.section-1-content img {
  width: 192px;
  margin-bottom: -30px;
}
.section-1-content > .number_font {
  font-size: 60px;
  white-space: nowrap;
}
@media all and (max-width: 1024px) {
  .section-1-content > .number_font {
    font-size: 42px;
  }
}
.section-1-content > .number_font span {
  color: #686868;
  font-size: 18px;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}
.section-1-content > span {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.section-1-content > span::after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  border-top: 1px solid #6d6d6d;
}
@media all and (max-width: 1024px) {
  .section-1-content > span::after {
    top: -15px;
  }
}
.section-1-content:not(:last-of-type) {
  border-right: 1px solid #E5E5E5;
}
@media all and (max-width: 1024px) {
  .section-1-content:not(:last-of-type) {
    border-right: none;
  }
}
@media all and (max-width: 1024px) {
  .section-1 article {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}

.section-2 {
  width: 100%;
  height: 1080px;
  background: #081C57 url(../img/images/section-two-shadow.png) no-repeat bottom;
  background-size: cover;
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media all and (max-width: 1024px) {
  .section-2 {
    height: auto;
  }
}
.section-2 .section_wrap {
  padding: 165px 0 0;
}
@media all and (max-width: 1024px) {
  .section-2 .section_wrap {
    padding-top: 65px;
  }
}
.section-2 .section_wrap > p {
  color: #96A9E3;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .section-2 .section_wrap > p {
    font-size: 14px;
    text-align: start;
  }
}
.section-2 .section_wrap > h3 {
  margin-top: 50px;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .section-2 .section_wrap > h3 {
    text-align: start;
    margin-top: 10px;
    line-height: 1.5;
  }
}
.section-2 .section-2-slider {
  width: 100%;
  margin-top: 130px;
  padding: 0 20px;
  position: relative;
}
@media all and (max-width: 1024px) {
  .section-2 .section-2-slider {
    margin-top: 45px;
  }
}
.section-2 .section-2-slider .swiper-slide {
  width: 950px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media all and (max-width: 1024px) {
  .section-2 .section-2-slider .swiper-slide {
    width: 100%;
    flex-direction: column;
  }
}
.section-2 .section-2-slider .swiper-slide b {
  color: #FFF;
  font-size: 33px;
  font-weight: 700;
}
.section-2 .section-2-slider .swiper-slide p {
  color: #FFF;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .section-2 .section-2-slider .swiper-slide p {
    font-size: 14px;
    font-weight: 400;
  }
}
.section-2 .section-2-slider-img {
  width: 530px;
}
@media all and (max-width: 1024px) {
  .section-2 .section-2-slider-img {
    width: 100%;
  }
}
.section-2 .section-2-slider-img img {
  width: 100%;
}
.section-2 .section-2-slider-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  display: none;
}
.section-2 .section-2-slider .swiper-slide-active .section-2-slider-text {
  display: flex;
}
.section-2 .section-2-slider .swiper-slide-prev {
  justify-content: flex-end;
}
.section-2 .section-2-slider .swiper-slide-next {
  justify-content: flex-start;
}
.section-2 .section-2-slider-btn {
  position: absolute;
  left: calc(50% + 0px);
  transform: translateX(100%);
  bottom: 0;
  z-index: 9;
}
@media all and (max-width: 1024px) {
  .section-2 .section-2-slider-btn {
    display: none;
  }
}

.section-3 .section_wrap {
  padding: 185px 0 385px;
  display: flex;
  gap: 120px;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap {
    padding: 75px 0 50px;
    flex-direction: column;
    gap: 30px;
  }
}
.section-3 .section_wrap > h3 {
  line-height: 1.25;
  flex-shrink: 0;
}
.section-3 .section_wrap > article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-grow: 1;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap > article {
    gap: 40px;
  }
}
.section-3 .section_wrap .section-3-content {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap .section-3-content {
    width: 100%;
  }
}
.section-3 .section_wrap .section-3-content:nth-of-type(1), .section-3 .section_wrap .section-3-content:nth-of-type(2) {
  margin-bottom: 140px;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap .section-3-content:nth-of-type(1), .section-3 .section_wrap .section-3-content:nth-of-type(2) {
    margin-bottom: 0;
  }
}
.section-3 .section_wrap .section-3-content:nth-of-type(even) {
  transform: translateY(200px);
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap .section-3-content:nth-of-type(even) {
    transform: translateY(0);
  }
}
.section-3 .section_wrap .section-3-content span {
  margin-top: 30px;
  color: #F44336;
  font-size: 20px;
  font-weight: 500;
}
.section-3 .section_wrap .section-3-content b {
  margin-top: 5px;
  font-size: 36px;
  font-weight: 700;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap .section-3-content b {
    font-size: 24px;
  }
}
.section-3 .section_wrap .section-3-content ul {
  margin-top: 15px;
}
.section-3 .section_wrap .section-3-content ul li {
  color: #707070;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media all and (max-width: 1024px) {
  .section-3 .section_wrap .section-3-content ul li {
    font-size: 14px;
  }
}
.section-3 .section_wrap .section-3-content ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #777;
}

.section-4 {
  background: url(../img/images/section-four-bg.png) no-repeat center center;
  background-size: cover;
}
.section-4 .section_wrap {
  padding: 160px 0 210px;
}
@media all and (max-width: 1024px) {
  .section-4 .section_wrap {
    padding: 80px 0 106px;
  }
}
.section-4 .section_wrap p, .section-4 .section_wrap h3 {
  text-align: center;
}
.section-4 .section_wrap > p {
  color: #ABABAB;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media all and (max-width: 1024px) {
  .section-4 .section_wrap > p {
    font-size: 16px;
  }
}
.section-4 .section_wrap > h3 {
  margin-top: 55px;
  color: #fff;
  line-height: 1.3;
}
@media all and (max-width: 1024px) {
  .section-4 .section_wrap > h3 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
  }
}

.section-5 {
  background: url(../img/images/section-five-bg.png) no-repeat center center;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .section-5 {
    background-size: cover;
    background-position: 60% 0;
  }
}
.section-5 .section_wrap {
  padding: 6.5vw 0 7.2vw;
}
@media all and (max-width: 1024px) {
  .section-5 .section_wrap {
    padding: 60px 0 300px;
  }
}
.section-5 .section_wrap > p {
  margin: 16px 0 45px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
@media all and (max-width: 1024px) {
  .section-5 .section_wrap > p {
    font-size: 16px;
    font-weight: 500;
  }
}
.section-5 .section_wrap > h3 {
  color: #fff;
  line-height: 1.3;
}
@media all and (max-width: 1024px) {
  .section-5 .section_wrap > h3 {
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
  }
}
.section-5 .section_wrap > a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .section-5 .section_wrap > a {
    background-color: #fff;
    height: 36px;
    padding: 0 26px;
    color: #AFA99E;
    border-radius: 18px;
    font-size: 14px;
  }
  .section-5 .section_wrap > a img {
    display: none;
  }
}

.ani {
  position: relative;
  opacity: 0;
}
.ani.delay-08 {
  animation-delay: 0.4s !important;
}
.ani.on.ani-up {
  animation: spanUp 1.4s ease forwards;
}
.ani.on.ani-scale {
  animation: scaleUp 1.4s ease forwards;
}