/* Colors */
:root {
    --color-default: #2A826F;
}

/* Font */
:root {
    --font-default: 'Fredoka' !important;
}

body {
    cursor: default;
    font-family: var(--font-default);
}

a {
    color: var(--color-default);
    font-family: var(--font-default);
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', serif;
}

p {
    font-family: 'Fredoka', serif;
}

.fa-paper-plane {
    font-size: 20px !important;
}

.mt-7 {
    margin-top: 5rem !important;
}

/* Scroll css */
#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 60px;
    z-index: 99;
    font-size: 24px;
    border: white;
    background-color: var(--color-default);
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 40px;
}

#myBtn:hover {
    color: white;
    background-color: var(--color-default);
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.4s;
    border: #2A826F 1px solid;
}

.scroll-top i {
    font-size: 40px;
    color: var(--color-default);
    line-height: 0;
}

.scroll-top:hover {
    color: white !important;
    background-color: var(--color-default);
}

.scroll-top i:hover {
    color: white !important;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* Scroll css */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-default);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-default);
}

.app-icons {
    display: flex;
    align-items: center;
}

.vertical {
    width: 300px;
    flex-direction: column;
}

.android {
    width: 129px;
    height: 40px;
}

.apple {
    width: 130px;
    height: 40px;

}

/* Header css */
.header {
    z-index: 997;
    position: absolute;
    padding: 30px 0;
    top: 0;
    left: 0;
    right: 0;
}

.header .logo img {
    max-height: 75px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.header .logo h1 span {
    color: var(--color-default);
}

/* Navbar css */
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 24px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        font-family: 'Fredoka', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        color: rgba(42, 130, 111, 0.7);
        border-radius: 24px;
        padding: 4px 16px;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-default);
        visibility: hidden;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        background-color: #fff;
        border-radius: 24px;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/* Mobile navbar css */
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: url('../assets/backround_img.jpg');
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-default);
        font-size: 20px;
        font-weight: 500;
        color: var(--color-default);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: var(--color-default);
    }

    .mobile-nav-show {
        position: relative;
        color: var(--color-default);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: var(--color-default);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}


/* Section css */
section {
    padding: 60px 0;
    overflow: hidden;
}

.tb-5 {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 77px;
    position: relative;
    color: var(--color-default);
}

.section-header h2:before {
    margin: 0 15px 10px 0;
}

.section-header h2:after {
    margin: 0 0 10px 15px;
}

.section-header p {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: var(--color-default);
    margin: 0 auto 0 auto;
}

.section-header span {
    color: red;
}

