@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');

:root {
    --font-size-big: 24px;
    --font-size-base: 18px;
    --font-size-small: 16px;
    --font-size-tini: 14px;
    --font-size-h1: 120px;
    --font-size-h2: 80px;
    --font-size-h3: 64px;
    --font-size-h4: 54px;
    --font-size-h5: 32px;
    --font-size-h6: 20px;
    --section-base: 30px;
    --button-height: 56px;
    --color-pri: rgb(237, 32, 121);
    --color-sec: rgb(251, 176, 60);
    --color-gra-1: linear-gradient(90deg, var(--color-pri) 0%, var(--color-sec) 100%);
    --color-gra-2: linear-gradient(90deg, var(--color-white) 0%, var(--color-pri) 100%);
    --color-white: #FFFFFF;
    --color-black: #1D232A;
}

/* Basic */
body {
    font-family: "Anek Latin", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: var(--color-white);
    font-size: var(--font-size-base);
    line-height: 1.45;
    background-color: var(--color-black);
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: calc(var(--section-base) * 0.5);
    line-height: 1.25;
    font-weight: normal;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

img {
    width: 100%;
    height: auto;
}

.big-font {
    font-size: var(--font-size-big);
}

a {
    color: var(--color-white);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-pri);
}

input,
select {
    display: inline-block;
}

.color-dark {
    color: var(--color-black);
}

.color-w {
    color: var(--color-white);
}

.color-pri {
    color: var(--color-pri);
}

.color-sec {
    color: var(--color-sec);
}

.color-thr {
    color: var(--color-thr);
}

.bg-pri {
    background-color: var(--color-pri);
}

.bg-sec {
    background-color: var(--color-sec);
}

.bg-thr {
    background-color: var(--color-thr);
}

hr {
    border-width: 1px;
    border-color: var(--color-sec);
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--color-white);
    font-size: var(--font-size-h6);
    background: var(--color-gra-1);
    height: var(--button-height);
    padding: 0px var(--section-base);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    border: 0;
    border-radius: var(--button-height);
    font-size: inherit;
}

.btn:hover {
    background: var(--color-gra-2);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background: var(--color-pri);
    color: var(--color-white);
}

.btn-square {
    width: var(--button-height);
    padding: 0;
}

.pb-base {
    padding-bottom: var(--section-base) !important;
}

.pt-big {
    padding-top: calc(var(--section-base) * 2.5) !important;
}

.pb-big {
    padding-bottom: calc(var(--section-base) * 2.5) !important;
}

.mt-big {
    margin-top: calc(var(--section-base) * 2.5) !important;
}

.mb-big {
    margin-bottom: calc(var(--section-base) * 2.5) !important;
}

.mb-base {
    margin-bottom: var(--section-base) !important;
}

.fw-lighter {
    font-weight: 200 !important;
}

textarea,
select,
input {
    height: var(--button-height);
    background-color: var(--color-white);
    border-radius: calc(var(--button-height) / 2);
    padding: 0 var(--section-base);
    border: 0;
    outline: none;
    box-shadow: none;
    width: 100%;
    color: var(--color-black);
    font-weight: 500;
    font-size: var(--font-size-h6);
}

textarea {
    height: calc(var(--section-base)*3.5);
}

::placeholder {
    color: var(--color-black);
    opacity: 0.75;
    font-style: italic;
}

select {
    -webkit-appearance: none;
    background-image: url('icon/select.svg');
    background-position: center right calc(var(--section-base)*.5);
    background-repeat: no-repeat;
    background-color: var(--color-white);
    padding-right: calc(var(--section-base)*1.5);
}

.gap-base {
    gap: calc(var(--section-base) * 2 / 3);
}

/* Main */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    height: auto;
}

.section {
    padding: calc(var(--section-base) * 6) 0;
    position: relative;
}

