:root {
    --black: #000000;
    --white: #FFFFFF;
    --primary-color: #E03A3E;
    --secondary-color: #FDB925;
    --text-color: #231F20;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'SUSE';
}

a{
    text-decoration: none;
}

.container {
    max-width: 1664px;
    width: 100%;
    padding: 0 12px !important;
    margin: 0 auto;
}

.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {    
    padding: 30px 0;
    background: var(--white);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}

/* header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 0;
    z-index: 10;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
} */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .header-wapper nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .header-wapper .logo {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    display: flex;
}

header .header-wapper .logo img {
    width: 100%;
    height: 100%;
}

header .header-wapper nav ul .nav-link {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
    margin-left: 60px;
    transition: all 0.3s ease-in-out;
}

header .header-wapper nav ul .nav-link:hover,
header .header-wapper nav ul .nav-link.active {
    color: var(--primary-color);
}

.hero-section {
    min-height: calc(100vh - 120px);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0;
    position: relative;
    margin-bottom: 100px;
}

.hero-section .hero-content {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 0, 0, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
    /* opacity: 0.2; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 15px;
}

.hero-section .hero-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-section .hero-content ul li {
    padding-left: 90px;
    font-size: 27px;
    line-height: 80px;
    position: relative;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

.hero-section .hero-content ul::before {
    content: '';
    height: 100%;
    width: 80px;
    border-radius: 50px;
    border: 3px solid var(--primary-color);
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .hero-content ul li span {
    position: absolute;
    top: 0;
    left: 13px;
    font-size: 70px;
    line-height: 80px;
    z-index: 1;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.hero-section .container {
    position: relative;
}

.hero-section .enroll-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 150px;
}

.hero-section .enroll-box .enroll-logo {
    display: flex;
    width: 200px;
    margin-bottom: 15px;
}

.hero-section .enroll-box .enroll-logo img {
    width: 100%;
    height: auto;
}

.hero-section .enroll-box a {
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero-section .enroll-box a:hover {
    color: var(--secondary-color);
}

footer {
    background: #231f20;
    padding: 60px 0 0;
    margin-top: auto;
}

.link-social-icon {
    margin-bottom: 60px;
}

.link-social-icon .nav-link-list,
.link-social-icon .social-icon-list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.link-social-icon .nav-link-list a {
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.link-social-icon .nav-link-list a:hover {
    color: var(--primary-color);
}

.link-social-icon .social-icon-list a {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.link-social-icon .social-icon-list a i {
    display: flex;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
}

.link-social-icon .social-icon-list a:hover {
    background: var(--secondary-color);
}

footer .copy-right {
    background: #353535;
}

footer .copy-right p {
    margin-bottom: 0;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    padding: 15px 0;
}

.empowering-section {
    margin-bottom: 100px;
}

.empowering-section .title-content {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 100px;
}

.empowering-section .title-content h6 {
    text-align: center;
    font-size: 40px;
    color: var(--text-color);
    line-height: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.empowering-section .title-content h6::after {
    content: '';
    width: 100px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.empowering-section .title-content p {
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    text-align: center;
}

.slider-empowering .empowering-box {
    border-radius: 20px;
    overflow: hidden;
}

.slider-empowering .empowering-box .img-box {
    padding-top: 74%;
    position: relative;
}

.slider-empowering .empowering-box .img-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: 0.3s linear all;
}

.slider-empowering .empowering-box .single-text {
    padding: 12px;
    background: var(--secondary-color);
    opacity: 0.93;
    font-size: 28px;
    line-height: 30px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.slider-empowering .empowering-box .icon-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    background: var(--secondary-color);
    opacity: 0.93;
    /* border-radius: 20px; */
    padding: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.5s ease-in-out;
}
.slider-empowering .empowering-box::before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    border-radius: 20px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.slider-empowering .empowering-box:hover::before {
    opacity: 0.93;
    visibility: visible;
}
.slider-empowering .empowering-box:hover .img-box img{
    transform: scale(1.1);
}