/* Mobile Section css */
@media screen and (max-width: 788px) {
    .section-header h2 {
        font-size: 32px;
        line-height: 37px;
    }

    .section-header p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Hero Section css */
#intro {
    background-image: url("../assets/backround_img.jpg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    position: relative;
    padding: 130px 0 50px 0;
}

.info h2 {
    font-weight: 700;
    font-size: 66px;
    line-height: 79px;
    margin-bottom: 15px;
    color: var(--color-default);

}

.info p {
    color: var(--color-default);
    font-size: 24px;
    line-height: 36px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 15px;
}

.social-links a:hover {
    border: none;
    background-color: var(--color-default);
    color: white;
}


.btn-watch {
    width: 275px;
    height: 55px;
    letter-spacing: 1px;
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(180deg, #FFDF7A 0%, #FCBA0F 100%, #E26A26 0%, #F69453 100%);
    border-radius: 9px;
    box-shadow: 0 0 0 3px #E26A26,
    0 0 0 5px white;
    text-shadow: 0 0 2px #E26A26;
    margin-bottom: 2rem !important;
}

.btn:active {
    transform: scale(0.99);
}

.pandaInChair img {
    max-width: 100%;
    height: auto;
    animation: rotate 2s cubic-bezier(0.49, 0.67, 0.63, 0.46) infinite;
}

@keyframes rotate {
    50% {
        transform: rotate(3deg);
    }
}

@media screen and (max-width: 992px) {
    .info h2 {
        line-height: 37px;
        font-size: 48px;
        text-align: center;
    }

    .info p {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .icons-cent,
    .social-links {
        justify-content: center;
    }

    .popup-youtube {
        display: flex;
        justify-content: center;
    }
}

/* Courses section css */
.courses-btn .nav-link {
    color: var(--color-default);
    border-radius: 16px;
    border: none;
    height: 112px;
    width: 180px;
    background: none;
    margin: 5px;
}

.nav-link p {
    position: relative;
    bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
}

.courses-btn .nav-link:hover {
    color: white !important;
    background-color: var(--color-default) !important;
}

.courses-btn .nav-link.active {
    color: white !important;
    background-color: var(--color-default) !important;
}

.courses-btnImg {
    width: 64px;
    height: 64px;
    position: relative;
    bottom: 40px;
    background-color: white;
    border-radius: 50%;
}

.courses-phoneImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.courses-phone p {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-default);
    text-align: center;
}

.iphoneX_border {
    position: absolute;
}

/* Good-bad Section css */
.good-bad_body {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.good-bad_Img {
    width: 500px;
    height: 500px;
    padding: 30px;
    object-fit: contain;
}

.book-pand {
    animation: rotate 2s cubic-bezier(0.49, 0.67, 0.63, 0.46) infinite;
}

.good-bad_Group {
    display: flex;
    margin: 5px;
}

.good-bad_Btn .nav-link {
    line-height: 24px;
    height: 80px;
    width: 350px;
    border-radius: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    padding: 20px;
    font-size: 28px;
    margin: 10px;
    border: none;
    color: var(--color-default);
    background: none;
}

.good-bad_Btn .nav-link p {
    bottom: 0;
    font-size: 60px;
    margin: 0 15px 7px 0 !important;
    border-radius: 25%;
}

.good-bad_span {
    color: rgb(42, 130, 111);
    font-size: 25px;
    text-align: center;
    justify-content: center;
    display: flex;
    font-weight: 400;
}

.good-bad_Btn .nav-link:hover {
    background: linear-gradient(180deg, #2BD7B2 -25.94%, #2B8471 136.79%);
    color: white;
}

.good-bad_Btn .nav-link.active {
    background: linear-gradient(180deg, #2BD7B2 -25.94%, #2B8471 136.79%);
    color: white;
}

.good-bad_BigT {
    font-size: 25px !important;
    line-height: 35px !important;
    bottom: 0;
    font-weight: 600 !important;
    margin: 0 !important;
}

@media screen and (max-width: 992px) {
    .good-bad_Group {
        justify-content: center;
    }
}

/* Slider section */
.gallery-content {
    position: absolute;
    top: 110px;
    left: 18px;
}

.gallery-content__img img {
    height: 178px;
    width: 386px;
    margin: 0 50px;
    border-radius: 16px;
}

.swiper-container {
    position: relative;
    width: 90vw;
    height: 300px;
}

.swiper-container > .swiper-slide__content {
    position: absolute;
    top: 0;
}

.swiper-slide {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.7);
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.swiper-slide.swiper-slide-active {
    transform: scale(1.2);
}

@media screen and (max-width: 785px) {
    .swiper-slide.swiper-slide-active {
        transform: scale(1);
    }
}

@media screen and (max-width: 767px) {
    .swiper-slide img {
        border-radius: 45px;
        padding: 10px;
    }
}

.swiper-slide__content {
    height: 300px;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-active .iphone_Mocup {
    display: block;
}

.iphone_Mocup {
    position: absolute;
    display: none;
}

.swiper-button {
    color: var(--color-default);
    background-color: rgba(255, 255, 255);
    border: 1px solid;
    border-radius: 50%;
    width: 64px !important;
    height: 64px !important;
}

.swiper-button-prev {
    background-image: url("../assets/prev.png") !important;
    background-size: 24px 28px !important;
    left: 22.5% !important;
}

.swiper-button-next {
    background-image: url("../assets/next.png") !important;
    background-size: 24px 28px !important;
    right: 22.5% !important;
}

@media screen and (max-width: 769px) {
    .swiper-button-prev {
        background-image: url("../assets/prev.png") !important;
        background-size: 24px 28px !important;
        left: 1% !important;
    }

    .swiper-button-next {
        background-image: url("../assets/next.png") !important;
        background-size: 24px 28px !important;
        right: 1% !important;
    }
}

@media screen and (max-width: 1205px) {
    .swiper-button {
        width: 48px !important;
        height: 48px !important;
    }

    .swiper-button-prev {
        background-image: url("../assets/prev.png") !important;
        background-size: 24px 28px !important;
    }

    .swiper-button-next {
        background-image: url("../assets/next.png") !important;
        background-size: 24px 28px !important;
    }
}


/* Leaderboard Section Css */
.progress-card {
    background: linear-gradient(180deg, #FFFFDE 1.62%, #FFF4CA 98.22%);
    border-radius: 24px;
}

.progress-card-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.progress-card-header img {
    height: 87px;
    width: 87px;
    margin: 15px;
}

.progress-card-header h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: var(--color-default);
}

.progress-card-body {
    padding: 5px;
    margin: 20px;
}

.bar-group {
    transform: translateY(100px);
    transition: all 1s ease;
}

.bar-group p {
    color: #2A826F;
    display: flex;
    justify-content: center;
}

.chart-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-box img {
    width: 48px;
    position: absolute;
}

.chart-box .chart {
    position: relative;
    text-align: center;
}

.chart-box .box canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.fadeout {
    transform: translateY(0);
    opacity: 1;
}

.leaderboard-box {
    background: linear-gradient(180deg, #FFFFDE 1.62%, #FFF4CA 98.22%);
    border-radius: 24px;
    padding: 4px 20px;
}

.ld-thead {
    border-bottom: 1px solid #43CAAD;
    color: #43CAAD;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

.ld-tbody {
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: #2A826F;
}

.avatarI {
    height: 31px;
    width: 31px;
}

.courseI {
    height: 36px;
    width: 36px;
    padding: 0;
}

.coins-img {
    height: 36px;
    width: 36px;
    margin-right: 10px;
}

@media screen and (max-width: 412px) {
    .coins-img {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .ld-tbody {
        font-size: 13px;
    }
}

/* Video Section Css */
.video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    padding: 10px;
}

/* Winners Section Css */
.winners-box {
    height: 400px;
}

@media (max-width: 988px) {
    .winners-box {
        height: auto;
    }
}

.winners-card {
    margin: 10px;
    height: 250px;
    width: 315px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../assets/union.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.winners-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.winners-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: var(--color-default);
}

.winners-card p {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: var(--color-default);
}

/* Network Section Css */
.network-card {
    margin: 10px;
}

.net {
    font-size: 24px;
    display: inline-block;
    background-color: var(--color-default);
    color: white;
    line-height: 1;
    margin-right: 15px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: 0.3s;
}

.net:hover {
    background-color: var(--color-default);
    color: white;
}

.net-word {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    text-align: left;
}

.net-word:hover {
    color: var(--color-default);
}

/* About Section Css */
.about {
    color: var(--color-default);
    font-size: 1.3rem;
    text-align: center;
}

.about-2 {
    color: var(--color-default);
    font-size: 1.1rem;
}


/* Footer Section Css */
.f-logo img {
    height: 50px;
    width: 120px;
    margin-bottom: 20px;
}

.footer {
    color: var(--color-default);
    background: url("../assets/footer-bg.png") top center no-repeat;
    background-size: cover;
    font-size: 14px;
    padding: 80px 0 20px 0;
    position: relative;
}

.footer .footer-content .footer-info {
    width: 300px;
    margin-bottom: 30px;
}

.footer .footer-content .footer-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-bottom: 0;
    font-family: var(--font-default);
    color: var(--color-default);
    cursor: pointer;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 22px;
    text-align: left;
    position: relative;
    padding-bottom: 12px;
    color: var(--color-default);
}

.footer .footer-content .footer-links ul li {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 10px;
    text-align: left;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: var(--color-default);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-content .footer-info p a,
.footer .footer-content h4 a:hover,
.footer .footer-content .footer-links ul a:hover {
    color: var(--color-default);
}

.footer .footer-legal .footer-copyright {
    padding-top: 30px;
    border-top: 1px solid var(--color-default);
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-default);
}

.footer .footer-legal .credits a {
    color: var(--color-default);
}

.all_text {
    font-size: 24px;
    font-family: 'Fredoka', serif;
}

.section-header {
    font-weight: bold;
    font-size: larger;
}

/*modal*/
.point {
    background-color: var(--color-default);
}

.btn-modal:hover {
    background-color: #266c5c;
}

/*team*/
.team-text-left {
    font-weight: 700;
    font-size: 2vw;
    text-align: right;
    color: var(--color-default);
}

.team-text-right {
    font-weight: 500;
    font-size: 2vw;
    color: var(--color-default);
    text-align: left;
}

/* Mobile Section css */
@media screen and (max-width: 450px) {
    .team-text-left {
        font-size: 10px;
    }

    .team-text-right {
        font-size: 10px;
    }
}