* {
    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: 90%;
    /* background-color: #007ab3;
    padding: 20px 0px 20px 0px;
    border-radius: 20px;
    margin-bottom: 35px; */
    gap: 15px;
    margin-top: 15px;
}
.child-1 p {
    margin-bottom: 0;
}



.set-1 {
    display: flex;
    width: 100%;
    gap: 10px;
}
.sub-set-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sub-set-2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-set-2 img {
    width: 100%;
}
.set-1-text-1 {
    font-size: 28px;
    font-weight: 700;
    color: #007ab3;
}
.set-1-text-2 {
    padding-top: 10px;
}



.curve {
    display: flex;
    width: 100%;
    /* height: 50px; */
}
.curve img {
    width: 100%;
    object-fit: fill;
}



#first-curve {
    margin-top: -110px;
}
#set-2 {
      margin-top: -80px;
}
#second-curve {
    margin-top: -110px;
}
#set-3 {
    margin-top: -120px;
}
#third-curve {
    margin-top: -80px;
}
#set-4 {
    margin-top: -60px;
}
#fourth-curve {
    margin-top: -50px;
}
#set-5 {
    margin-top: -55px;
}



/* mobile content */
.mobile-sub-set-2 {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.mobile-sub-set-2 img {
    width: 100%;
}
/* mobile content */
/* child 1 end */



/* 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 start  */
    .parent {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    /* parent end */



    /* child 1 start  */
    .child-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
        margin: 10px;
        gap: 40px;
        padding: 10px;
    }



    .set-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .set-1-text-1 {
        font-size: 20px;
    }
    .set-1-text-2 {
        font-size: 14px;
    }
    .sub-set-1 {
        width: 100%;
    }
    .sub-set-2 {
        width: 100%;
    }



    .mobile-sub-set-2 {
        display: unset;
    } 
    #desktop-view {
        display: none;
    }  
    .curve {
        display: none;
    }
    #first-curve {
    margin-top: 0;
    }
    #set-2 {
        margin-top: 0;
    }
    #second-curve {
        margin-top: 0;
    }
    #set-3 {
        margin-top: 0;
    }
    #third-curve {
        margin-top: 0;
    }
    #set-4 {
        margin-top: 0;
    }
    #fourth-curve {
        margin-top: 0;
    }
    #set-5 {
        margin-top: 0;
    }
    /* 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 */
}