.img-wrap {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.img-wrap.img-po {
    padding-top: 115%;
}

.img-wrap.img-sq {
    padding-top: 100%;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.img-wrap:hover img {
    transform: scale(1.05);
}

.img-wrap.slider-img {
    padding-top: 0;
    height: 480px;
}

.img-wrap.slider-img:hover img {
    transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    width: var(--button-height);
    height: var(--button-height);
    background-color: transparent;
    top: calc(50% - var(--button-height) * 0.5);
}

.swiper-button-next {
    right: calc(var(--section-base) * 0.5);
}

.swiper-button-prev {
    left: calc(var(--section-base) * 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--font-size-h5);
}

.sub-title {
    font-size: var(--font-size-big);
    font-weight: 500;
}

.bg-after {
    position: relative;
}

.bg-after span {
    position: relative;
    z-index: 1;
}

.bg-after::after {
    position: absolute;
    content: "";
    width: calc(var(--section-base) * 7);
    height: var(--button-height);
    top: calc(var(--section-base) * 4.5/3);
    background: var(--color-gra-1);
    left: 0;
    opacity: 0.4;
}

.sub-title.bg-after::after {
    height: 100%;
    top: 50%;
    width: calc(var(--section-base) * 3);
}

.bg {
    background-size: cover;
}

.bg-01 {
    background-image: url('004.jpg');
}

.bg-02 {
    background-image: url('005.jpg');
}

.bg-03 {
    background-image: url('006.jpg');
}

.bg-04 {
    background-image: url('014.jpg');
}

.text-line {
    color: var(--color-white);
    background: -webkit-linear-gradient(0, var(--color-white), var(--color-pri));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-line-2 {
    color: var(--color-pri);
    background: -webkit-linear-gradient(0, var(--color-pri), var(--color-sec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rounded-base {
    border-radius: 16px;
}

.section-banner {
    position: relative;
}

.section-banner>img {
    height: 100vh;
    max-height: 100dvh;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.banner-list {
    letter-spacing: calc(var(--section-base) * 0.4);
}


.scroll-title {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-title>div {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    transform: translateX(0);
    width: max-content;
    display: flex;
    align-items: center;
    -webkit-animation: scrollText 20s infinite linear;
    animation: scrollText 20s infinite linear;
}

@-webkit-keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.section-banner .overlay {
    position: absolute;
    left: 0;
    bottom: calc(var(--section-base) * 2.5);
    width: 100%;
    z-index: 1;
}

.box-text {
    background-color: #F7F7F7;
    padding: calc(var(--section-base) * 2.5);
}

.accordion-body .icon {
    width: calc(var(--section-base) * 2.2);
}

.accordion-button {
    font-size: var(--font-size-h5);
    font-weight: 500;
    outline: none !important;
    box-shadow: none !important;
    padding: calc(var(--section-base) * 4/3) 0;
    background-color: transparent;
}

.accordion-button::after {
    background-image: url('../assets/icon/+.svg');
    background-position: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../assets/icon/-.svg');
    background-position: center;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-item:last-of-type {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #0756A6;
    border-radius: 0;
}

.accordion-body {
    padding: 0 0 calc(var(--section-base) * 4/3) 0;
    color: var(--color-white);
}

.item-01 {
    position: relative;
}

.item-01 .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 calc(var(--section-base) * 3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-01:hover .img-wrap img {
    transform: scale(1.05);
}

.section-box {
    z-index: 9;
    position: relative;
}

.poa {
    position: absolute;
    z-index: -1;
}

.poa-1 {
    top: 0;
    left: calc(100% - var(--section-base) * 18);
    width: calc(var(--section-base) * 18);
}

.poa-2 {
    top: 25%;
    left: 0;
    width: calc(var(--section-base) * 14);
}

.poa-3 {
    bottom: 0;
    left: calc(100% - var(--section-base) * 18);
    width: calc(var(--section-base) * 12);
}

.box-01 {
    padding: calc(var(--section-base) * 2.5);
    background-image: url('015.jpg');
    background-size: cover;
}

.item-02 {
    position: relative;
}

.item-02 .content {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: calc(var(--section-base) * 4/3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.z-index-10 {
    z-index: 10;
}

.img-fix-01 {
    margin-top: calc(var(--section-base) * -6.5);
    width: auto;
}

.box-02 {
    padding: calc(var(--section-base) * 2.5);
    background-image: url('019.jpg');
    background-size: cover;
}

.section-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-03 .img-wrap::before {
    content: "";
    position: absolute;
    background-color: var(--color-black);
    opacity: 0.4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.item-03:hover .img-wrap::before {
    opacity: 0;
}

.section-banner-page {
    max-height: calc(var(--section-base) * 18);
}

.swiper-pagination {
    position: relative;
    padding-top: calc(var(--section-base) * 4/3);
}

.swiper-pagination-bullet {
    width: calc(var(--section-base) * 1/2);
    height: calc(var(--section-base) * 1/2);
    background: var(--color-pri);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(var(--section-base) * 1/3);
}