* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.bg_section_effect {
    position: absolute;
    top: 35%;
    right: 0%;
    z-index: -2;
    width: 87rem;
    height: 25rem;
    opacity: 0.1;
    background: radial-gradient(ellipse at center, #F26A34 0%, #f48a60 100%);
    filter: blur(300px);
    pointer-events: none;
}

section {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    margin-bottom: 150px;
}

.section_container {
    position: relative;
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header__section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

/* SweetAlert2 Custom Styles (Flat Colors - No Gradients) */

.swal2-custom .swal2-popup {
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    padding: 30px !important;
    background: white !important;
    min-width: 400px !important;
}

.swal2-custom .swal2-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2d3436 !important;
    margin: 20px 0 10px 0 !important;
}

.swal2-custom .swal2-html-container {
    font-size: 16px !important;
    color: #636e72 !important;
    line-height: 1.5 !important;
    margin: 15px 0 25px 0 !important;
}

.btn-custom-success {
    background-color: #28a745 !important;
    color: white !important;
}

.btn-custom-error {
    background-color: #dc3545 !important;
    color: white !important;
}

.btn-custom-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.btn-custom-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

.btn-custom-success,
.btn-custom-error,
.btn-custom-warning,
.btn-custom-info {
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    min-width: 120px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.btn-custom-success:hover,
.btn-custom-error:hover,
.btn-custom-warning:hover,
.btn-custom-info:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .swal2-custom .swal2-popup {
        min-width: 280px !important;
        margin: 20px !important;
    }
}

/* HEADINGS */

.section_heading {
    font-size: 2.815rem;
    font-weight: 600;
    line-height: 75px;
}

.section_subheading {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 100%;
    color: #555555;

}

.section-description {
    font-size: 1.25rem;
    color: #555555;
    font-weight: 400;
    line-height: 42px;
}

.section_subheading span {
    color: #009933;
}

.heading-primary {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.heading-secondary {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 5rem;
}

.heading-tertiary {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

/* GENERAL BUTTONS */

.btn_primary,
.btn_light-primary {
    height: 70px;
    font-size: 1.75rem;
    line-height: 100%;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.btn_sm {
    height: 60px;
    font-size: 1.5rem;
    width: 160px;
}

.btn_primary {
    color: #FFFFFF;
    background-color: #009933;
    width: 200px;
}

.btn_light-primary {
    color: #009933;
    background-color: #FFFFFF;
    width: 260px;
}

.btn_primary:hover {
    background-color: #007b29;
}

.btn_light-primary:hover {
    background-color: #b9b9b9;
}

/* HEADER-SECTION */

.main__header {
    margin: 0 auto;
    max-width: 1440px;
    width: 85%;
    height: 97px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.btn__mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon__mob-nav {
    height: 5rem;
    width: 5rem;
    color: #333;
}

.icon__mob-nav[name="close-outline"] {
    display: none;
}

.header__container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    padding: 0 25px;
    box-sizing: border-box;
    border-radius: 10px;
}

.header__logo img {
    width: 90px;
    height: 67px;
    object-fit: contain;
}

.nav__menu .nav__menu-list {
    height: auto;
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 15px 25px;
    backdrop-filter: blur(60px);
    border-radius: 8px;
    background: #FFFFFF26;
}

.nav__menu .nav__menu-list li a {
    text-decoration: none;
    color: rgba(181, 181, 181, 1);
    font-weight: 400;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav__menu .nav__menu-list li.active a {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.nav__menu .nav__menu-list li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* HERO SECTION */

.section__hero {
    position: relative;
    height: 1000px;
    padding-top: 10px;
}


.hero__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.7s ease-in-out;
}

.hero__slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}


.slider-dot:hover {
    background-color: #d4d4d4;
}

.slider-dot.active {
    background-color: #FFFFFF;
}


.hero__bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.main__header,
.hero__content-main {
    position: relative;
    z-index: 2;
}

.hero__content-main {
    max-width: 1440px;
    width: 75%;
    height: auto;
    margin: 0 auto;
    margin-top: 180px;
}

.hero__content {
    width: 83%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 50px;
}

.hero__content .hero__heading {
    font-size: 3.125rem;
    font-weight: 600;
    color: #FFFFFF;
}

.hero__content .hero__text {
    max-width: 890px;
    width: auto;
    height: 85px
}

.hero__content p {
    font-size: 1.375rem;
    line-height: 1.8;
    font-weight: 400;
    color: #FFFFFF;
}

/* live__challenge SECTION */
.section__live__challenge {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.live__challenge-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: #3C90FF;
    border-radius: 0 50px 50px 0;
    z-index: 0;
}

.live__challenge-bg::before {
    content: "CHALLENGE";
    position: absolute;
    top: 0;
    left: -15%;
    font-size: 12.5rem;
    font-weight: 600;
    color: rgba(255, 247, 247, 0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.live__challenge__container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.live__challenge__text-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    max-width: 550px;
    width: 55%;
}

.live__challenge__badge {
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.live__challenge__heading {
    font-size: 2.813rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 15px;
}

.live__challenge__description {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(60px);
    border-radius: 8px;
    background: #FFFFFF26;
    padding: 8px 12px;
    padding-left: 15px !important;
    margin-bottom: 10px;
}

.live__challenge__description::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50%;
    background: #ffffff;
    border-radius: 2px;
}

.live__challenge__description p {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 10px;
}

.live__challenge__timer {
    max-width: 510px;
    margin-bottom: 10px;
}

.timer__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 95%;
}

.timer__label span:first-child {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
}

.timer__date {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
}

.timer__countdown {
    display: flex;
    gap: 20px;
}

.countdown__item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px 50px;
    text-align: center;
    border: 1px solid #DBDBDB;
}

.countdown__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #DD4848;
    line-height: 1;
}

.countdown__label {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-top: 5px;
}

.visual__illustration {
    position: absolute;
    bottom: -15%;
    left: 55%;
    width: 100%;
    max-width: 600px;
    z-index: 1;
}

.visual__illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.visual__badge {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 2;
}

.visual__badge img {
    height: auto;
    width: 300px;
}

/* Decorative Circles */

.section__live__challenge::before,
.section__live__challenge::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.section__live__challenge::before {
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
}

.section__live__challenge::after {
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
}

/* ABOUT-US SECTION */

.section__about-us {
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-us__main-content {
    max-width: 1440px;
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-height: 600px;
    margin-bottom: 50px;
}

.about-us__image-section {
    width: 50%;
    position: relative;
}

.about-us__content-section {
    max-width: 793px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}

.about-us__content-section .section_subheading {
    display: none;
}

.image__illustration {
    position: absolute;
    left: 15%;
    top: 20%;
    width: 100%;
    max-width: 360px;
    max-height: 330px;
    z-index: 1;
}

.image__illustration img {
    width: 90%;
    height: auto;
    object-fit: contain;
}

.about-us_bg-box {
    position: absolute;
    top: 10%;
    left: 0;
    height: 320px;
    width: 540px;
}

/* STATISTICS SECTION */
.about-us__statistics {
    position: relative;
    padding-top: 20px;
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 150px;
}

.about-us__statistics::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dashed #a3d4a5;
    z-index: 0;
}


.stat_card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat_card:hover {
    transform: translateY(-10px);
}

.stat_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0bb443, #20a295);
}

.stat_number {
    font-size: 3.5rem;
    font-weight: 500;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
}

.stat_percentage {
    color: #FF6B35;
    font-size: 3.2rem;
    font-weight: 500;
}

.stat_description {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.4;
    margin-top: 10px;
}

/* GET-APP DESCRIPTION */

.get-app__section {
    position: relative;
    max-height: 840px;
    overflow: hidden;
    padding: 80px 0;
    width: 97%;
    border-radius: 50px;
}

.right_bg-box {
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: 20rem;
    width: 27.5rem;
    mask: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
}

.left_bg-box {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 18.8rem;
    width: 27.5rem;
    mask: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.3) 90%, transparent 100%);
}

