/*--------------------------------------------------------------
 Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

@font-face {
    font-family: "Pixel_Impact";
    src: url("../fonts/pixel_impact.ttf") format("truetype");
}

:root {
    --default-font: sans-serif;
    --heading-font: sans-serif;
    --nav-font: sans-serif;
    --pixel-impact: "Pixel_Impact";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #602e31;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #3d4d6a;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.header .logo img {
    width: 300px;
    height: 50px;
    object-fit: contain;
}

.header .logo-right {
    width: 300px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .header .logo img {
        width: 60%;
    }
    .header .logo-right {
        width: 30%;
    }
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    width: max-content;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #ffffff;
    background-color: #602e31;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: #ffffff;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 60px 0 60px 0;
    display: flex;
    align-items: flex-start;
    background: url("../img/oaot/bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero h1 {
    margin: 0;
    font-size: 9rem;
    line-height: 56px;
    color: #000;
    padding-top: 6rem;
    letter-spacing: 0.5rem;
    font-family: var(--pixel-impact);
}

.hero h2 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 56px;
    color: #000;
    padding-top: 2rem;
    font-family: var(--pixel-impact);
}

.hero .img-oaot {
    width: 25vw;
}

.hero .img-loves {
    position: absolute;
    right: 10vw;
    width: 12vw;
    top: 15vh;
}

.hero .img-island-1 {
    position: absolute;
    left: 10vw;
    width: 9vw;
    top: 35vh;
}

.hero .img-island-3 {
    position: absolute;
    right: 16vw;
    width: 9vw;
    top: 25vh;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 80px;
        padding-top: 50px;
    }
    .hero h2 {
        font-size: 24px;
        padding-top: 0px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }

    .hero {
        background-size: cover;
        background-position: center;
    }

    .hero .img-oaot {
        width: 45vw;
    }

    .hero .img-loves {
        position: absolute;
        width: 20vw;
    }

    .hero .img-island-1 {
        position: absolute;
        left: 7vw;
        width: 27vw;
        top: 48vh;
    }

    .hero .img-island-3 {
        position: absolute;
        right: 7vw;
        width: 27vw;
        top: 48vh;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# score Section
--------------------------------------------------------------*/

.score {
    width: 100%;
    position: relative;
    padding: 60px 0 28rem 0;
    display: flex;
    align-items: flex-start;
    background: url("../img/oaot/bg-2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #602e31;
}

.score .score-header {
    border: 4px solid #000;
    border-bottom: 15px solid #000;
    background-color: white;
}

.score .table-result-container {
    max-height: 500px;
    overflow-y: auto;
}

.score .table-result-container h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.score .table-result {
    width: 100%;
    border-collapse: collapse;
    text-align: leff;
}

.score .table-result thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid #ccc;
    padding: 8px;
}

.score .table-result tbody td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.score .image-items a {
    width: 25%;
}

.score .image-items a img {
    width: 100%;
}

.score .social {
    width: 75%;
    padding: 0 1rem;
    position: relative;
    background: url("../img/oaot/social.png");
    background-size: 100% 83%;
    background-repeat: no-repeat;
    margin-top: 7rem;
    position: relative;
}

.score .social .ig-feed {
    height: 60vh;
    overflow-y: auto;
    padding: 20px 0;
}

.score .social img {
    width: 90%;
    position: absolute;
    top: -2rem;
    left: 5%;
}

.score .img-board-result {
    width: 70%;
}

.score .info-text {
    font-family: sans-serif;
}

.score h4 {
    font-family: sans-serif;
    font-weight: bold;
}

.score .yt-container {
    background: url("../img/oaot/yt.png");
    background-size: 100% 100%;
    height: 70vh;
    position: relative;
}

.score .yt-container iframe {
    position: absolute;
    height: 60%;
    width: 82%;
    top: 30%;
    left: 11.5%;
}

@media (max-width: 640px) {
    .score {
        padding-top: 10px;
        background-size: cover;
        background-position: 25%;
        padding-bottom: 25rem;
    }

    .score .info-text {
        padding: 2rem;
        margin-top: 1rem;
    }

    .score .info-text p {
        font-size: 12px;
    }

    .score .yt-image {
        height: 50vh;
    }

    .score .info-text h4 {
        margin-top: 0;
    }

    .score .social {
        margin-top: 0;
        width: 100%;
        background-size: 100% 100%;
    }
}

