@import url(about.css?version=1.0.1.5);
@import url(article.css?version=1.0.1.3);
@import url(bb2026.css?version=1.0.1.3);
@import url(carousel.css?version=1.0.1.3);
@import url(default.css?version=1.0.1.4);
@import url(fonts.css?version=1.0.1.3);
@import url(footer.css?version=1.0.1.3);
@import url(header.css?version=1.0.1.5);


.hero {
    min-height: 800px;
    height: 100vh;
}
.hero img {
    width: 734.75px;
    object-fit: cover;
}

.tablet-mobile {
    width: 940px;
}

.intro {
    width: 100%;
    height: 296px;
}
.intro p {
    letter-spacing: -2%;
    text-align: justify;
}

.bg-card {
    border-radius: 8px;
    background-size:
        1280px 600px,
        auto;
    background-position: left top;
    background-image:
        image-set(
            url(../images/card_bg_small.png) 1x,
            url(../images/card_bg_large.png) 2x
        ),
        none;
    background-color: rgb(245, 245, 245);

    color: var(--main-dark);
}

.about_bb {
    width: 100%;
    flex-direction: column;
    gap: 40px;
}

.about_bb h1 {
    text-align: center;
}
.about_bb p {
    color: var(--main-dark);
    text-align: justify;
    letter-spacing: -2%;
}

.future p {
    letter-spacing: -2%;
    text-align: justify;
}

.advisory {
    margin: auto;
    width: 100%;
    max-width: 1260px;
    padding: 40px 10px 60px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}
.advisory h2 {
    text-align: left;
}
.advisory .advisory-list {
    width: 100%;
}
.advisory-list > * {
    display: flex;
}
.advisory-list .labels {
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -2%;
}
.advisory-list .labels p {
    width: 270px;
    font-style: Medium;
    margin-right: 100px;
}
.advisory-list article {
    min-height: 156.06px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px 16px 0px;
    border-top: 1px solid var(--Divider, rgba(85, 86, 89, 1));
    cursor: alias;
}

.advisory-list article.last
{
    border-bottom: 1px solid var(--Divider, rgba(85, 86, 89, 1));
}

.advisory-list article .article__cont
{
    display: flex;
    align-items: center;
}

.advisory-list article p.name {
    width: 370px;
    letter-spacing: -2%;
}
.advisory-list article p.about {
    width: 500px;
    letter-spacing: -2%;
}
.advisory-list article .article__img {
    width: 150px;
    flex-shrink: 0;
}
.advisory-list article .article__img img
{
    width: 100%;
}
.advisory-view-all {
    position: relative;
    max-width: 1260px;
    width: 100%;
    margin: 10px auto 0;
    padding: 16px 24px 16px 24px;
    cursor: pointer;
    background-color: rgb(245, 245, 245);
    background-image: url(../images/card_bg_hover.png);
    border-radius: 8px;
}
.advisory-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size:
        1280px 600px,
        auto;
    background-position: left top;
    background-image:
        image-set(
            url(../images/card_bg_small.png) 1x,
            url(../images/card_bg_large.png) 2x
        ),
        none;
    background-color: rgb(245, 245, 245);
    opacity: 1;
    z-index: 1;
    transition: var(--transition);
}
.advisory-view-all:hover::before {
    opacity: 0;
}
.advisory-view-all a,
.advisory-view-all button {
    position: relative;
    display: block;
    width: 100%;
    color: var(--main-dark);
    text-align: center;
    transition: var(--transition);
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.advisory-view-all:hover a,
.advisory-view-all:hover button {
    color: #fff;
}
.advisory-view-all button:disabled {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 1280px) {
    .tablet-mobile {
        width: 620px;
    }
    .intro p {
        letter-spacing: -2%;
        text-align: justify;
    }

    .advisory {
        max-width: 780px;
        gap: 80px;
        padding: 40px 10px 60px 10px;
    }
    .advisory .article__img {
        display: none;
    }
    .advisory .advisory-list .labels p:nth-child(1),
    .advisory .advisory-list article p:nth-child(1) {
        max-width: 360px;
        min-width: 360px;
        margin: 0;
    }
    .advisory .advisory-list .labels p:nth-child(2),
    .advisory .advisory-list article p:nth-child(2) {
        width: stretch;
        min-width: 0;
        margin: 0;
    }
    .advisory .advisory-list article {
        justify-content: flex-start;
        gap: 0;
    }
    .advisory-view-all {
        max-width: 780px;
        width: 100%;
    }
    .advisory-view-all p {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .p-120-64 {
        padding: 64px 0;
    }

    .hero img {
        width: 315px;
    }
    .tablet-mobile {
        min-width: 275px;
        width: 100%;
    }

    .intro p {
        letter-spacing: -2%;
    }
    .intro {
        padding: 0px 40px 64px 40px;
    }
    .future,
    .about_bb {
        padding: 64px 40px 64px 40px;
    }
    .about_bb h1 {
        min-width: 275px;
        width: 100%;
        text-align: left;
    }

    .advisory {
        padding: 40px 40px 60px 40px;
    }
    .advisory .article__img {
        display: block;
    }
    .advisory .advisory-list article {
        justify-content: space-between;
        min-height: 82px;
    }
    .advisory-list article .article__img {
        width: 100px;
    }
    .advisory p.about,
    .advisory .labels p:nth-child(2) {
        display: none;
    }
    .advisory .advisory-list .labels p:nth-child(1),
    .advisory .advisory-list article p:nth-child(1) {
        max-width: 225px;
        min-width: 0;
    }

    .advisory-view-all p {
        font-size: 40px;
    }
}

@media (max-width: 425px) {
    .advisory .advisory-list .labels {
        justify-content: center;
        text-align: center;
    }
    .advisory .advisory-list article {
        justify-content: center;
        flex-direction: column-reverse;
        min-height: 82px;
        gap: 10px;
        text-align: center;
    }
}