.getapp_bg {
    position: absolute;
    left: 25%;
    top: 12%;
    height: 35.5rem;
    width: 35.5rem;
}

.app_container {
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app_content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download__buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.download__btn {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.download__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.download__btn img {
    height: 75px;
    width: 270px;
    display: block;
}

.phones_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone_mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.phone_1 {
    position: relative;
    z-index: 3;
    width: auto;
    max-height: 38rem;
    height: auto;
}

.phone_2 {
    width: auto;
    max-height: 36rem;
    height: auto;
    position: absolute;
    left: 50%;
    z-index: 2;
}

.bg_decoration {
    position: absolute;
    opacity: 0.5;
    z-index: 1;
}

.bg_circle-1 {
    position: absolute;
    width: 1390px;
    height: 651px;
    top: -400px;
    right: -750px;
    background: #009933;
    opacity: 1;
    filter: blur(420px);
    border-radius: 50%;
    z-index: -1;
    overflow: hidden;
}

.bg_circle-2 {
    position: absolute;
    width: 1390px;
    height: 651px;
    bottom: -400px;
    left: -750px;
    background: #0aa93f;
    opacity: 1;
    filter: blur(420px);
    border-radius: 50%;
    z-index: -1;
    overflow: hidden;
}

/* HOW-TO-PLAY SECTION */

.section__howtoplay {
    position: relative;
    overflow: hidden;
}

.section__howtoplay::before {
    content: "HOW TO PLAY?";
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16.5rem;
    font-weight: 600;
    color: #00000008;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.how_to_play-body {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.howtoplay_content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items:baseline;
    row-gap: 40px;
    column-gap: 360px;
    width: 100%;
}

.howtoplay_bg-box {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-self: center;
    align-self: center;
}

.howtoplay_bg-box img {
    height: 340px;
    width: 360px;
}

.point__item {
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.point__number {
    padding-top: 7px;
    color: #009933;
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
    font-weight: 600;
    margin-right: 1.1rem;
    flex-shrink: 0;
}

.point__content {
    flex: 1;
}

.section__description {
    font-size: 1.125rem;
    color: #555555;
    font-weight: 400;
    line-height: 40px;
}

.point__description {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 400;
    line-height: 40px;
}

/* CONTACT-US SECTION */

.section__contact {
    position: relative;
    max-height: 840px;
    padding: 80px 0;
    width: 97%;
    border-radius: 50px;
    overflow: hidden;
}

.contact_bg-box {
    position: absolute;
    bottom: 0%;
    right: 20px;
    height: 29rem;
    width: 19rem;
}

.contact__container {
    width: 75%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin: 0 auto;
}

.contact__info {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact__info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 430px;
    width: 100%;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    cursor: pointer;
}

.contact_item:not(:last-child) {
    border-bottom: 1px solid #E1E1E1;
}

.contact_icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    max-width: 40px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_icon ion-icon {
    height: 22px;
    width: 22px;
    min-width: 40px;
    max-width: 40px;
    color: #009933;
}

.contact_text {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 100%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-wrap: nowrap;
    transition: all 0.2s ease-in;
}

.contact_item:hover .contact_text {
    color: #009933;
}

.contact__form {
    padding: 50px 40px;
    background: #FFFFFF;
    z-index: 1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__form-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EDEDED;
}

.contact__form-fields {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.btn_wrapper {
    display: inline-block;
}


.form_title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 100%;
    text-transform: capitalize;
}

.form_subtitle {
    color: #555555;
    font-size: 1.125rem;
    font-family: Poppins;
    line-height: 25px;
}

.form_label {
    display: block;
    color: #000000;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 5px;
}


.form_label span {
    color: red;
}

.form_input,
.form_textarea {
    width: 100%;
    font-size: 1.125rem;
    padding: 14px;
    border: 1.5px solid #0000001A;
    border-radius: 10px;
    color: #666666;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form_textarea {
    resize: none;
}

.form_input:focus,
.form_textarea:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form_input::placeholder,
.form_textarea::placeholder {
    color: #777777;
}

.submit_btn {
    background: #009933;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
    min-width: 120px;
}

.submit_btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}


/* FAQ'S SECTIOn */

.faq_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: start;
}

.faq_item {
    position: relative;
    background: #FDFDFD;
    border: 1px solid #E9E9E9;
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.3s ease;
    transition: all 0.3s ease;
}

.faq_item {
    display: none;
}

.faq_item.visible {
    display: block;
}

.faq_toggle-container {
    text-align: center;
    margin-top: 70px;
}

.faq_toggle-btn {
    background-color: #009933;
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 100%;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.faq_toggle-btn:hover {
    background-color: #007b29;
}

.faq_item.active {
    background: #f0fff4;
    z-index: 2;
}

.faq_question {
    width: 100%;
    padding: 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.faq_question .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.question_text {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #555555;
    font-weight: 500;
    transition: transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq_item.active .question {
    border-bottom: 1px solid #99999933;
}

.faq_item.active .question_text {
    color: #000000;
}

.faq_icon {
    transition: transform 0.3s ease;
}

.faq_icon ion-icon {
    font-size: 1.5rem;
    color: #009933;
}

.faq_item.active .faq_icon {
    transform: rotate(180deg);
    color: #15803d;
}

.faq_answer {
    display: none;
    padding-top: 30px;
    padding: 20px 30px;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_answer {
    display: block;
    position: absolute;
    top: 83%;
    left: -1px;
    right: -1px;
    background: #f0fff4;
    border: 1px solid #E9E9E9;
    border-top: transparent;
    border-radius: 0 0 20px 20px;
    z-index: 3;
    min-height: 128px;
}

.faq_answer-content {
    color: #555555;
    font-size: 1rem;
    line-height: 35px;
}

/* FOOTER */

.footer {
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
}

.footer_bg-box {
    position: absolute;
    top: 5%;
    right: 0;
    object-fit: cover;
    height: 180px;
    width: 310px;
    mask: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.footer_bg-effect {
    position: absolute;
    width: 755px;
    height: 755px;
    top: -30px;
    left: 1300px;
    opacity: 0.4;
    background: #FFFFFF;
    filter: blur(420px);
    border-radius: 50%;
    z-index: 0;
}

.footer_container {
    margin: 0 auto;
    width: 75%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer_content-logo {
    display: flex;
    flex-direction: column;
    justify-content: start;
    max-width: 900px;
    width: 100%;
    gap: 24px;
}

.footer_logo img {
    height: 100px;
    width: 100px;
}

.footer_description p {
    font-size: 1.125rem;
    line-height: 2rem;
    color: #FFFFFF;
}

.footer_links {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.footer_links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    text-wrap: nowrap;
    transition: all 0.3s ease;
}

.footer_links a:hover {
    color: #00b93e;
}

.footer_links a:hover::before {
    width: 8px;
}

.footer_bottom {
    border-top: 1px solid #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.copyright {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 34px;
}

.footer__social-icons {
    display: flex;
    gap: 10px;
}

.social_link {
    padding: 8px;
    padding-bottom: 3px;
    background: #5a5a5a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social_link ion-icon {
    font-size: 1.4rem;
    color: #FFFFFF;
}

.social_link:hover ion-icon {
    color: rgb(254, 173, 23);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact__container {
    animation: fadeInUp 0.6s ease-out;
}