/*--------------------------------------------------------------
# gap Section
--------------------------------------------------------------*/
.gapsection {
    width: 100%;
    min-height: 10vh;
    position: relative;
    background: url("../img/oaot/gap.png") no-repeat;
    background-color: #602e31;
    margin-top: -15px;
}
@media (max-width: 640px) {
    .gapsection {
        background-position: 5% 0%;
        background-repeat: no-repeat;
    }
}

/*--------------------------------------------------------------
# activity Section
--------------------------------------------------------------*/
.activity {
    padding: 30px 0 10rem 0;
    position: relative;
    top: -13px;
    z-index: 5;
}

.activity .img-tree-middle {
    position: absolute;
    left: 8vw;
    top: 80vh;
    width: 10vw;
}

.activity .img-activity {
    position: absolute;
    left: 15vw;
    top: 1vh;
    width: 10vw;
}

.activity .img-island {
    position: absolute;
    left: 25%;
    width: 12%;
    bottom: 0;
}

.activity .img-island-1 {
    position: absolute;
    right: 5vw;
    top: 5vh;
    width: 8vw;
}

.activity .img-island-2 {
    position: absolute;
    right: 8vw;
    top: 80vh;
    width: 8vw;
}

.activity .first-main {
    margin-top: 7rem;
}

.activity .main-reward {
    height: 50vh;
}

.activity .img-icon-reward {
    width: 300px;
    height: 50px;
    object-fit: contain;
}

.activity .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.activity .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.activity .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.activity .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.activity .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
}

.activity .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
    font-weight: 600;
}

.activity .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.activity .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.activity .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.activity .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.activity .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.activity .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.activity .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.activity .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.activity .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

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

.activity .activity-img img {
    max-height: 70%;
}

.activity-slider {
    margin-top: 8rem;
    width: 60%;
}

.activity-slider .activity-main {
    display: flex;
    gap: 1rem;
    padding: 2rem 1rem;
}

.activity-joinus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 1rem;
}

.activity-slider .img-activity-inside {
    /* height: 180px; */
    object-fit: 100% 100%;
    width: 40%;
    border-radius: 40px;
    max-height: 25vh;
}

.activity-slider .img-activity-inside-2 {
    width: 60%;
    border: 3px solid #000;
    border-bottom: 5px solid #000;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    padding: 2rem 1.5rem;
    position: relative;
    font-size: 14px;
}
.activity-slider .img-activity-inside-2 .joinus {
    margin-top: 35px;
    text-align: right;
}

.btnjoin {
    background: url(../img/oaot/join-red.png) no-repeat;
    width: 166px;
    height: 60px;
}

.activity-slider .img-activity-inside-2 .title {
    margin-top: -4rem;
    background-color: #00c1f3;
    width: 100%;
    z-index: 10;
    font-size: 14px;
    border-radius: 20px;
    border: 3px solid #000;
    text-align: center;
    font-size: 24px;
    font-family: var(--pixel-impact);
}

.activity-slider .img-activity-inside-2 .content {
    padding: 1rem 0;
}

.activity .swiper-container,
.activity .swiper-container-2 {
    position: relative;
}

.activity .swiper-button-next,
.activity .swiper-button-prev,
.activity .swiper-button-next-2,
.activity .swiper-button-prev-2 {
    position: absolute;
    top: 30%;
}

.activity .swiper-button-next:after,
.activity .swiper-button-prev:after,
.activity .swiper-button-next-2:after,
.activity .swiper-button-prev-2:after {
    content: "";
}

.activity .swiper-button-next,
.activity .swiper-button-next-2 {
    right: 10%;
}

.activity .swiper-button-prev,
.activity .swiper-button-prev-2 {
    left: 10%;
}

.reward-slider {
    text-align: center;
    width: 60%;
}

.reward-slider .img-reward {
    width: 210px;
    height: 330px;
    object-fit: cover;
}

