@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* Default Select Box Custom Style */

html{
    font-size: 20px;
}
.custom-select{
    position: relative;
}
.custom-select select{
    appearance: none; /* Removes the default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}
.custom-select::after {
    content: '>'; /* Arrow symbol */
    position: absolute;
    top: 50%;
    right: 0.5rem; /* Adjust this to move the arrow */
    transform: translateY(-50%) rotate(90deg);
    pointer-events: none; /* Prevent the arrow from being clicked */
    font-size: 0.875rem;
    color: #555;
}

.first_container_mobile{
    display: none;
}
.mobile-signup-text{
    display: none;
}
.mobile-about-us{
    display: none;
}
.first_container {
    position: relative;
    width: 100%;
    height: 46.125rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 41.125rem;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideShow 15s infinite;
}

.bg-image.img1 {
    animation-delay: 0s;
}

.bg-image.img2 {
    animation-delay: 5s;
}

.bg-image.img3 {
    animation-delay: 10s;
}

@keyframes slideShow {
    0% { opacity: 0; }
    20% { opacity: 1; }
    33% { opacity: 1; }
    53% { opacity: 0; }
    100% { opacity: 0; }
}


.section_heading {
    position: relative;
    width: 76rem;
    z-index: 1;
    text-align: start;
}
.section_heading h1{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 3.137rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3.966rem;
}
.section_heading p{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 0.986rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.download_now_app p{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 0.938rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.download_now_app img{
    width: 8.971rem;
    height: 2.437rem; 
    margin-left: -1rem;
}
.reg_form_container{
    position: absolute;
    width: 76rem;
    border-radius: 0.583rem;
    border: 0.06rem solid rgba(255, 255, 255, 0.25);
    background: var(--reply-bg, #FFF);
    box-shadow: 0 0.241rem 0.845rem 0 rgba(0, 0, 0, 0.20);
    bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 1.5rem 3rem;
}
.reg_form_container label{
    display: block;
    color: #000;
    font-family: Poppins;
    font-size: 1.026rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.5rem;
}
.reg_form_container input,select{
    border-radius: 0.362rem;
    border: 0.06rem solid rgba(16, 16, 16, 0.53);
    padding: 0.5rem;
    width: 18.336rem;
    height: 2.626rem; 
    background-color: white;
}

.register_button_cont button{
    color: var(--reply-bg, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 0.906rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius:0.362rem;
    border: none;
    background: #178A43;
    width: 10.94rem;
    height: 2.626rem;
    flex-shrink: 0;
}

/* second section start here */
.second_container{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 2rem 0rem;
    position: relative;
    
}
#second_sub_container{
    width: 76rem;

}
.left_image_tree{
    position: absolute;
    left: 0;
    top: 1rem;
}
.right_image_tree{
    position: absolute;
    right: 0;
    bottom: 0rem;
}

/* signup_cards */
.signup_cards_whole_container{
    display: flex;
    justify-content: center;
   
}
.signup_cards_container{
    display: flex;
    justify-content: space-between;
    width: 65rem;
    gap: 15%;
    
}
.signup_card{
    text-align: center;
    
}
.signup_card img{
    width: 5.331rem;
    height: 4.756rem; 
}

.signup_card h6{
    color: #202020;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.signup_card p{
    color: #808080;
    font-family: Poppins;
    font-size: 0.938rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* about us */
.aboutus_container{
    width: 100%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
}
.about_details_container{
    width: 50%;
}
.about_details_container h2{
    color: #000;
    font-family: "Abhaya Libre";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    
}
.abhaya-libre-regular {
    font-family: "Abhaya Libre", serif !important;
    font-style: normal;
  }
.about_details_container p{
    color: #000;
    text-align: justify;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.813rem; /* 181.25% */
}
.about_button_container button{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 0.375rem;
    background: #009B47; 
    padding: 0.8rem 4rem;
    border: none;
    margin-top: 1rem;
}


.about_image_container {
    overflow: hidden; 
}


.about_image_container img{
    transition: transform 0.5s ease;
    width: 30.188rem;
    height: 27.375rem; 
    border-radius: 0.875rem;   
}

.about_image_container img:hover {
    transform: scale(1.4);  

}


/* quick search****************************************************************** */
.quick_search_whole_container{
    width: 100%;
    margin-top: 4rem;
    padding: 3rem 0rem;
    background: #EEFFF6; 
}
.quick_search_whole_container{
    display: flex;
    justify-content: center;
}

.quick_sub_container h1{
    color: #000;
    font-family: "Abhaya Libre";
    font-size: 2.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 2rem;
}
.quick_search_input_fields{
    display: flex;
    justify-content: center;
    align-items: end;
    gap:1.31rem;    
}
.quick_search_input_fields select{
    color: black;
    border-radius: 1.97rem;
    border: 0.073rem solid #747474;
    background-color: transparent;
    font-size: 1rem;

}
.quick_search_input_fields input{
    text-align: center;
    color: black;
    width: 5.9375rem;
    height: 2.625rem;
    border-radius: 1.97rem;
    border: 0.073rem solid #747474;
    background-color: transparent;
    font-size: 1rem;

}
.quick_search_input_fields label{
    color: black;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.6rem;
}
#quick_item1 {
    display: flex;
    flex-direction: column;
}
#quick_item1 select{
    width: 15.173rem;
}
#age_input {
    display: flex;
    flex-direction: column;
}

#age_input select{
    width: 5.875rem; 
}
.quick_search_button button{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 1.094rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0.375rem;
    background: #009B47; 
    padding: 0.5rem 2rem;
    border: none;
    margin-top: 1rem;
    margin-left: 2rem;
}

