* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}



/* navigation start */
.navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 18px;
}
.navi p {
    margin-bottom: 0;
}
.sub-navi {
    display: flex;
    gap: 40px;
}
.sub-navi a {
    margin-bottom: 0;
    cursor: pointer;
    text-decoration: none;  
    color: black;
}

.sub-btns{
    display: flex;
    gap: 20px;
}

#log-btn{
    border: none;
    background-color: white;
    color: #007ab3;
    font-weight: 500;
}

#sign-btn{
    border: none;
    background-color: #007ab3;
    color: white;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
}

.mobile-nav{
  display: none;
}
.offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 22px;
}
.offcanvas-body a {
    text-decoration: none;
    color: black;
}
/* navigation end */


.parent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
}

/* child 1 start */
.child-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    background-color: #007ab3;
    padding: 20px 0px 20px 0px;
    border-radius: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
    gap: 15px;
}
.child-1-text {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.accordion {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

 

/* footer start  */
.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: white;
    color: #007ab3;
    font-weight: bold;
}

.copy-right p {
    margin-bottom: 0;
}

.sub-copy-right {
    display: flex;
    gap: 40px;
}
.sub-copy-right a {
    text-decoration: none;
    color: #007ab3;
}

.sub-copy-right-1{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-copy-right-1 img {
    width: 20px;
    height: 20px;
}

#c-r-2 {
    display: none;
}

.sub-images {
    display: flex;
    gap: 20px;
}
/* footer end */



@media screen and (min-width:320px) and (max-width:768px) 
{
    /* navigation start */
    .navi {
        display: none;
    }
    
    .mobile-nav{
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        width: 100%;
        position: sticky;
        background-color: white;
        top: 0px;
        z-index: 9;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mob-section{
        display: flex;
        justify-content: space-between;
        padding: 10px 10px;
        width: 100%;
    }
    /* navigation end */



    .parent {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }



    /* child 1 start  */
    .child-1 {
        display: flex;
        flex-direction: column;
        width: 95%;
        margin-top: 0px;
        margin-bottom: 0px;
        margin: 10px;
        gap: 20px;
    }

    .child-1-text {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .accordion {
        width: 95%;
    }
    /* child 1 end */



    /* footer start */
    .copy-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .sub-copy-right {
        display: flex;
        gap: 20px;
    }

    .sub-copy-right-1 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sub-images {
        display: flex;
        gap: 20px;
    }

    #c-r-1 {
    display: none;
    }

    #c-r-2 {
        font-size: 15px;
    }

    #c-r-2 {
    display: unset;
    font-size: 12px;
    }
    /* footer end */
}