*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.top_nav {
    width: 100%;
    height: 80px;
    background-color: var(--white);
    color: black;
    /* background-color: #FFF8E1; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    color: white;
}

.top_nav img{
    width: 100px;
}

.top_nav .tgl{
    display: none;
}

.top_nav i{
    font-size: 1.5em;
    font-weight: bolder;
    cursor: pointer;
    color: black;
}

.nav_links{
    display: flex;
    gap: 15px;
}


.nav_links a{
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-size: 0.8em;
}

.nav_links a:hover{
    border-radius: 3px;
    background-color: rgb(220, 220, 220, 0.2);
}

.quick_intro{
    width: 100%;
    color: white;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background-color: var(--bgcolor);
}

.quick_intro .int_txt_hld{
    width: 50%;
}


.quick_intro .int_txt{
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}

.quick_intro .int_txt h1{
    font-size: 40px;
}

.quick_intro .btn{
    width: 100%;
    display: flex;
    gap: 10px;
    margin: auto;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.quick_intro .btn button{
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
    cursor: pointer;
}

.quick_intro .int_img{
    width: 50%;
}

.quick_intro .int_img img{
    width: 100%;
}

.sec-2{
    width: 80%;
    display: flex;
    gap: 30px;
    margin: auto;
    margin-top: 30px;
}

.sec-2 .inn_sec-1{
    width: 50%;
}

.sec-2 .inn_sec-1 .earn_money{
    margin-bottom: 20px;
    background-color: rgb(220, 220, 220, 0.2);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(128, 128, 128, 0.1);
}

.sec-2 .inn_sec-1 .earn_money h1{
    font-weight: 400;
    font-size: 2.0em;
    margin-bottom: 20px;
}

.sec-2 .inn_sec-1 .nd_knw{
    margin-bottom: 20px;
    background-color: rgb(220, 220, 220, 0.2);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(128, 128, 128, 0.1);
}

.sec-2 .inn_sec-1 .nd_knw h1{
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 2.0em;
}

.sec-2 .inn_sec-1 .nd_knw .nd{
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.inn_sec-2{
    width: 50%;
}

.inn_sec-2 .hw-1{
    margin-bottom: 20px;
    background-color: rgb(220, 220, 220, 0.2);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(128, 128, 128, 0.1);
}

.inn_sec-2 .hw-1 h1{
    margin-bottom: 20px;
    font-weight: 400;
}


.inn_sec-2 .hw-1 .hw{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.inn_sec-2 .hw-1 .hw .hw_num{
    width: 25px;
    height: 25px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: orange;
    font-weight: bolder;
    border: 2px solid orange;
}

.inn_sec-2 .reg{
    margin-bottom: 20px;
    background-color: rgb(220, 220, 220, 0.2);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(128, 128, 128, 0.1);
}

.sec-2 .reg h1{
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 2.0em;
}

.sec-2 .reg p{
    margin-bottom: 10px;
}

.sec-2 .reg button{
    width: 200px;
    height: 40px;
    background-color: black;
    border: none;
    color: white;
    border-radius: 10px;
}

.plus-minus {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
}
  
.plus-minus::before,
.plus-minus::after {
    content: "";
    position: absolute;
    background: orange;
    transition: transform 0.3s ease-in-out;
}

.plus-minus::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plus-minus::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.plus-minus.active::after {
    transform: translateX(-50%) rotate(90deg); /* Hide vertical bar */
}

.sec-3 .frq_inn .plus-minus{
    flex-shrink: 0;
}

.sec-3{
    width: 80%;
    margin: auto;
    margin-top: 40px;
}

.sec-3 h1{
    font-size: 3.0em;
    font-weight: 500;
    margin-bottom: 20px;
}

.sec-3 .frq{
    width: 100%;
    margin-top: 50px;
}

.sec-3 .frq_inn{
    display: flex;
    gap: 20px;
    margin: 20px 0px;
    border-bottom: 1px solid gainsboro;
}

.sec-3 .frq_inn:last-child{
    border-bottom: none;
}

/* .sec-3 .frq_inn:last-child{
    border: none;
} */


.sec-3 .frq_inn .frq_{
    margin-bottom: 30px;
    cursor: pointer;
}


.sec-3 .frq_inn h4{
    font-size: 1.0em;
    font-weight: 600;
    user-select: none;
}

.sec-3 .frq_inn .frq_ .frq_wrp{
    height: 0;
    overflow: hidden;
    transition: 0.7 ease-in-out;
}

.sec-3 .frq_inn .frq_ .frq_wrp_tg{
    height: max-content;
    margin-top: 20px;
}

footer{
    width: 80%;
    margin: auto;
    margin-top: 130px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer_logo img{
    width: 100px;
}

footer .footer_nav{
    display: flex;
    gap: 20px;
}

footer .footer_nav a{
    color: black;
    text-decoration: none;
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 6px;
}

footer .footer_nav a:hover{
    background-color: rgb(220, 220, 220, 0.2);
}