/* discover your perfect match******************** */
.discover_perfect_match_container{
    display: flex;
    justify-content: center;
    padding: 2rem 0rem;
    background: #009B47;
}
.discover_sub{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.discover_heading h1{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.discover_button button{
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 0.5rem;
    background: var(--reply-bg, #FFF);
    width: 11.813rem;
    height: 2.875rem; 
    border: none;
    
}

/* trust by  couples **************************/
.trust_whole_container{
    position: relative;
    width: 100%;
    height: 50rem;
    display: flex;
    justify-content: center;
    margin-top: 6rem;

}
.trust_heading{
    text-align: center;

}
.trust_heading h4{
    color: #009B47;
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 131.523%;
    letter-spacing: 0.255rem;
}
.trust_heading h1{
    color: #000;
    font-family: "Abhaya Libre";
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.trusted_couples_cards_container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4.5rem;
    position: relative;
    margin-top: 7rem;
}

.previous_image{
    position: absolute;
    left: -4rem;
    top: 40%;
}
.next_image{
    position: absolute;
    right: -4rem;
    top: 40%; 
}

.style_img{
    position: absolute;
    top: -3rem;
    left: 1rem;
    
}
.style_img img{
    width: 8.125rem;
}
.trust_cards {
    width: 22.5rem;
    box-sizing: border-box; 
    position: relative;
    height: 22.563rem; 
    border-radius: 1rem;
    border: none;
    background-color: transparent;
}

.users_img {
    position: relative;
    width: 100%;
    height: 100%;
}

.users_img img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
}

.info_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    box-sizing: border-box;
}

.info_content {
    text-align: left; 
    color: white;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.trust_cards:hover .info_overlay {
    align-items: center; 
    justify-content: center; 
    background: rgba(0, 0, 0, 0.7); 
    
}

.trust_cards:hover .info_content {
    text-align: center; 
}

.name, .description {
    margin: 0;
    transition: all 0.5s ease; 
}
.name{
    color: var(--reply-bg, #FFF);
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3.5rem;
    text-transform: uppercase;
}
.description{
    color: var(--reply-bg, #FFF);
    font-family: Inter;
    font-size: 0.938rem;
    font-style: normal;
    font-weight: 400;
    line-height: 143.523%;
}

/* gappy couple ************************* */
.happy-couple-container{
    width: 100%;
    display: flex;
    justify-content: center;
}
.hapy-couple-wrapper{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hapy-couple-wrapper .main-title{
    color: #000;
    font-family: "Abhaya Libre", serif !important;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hapy-couple-wrapper .main-title > span{
    color: #FB011E;
    font-family: "Abhaya Libre", serif !important;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hapy-couple-wrapper .sub-title{
    color: #616161;
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.hapy-couple-wrapper .heart-img{
    margin-top: 1.63rem;
    width: 5.063rem;
    height: 3rem;
}

.hapy-couple-wrapper .couple-card-container{
    width: 100%;
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    overflow-x: scroll;
}
.hapy-couple-wrapper .couple-card-container::-webkit-scrollbar{
    display: none;
}

.couple-card-container .couple-card{
    width: 15.9375rem;
    /* height: 24.6875rem; */
    flex-shrink: 0;
    border-radius: 1.6875rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.couple-card-container .couple-card .card-image{
    width: 100%;
    height: 21.25rem;
    object-fit: cover;
    border-radius: inherit;
}


/* download container************************************************************ */
.download_store_container{
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    background: #ED1F30;
    box-shadow: 0 0.75rem 1.188rem 0 rgba(0, 0, 0, 0.25) inset;
}
.sub_dovnload{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.getin_touch{
    color: rgba(255, 255, 255, 0.53);
    font-family: Poppins;
    font-size: 1.438rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.download_content h5{
    color: var(--reply-bg, #FFF);
    font-family: Poppins;
    font-size: 2.188rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -1.3rem;
}
.download_para{
    color: var(--reply-bg, #FFF);
    text-align: justify;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.download_image_container img{
    width: 43.125rem;
    height: 32.375rem; 
}
.play_app_store img{
    width: 11.891rem;
    height: 3.174rem; 
}

/* Floating 24 icon butons section */

.call-icon-floating-container{
    position: fixed;
    padding: 0.5rem;
    right: 0rem;
    bottom: 0rem;
    z-index: 100;
    cursor: pointer;
}
.call-icon{
    width: 6.4375rem;
    height: 6.5rem; 
    display: flex;
}
.call-icon img{
    width: 6.4375rem;
    height: 6.5rem;
    display: inline-block;
    opacity: 1;
    visibility: visible;
    animation: none;
}

.number-display-container{
    position: absolute;
    bottom: 6.8rem;
    right: 2rem;
    z-index: 100;
}
.num-display{
    border-radius: 0.25rem 1.3125rem;
    background: #009B47;
    box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.125rem;
    height: 3.75rem;

    color: #FFF;
    font-family: Poppins;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.close-button-display{
    display: flex;
    position: absolute;
    right: -0.3rem;
    top: -0.3rem;
}

.small-bubble, .large-bubble {
    position: absolute;
    background-color: #075D2D;
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.313rem rgba(0, 0, 0, 0.2);
}
.small-bubble {
    width: 0.875rem;
    height: 0.875rem;
    bottom: 5rem;
}

.large-bubble {
    width: 1.25rem;
    height: 1.25rem;
    bottom: 6rem;
    right: 6.2rem;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(0.625rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bubbles */
.small-bubble, .large-bubble {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.small-bubble.animated {
    animation: fadeInScale 0.01s ease forwards;
}

.large-bubble.animated {
    animation: fadeInScale 0.01s ease 0.2s forwards; /* Delayed animation */
}

/* Number display */
.number-display-container {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.number-display-container.animated {
    animation: slideIn 0.01s ease 0.4s forwards; /* Delayed animation */
}
.b-gray{
    border: 0.063rem solid rgba(118, 118, 118, 0.30);
    background-color: transparent;

}
@media screen and (max-width: 1600px){
    html{
        font-size: 19px;
    }
    .first_container {
        height: 33.625rem; 
    }
    
    .bg-image {
        height: 28.625rem; 
    }
    
    .section_heading {
        width: 75rem;
    }
    .section_heading h1{
        font-size: 2.3rem;
        line-height: 2.716rem;
    }
    .section_heading p{
        font-size: 0.93rem;

    }
    .download_now_app p{
        font-size: 0.93rem;
    }
    .download_now_app img{
        width: 8.438rem;
        height: 2.375rem; 
        margin-left: -1rem;
    }
    .reg_form_container{
        width: 75rem;
        padding: 1.5rem 2rem;
    }
    .reg_form_container label{
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    .reg_form_container input::placeholder{
        font-size: 0.875rem;
    }
    .reg_form_container input,select{
        padding: 0.4rem ;
        width: 16.25rem;
        height: 2.188rem; 
        font-size: 0.75rem;
    }
    .register_button_cont button{
        font-size: 0.0.75rem;
        border-radius:0.362rem;
        width: 9.69rem;
        height: 2.188rem;
    }
    /* second section start here */
    .second_container{
        margin-top: 2rem;
        padding: 2rem 0rem;
        
    }
    #second_sub_container{
        width: 72rem;

    }
    .left_image_tree{

        left: 0;
        top: 1rem;
    }
    .right_image_tree{

        right: 0;
        bottom: 0rem;
    }
    .right_image_tree img{
        height: 16.875rem;
        width: 6.25rem;
    }
    .left_image_tree img{
        height: 15rem;
        width: 9.375rem;
    }
    /* signup_cards */
    .signup_cards_container{
        width: 64rem;
        gap: 15%;
        
    }

    .signup_card img{
        width: 4.375rem;
        height: 3.938rem; 
    }

    .signup_card h6{
        font-size: 0.93rem;
    }

    .signup_card p{
        font-size: 0.875rem;
    }
    /* about us */
    .aboutus_container{
        margin-top: 4rem;
    }
    .about_details_container{
        width: 50%;
    }
    .about_details_container h2{
        font-size: 2.5rem;
        
    }
    .about_details_container p{
        font-size: 0.875rem;
    }
    .about_button_container button{
        font-size: 0.875rem;
        padding: 0.6rem 3rem;
        margin-top: 0.7rem;
    }


    .about_image_container img{
        width: 27.5rem;
        height: 24.375rem; 
    }

    .about_image_container img:hover {
        transform: scale(1.4);  

    }

    /* quick search****************************************************************** */
    .quick_search_whole_container{
        margin-top: 4rem;
        padding: 3rem 0rem;
    }

    .quick_sub_container h1{
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }
    .quick_search_input_fields{
        display: flex;
        /* justify-content: space-between; */
        gap: 1.33rem;
    }
    .quick_search_input_fields select{
        height: 2rem; 
        border-radius: 1.97rem;
        border: 0.063rem solid #747474;
        font-size: 0.75rem;
    }
    .quick_search_input_fields label{
        font-size: 0.875rem;
        margin-bottom: 0.3rem;
        display: block;
    }
    #quick_item1 select{
        width: 11.875rem;
    }

    #age_input select{
        width: 5.625rem; 
    }
    .quick_search_button button{
        font-size: 0.875rem;
        padding: 0.4rem 2rem;
        margin-top: 1rem;
        margin-left: 2rem; 

    }

    /* discover your perfect match******************** */
    .discover_perfect_match_container{
        padding: 2rem 0rem;
    }

    .discover_heading h1{
        font-size: 1.5rem;
    }
    .discover_button button{
        font-size: 0.875rem;
        border-radius: 0.5rem;
        width: 9.313rem;
        height: 2.375rem; 

        
    }

    /* trust by  couples **************************/
    .trust_whole_container{
        height: 40rem;
        margin-top: 6rem;
    }

    .trust_heading h4{
        font-size: 1.3rem;
        line-height: 121.523%;
        letter-spacing: 0.068rem;
    }

    .trust_heading h1{
        font-size: 2.4rem;
    }

    .trusted_couples_cards_container {
        gap: 3%;
        margin-top: 7rem;
    }

    .previous_image img,.next_image img{
        width: 2.5rem;
        height: 2.5rem;
    }

    .previous_image{
        left: -3rem;
        top: 40%;

    }
    .next_image{
        right: -3rem;
        top: 40%; 
    }

    .style_img{
        top: -3rem;
        left: 1rem;
    }

    .style_img img{
        width: 7.5rem;
    }

    .trust_cards {
        width: 20.5rem;
        height: 20.5rem; 
        border-radius: 1rem;
    }

    .info_content {
        padding: 1rem;
    }


    .name{
        font-size: 1.25rem;
        line-height: 1.625rem;
    }

    .description{
        font-size: 0.93rem;
        line-height: 113.523%;
    }

    .hapy-couple-wrapper .main-title, .hapy-couple-wrapper .main-title span{
        font-size: 3rem;
    }

    .couple-card-container .couple-card{
        width: 14rem;
    }
    .couple-card-container .couple-card .card-image{
        height: 20rem;
    }

/* download container************************************************************ */
.download_store_container{
    margin-top: 2rem;
}


.getin_touch{
    font-size: 1.25rem;
}
.download_content h5{
    font-size:1.8rem;
}
.download_para{
    font-size: 0.875rem;
}
.download_image_container img{
    width: 32.5rem;
    height: 26.75rem; 
}
.play_app_store img{
    width: 7.5rem;
    height: 1.875rem; 
}
}
/* ******************************************************************************************************** */
/* ***************1200-1400***************************************************************************** */
@media screen and (max-width: 1400px){
    html{
        font-size: 18px;
    }
    .first_container {
        height: 33.625rem; 
    }
    
    .bg-image {
        height: 28.625rem; 
    }
    
    .section_heading {
        width: 62rem;
    }
    .section_heading h1{
        font-size: 2rem;
        line-height: 2.716rem;
    }
    .section_heading p{
        font-size: 0.75rem;

    }
    .download_now_app p{
        font-size: 0.75rem;
    }
    .download_now_app img{
        width: 7.5rem;
        height: 1.875rem; 
        margin-left: -1rem;
    }
    .reg_form_container{
        width: 62rem;
    }
    .reg_form_container label{
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    .reg_form_container input::placeholder{
        font-size: 0.75rem;
    }
    .reg_form_container input,select{
        padding: 0.4rem ;
        width: 15rem;
        height: 2rem; 
        font-size: 0.75rem;
    }
    .register_button_cont button{
        font-size: 0.69rem;
        border-radius:0.362rem;
        width: 9.065rem;
        height: 2rem;
    }
    /* second section start here */
    .second_container{
        margin-top: 2rem;
        padding: 2rem 0rem;
        
    }
    #second_sub_container{
        width: 62rem;

    }
    .left_image_tree{

        left: 0;
        top: 1rem;
    }
    .right_image_tree{

        right: 0;
        bottom: 0rem;
    }
    .right_image_tree img{
        height: 15.625rem;
        width: 6.25rem;
    }
    .left_image_tree img{
        height: 14.375rem;
        width: 9.375rem;
    }
    /* signup_cards */
    .signup_cards_container{
        width: 54rem;
        gap: 15%;
        
    }

    .signup_card img{
        width: 3.75rem;
        height: 3.438rem; 
    }

    .signup_card h6{
        font-size: 0.875rem;
    }

    .signup_card p{
        font-size: 0.75rem;
    }
    /* about us */
    .aboutus_container{
        margin-top: 4rem;
    }
    .about_details_container{
        width: 50%;
    }
    .about_details_container h2{
        font-size: 2rem;
        
    }
    .about_details_container p{
        font-size: 0.75rem;
        line-height: 1.625rem; 
    }
    .about_button_container button{
        font-size: 0.75rem;
        padding: 0.5rem 3rem;
        margin-top: 0.7rem;
    }


    .about_image_container img{
        width: 26.25rem;
        height: 23.125rem; 
    }

    .about_image_container img:hover {
        transform: scale(1.4);  

    }

    /* quick search****************************************************************** */
    /* .quick_search_input_fields{
        display: flex;
        justify-content: center;
        align-items: end;
        gap:1.31rem;    
    } */
    .quick_search_whole_container{
        margin-top: 4rem;
        padding: 2.8rem 0rem;
    }

    .quick_sub_container h1{
        font-size: 1.7rem;
        margin-bottom: 1.8rem;
    }
    .quick_search_input_fields{
        display: flex;
        gap: 1.11rem;
    }
    .quick_search_input_fields select{
        height: 2rem; 
        border-radius: 1.97rem;
        border: 0.063rem solid #747474;
        font-size: 0.65rem;
    }
    .quick_search_input_fields label{
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        display: block;
    }
    #quick_item1 select{
        width: 11.25rem;
    }

    #age_input select{
        width: 5rem; 
    }
    .quick_search_button button{
        font-size: 0.875rem;
        padding: 0.4rem 1.5rem;
        margin-top: 1rem;
    }

    /* discover your perfect match******************** */
    .discover_perfect_match_container{
        padding: 2rem 0rem;
    }

    .discover_heading h1{
        font-size: 1.25rem;
    }
    .discover_button button{
        font-size: 0.75rem;
        border-radius: 0.5rem;
        width: 8.688rem;
        height: 2.25rem; 

        
    }

    /* trust by  couples **************************/
    .trust_whole_container{
        height: 40rem;
        margin-top: 6rem;
    }

    .trust_heading h4{
        font-size: 1rem;
        line-height: 121.523%;
        letter-spacing: 0.068rem;
    }

    .trust_heading h1{
        font-size: 2rem;
    }

    .trusted_couples_cards_container {
        gap: 3%;
        margin-top: 7rem;
    }

    .previous_image img,.next_image img{
        width: 2.5rem;
        height: 2.5rem;
    }

    .previous_image{
        left: -3rem;
        top: 40%;

    }
    .next_image{
        right: -3rem;
        top: 40%; 
    }

    .style_img{
        top: -3rem;
        left: 1rem;
    }

    .style_img img{
        width: 6.875rem;
    }

    .trust_cards {
        width: 18rem;
        height: 18rem; 
        border-radius: 1rem;
    }

    .info_content {
        padding: 1rem;
    }


    .name{
        font-size: 0.93rem;
        line-height: 1.625rem;
    }

    .description{
        font-size: 0.75rem;
        line-height: 113.523%;
    }

    .couple-card-container .couple-card {
        width: 13rem;
    }
    .couple-card-container .couple-card .card-image{
        height: 19rem;
    }

/* download container************************************************************ */
.download_store_container{
    margin-top: 2rem;
}


.getin_touch{
    font-size: 1.125rem;
}
.download_content h5{
    font-size:1.5rem;
}
.download_para{
    font-size: 0.75rem;
}
.download_image_container img{
    width: 30.625rem;
    height: 25.5rem; 
}
.play_app_store img{
    width: 6.875rem;
    height: 1.75rem; 
}
}

/* ****************************************************************************************** */
/* **********992-1200************************************************************************ */
@media screen and (max-width: 1200px){
    html{
        font-size: 17px;
    }
    .first_container {
        height: 29.375rem; 
    }
    
    .bg-image {
        height: 25rem; 
    }
    
    .section_heading {
        width: 54rem;
    }
    .section_heading h1{
        font-size: 1.5rem;
        line-height: 2.091rem;
    }
    .section_heading p{
        font-size: 0.69rem;

    }
    .download_now_app p{
        font-size: 0.69rem;
    }
    .download_now_app img{
        width: 5.625rem;
        height: 1.5rem; 
        margin-left: -0.5rem;
        margin-top: -1rem;
    }
    .reg_form_container{
        width: 54rem;
    }
    .reg_form_container label{
        font-size: 0.69rem;
        margin-bottom: 0.3rem;
    }
    .reg_form_container input::placeholder{
        font-size: 0.69rem;
    }
    .reg_form_container input,select{
        padding: 0.4rem ;
        width: 12.5rem;
        height: 1.75rem; 
        font-size: 0.69rem;
    }
    .register_button_cont button{
        font-size: 0.69rem;
        border-radius:0.362rem;
        width: 7.815rem;
        height: 1.75rem;
    }
    /* second section start here */
    .second_container{
        margin-top: 2rem;
        padding: 2rem 0rem;
        
    }
    #second_sub_container{
        width: 54rem;

    }
    .left_image_tree{

        left: 0;
        top: 1rem;
    }
    .right_image_tree{
        right: 0;
        bottom: 0rem;
    }
    .right_image_tree img{
        height: 11.875rem;
        width: 3.75rem;
    }
    .left_image_tree img{
        height: 8.75rem;
        width: 5rem;
    }
    /* signup_cards */
    .signup_cards_container{
        width: 44rem;
        gap: 15%;
        
    }

    .signup_card img{
        width: 3.125rem;
        height: 2.813rem; 
    }

    .signup_card h6{
        font-size: 0.75rem;
    }

    .signup_card p{
        font-size: 0.69rem;
    }
    /* about us */
    .aboutus_container{
        margin-top: 4rem;
    }
    .about_details_container{
        width: 50%;
    }
    .about_details_container h2{
        font-size: 1.5rem;
        
    }
    .about_details_container p{
        font-size: 0.69rem;
        line-height: 1.25rem; 
    }
    .about_button_container button{
        font-size: 0.69rem;
        padding: 0.5rem 2.5rem;
        margin-top: 0.7rem;
    }


    .about_image_container img{
        width: 22.5rem;
        height: 20rem; 
    }

    .about_image_container img:hover {
        transform: scale(1.4);  

    }

    /* quick search****************************************************************** */
    .quick_search_whole_container{
        margin-top: 3rem;
        padding: 2rem 0rem;
    }

    .quick_sub_container h1{
        font-size: 1.3rem;
        margin-bottom: 1.4rem;
    }

    .quick_search_input_fields select{
        height: 1.563rem; 
        border-radius: 1.97rem;
        border: 0.063rem solid #747474;
        font-size: 0.60rem;
    }
    .quick_search_input_fields label{
        font-size: 0.69rem;
        margin-bottom: 0.2rem;

    }
    #quick_item1 select{
        width: 10rem;
    }

    #age_input select{
        width: 4.375rem; 
    }
    .quick_search_button button{
        font-size: 0.69rem;
        padding: 0.4rem 1.5rem;
        margin-top: 1rem;
    }

    /* discover your perfect match******************** */
    .discover_perfect_match_container{
        padding: 1.5rem 0rem;
    }

    .discover_heading h1{
        font-size: 0.93rem;
    }
    .discover_button button{
        font-size: 0.69rem;
        border-radius: 0.5rem;
        width: 6.25rem;
        height: 1.75rem; 

        
    }

    /* trust by  couples **************************/
    .trust_whole_container{
        height: 35rem;
        margin-top: 6rem;
    }

    .trust_heading h4{
        font-size: 0.93rem;
        line-height: 121.523%;
        letter-spacing: 0.068rem;
    }

    .trust_heading h1{
        font-size: 1.5rem;
    }
    .trust_heading img{
        width: 10rem;
        height: 3rem;
    }

    .previous_image img,.next_image img{
        width: 2.5rem;
        height: 2.5rem;
    }

    .previous_image{
        left: -3rem;
        top: 40%;

    }
    .next_image{
        right: -3rem;
        top: 40%; 
    }

    .style_img{
        top: -3rem;
        left: 1rem;
    }

    .style_img img{
        width: 5.625rem;
    }

    .trust_cards {
        width: 16rem;
        height: 16rem; 
        border-radius: 1rem;
    }

    .info_content {
        padding: 1rem;
    }


    .name{
        font-size: 0.875rem;
        line-height: 1.625rem;
    }

    .description{
        font-size: 0.69rem;
        line-height: 113.523%;
    }

    .hapy-couple-wrapper .main-title, .hapy-couple-wrapper .main-title span{
        font-size: 2rem;
    }

    .hapy-couple-wrapper .sub-title{
        font-size: 0.675rem;
    }

    .couple-card-container .couple-card {
        width: 11rem;
    }
    .couple-card-container .couple-card .card-image{
        height: 17rem;
    }

    /* download container************************************************************ */
    .download_store_container{
        margin-top: 2rem;
    }


    .getin_touch{
        font-size: 1rem;
    }
    .download_content h5{
        font-size:1rem;
    }
    .download_para{
        font-size: 0.69rem;
    }
    .download_image_container img{
        width: 25.625rem;
        height: 21.75rem; 
    }
    .play_app_store img{
        width: 5rem;
        height: 1.375rem; 
    }
}

@media screen and (max-width: 992px){
    html{
        font-size: 16px;
    }
    .first_container {
        height: 27.5rem; 
    }
    
    .bg-image {
        height: 23.125rem; 
    }
    
    .section_heading {
        width: 44rem;
    }
    .section_heading h1{
        font-size: 1.2rem;
        line-height: 1.688rem;
    }
    .section_heading p{
        font-size: 0.65rem;

    }
    .download_now_app p{
        font-size: 0.65rem;
    }
    .download_now_app img{
        width: 5.625rem;
        height: 1.5rem; 
        margin-left: -0.7rem;
        margin-top: -1rem;
    }
    .reg_form_container{
        width: 44rem;
        padding: 1.2rem 1.2rem;
    }
    .reg_form_container label{
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    .reg_form_container input::placeholder{
        font-size: 0.65rem;
    }
    .reg_form_container input,select{
        padding: 0.4rem ;
        width: 10rem;
        height: 1.625rem; 
        font-size: 0.65rem;
    }
    .register_button_cont button{
        font-size: 0.65rem;
        border-radius:0.362rem;
        width: 5.625rem;
        height: 1.625rem;
    }
    /* second section start here */
    .second_container{
        margin-top: 1rem;
        padding: 2rem 0rem;
        
    }
    #second_sub_container{
        width: 44rem;

    }
    .left_image_tree{
        left: 0;
        top: 1rem;
    }
    .right_image_tree{
        right: 0;
        bottom: 2rem;
    }
    .right_image_tree img{
        height: 7.5rem;
        width: 2.188rem;
    }
    .left_image_tree img{
        height: 6.25rem;
        width: 3.75rem;
    }
    /* signup_cards */
    .signup_cards_container{
        width: 38rem;
        gap: 15%;
        
    }

    .signup_card img{
        width: 2.5rem;
        height: 2.188rem; 
    }

    .signup_card h6{
        font-size: 0.69rem;
    }

    .signup_card p{
        font-size: 0.65rem;
    }
    /* about us */
    .aboutus_container{
        margin-top: 4rem;
    }
    .about_details_container{
        width: 50%;
    }
    .about_details_container h2{
        font-size: 1.2rem;
        
    }
    .about_details_container p{
        font-size: 0.65rem;
    }
    .about_button_container button{
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
        margin-top: 0.7rem;
    }


    .about_image_container img{
        width: 19.375rem;
        height: 16.875rem; 
    }

    .about_image_container img:hover {
        transform: scale(1.4);  

    }

    /* quick search****************************************************************** */
    .quick_search_whole_container{
        margin-top: 3rem;
        padding: 2rem 0rem;
    }

    .quick_sub_container h1{
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .quick_search_input_fields{
        
        display: flex;
        gap: 1rem;
    }

    .quick_search_input_fields select{
        height: 1.688rem; 
        border-radius: 1.97rem;
        border: 0.063rem solid #747474;
        font-size: 0.64rem;
    }
    .quick_search_input_fields label{
        font-size: 0.65rem;
        margin-bottom: 0.2rem;

    }
    #quick_item1 select{
        width: 8.75rem;
        height: 1.688rem; 
    }

    #age_input select{
        width: 3.75rem; 
        height: 1.688rem; 
    }
    .quick_search_button button{
        font-size: 0.65rem;
        padding: 0.4rem 1.5rem;
        margin-top: 1rem;
        height: 1.688rem;
    }

    /* discover your perfect match******************** */
    .discover_perfect_match_container{
        padding: 1.3rem 0rem;
    }

    .discover_heading h1{
        font-size: 0.90rem;
    }
    .discover_button button{
        font-size: 0.65rem;
        border-radius: 0.5rem;
        width: 5.625rem;
        height: 1.438rem; 

        
    }

    /* trust by  couples **************************/
    .trust_whole_container{
        height: 27rem;
        margin-top: 3rem;
    }

    .trust_heading h4{
        font-size: 0.875rem;
        line-height: 111.523%;
        letter-spacing: 0.068rem;
    }

    .trust_heading h1{
        font-size: 1.2rem;
    }
    .trust_heading img{
        width: 7rem;
        height: 2rem;
    }
    .trusted_couples_cards_container {
        gap: 1%;
        margin-top: 4rem;
        display: flex;
        justify-content: space-between;
    }

    .previous_image img,.next_image img{
        width: 1.5rem;
        height: 1.5rem;
    }

    .previous_image{
        left: -2rem;
        top: 40%;

    }
    .next_image{
        right: -2rem;
        top: 40%; 
    }

    .style_img{
        top: -2rem;
        left: 1rem;
    }

    .style_img img{
        width: 3.75rem;
    }

    .trust_cards {
        width: 13rem;
        height: 13rem; 
        border-radius: 1rem;
    }

    .info_content {
        padding: 1rem;
    }


    .name{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .description{
        font-size: 0.65rem;
        line-height: 113.523%;
    }

    .couple-card-container .couple-card {
        width: 10rem;
    }
    .couple-card-container .couple-card .card-image{
        height: 16rem;
    }

    /* download container************************************************************ */
    .download_store_container{
        margin-top: 2rem;
    }


    .getin_touch{
        font-size: 0.938rem;
    }
    .download_content h5{
        font-size:0.875rem;
        margin-top: -0.9rem;
    }
    .download_para{
        font-size: 0.65rem;
    }
    .download_image_container img{
        width: 21.875rem;
        height: 18.75rem; 
    }
}
@media (max-width: 768px) {
    html{
        font-size: 15px;
    }
    .mobile-about-us{
        display: block;
    }
    .sub_container{
        width: 100%;
    }
    #second_sub_container{
        width: 90%;   
    }
    .left_image_tree,.right_image_tree{
        display: none;
    }
    .first_container_desk{
        display: none;
    }
    .common-text{
        font-size: 1rem !important;
    }
    .first_container_mobile img{
        width: 100%;
        height: 100%;
    }
    .first_container_mobile{
        display: flex;
        position: relative;
        width: 100%;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        height: 53.125rem;
    }
    .mobile-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .section_heading{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section-heading-mobile{
        position: absolute;
        bottom: 6.75rem;
    }
    .section_heading h1{
        color: var(--reply-bg, #FFF);
        text-align: center;
        text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
        font-family: Poppins;
        font-size: 2rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .register-free{
        border-radius:0.362rem;
        background: #178A43;
        width: 15rem;
        height: 2.875rem;
        border: none;
        color: var(--reply-bg, #FFF);
        text-align: center;
        font-family: Poppins;
        font-size: 0.938rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    /* signup section mobile */
    .signup_cards_container{
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    .signup_cards_container{
        flex-direction: column;
        gap: 1rem;
    }
    .mobile-signup-text{
        display: block;
        color: #009B47;
        font-family: Poppins;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 2.375rem;
    }


    /* about us */
    .aboutus_container{
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .about_details_container{
        width: 100%;
    }
    .about_image_container{
        width: 100%;
    }
    .about_image_container img{
        transition: transform 0.5s ease;
        width: 100%;
        height: 31.25rem;
        border-radius: 0.875rem;   
    }
    .about_details_container h2{
        display: none !important;
    }
    .about_details_container{
        width: 100%;
    }
    .mobile-about-us{
        color: #000;
        font-family: "Abhaya Libre";
        font-size: 2.375rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.5rem;
        margin-bottom: -3rem;
        margin-top: 3rem;
        border-bottom: 0.188rem solid #EF9D22;
        width: 25%;
    }
    .about_button_container{
        width: 100%;
        margin-top: 1rem ;
    }
    .about_button_container button{
        width: 100%;
        height: 2.375rem;
        padding: 0rem;
    }

    /* quick search */
    .quick_search_whole_container{
        margin-top: 2rem;
        padding: 2rem 0rem;
    }
    .quick_search_input_fields{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .quick_search_input_fields label{
        display: block;
        margin-top: 1rem;
    }
    .looking_for,.location,.religion{
        width: 100%;
    }
    #religion_inp,#location,#looking_for{
        width: 100%;
        border-radius: 0.363rem;
    }
    #age_input {
        width: 100%;
        border-radius: 0.363rem;
    }
    /* .age-from{
        margin-right: 4%;
    } */
    #age_input select{
        width: 100%;
        border-radius: 0.363rem;
        
    }
    .quick_search_input_fields{
        width: 100%;
    }
    #quick_item1 select{
        width: 100%;
    }

    /* discover */
    .discover_sub{
        flex-direction: column;
    }
    .discover_heading h1{
        font-size: 1.313rem;
        text-align: center;

    }
    .discover_button button{
        width: 80%;
        height: 2.5rem;
    }
    .discover_button{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* trust section */
    .trust_whole_container{
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }
    .trust_second_sub{
        width: 90%;
        align-items: center;
    }
    .trusted_couples_cards_container {
        display: flex !important;
        flex-direction: row;
        overflow-x: scroll !important;
        scrollbar-width: none !important; /* For Firefox */
        -ms-overflow-style: none !important; /* For Internet Explorer and Edge */
        margin-top: 2rem !important;
    }
    
    .trusted_couples_cards_container::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
    .trust_heading{
        text-align: center;
    }
    .trust_heading h1{
        font-size: 2.25rem;
        text-align: center;
    }
    .trust_cards {
        flex: 0 0 auto; 
        width: 14.625rem;
        height: 14.625rem;
        margin:0rem 0.5rem; 
    }
    
    .style_img img{
        width: 100%;
        height: auto;
        display: block;
    }
    .previous_image,.next_image{
        display: none;
    }
    
    .trusted_couples_cards_container {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
        margin-top: 7rem;
    }
    .info_content {
        padding: 0.5rem;
    }
    .description{
        font-size: 0.75rem;
        line-height: 105%;
    }
    .name{
        font-size: 0.875rem;
        line-height: 0.625rem;
    }

    /* dowinload */
    .sub_dovnload{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 2rem;
    }
    .download_content{
        width: 100%;
    }
    .download_content h5{
        font-size: 2.125rem;
        margin-top: -0.7rem;
    }
    .getin_touch{
        font-size: 1.375rem;
        margin-bottom: -0.5rem;
    }
    .download_image_container{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .download_image_container img{
        width: 100%;
        height: 28.125rem;
    }
    .play_app_store img{
        width: 8.75rem;
        height: 2.313rem;
        margin-left: -0.4rem;
    }
    .happy-couple-container{
        margin-top: 3rem;
    }

}

@media (max-width: 576px) {
    html{
        font-size: 14px;
    }
    .common-text{
        font-size: 0.938rem !important;
    }
    .first_container_mobile{
        height: 33.25rem;
    }
    .section-heading-mobile{
        bottom: 4.75rem;
    }
    .section_heading h1{
        font-size: 1.5rem;
    }
    .register-free{
        width: 15rem;
        height: 2.75rem;
        font-size: 0.938rem;
    }
    .signup_cards_container{
        gap: 1rem;
    }
    .signup_cards_container{
        gap: 1rem;
    }
    .signup_card img{
        width: 3.5rem;
        height: 3.5rem;
    }
    .mobile-signup-text{
        font-size: 0.938rem;
        margin-bottom: 1.25rem;
    }
    .aboutus_container{
        gap: 1rem;
    }
    .about_image_container img{
        height: 19.688rem;
    }
    .mobile-about-us{
        font-size: 2rem;
        margin-bottom: -3rem;
        margin-top: 2rem;
        width: 40%;
    }
    .about_button_container{
        margin-top: 1rem ;
    }
    .about_button_container button{
        height: 2.25rem;
    }
    .quick_search_whole_container{
        margin-top: 2rem;
        padding: 2rem 0rem;
    }
    .quick_search_input_fields label{
        margin-top: 1rem;
    }
    .discover_heading h1{
        font-size: 1.125rem;
    }
    .discover_button button{
        height: 2.25rem;
    }
    .trust_whole_container{
        margin-top: 2rem;
    }
    .trusted_couples_cards_container {
        margin-top: 2rem !important;
    }
    .trust_heading h1{
        font-size: 2rem;
    }
    .trust_cards {
        width: 13.881rem;
        height: 13.881rem;
        margin:0rem 0.5rem; 
    } 
    .trusted_couples_cards_container {
        gap: 1rem;
        margin-top: 7rem;
    }
    .info_content {
        padding: 0.5rem;
    }
    .description{
        font-size: 0.7rem;
        line-height: 105%;
    }
    .name{
        font-size: 0.8rem;
        line-height: 0.625rem;
    }
    .sub_dovnload{
        padding-bottom: 2rem;
    }

    .couple-card-container .couple-card {
        width: 9rem;
    }
    .couple-card-container .couple-card .card-image{
        height: 13rem;
    }
    .download_content h5{
        font-size: 1.875rem;
    }
    .getin_touch{
        font-size: 1.188rem;
        margin-bottom: -0.5rem;
    }
    .download_image_container img{
        height: 18.017rem;
    }
    .play_app_store img{
        width: 8.452rem;
        height: 2.152rem;
        margin-left: -0.4rem;
    }
}

@media (max-width: 370px) {
    html{
        font-size: 13px;
    }
    .first_container_mobile{
        height: 31.25rem;
    }
    .section-heading-mobile{
        bottom: 4.75rem;
    }
    .section_heading h1{
        font-size: 1.25rem;
    }
    .register-free{
        width: 13.75rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}





