<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* common */ 
.rl-visible {
    display: none;
}

.rl-hidden {
    display: block;
}

@media screen and (max-width: 768px) {
    .rl-visible {
        display: block;
    }
    .rl-hidden {
        display: none;
    }
}

.rl-text-regular {
    font-weight: 400;
}

.rl-uppercase {
    text-transform: uppercase;
}

.tab-content {
    padding-top: 65px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 40px;
}

hr.divide-line {
    margin: 0;
    border: 0;
    border-bottom: 2px solid #ccc;
}

/* tab-btn */ 
.nav-anchor .tab-btn {
    font-family: 'Oswald', sans-serif;
}

.nav-anchor .tab-btn {
    background: #ffdca7;
    border: none;
    border-radius: 5px;
    color: #282828;
    font-size: calc(0.75vw + 15.6px);
    font-weight: bold;
    height: 60px;
    outline: none;
    margin: 5px 0;
    padding: 0;
    width: 100%;
}

.nav-anchor .tab-btn:hover,
.nav-anchor .tab-btn.active {
    background: #fe9f11;
    color: #282828;
}

/* content-type-introduction */
.content-type-introduction {
    display: flex;
    margin-bottom: calc(1vw + 30px);
}

.content-type-introduction &gt; img {
    width: calc(100% / 3 - 20px);
    height: 100%;
    margin: 0px 10px;
}

.content-type-introduction &gt; div {
    margin: 0 10px;
    display: flex;
    align-items: center;
    padding: 10px calc(0.3125vw + 9px);
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: left;
    font-weight: 300;
}

@media screen and (max-width: 1199px) {
    .content-type-introduction &gt; img {
        width: calc(100% / 5 *2 - 20px);
    }
}

@media screen and (max-width: 990px) {
    .content-type-introduction &gt; img {
        width: calc(100% / 2 - 20px);
    }
}

@media screen and (max-width: 767px) {
    .content-type-introduction {
        flex-direction: column;
    }

    .content-type-introduction &gt; img,
    .content-type-introduction &gt; div { 
        width: 100%;
        margin: 0px;
    }
}

/* col-layout */
._elite_campaign .col-layout&gt;div {
    margin: 15px 0;
}

._elite_campaign .col-layout .content-wrapper {
    overflow: hidden;
}

._elite_campaign .col-layout .content-wrapper .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
}

._elite_campaign .col-layout .content-wrapper:hover .mask {
    box-shadow: inset 0px 0px 250px 10px #000000;
}

._elite_campaign .col-layout .content-wrapper img {
    -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

._elite_campaign .col-layout .content-wrapper:hover img {
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

._elite_campaign .col-layout.no-scale .content-wrapper:hover img {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}</pre></body></html>