.slider-empowering .empowering-box:hover .icon-text {
    background: transparent;
}

.slider-empowering .empowering-box .icon-text i {
    font-size: 120px;
    color: var(--white);
    display: flex;
    margin-bottom: 15px;
    display: none;
}

.slider-empowering .empowering-box:hover .icon-text i {
    display: flex;
}

.slider-empowering .empowering-box .icon-text p {
    font-size: 35px;
    line-height: 45px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}

.slider-empowering .owl-dots {
    margin-top: 70px !important;
}

.slider-empowering .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: transparent !important;
    border: 2px solid var(--primary-color);
}

.slider-empowering .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important;
}

.about-section {
    margin-top: 75px;
}

.about-section .tab-content-details {
    padding-top: 90px;
    position: relative;
    margin-bottom: 100px;
}

.about-section .tab-content-details .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    padding: 6px;
    max-width: 726px;
    width: 100%;
    background: #F2F0F0;
    border-radius: 31px;
}

.about-section .tab-content-details .nav .nav-item {
    flex: 1;
}

.about-section .tab-content-details .nav .nav-item button {
    width: 100%;
    border-radius: 25px;
    padding: 12px;
    background: transparent;
    font-size: 19px;
    line-height: 19px;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.about-section .tab-content-details .nav .nav-item button:hover,
.about-section .tab-content-details .nav .nav-item button.active {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.about-section .tab-about-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    line-height: 50px;
    color: var(--text-color);
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.about-tab-content .welcome-section{
    margin-top: 50px;
}

.about-tab-content .welcome-section h5 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
}

.about-tab-content .welcome-section h6 {
    text-align: center;
    color: #808080;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 16px;
}

.about-tab-content .welcome-section p {
    width: 100%;
    max-width: 1080px;
    font-size: 16px;
    line-height: 25px;
    color: #808080;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}

.staplefund-list {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
}

.staplefund-list .row {
    --bs-gutter-x: 16px;
}

.staplefund-list .staplefund-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.staplefund-list .staplefund-item .icon-box {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -60px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 6px solid var(--white);
    position: relative;
    transition: all;
}

.staplefund-list .staplefund-item:hover .icon-box {
    transition: 1s linear;
    transform: rotateY(360deg);
}

.staplefund-list .staplefund-item .icon-box i {
    display: flex;
    font-size: 50px;
    line-height: 50px;
    color: var(--white);
}

.staplefund-list .staplefund-item .staplefund-content {
    background: #333333;
    border-radius: 40px;
    padding: 80px 30px 30px;
    height: calc(100% - 60px);
}

.staplefund-list .staplefund-item .staplefund-content h5 {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}

.staplefund-list .staplefund-item .staplefund-content p {
    font-size: 15px;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 0;
}

.mission-content-tab .row{
    margin-top: 70px;
}

.mission-content-tab .image-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-content-tab .content-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mission-content-tab .content-box p {
    font-size: 16px;
    line-height: 30px;
    color: #808080;
    margin-bottom: 30px;
}

.mission-content-tab .content-box p:last-child {
    margin-bottom: 0;
}

.team-list {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.team-list .team-item {
    margin-bottom: 30px;
}

.team-item-wapper .team-img {
    max-width: 220px;
    min-width: 220px;
    height: 220px;
    padding: 15px;
    position: relative;
    margin-bottom: 30px;
}

.team-item-wapper .team-img::before {
    content: '';
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 50%;
    position: absolute;
    border: 4px solid var(--white);
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    right: 0;
    rotate: 45deg;
    transition: all 0.3s ease-in-out;
}

.team-item-wapper:hover .team-img::before {
    rotate: 225deg;
}

.team-item-wapper .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #F2F0F0;
}

.team-item-wapper .content h6 {
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #808080;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-item-wapper:hover .content h6 {
    color: var(--text-color);
}

.team-item-wapper .content a {
    max-width: 164px;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: var(--secondary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    font-weight: 700;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.team-item-wapper .content a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sponsors-content-tab .sponsors-content-list {
    max-width: 1360px;
    width: 100%;
    margin: 100px auto 0;
}

.sponsors-content-tab .sponsors-content-list .row {
    --bs-gutter-x: 50px;
}

.sponsors-item-wrpper {
    margin-bottom: 45px;
}

.sponsors-item-wrpper h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.sponsors-item-wrpper .content p {
    font-size: 18px;
    line-height: 30px;
    color: #333333;
}

.sponsors-item-wrpper .content p:last-child {
    margin-bottom: 0;
}

.how-it-work-section {
    margin: 50px 0;
}

.how-it-work-section h1 {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}
.how-it-work-section .check-program-btn{
    margin-left: auto;
    display: flex;
    margin-bottom: 30px;
}

.how-it-work-section .row {
    --bs-gutter-x: 16px;
}

.how-it-work-section .how-it-work-item {
    height: calc(100% - 16px);
    padding: 24px;
    border: 1px solid #333333;
    border-radius: 40px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-it-work-section .how-it-work-item::before{
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #333333;
    transition: all 0.5s ease-in-out;
}
.how-it-work-section .how-it-work-item:hover:before{
    height: 100%;
}

.how-it-work-section .how-it-work-item .icon i {
    display: flex;
    font-size: 50px;
    line-height: 50px;
    color: #808080;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.how-it-work-section .how-it-work-item:hover .icon{
    transition: 1s linear;
    transform: rotateY(360deg);
}
.how-it-work-section .how-it-work-item:hover .icon i{
    color: var(--white);
}

.how-it-work-section .how-it-work-item h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-it-work-section .how-it-work-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #808080;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.how-it-work-section .how-it-work-item:hover p{
    color: var(--white);
}

.join_us_section {
    display: block;
    margin-top: 30px;
}
.join_us_section .sub-title h5{
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
    position: relative;
}
.join_us_section p {
    font-size: 15px;
    line-height: 22px;
    text-align: left;
    color: #808080;
}

.bar-btn,
.close-btn {
    background: var(--secondary-color);
    min-width: 34px;
    max-width: 34px;
    height: 34px;
    border: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.bar-btn:hover,
.close-btn:hover {
    background: var(--primary-color);
}

.bar-btn i,
.close-btn i {
    font-size: 20px;
    line-height: 20px;
    margin-top: 2px;
    margin-left: 2px;
    display: flex;
    color: #333333;
}

.close-btn i {
    font-size: 16px;
    line-height: 16px;
    margin: 0;
}

.bar-btn:hover i,
.close-btn:hover i {
    color: var(--white);
}

header .mobile-hav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--text-color);
}

header::before {
    content: '';
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    background: var(--black);
    opacity: 0.7;
    z-index: 8;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    display: none;
}

header.mobile-active::before {
    left: 0;
}

.faq-section {
    margin: 50px 0;
}

.faq-section h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
}

.faq-section .faq-box {
    /* margin: 0 -8px; */
    /* column-count: 2; */
}

.faq-section .faq-box .accordion-item {
    /* padding: 0 8px; */
    border: 0;
    margin-bottom: 16px;
}

.faq-section .faq-box .accordion-item .accordion-button {
    padding: 22px 55px 22px 16px;
    background: #80808010;
    border-radius: 20px;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #808080;
    border: 0;
    box-shadow: none;
    position: relative;
}

.faq-section .faq-box .accordion-item .accordion-body {
    padding: 16px 0 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #333333;
}

.faq-section .faq-box .accordion-item .accordion-button::before {
    content: "\66";
    width: 32px;
    height: 32px;
    border: 1px solid #70707010;
    font-family: "staplefund" !important;
    font-size: 14px;
    line-height: 14px;
    color: #808080;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 16px;
    transition: all 0.3s ease-in-out;
}

.faq-section .faq-box .accordion-item .accordion-button::after {
    display: none;
}

.faq-section .faq-box .accordion-item .accordion-button:hover,
.faq-section .faq-box .accordion-item .accordion-button[aria-expanded="true"] {
    color: #333333;
}

.faq-section .faq-box .accordion-item .accordion-button[aria-expanded="true"]::before {
    rotate: -180deg;
}

.faq-section .more-faq-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #808080;
    background: transparent;
    margin-top: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-section .more-faq-btn i {
    display: flex;
    font-size: 16px;
    line-height: 16px;
    color: #808080;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
}

.faq-section .more-faq-btn:hover,
.faq-section .more-faq-btn:hover i {
    color: #333333;
}

.team-details-section {
    margin: 50px 0;
}

.team-details-section .row {
    --bs-gutter-x: 60px;
}

.team-details-section .image-team {
    max-width: 476px;
    width: 100%;
    display: flex;
    margin-bottom: 15px;
}

.team-details-section .image-team img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.team-details-section .img-content h3{
    font-size: 22px;
    line-height: 30px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 16px;
}
.team-details-section .img-content p{
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #808080;
}

.team-details-section .content-detail .sub-title {
    color: #808080;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-details-section .content-detail .team-name {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 19px;
}

.team-details-section .content-detail .content-text {
    column-count: 2;
    column-gap: 60px;
}

.team-details-section .content-detail .content-text p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #808080;
    margin-bottom: 20px;
}

.team-details-section .content-detail .content-text h2,
.team-details-section .content-detail .content-text h3,
.team-details-section .content-detail .content-text h4,
.team-details-section .content-detail .content-text h5 {
    font-size: 22px;
    line-height: 30px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.team-details-section .content-detail .content-text h6 {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #808080;
    margin-bottom: 16px;
}
.check-program-btn{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #333333;
    padding: 18px 29px;
    background: #F3F2EF;
    border-radius: 10px;
    text-decoration: none;
    border: 0;
    width: fit-content;
}
.about-section .check-program-btn{
    margin-left: auto;
    display: flex;
    margin-top: -100px;
}
.next-btn{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #333333;
    padding: 18px 29px;
    background: var(--secondary-color);
    border-radius: 10px;
    text-decoration: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    width: fit-content;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}
.next-btn:hover{
    background: var(--primary-color);
    color: var(--white);
}
.video-section{
    padding-top: 50%;
    position: relative;
}
.video-section iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.service-section {
    margin: 50px 0;
}
.service-section h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
}
.service_card {
    display: block;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.service_card .service_icon {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;    
    margin-bottom: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 6px solid var(--white);
    position: relative;
    transition: all;
}
.service_card .service_icon i {
    display: flex;
    font-size: 50px;
    line-height: 50px;
    color: var(--white);
}
.service_card .service_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--secondary-color);    
    margin-bottom: 22px;
}
.service_card .service_desc {
    display: block;
    margin-bottom: 30px;
}
.service_card .service_desc p {    
    font-size: 18px;
    line-height: 30px;    
    color: #808080;    
    text-align: left;
    margin-bottom: 0px;
}

