*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}



/* navbar styleing */
.nav-container{
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 1024;
    height: 80px;
    padding: 10px 50px;
    width: 100%;
    display: flex;
}
.change-bg{
    background-color: rgba(128, 128, 128, 0.507);
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}
.nav-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}
.nav-left-logo{
    width: 180px;
    height: 40px;
}
.nav-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links ul li a {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.nav-links ul li:hover a{
    color: #1C7DB0;
}
.nav-links ul li.active a{
    color: #1C7DB0;
}
.nav-right-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
}
.common-button{
    padding: 0 15px;
    height: 40px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    padding-bottom: 2px;
}
.common-button.login-btn{
    background-color: #1C7DB0;
}
.login-btn:hover{
    background-color: #0d618e;

}
.common-button.free-trail-btn{
    background-color: #5CA044;
}
.free-trail-btn:hover{
    background-color: #366d22;
}
.side-bar-link{
    width: 100% ;
    display: flex;
    align-items: center;
}


/* sidebar styling */
.sidebar-wrapper{
    display: none;
    position: fixed;
    width: 320px;
    background-color: #181D23;
    overflow: auto;
    height: calc(100vh - 80px);
    padding: 15px 20px;
    top: 80px;
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sidebar-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-links ul li {
    display: flex;
    width: 100%;
     align-items: center;
}
.sidebar-links ul li a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.sidebar-links ul li:hover a {
    color: #1C7DB0;
}
.sidebar-links ul li.active a {
    color: #1C7DB0;
}
.sidebar-buttons{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.sidebar-buttons .common-button{
    width: 100%;
}


.nav-right-menu-button{
    display: none;
}
.nav-right-menu-button .menu-button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
.nav-right-menu-button .menu-button img{
    height: 100%;
    width: 100%;
}


/* footer styling */
.footer-container{
    background-color: #1B2027;
    padding-top: 2rem;
}
.comunity-section {
    background-image: url('../../images/footer-dark-bg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 400px;
    padding: 20px;
}
.community-content{
    width: 500px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.common-heading{
    line-height: 40px;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}
.community-heading .common-heading{
    color: white;
}
.common-content{
    font-size: 1rem;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    color: #FFFFFF;
}
.community-content .common-content{
    color: white;
}
.input-field-wrapper{
    width: 100%;
    height: 60px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    position: relative;
}
.community-content .input-field-wrapper{
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.input-field-wrapper input{
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 8px;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #555555;
    background-color: transparent;
}
input::placeholder{
    font-size: 1rem;
    font-weight: 400;
    color: #71717A;
}
.input-field-wrapper .common-button.get-started{
    /* position: absolute;
    right: 10px;
    top: 10px; */
    background-color: black;
    padding: 0 25px;
}
.copy-right-section{
    /* height: 80px; */
    padding: 20px 50px;
    /* padding-top: 20px; */
    display: flex;
}
.copyright-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.copyright-content .common-content{
    font-size: 1rem;
}
.copyright-right-links ul{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.copyright-right-links ul li a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
}


/* home page styling */
.banner-section{
    /* background-image: url('../../images/dark-banner-bg.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner-section-content{
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
/* .featurePage-main-wrapper .banner-section-content{
    padding-top: 400px;
} */

.featurePage-main-wrapper .banner-section{
    background: #181D23;
   padding-top: 80px;



}
.featurePage-main-wrapper .banner-section .banner-section-content{
    gap: 50px;
}
.featurePage-main-wrapper .banner-section .banner-top-content{
    height: 55%;
    justify-content: center;
}
.featurePage-main-wrapper .banner-section .feature-banner-img{
   height: 45%;
   margin-bottom: -10px;
   display: flex;
  align-items: flex-end;
}
.featurePage-main-wrapper .banner-section .feature-banner-img img{
    width: 100%;
   max-height: 100%;
   height: auto;
}
.banner-top-content{
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 0 auto;
}
.banner-heading h1{
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;

}
.banner-content .common-content{
    color: #FFFFFF;
}
.banner-bottom-dashboard-image{
    margin-top: 3rem;
}


/* our solution styling */
.our-solutions-section{
    padding: 50px;
    padding-top: 100px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
    margin-top: -30px;
    background-color: #353B47;
    position: relative;
}
.top-common-tag{
    position:relative;
    margin-bottom: 1rem;
}
.top-common-tag .common-content{
    padding-left: 70px;
    color: #FFFFFF;
}
.top-common-tag::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #FFFFFF;
    top: 50%;
}
.our-solution-content{
    padding: 20px 0px;
}
.our-solution-header{
    padding: 1rem 0;
}
.our-solution-heading-left .common-heading {
    color: #FFFFFF;
}
.our-solution-right-content .common-content{
    color: #FFFFFF;
}
.our-solution-body{
    padding: 40px 0px;
}
.our-solution-grid-system{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 80px;
}
.grid-card{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 50px;
}
.card-image{
    width: 70px;
    min-width: 70px;
        height: 70px;
        background: #FFBF42;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
}
.card-image.icon-one{
    background: #FFF8EA;
    border:1px solid #FFBF42;
}
.card-image.icon-two {
    background: #C9CCFF;
    border: 1px solid #979DE7;
}
.card-image.icon-three {
    background: #67C8FB;
    border: 1px solid #1C7DB0;
}
.card-image.icon-four {
    background: #9CDCFF;
    border: 1px solid #1C7DB0;
}
.card-image.icon-five {
    background: #D7D7D7;
    border: 1px solid #1C7DB0;
}
.card-image.icon-six {
    background: #D0EEFF;
    border: 1px solid #1C7DB0;
}
.card-image img{
   width: 35px;

}
.card-content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.grid-card h1{
    font-weight: 500;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin: 0;
}
.grid-card .common-content{
    color: #FFFFFF;
    font-size: .9rem;
}
.our-solution-footer{
    text-align: center;
}
.our-solution-footer .common-button {
    /* background: linear-gradient(90deg, rgba(39, 45, 107, 1) 30%, rgba(28, 125, 176, 1) 100%); */
    background-color: #1C7DB0;
}

/* room management styling */
.room-management-section{
    padding: 50px .8rem;
    background-color: #232733;
}
.room-management-content{
    display: flex;
    gap: 2rem;
    min-height: 400px;
}
.room-management-left-image-wrapper{
    width: 50%;
    max-width: 50%;
    position: relative;
}
.room-management-left-image-wrapper img{
    position: absolute;
    max-width: 300px;
    max-height: 300px;
}
.room-management-left-image-wrapper img.bg-oval{
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.room-management-left-image-wrapper img.graph-table{
    min-width: 570px;
    min-height: 330px;
    top: 80px;
    right: 60px;
    border-radius: 12px;
}
.room-management-right-content{
    width: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.room-management-header{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.room-management-header .common-content{
    color: #FFFFFF;
}
.room-management-body{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0px;
}
.room-management-body .managment-plans{
    display: flex;
    gap: 1rem;
}
.room-management-body .managment-plans img{
    height: 24px;
    width: 24px;
}
.room-management-body .managment-plans .plan-content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.room-management-body .managment-plans .plan-content h1{
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
}
.room-management-body .managment-plans .plan-content .common-content{
    color: #FFFFFF;
}

/* guest management styling */
.manage-guest-section{
    padding:100px 50px;
    background-color: #181D23;
}
.manage-guest-content{
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 400px;
}
.guest-section-left-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.guest-right-section{
width: 50%;
position: relative;
z-index: 2;
}
.guest-right-section .profile-icon{
    position: absolute;
        right: -4px;
        top: -48px;
        width: 20px;
        height: 20px;
}
.guest-right-section .profile-icon.icon-1{
    width: 40px;
        height: 40px;
        border-radius: 50%;
        right: -40px;
        top: -15px;
}
.guest-right-section .profile-icon.icon-2 {
    width: 30px;
        height: 30px;
        border-radius: 50%;
        right: 25px;
        top: -35px;
    }
        .guest-right-section .profile-icon.icon-4 {
            width: 22px;
                height: 22px;
                border-radius: 50%;
                right: -56px;
                top: -35px;
                border-radius: unset;
        }
                .guest-right-section .profile-icon.icon-5 {
                    width: 25px;
                        height: 25px;
                        border-radius: 50%;
                        left: -20px;
                        bottom: -20px;     top: unset;
                        border-radius: unset;
                }
.guest-right-section::after{
    position: absolute;
        content: url('../../images/guest-dot.png');
        width: 150px;
        top: 0;
        right: 0;
       z-index: 1;
}
.guest-right-section::before {
    position: absolute;
    content: url('../../images/guest-dot.png');
    width: 150px;
    bottom: -20px;
    left: -20px;
    z-index: 1;
}
.guest-right-section img{
    width: 100%;
    position: relative;
        z-index: 2;
}
.guest-section-left-content .common-content{
    color: #FFFFFF;
}
.guest-section-right-image{
    min-width: 50%;
    max-width: 50%;
}
.guest-section-right-image .guest-section-image-wrapper{
    width: 80%;
    margin: 0 auto;
    height: 450px;
    position: relative;
}
.guest-main-wrapper{
    width: 450px !important;
    min-width: 450px !important;
}

/* .guest-section-right-image .guest-section-image-wrapper::before{
    position: absolute;
    content: url('../../images/guest-dot.png');
    width: 150px;
    top: 0;
    right: 0;
}
.guest-section-right-image .guest-section-image-wrapper::after{
    position: absolute;
    content: url('../../images/guest-dot-after.png');
    width: 150px;
    bottom: 0;
    left: 0;
} */
.guest-section-right-image .guest-section-image-wrapper img{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.guest-section-right-image .guest-section-image-wrapper img.top-image{
    position: absolute;
    width: 150px;
    height: 150px;
    left: -10px;
    top: -10px;
    z-index: 2;
}


/* quality section styling */
.quality-templates-section{
    background-color: #485265;
    padding-top: 2rem;
    width: 100%;
}
.quality-template-content{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.left-image{
    width: 50%;
    max-width: 50%;
}
.left-image img{
    width: 600px;
    margin-left: -120px;
}
.right-content{
    width: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.quality-templates-section .common-heading{
    color: #FFFFFF;
}
.quality-templates-section .common-content{
    color: #FFFFFF;
}

/* find-plan styling */
.find-plan-section{
    background-color: #353B47;
    padding: 4rem .8rem;
}
.find-plan-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.find-plan-content .common-content{
    color: #FFFFFF;
    text-align: center;
}
.find-plan-content .common-heading{
    color: #FFFFFF;
}
.find-plan-footer{
    margin-top: 2rem;
    padding: 1rem 2rem;
    width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    background-color: #232733;
    border-radius: 8px;
}
.find-plan-footer .footer-item p{
    display: flex;
    align-items: flex-end;
    gap: 5px;
    /* flex-direction: column; */
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
}
.find-plan-footer .footer-item p span{
    color: #FFFFFF;
    font-size: .9rem;
    font-weight: 400;
}
.find-plan-footer .common-button{
    background-color: #1C7DB0;
}

/* trust us styling */
.trust-us-section{
    padding: 4rem .8rem;
    background-color: #181D23;
}
.trust-us-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.trust-us-content .common-heading{
    color: #FFFFFF;
}
.trust-us-content .common-content{
    color: #FFFFFF;
}
.trust-us-footer{
    width: 100%;
}
.trust-us-footer .social-icons-wrapper{
    display: flex;
    column-gap: 40px;
    row-gap: 20px;
    padding: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.social-image-wrapper{
    width: 130px;
    height: 30px;
}
.social-image-wrapper img{
    width: 100%;
    height: 100%;
}

/* trust us slider styling */
.trust-us-slider-section{
    padding: 2rem .8rem;
    background-color: #1B2027;
}
.trustUs-slider-header{
    text-align: center;
    padding: 2rem 0;
}
.trust-us-slider-content{
    width: 80%;
    margin: 0 auto;
}
.trust-us-scroll-wrapper {
    overflow: hidden;
    position: relative;
}
.trust-us-grid-system{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 1fr);
    grid-gap: 1rem;
    overflow-x: auto;
    margin: 2rem 0;
    scroll-behavior: auto;
    animation-play-state: running;
}
.trust-us-grid-system::-webkit-scrollbar {
    display: none;
}
.trust-us-grid-card{
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #353B47;
    background-color: #232733;
    display: flex;
    gap: 50px;
    flex-direction: column;
}
.trust-us-card-footer{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.card-footer-image-wrapper{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}
.card-footer-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-footer-profile p{
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card-footer-profile p span{
    color: #FFFFFF;
    font-weight: 400;
    font-size: .8rem;
}



/* feature-page styling   */
.featurePage-main-wrapper .guest-section-right-image .guest-section-image-wrapper{
    height: auto;
}
.featurePage-main-wrapper .guest-section-right-image::before{
    display: none;
}
.featurePage-main-wrapper .guest-section-right-image::after{
    display: none;
}
.featurePage-main-wrapper .qr-image .room-management-left-image-wrapper img{
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 100%;
    display: flex;
    margin: 0 auto;
}
/* .featurePage-main-wrapper .find-plan-header .common-heading{
    color: #272D6B;
} */
.party-image-wrapper{
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}
.party-image-wrapper::before{
    position: absolute;
    content: url('../../images/feature-party-before.png');
    width: 150px;
    top: 0;
    right: 0;
    z-index: -1;
}
.party-image-wrapper::after{
    position: absolute;
    content: url('../../images/feature-party-after.png');
    width: 150px;
    bottom: 100px;
    left: 0;
    z-index: -1;
}
.party-image-wrapper.feature-templates-section::before{
    position: absolute;
    content: url('../../images/feature-party-before.png');
    width: 150px;
    top: 0;
    right: 0;
    z-index: -1;
}
.party-image-wrapper.feature-templates-section::after{
    position: absolute;
    content: url('../../images/feature-party-before.png');
    width: 150px;
    top: 0;
    left: 0;
    z-index: -1;
}

/* .party-image-wrapper img {

    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
} */

.party-image-wrapper img{
    width: 90%;
    display: flex;
    margin: 0 auto;
    padding: 30px 0;
}



/* contact page styling */
.contact-page-wrapper{
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-us-page-content{
    background-color: #232733;
    padding: 2rem 1rem;
    border-radius: 10px;
    display: flex;
    column-gap: 2rem;
    row-gap: 4rem;
}
.contact-us-left-content{
    width: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.contact-us-left-header{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-us-left-header h1{
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 600;
}
.contact-us-left-header h2{
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
}
.contact-us-left-header p{
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.contact-us-left-body .common-content{
    color: #FFFFFF;
}
.contact-us-left-footer{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 8px solid #1C7DB0;
    padding: 0 1rem;
}
.footer-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-us-left-footer .footer-heading h2{
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0;
}
.contact-us-left-footer .footer-content p{
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
}

.contact-us-form-wrapper{
    width: 50%;
    max-width: 50%;
}
.contact-us-form-wrapper form{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: .7rem;
    justify-content: space-between;
}
.contact-us-form-wrapper form .input-field{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 45%;
}
.contact-us-form-wrapper form .input-field label{
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}
.contact-us-form-wrapper form .input-field input{
    border: 1px solid #353B47;
    height: 40px;
    padding: 0 1rem;
    border-radius: 15px;
    background-color: #252333;
    outline: none;
    min-width: 220px;
    max-width: 100%;
    font-size: .9rem;
    color: #FFFFFF;
}
.contact-us-form-wrapper form .input-field.message-textarea{
    width: 100%;
}
.contact-us-form-wrapper form .input-field textarea{
    border: 1px solid #353B47;
    padding: .5rem 1rem;
    border-radius: 15px;
    background-color: #252333;
    outline: none;
    font-size: .9rem;
    color: #FFFFFF;
    resize: none;
}
.contact-us-form-wrapper form .input-field input::placeholder{
    color: #4D5E7A;
    font-size: .9rem;
}
.contact-us-form-wrapper form .input-field textarea::placeholder{
    color: #4D5E7A;
    font-size: .9rem;
}
.contact-us-form-wrapper form .common-button{
    background-color: #1C7DB0;
    margin-top: 10px;
}

.frequently-question-section{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}
.frequently-question-header .common-heading{
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* frequent question styling */
.frequently-question-body{
    margin: 2rem 0;
}
.ko-accordion-item {
    background-color: #232733;
    border-bottom: 1px solid #353B47;
    padding: 0 1.5rem;
}
.ko-accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 0;
}
.ko-accordion-item-header h3 {
    font-size: 1rem;
    line-height: 25px;
    font-weight: 500;
    margin: 0;
    color: #FFFFFF;
}
.ko-accordion-item-header::after {
    content: url("../../images/plus-white.png");
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}
.ko-accordion-item-header.active::after {
    content: url("../../images/minus-white.png");
}
.ko-accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.ko-accordion-item-body-content {
    padding-bottom: 20px;
}
.ko-accordion-item-body-content.common-content {
    font-size: .8rem;
}

/* responsive styling */
@media (max-width:1200px) {
    .grid-card{
        padding-right: 0;
    }
    .left-image img {
        width: 500px;
    }
    .contact-us-page-content{
        flex-direction: column;
    }
    .contact-us-left-content {
        width: 100%;
        max-width: 100%;
    }
    .contact-us-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .profile-icon{
        display: none;
    }
    .guest-right-section{
        width: 100%;
    }
        .guest-right-section::before,.guest-right-section::after{
            display: none;
        }
    .nav-links{
        display: none;
    }
    .nav-right-buttons{
        display: none;
    }
    .nav-right-menu-button{
        display: block;
    }
    .sidebar-wrapper{
        display: flex;
        flex-direction: column;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    .sidebar-wrapper.open{
        transform: translateX(0);
    }
    /* .banner-section{
        height: 600px;
    } */
    .room-management-content{
        flex-direction: column;
    }

    .room-management-left-image-wrapper{
        width: 100%;
        max-width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
    }
    .room-management-right-content{
        width: 100%;
        max-width: 100%;
    }
    .manage-guest-content{
        flex-direction: column;
    }
    .guest-section-right-image{
        min-width: 100%;
        max-width: 100%;
    }
    .guest-section-left-content{
        width: 100%;
        max-width: 100%;
    }
    .quality-templates-section{
        padding: 2rem .8rem;
    }
    .quality-template-content{
        flex-direction: column;
    }
    .left-image {
        width: 100%;
        max-width: 100%;
    }
    .left-image img {
        width: 100%;
        height: 400px;
        margin-left: 0;
    }
    .right-content {
        width: 100%;
        max-width: 100%;
    }
    .featurePage-main-wrapper .guest-section-right-image .guest-section-image-wrapper img {
        width: 80%;
        max-width: 80%;
        height: 400px;
        margin: 0 auto;
        display: flex;
    }
    .guest-section-right-image .guest-section-image-wrapper{

        height: unset;

    }
    .copyright-content {
        flex-direction: column-reverse;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .template-modal-payment-method{
        flex-wrap: wrap;
    }
    .banner-top-content{
        width: auto;
    }
    /* .banner-heading h1{
        font-size: 2.5rem;
    } */
    .our-solution-header{
        grid-template-columns: 1fr;
    }
    .our-solution-grid-system{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .copy-right-section{
        height: 100%;
        padding: 1.2rem 1rem;
    }

    .copyright-right-links ul{
        /* flex-direction: column;
        align-items: flex-start; */
        /* gap: 10px; */
    }

    .room-management-left-image-wrapper {
        /* height: 320px; */
        width: 100%;
    }
    .room-management-left-image-wrapper .background-image{
        display: none;
    }
    .room-management-left-image-wrapper img{

        max-height: 240px;
    }
    .room-management-left-image-wrapper .bg-oval{
        max-width: 240px;
    }
    .room-management-left-image-wrapper .graph-image{
        height: 100%;
        width: 100%;
    }
    .room-management-left-image-wrapper .graph-image img{
        width: 100%;
        height: 100%;
        position: unset;
        min-width: 100%;
        min-height: 100%;
    }
    .guest-section-right-image::before{
        display: none;
    }
    .guest-section-right-image::after{
        display: none;
    }
    .left-image img {
        height: 300px;
    }
    .find-plan-footer {
        padding: 1rem;
        width: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    .find-plan-footer .right-button{
        margin: 0 auto;
    }
    .trust-us-slider-content {
        width: 100%;
    }
    .common-heading {
        font-size: 1.9rem;
        line-height: 34px;
    }
    .contact-us-form-wrapper form .input-field{
        width: 100%;
    }
    .contact-page-wrapper {
        padding-top: 140px;
    }

    .featurePage-main-wrapper .guest-section-right-image .guest-section-image-wrapper img {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }
    .party-image-wrapper::before{
        display: none;
    }
    .party-image-wrapper::after{
        display: none;
    }
    .guest-section-image-wrapper::before{
        display: none;
    }
    .guest-section-image-wrapper::after{
        display: none;
    }
    .party-image-wrapper img{
        width: 100%;
    }

    .guest-section-image-wrapper .guest-main-image{
        width: 100%;
        max-width: 100%;
        min-height: 180px;
        max-height: 400px;
        height: 100% !important;
    }
    .guest-main-wrapper{
        width: 280px !important;
        min-width: 280px !important;
    }


}

@media (max-width: 576px) {
    .copyright-right-links ul {
        gap: 10px;
    }
    .copyright-right-links ul li a {
        font-size: 14px;
    }
    .feature-bottle-wrapper img{
        position: unset !important;
    }
    .template-modal-payment-method{
        gap: 10px;
    }
        .template-modal-payment-method label{
            gap: 5px !important;
        }
    .template-modal-payment-method label img{
        width: 50px;
    }
    .modal-dialog{
        margin: unset !important;
    }
    .guest-section-left-content .guest-section-heading h1,.guest-section-left-content .guest-section-content p{
        text-align: center;
    }
    .featurePage-main-wrapper .banner-section{
        height: auto;
    }
        .featurePage-main-wrapper .banner-section .banner-section-content .banner-top-content{
padding-top: 50px;
padding-bottom: 50px;
        }
    .find-plan-content{
        text-align: center ;
    }
        .find-plan-footer{
            align-items: center;
        }
    .nav-container{
        padding: 10px 20px;
    }
    .nav-left-logo{
        width: 150px;
        height: 40px;
        padding-bottom: 8px;
    }
    .nav-left-logo svg{
        width: 100% !important;
        height: 100% !important;
    }
    .community-content{
        width: auto;
    }
    /* .community-content .input-field-wrapper {
        display: flex;
        gap: 20px;
        height: fit-content;
        align-items: center;
    } */
        .community-content .input-field-wrapper input::placeholder{
font-size: 14px;
        }
                .community-content .input-field-wrapper input{
                    font-size: 14px;
                }
    .input-field-wrapper .common-button.get-started{
        position: unset;
        padding: 8px 10px;
        font-size: 14px;
    }
    .copy-right-section{
        padding: 10px 20px;
    }
    /* .banner-section {
        height: 450px;
    } */
    /* .banner-heading h1 {
        font-size: 1.8rem;
    } */
    .common-heading{
        font-size: 1.5rem;
        line-height: 30px;
    }
    .common-content{
        font-size: .9rem;
        line-height: 18px;
    }
    .grid-card .card-image{
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }
        .grid-card .card-image img{
            width: 20px;
        }
    .grid-card h1{
        font-size: .9rem;
    }
    .grid-card .common-content {
        font-size: .8rem;
        line-height: 16px;
    }
    .our-solutions-section {
        padding: 20px;
        padding-top: 30px;
        border-radius: 0;
        margin-top: 0;
    }
    .room-management-section {
        padding: 20px .8rem;
    }
    /* .room-management-left-image-wrapper {
        height: 260px;
    } */
    .room-management-left-image-wrapper img {
        max-width: 200px;
        max-height: 200px;
    }
        .room-management-content .room-management-left-image-wrapper {
            height: unset;       }
    .room-management-left-image-wrapper img.graph-table {

        max-width: auto;
        min-height: 200px;
        max-height: 250px;
        height: 100%;
    }
    .manage-guest-section {
        padding: 30px 10px;
    }
    .guest-section-right-image .guest-section-image-wrapper {
        padding: 0px;
        height: 260px;
    }
    .featurePage-main-wrapper .guest-section-right-image .guest-section-image-wrapper img{
        width: 100%;
        max-width: 100%;
        max-height: 285px;
        min-height: 250px;
        height: 100%;
    }
    .guest-section-right-image .guest-section-image-wrapper::before{
        display: none;
    }
    .guest-section-right-image .guest-section-image-wrapper::after{
        display: none;
    }

    .left-image{
        width: 100%;
        height: 100%;
    }
    .left-image img {
        width: 100%;
        max-width: 100%;
        max-height: 285px;
        min-height: 180px;
        height: 100%;
     }
    .guest-section-right-image .guest-section-image-wrapper{

        height: unset;

    }

    .social-image-wrapper {
        width: 100px;
        height: 24px;
    }
    .trust-us-grid-system {
        grid-auto-columns: minmax(270px, 1fr);
    }
    .contact-page-wrapper {
        padding-top: 120px;
    }
    .feature-bottle-wrapper{
        height: 320px;
        width: 100%;
    }
    .banner-section-content{
        padding-top: 0px;
    }
    .copyright-content .common-content {
        font-size: 14px;
        text-align: center;
    }
    .copyright-left-content{
        width: 100%;
       display: flex;
       align-items: center;
       justify-content: center;
    }
    .contact-us-form-wrapper form .input-field input{
        min-width: unset !important;
    }
        .main-hero-image {
            display: none !important;
        }

}

@media (max-width: 440px) {
    .guest-section-right-image .guest-section-image-wrapper img.top-image{
        width: 100px;
        height: 100px;
    }
    .room-management-left-image-wrapper .feature-bottle {
        width: 100% !important;
        min-height: 50px !important;
        max-height: 260px !important;
        height: 100% !important;
    }

}
@media (max-width: 420px) {
    .featurePage-main-wrapper .guest-section-right-image .guest-section-image-wrapper img{
        min-height: 180px;
    }

}


@media (max-width: 350px) {

    /* .feature-bottle-wrapper {
       display: none !important;
    } */

}

/* modal sgyling */
.template-modal-size {
    width: 100%;
    max-width: 900px;
    padding: 1rem;
}

.template-modal-content {
    border-radius: 30px;
    background-color: #232733 !important;
}

.template-modal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    width: 100%;
}

.template-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.template-modal-header button {
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    margin: 0;
}

.template-modal-wrapper h1 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    text-transform: capitalize;
}

.template-modal-wrapper form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.template-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.template-input label {
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
}
.form-field-icon-wrapper{
    height: 50px;
    border-radius: 16px;
    padding: 0px 15px;
    border: 1px solid #353B47;
    width: 100%;
    position: relative;
}

.template-input input {
    width: 100%;
    height: 50px;
    border-radius: 16px;
    padding: 0.8rem;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #353B47;
    background: #252333;
    color: #FFFFFF;
    text-align: left;
}
.form-field-icon-wrapper input{
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 !important;
    background: #252333;
}
.eye-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    stroke: #FFFFFF;
    cursor: pointer;
}

.template-input input::placeholder {
    font-size: 1rem;
    font-weight: 400;
    color: #4D5E7A;
}

.template-modal-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.template-modal-btn button.modal-bottom-button{
    background-color: transparent;
    color: #1C7DB0;
    border: 1px solid #1C7DB0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
    width: 50%;
    max-width: 50%;
}
.template-modal-btn button.modal-bottom-button.submit-button{
    color: white;
    background-color: #1C7DB0;
}

.template-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.template-modal-payment-method-heading h1{
    display: flex;
    gap: 10px;
    flex-direction: column;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}
.template-modal-payment-method-heading h1 span{
    color: white;
}
.template-modal-payment-method{
    display: flex;
    align-items: center;
    gap: 30px;
}
.template-modal-payment-method label{
    display: flex;
    align-items: center;
    gap: 40px;
}
/* .template-modal-payment-method label input{
    width: 20px;
    height: 20px;
}
.template-modal-payment-method label input[type="checkbox"]{
    background-color: transparent;
    border: 1px solid blue;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 5px;
}
.template-modal-payment-method label input[type="checkbox"]:checked {
    background-color: transparent;
    accent-color: blue;
} */

.template-modal-payment-method label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #1C7DB0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

.template-modal-payment-method label input[type="checkbox"]:checked {
    background-color: #1C7DB0;
}
.template-modal-payment-method label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sign-up-link{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sign-up-link .common-content{
    color: #FFFFFF;
}
.sign-up-link .common-content button{
    border: none;
    background-color: transparent;
    color: #1C7DB0;
    cursor: pointer;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .template-modal-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .template-modal-wrapper {
        padding: 0.8rem;
    }

    .template-modal-wrapper h1 {
        font-size: 1.5rem;
    }

}
.term-banner-section{
    height: 70vh;
    background-color: #353B47;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../images/conditions.jpg');

}
.term-banner-section h1{
    color: white;
}
.condition-wrapper{
    padding-top: 80px;
    padding-bottom: 80px;
}
.conditon-section p{
    margin: 0;
}
.conditon-section .condition-text{
    display: flex;
    align-items: center;
    gap: 12px;
}
.conditon-section .condition-text .heading{
    font-weight: 700;
}
.conditon-section{
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(146, 146, 146);
    margin-bottom: 20px;
}
.last-condition{
    border: none;
}
.private-policy{
    flex-direction: column;
}
.private-policy h1{
    width: 80%;
    text-align: center;
}
.private-policy p{
    color: white;
    width: 80%;
    text-align: center;
}
.private-policy p span{
    font-weight: 700;
}
.condition-main-wrapper{
    background-color: #1B2027;
    color: white;
}
@media (max-width:460px) {
    .copyright-right-links ul li a{
    font-size: 0.6rem;
    }
}
