/* Colors */
:root {
    --color-F: black;
    --color-O: #B4E925;
    --color-T: white;
}

body {
    cursor: default;
    font-style: normal;
    overflow-x: hidden;
    background: black;
    color: var(--color-T);
}

a {
    color: var(--color-T);
    cursor: pointer;
    text-decoration: none !important;
}

.box-v {
    margin: 5px;
    padding: 10px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    padding: 5px;
}

/* Scroll css */
.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);
}


/* Header css */
.header {
    z-index: 997;
    position: absolute;
    padding: 30px 0;
    top: 0;
    left: 0;
    right: 0;
}

.header .logo img {
    max-height: 75px;
    margin: 0 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: var(--color-T);
        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 {
        color: var(--color-O);
        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 {
        background-color: black;

        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        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-size: 20px;
        font-weight: 500;
        color: var(--color-T);
        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-O);
    }

    .mobile-nav-show {
        position: relative;
        color: var(--color-T);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: var(--color-T);
        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;
    }
}

.MiniBtn {
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 25px;
    background-color: #252525;
    color: var(--color-O);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    text-align: center;
    padding-bottom: 35px;
}


.section-header p {
    margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}

@media (max-width: 600px) {
    section {
        padding: 40px 0;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.get-started {
    background-color: var(--color-F);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    position: relative;
    padding: 130px 0 50px 0;
}

.get-started_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get-started h1 {
    color: var(--color-T);
}

.get-started p {
    color: var(--color-T);
    font-size: 24px;
}

.get-started_btn {
    background-color: var(--color-O);
    cursor: pointer;
    width: 210px;
    height: 45px;
    font-size: 26px;
    color: var(--color-F);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.get-started_btn i {
    background: none;
    border: none;
    top: 1px;
    left: 5px;
    position: relative;
}

.get-started_btn:hover {
    background-color: var(--color-O);
}

.get-started_btn:active {
    border-radius: 25px;
}

/*--------------------------------------------------------------
# Fourth & Fourth Section Header
--------------------------------------------------------------*/
.four-started {
    background: var(--color-F);
    color: var(--color-T);
    margin: 15px;
    border-radius: 25px;
    padding: 10px 0;
}

/*--------------------------------------------------------------
# full-screen Foto 
--------------------------------------------------------------*/
.hero-box_value {
    width: 100%;
    height: 600px;
}

.full-screen__vidio {
    width: 100%;
    height: 75%;
}

/*--------------------------------------------------------------
# Third & third Section Header
--------------------------------------------------------------*/
.third-started {
    color: var(--color-T);
    margin: 5px;
    border-radius: 25px;
}

.box-color {
    background: #141414;
    padding: 10px;
    border-radius: 25px;
}

.box-colorD {
    background: #141414;
    padding: 10px;
    border-radius: 25px;
}

.box-color img {
    border-radius: 25px;

}

.third-started_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-T);
}

.third-started p {
    font-size: 18px;
}

.text-addres a {
    color: var(--color-O);
}

.text-phone a {
    color: var(--color-O);
}

/*--------------------------------------------------------------
# Six & six Section 
--------------------------------------------------------------*/
.six-started {
    margin-bottom: 80px;

}

.six-started .card {
    background-color: black;
    color: var(--color-T);
}

/*--------------------------------------------------------------
# Seven & Seven Section 
--------------------------------------------------------------*/
.seven-started {
    background-color: var(--color-T);
    color: #000;
}

.seven-started .card,
.seven-started .card-header,
.seven-started .card-body,
.seven-started .card-footer {
    background-color: #FAFAFA;
    border: none;
    border-radius: 16px;

}

.seven-started .card-footer {
    margin: 10px;
}

.seven-started .card-header img {
    border-radius: 16px;
}

.BuyBtn {
    background-color: var(--color-O);
    color: var(--color-F);
    border: none;
    border-radius: 30px;
}

.BuyBtn:hover,
.BuyBtn:active,
.BuyBtn:focus,
.BuyBtn:focus-visible {
    background-color: var(--color-O) !important;
    color: var(--color-F) !important;
    box-shadow: var(--color-O);
}

.news-started {
    position: relative;
}

.swiper {
    width: 100% !important;
    height: 100%;
    overflow: visible !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    /* height: 400px !important; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    width: 60%;
}

.swiper-slide:nth-child(2n) {
    width: 40%;
}

.swiper-slide:nth-child(3n) {
    width: 20%;
}

.swiper-button-n,
.swiper-button-p {
    width: 52px;
    height: 52px;
    color: var(--color-O) !important;
    background-color: #252525 !important;
    border-radius: 25px;
    margin: 5px;
    text-align: center;
    font-size: 34px;
}

.sl-Box {
    position: relative;
    background-color: black;
    border: none;
}

.sl-Box img {
    pointer-events: none;
    mask-image: linear-gradient(to top, transparent 25%, rgb(0, 0, 0) 75%);

}

.box-text {
    position: absolute;
    width: 100%;
    padding: 5px;
    bottom: 0px;
    color: var(--color-T);
}

.box-h {
    font-size: 24px;
    padding: 5px;
}

.box-t {
    padding: 5px;
    font-size: 18px;
}

@media (max-width: 1199px) {
    .box-h {
        font-size: 16px;
        padding: 5px;

    }

    .box-t {
        padding: 5px;
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Faq & faq Section 
--------------------------------------------------------------*/
.faq-started {
    background-color: var(--color-T);
    color: #000;
 
}

.faq-bop {
    padding: 35px;
    border-radius: 25px;
    background: #FAFAFA;
}

.accordion-item {
    background-color: #FAFAFA;
    color: var(--color-F);
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #FAFAFA;
    color: var(--color-F);
    border: none;
}

.accordion-button {
    background-color: #FAFAFA;
    color: var(--color-F);
}

.accordion-header {
    border-bottom: 1px solid #E9ECEF;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button:not(.collapsed)::after{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}


/*--------------------------------------------------------------
# Footer & Footer Section
--------------------------------------------------------------*/
.logoFooter {
    max-height: 35px;
    padding-bottom: 5px;
}

.footer {
    color: #fff;
    font-size: 14px;
    padding: 80px 0 60px 0;
    position: relative;
}

.footer a {
    color: var(--color-default);
}

.footer:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    inset: 0;
}

.footer .footer-content .footer-info {
    margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: var(--color-primary);
}

.footer .footer-content .footer-info p a {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: var(--font-default);
    color: #fff;
}

.footer-info a:hover {
    color: var(--color-default);
}


.footer .footer-content .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    margin-right: 8px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
    background: var(--color-O);
    text-decoration: none;
}

.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-O);
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

@media (min-width: 1280px) {
    .end-link, .social-links {
        text-align: right;
        float: right;
        margin-bottom: 20px;
    }
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content .footer-links ul li {
    padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
    color: var(--color-default);
}

.footer .footer-legal .copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 9px;
    color: #fff;
}

.footer .footer-legal .credits a {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .footer_word {
        padding: 10px;
    }

    .footer-links {
        text-align: center;
    }

    .end-link {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}