.cms-section {
    margin: 50px 0;
}
.cms-section h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
}

.cms-section .cms-content {
    display: block;
    max-width: 1200px;
    margin: auto;
}
.cms-section .cms-content h2,
.cms-section .cms-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--secondary-color);
}
.cms-section .cms-content h4,
.cms-section .cms-content h5,
.cms-section .cms-content h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #333333;
}
.cms-section .cms-content p {
    font-size: 16px;
    line-height: 30px;    
    color: #808080;    
    text-align: left;
    margin-bottom: 24px;
}

.cms-section .cms-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}
.cms-section .cms-content ul li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 30px;    
    color: #808080;    
    text-align: left;
    margin-bottom: 10px;
}
.cms-section .cms-content ul li::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 11px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #333333;
    transform: rotate(45deg);
}
.cms-section .cms-content a {
    font-weight: 500;
    color: #333333;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-info .team-img {
    padding: 5px;
    display: block;
    min-width: 100px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}
.team-info .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-info .team-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    transition: 0.5s ease-in-out;
}
.team-info .team-name:hover {
    color: var(--secondary-color);
}

/* ********************************************************************************* */
@media only screen and (max-width: 1440px) {
    .hero-section .enroll-box {
        right: 50px;
        top: 30px;
    }
    .about-section .check-program-btn {
        font-size: 15px;
        padding: 14px 12px;
        font-weight: 600;
        margin-top: -90px;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-section .enroll-box {
        padding: 10px;
        right: 30px;
    }

    .hero-section .enroll-box .enroll-logo {
        width: 100px;
        margin-bottom: 5px;
    }

    .hero-section .enroll-box a {
        font-size: 16px;
        line-height: 24px;
    }
    .about-section .check-program-btn{
        margin-top: inherit;
    }
    .about-tab-content .welcome-section,
    .mission-content-tab .row{
        margin-top: 30px;
    }

}

@media only screen and (max-width: 991px) {
    .team-list {
        justify-content: inherit;
    }

    .team-list .team-item {
        width: 33.33%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-section .faq-box {
        column-count: inherit;
    }

    .faq-section .faq-box .accordion-item .accordion-button {
        padding: 16px 55px 16px 16px;
        font-size: 18px;
        line-height: 30px;
    }

    .faq-section .faq-box .accordion-item .accordion-button::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 12px;
        border-radius: 5px;
    }

    .faq-section .more-faq-btn {
        margin: 24px auto 0;
        font-size: 18px;
        line-height: 24px;
    }

    .faq-section .more-faq-btn i {
        font-size: 14px;
        line-height: 14px;
        margin-left: 8px;
    }

    .team-details-section .image-team {
        margin: 0 auto 30px;
    }

    .team-details-section .content-detail .sub-title,
    .team-details-section .content-detail .team-name {
        text-align: center;
    }
    .team-details-section .row {
        --bs-gutter-x: inherit;
    }
}

@media only screen and (max-width: 767px) {

    .bar-btn,
    .close-btn,
    header .mobile-hav,
    header::before {
        display: flex;
    }

    header .header-wapper nav {
        position: fixed;
        height: 100vh;
        background: var(--white);
        width: 60%;
        top: 0;
        left: -100%;
        z-index: 9;
        transition: all 0.3s ease-in-out;
    }

    header.mobile-active .header-wapper nav {
        left: 0;
    }

    header .header-wapper nav ul {
        flex-direction: column;
    }

    header .header-wapper nav ul .nav-link {
        margin: 0;
    }

    header .header-wapper nav ul .nav-item {
        width: 100%;
        padding: 0 10px 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--text-color);
    }

    header .header-wapper nav ul .nav-link {
        font-size: 16px;
        line-height: 24px;
    }

    header {
        padding: 16px 0;
    }

    .hero-section .hero-content ul li span {
        font-size: 50px;
        line-height: 60px;
        left: 16px;
    }

    .hero-section .hero-content ul li {
        font-size: 20px;
        line-height: 60px;
        padding-left: 80px;
    }

    .hero-section .hero-content ul::before {
        width: 70px;
    }

    .hero-section,
    .empowering-section .title-content,
    .empowering-section {
        margin-bottom: 50px;
    }

    .empowering-section .title-content h6 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .about-section .tab-about-title,
    .how-it-work-section h1,
    .faq-section h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .how-it-work-section h1,
    .faq-section h1,
    .service-section h1,
    .cms-section h1 {
        margin-bottom: 30px;
    }

    .hero-section .hero-content {
        padding: 50px 0;
    }

    .slider-empowering .empowering-box .icon-text p {
        font-size: 20px;
        line-height: 30px;
    }

    .slider-empowering .empowering-box .icon-text i {
        font-size: 50px;
        line-height: 50px;
    }

    .empowering-section .title-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0;
    }

    footer .link-social-icon {
        flex-direction: column;
        gap: 40px;
    }

    .slider-empowering .owl-dots {
        margin-top: 30px !important;
    }

    .team-list .team-item {
        width: 50%;
    }

    .about-section .tab-content-details {
        padding-top: 70px;
    }

    .about-section {
        margin-top: 50px;
    }

    .sponsors-content-tab .sponsors-content-list .row {
        --bs-gutter-x: 30px;
    }

    .sponsors-item-wrpper h4 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .sponsors-item-wrpper .content p {
        font-size: 16px;
        line-height: 24px;
        color: #333333;
    }

    .sponsors-item-wrpper {
        margin-bottom: 24px;
    }

    .sponsors-content-tab .sponsors-content-list {
        margin-top: 0;
    }

    .how-it-work-section .how-it-work-item {
        padding: 24px 16px;
    }

    .mission-content-tab {
        margin-top: 0;
    }

    .faq-section .faq-box .accordion-item .accordion-body {
        padding: 16px 16px 0;
        font-size: 16px;
        line-height: 28px;
    }

    .mission-content-tab .image-box {
        margin-bottom: 30px;
    }

    .team-details-section .content-detail .content-text {
        column-gap: 30px;
    }

    .cms-section .cms-content h2, .cms-section .cms-content h3 {        
        font-size: 20px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 640px) {
    .hero-section .hero-content ul li {
        font-size: 16px;
        line-height: 50px;
        padding-left: 70px;
    }

    .hero-section .hero-content ul::before {
        width: 60px;
    }

    .hero-section .hero-content ul li span {
        font-size: 40px;
        line-height: 50px;
        left: 14px;
        top: 2px;
    }

    .link-social-icon .nav-link-list {
        flex-direction: column;
    }

    .about-tab-content .welcome-section h5 {
        font-size: 24px;
        line-height: 30px;
    }

    .staplefund-list .staplefund-item .staplefund-content {
        padding: 50px 15px 15px;
    }

    .staplefund-list .staplefund-item .icon-box {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        margin: 0 auto -40px;
        border: 2px solid var(--white);
    }

    .staplefund-list .staplefund-item .staplefund-content p {
        text-align: center;
    }

    .staplefund-list .staplefund-item .icon-box i {
        display: flex;
        font-size: 40px;
        line-height: 40px;
    }

    header .header-wapper nav {
        width: 80%;
    }

    .about-section .tab-about-title,
    .how-it-work-section h1,
    .faq-section h1,
    .service-section h1,
    .cms-section h1 {
        font-size: 24px;
        line-height: 38px;
    }

    .team-details-section .content-detail .content-text {
        column-gap: inherit;
        column-count: inherit;
    }

    .team-details-section .image-team {
        max-width: 100%;
    }

    .team-details-section .content-detail .sub-title,
    .team-details-section .content-detail .team-name {
        text-align: start;
    }
    .about-section .check-program-btn{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .service_card .service_icon {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        border: 2px solid var(--white);
    }
    .service_card .service_icon i {        
        font-size: 40px;
        line-height: 40px;
    }
    .service_card .service_title {
        font-size: 20px;
        line-height: 30px;
    }
    .service_card .service_desc p {
        font-size: 15px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section .hero-content ul::before {
        width: 45px;
        border: 1px solid var(--primary-color);
    }

    .hero-section .hero-content ul li span {
        font-size: 34px;
        line-height: 40px;
        left: 9px;
        top: 3px;
    }

    .hero-section .hero-content ul li {
        font-size: 14px;
        line-height: 40px;
        padding-left: 50px;
    }

    .team-list .team-item {
        width: 100%;
    }

    .about-section .tab-content-details .nav .nav-item button {
        padding: 5px;
        font-size: 15px;
        line-height: 24px;
    }
}