@media (max-width: 640px) {
    .activity {
        padding-bottom: 5rem;
    }

    .activity .img-island-1 {
        right: 35vw;
        top: 5vh;
        width: 30vw;
    }

    .activity .img-activity {
        left: 10vw;
        top: 13vh;
        width: 25vw;
    }

    .activity .img-island {
        left: 6vw;
        top: 63vh;
        width: 30vw;
    }

    .activity .img-tree-middle {
        display: none;
    }

    .activity .main-reward {
        margin-top: 8.5rem;
    }

    .activity .img-island-2 {
        display: none;
    }

    /* slider activity */
    .activity-slider {
        margin-top: 10rem;
        width: 100%;
    }

    .activity-slider .img-activity-inside {
        border-radius: 15px;
        height: 120px;
    }

    .activity-slider .img-activity-inside-2 {
        height: 100%;
        padding: 1rem;
    }

    .activity-slider .img-activity-inside-2 .content {
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 10px;
    }

    .activity .img-activity-inside-2 .title {
        margin-top: -35px;
        width: 100%;
        z-index: 10;
        font-size: 14px;
        border-radius: 20px;
        border: 3px solid #000;
    }
    /* slider activity */

    .reward-slider {
        text-align: center;
        width: 100%;
    }

    .reward-slider .img-reward {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }

    .reward-slider .img-reward {
    }

    .activity .swiper-button-next,
    .activity .swiper-button-prev,
    .activity .swiper-button-next-2,
    .activity .swiper-button-prev-2 {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.skills .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--default-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 60px 0 60px 0;
    display: flex;
    align-items: flex-start;
    background: url("../img/oaot/bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #602e31;
}

.faq .img-oaot {
    width: 25vw;
}

.faq h1 {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.faq .faq-inside {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.faq .accordion-item {
    border: none;
    background-color: transparent;
}

.faq .accordion-button {
    background-color: #9bbf44;
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border: 2px solid #000;
    border-radius: 5px;
}

.faq .accordion-collapse {
    text-align: left;
    background-color: #fff;
}

@media (max-width: 640px) {
    .hero {
        background-size: cover;
        background-position: center;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.toogle-btn {
    top: 13vh;
    left: 10vw;
}

.toogle-btn img {
    width: 50px;
}

.modal-dialog-custom {
    position: fixed;
    margin: auto;
    width: 20%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal-dialog-custom .modal-content {
    background: url("../img/oaot/sidebar_bg.png") no-repeat;
    background-size: cover;
    background-clip: border-box;
    background-position: left;
    border-radius: 0;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
}

.modal-dialog-custom .modal-body {
    height: 100vh;
    padding: 0;
}

.modal.animate-left .modal-dialog {
    transform: translateX(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.modal.animate-left.show .modal-dialog {
    transform: translateX(0);
    opacity: 1;
}

/* Modal keluar ke kiri */
.modal.animate-left .modal-dialog.closing {
    transform: translateX(-100%);
    opacity: 0;
}

@media (max-width: 640px) {
    .toogle-btn {
        top: 13vh;
        left: 7vw;
    }

    .toogle-btn img {
        width: 50px;
    }

    .modal-dialog-custom {
        width: 60% !important;
    }

    .hero .col-lg-6 {
        margin-top: 7rem;
    }

    .hero .img-loves {
        right: 7vw;
        width: 35vw;
        top: 11vh;
    }
}

.sidebar .logo-sidebar {
    width: 50%;
    left: 25%;
    position: absolute;
    top: 8vh;
}

.sidebar nav {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.sidebar nav a {
    width: 100%;
    text-align: center;
}

.sidebar nav a img {
    height: 35px;
    object-fit: contain;
}

.sidebar .social-sidebar {
    margin-top: 1rem;
    color: #000;
    gap: 1rem;
    font-size: 8px;
}

.sidebar .social-copyright {
    margin-top: 0.5rem;
    font-size: 10px;
    text-align: center;
    color: #000;
}

.sidebar .social-copyright p {
    margin: 0;
    font-weight: bold;
}

.hide {
    display: none;
}

.show {
    display: block;
}
a.btnterm {
    padding: 5px;
    background: url(../img/oaot/faq-red.png) no-repeat;
    background-size: 100% 100%;
    width: 80px;
    height: 30px;
}
a.btnjoin {
    padding: 5px;
    background: url(../img/oaot/join-red.png) no-repeat;
    background-size: 100% 100%;
    width: 80px;
    height: 30px;
}
a.text-term {
    padding-top: 8px;
    padding-right: 8px;
    display: block;
    color: #fff;
    font-size: 10px;
}
.activity-slider .img-activity-inside-2 .content {
    min-height: 20vh;
}

.c-font {
    font-family: var(--pixel-impact) !important;
    font-weight: normal !important;
}
.activity .content-start p {
    color: #000 !important;
}