@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Jost", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    /* Chrome, Safari, Edge */
    margin: 0;
}

.desk {
    display: flex !important;
}

.mob{
    display: none !important;;
}

@media (max-width: 768px) {
    .desk {
    display: none !important;;
}

.mob{
    display: flex !important;;
}
}
:root {
    --sec-pad-tb: 1.5vw;
    --sec-pad-rl: 1.5vw;

    --heading-font: 2vw;
    --heading-1-font: 2.8vw;
    --body-font: 1.3vw;
    --tagline-font: 1.5vw;
    --gallery-font: 4vw;

    --sec-elem-gap: 2vw;
    --logo-size: 50%;
    --logo-size-2: 30%;

    --middle-sec-wd: 60%;

    --primary-clr: #9d6b6a;
    --secondary-clr: #fff0e9;

    --disclaimer-font: 8px;
}

@media (max-width: 1000px) {
    :root {
        --sec-elem-gap: 5vw;
        --logo-size: 25%;
        --logo-size-2: 25%;

        --gallery-font: 6vw;
    }
}


@media (max-width: 768px) {
    :root {
        --sec-pad-tb: 4.5vh;
        --sec-pad-rl: 4.5vh;

        --heading-font: 2vh;
        --heading-1-font: 2vh;
        --body-font: 1.8vh;
        --tagline-font: 2.2vh;

        --sec-elem-gap: 6vh;
    }
}


@media (max-width: 700px) {

    :root {
        --logo-size: 40%;
        --logo-size-2: 40%;
        --middle-sec-wd: 80%;
        --disclaimer-font: 5px;
    }
}

@media (max-width: 450px) {

    :root {
        --tagline-font: 1.8vh;
        --body-font: 1.5vh;
        --logo-size: 80%;
        --logo-size-2: 60%;
        --middle-sec-wd: 90%;
    }
}

@media (max-width: 400px) {

    :root {
        --logo-size: 80%;
        --logo-size-2: 60%;
    }
}

.heading-box {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;

    gap: 1rem;

    width: 100%;
}

.heading-underline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.heading-underline .img-box {
    width: 5%;
}

.heading-underline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 1px));

    width: 10vw;
    height: 1px;
    background-color: var(--primary-clr);
}

/* hero section */

.hero-sec {
    position: relative;

    width: 100%;
    height: 100vh;
}

.top-right-dis {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 6;
    font-size: var(--disclaimer-font);
    color: #fff;
}

.btm-left-dis {
    position: absolute;
    bottom: 4px;
    left: 4px;
    z-index: 6;
    font-size: var(--disclaimer-font);
    color: #fff;
}

.btm-dis {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 6;
    width: 100%;
}

.btm-dis .second-last {

    color: #fff;
    font-size: 10px;

    margin-bottom: 4px;
    text-align: left;
}

.btm-dis .last {

    font-size: var(--tagline-font);
    color: #fff;

    background-color: var(--primary-clr);


    text-align: center;
    padding: .5rem;

}

.hero-sec .content-box {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sec-elem-gap);

    position: relative;

    padding: var(--sec-pad-tb) var(--sec-pad-rl);

    overflow-x: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    
    min-width: 100%;
}

.hero-sec .vdo-box {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    z-index: 0;
    display: flex;
    overflow: hidden;
    filter: brightness(0.5);

}

.hero-sec video {
    width: 100%;
    object-fit: cover;
}


header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    
    padding: 1rem;
    
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.02) 100%);
}

header  .logo-box {
    width: 12%;
}



@media (max-width: 768px) {
    header  .logo-box {
    width: 40%;
}

header  .menu-logo {
    width: 9%;
}
}

.menu-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.menu-box p {
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    font-size: var(--tagline-font);
}

.menu-box-mob{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
    gap: 4rem;
    
    background: #fff;
    
    transform: translateX(-100%);
    transition: all .3s;
}

.menu-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    width: calc(100% - 2rem);
}

.menu-cls-btn{
    border: 1px solid;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    
    font-size: 1rem !important;
    font-weight: 600 !important;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-heading{
    font-size: 2rem;
    font-weight: 700;
    
}



.hero-sec .content-box .middle {
    width: var(--middle-sec-wd);
}

.hero-sec .content-box .bottom {
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-sec .content-box .bottom p {
    text-align: center;
    line-height: 1.8;
    letter-spacing: 1.5px;

    font-size: calc(var(--tagline-font) + 5px);
}

.hero-sec .content-box .bottom p span {

    font-size: calc(var(--tagline-font) + 25px);
}

.enq-btn {
    background: none;
    border: 1px solid transparent;
    outline: none;

    padding: .5rem 1rem;

    font-size: var(--body-font);
    font-weight: 400;
    outline: none;

    background-color: var(--primary-clr);
}

.enq-btn p {
    color: #fff;
}



/* overview */

.overview-sec {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: var(--sec-elem-gap);

    position: relative;

    padding: var(--sec-pad-tb) 0;

    padding-bottom: 0;
}

.overview-sec .top {
    width: var(--logo-size-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overview-sec .middle,
.location-sec .middle,
.plan-sec .middle {
    width: var(--middle-sec-wd);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1.2px;
    font-size: var(--body-font);
}

.overview-sec .middle {
    text-align: justify;
}

.overview-sec .middle p {
    margin-bottom: .3rem;
}

.bottom-1 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 70% !important;
    margin: auto;
    border: 1px solid var(--primary-clr);
}

.list-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bottom-1 .ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    flex-direction: column;
    gap: 1rem;


    padding: 2rem;
    margin: auto;

}

.bottom-1 .ul .li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.bottom-1 .ul .li img {
    width: 1rem;
}

.overview-sec .bottom-1 .top,
.overview-sec .bottom-1 .btm {
    display: flex;
    justify-content: center;
    align-items: stretch;

    flex-direction: row;

    width: 100%;
}

.owl-item,
.owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-1 .img-box {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2rem 0;
}

.img-tag-line {
    font-size: .8rem;
    text-align: center;
}

.overview-sec .last-line {
    font-size: var(--body-font);
    text-align: center;
}



.pr-bg {
    background-color: var(--primary-clr);
    color: var(--secondary-clr);
}

.sc-bg {
    background-color: var(--secondary-clr);
    color: var(--primary-clr);
}

.location-sec .bottom-1 .img-box {
    width: 100%;
    gap: .7rem;
    flex-direction: column;
    align-items: center;
}

.location-sec .bottom-1 .img-box p {
    font-weight: 600;
    text-align: center;
    border-top: 1px solid var(--primary-clr);
    padding: 15px  0;
    width: 100%;
    font-size: 13px;
    border-bottom: 1px solid var(--primary-clr);
}


.overview-sec .enq-btn,
.location-sec .enq-btn,
.price-sec .enq-btn,
.amenities-sec .enq-btn {
    /* border: 1px solid #000; */
}

@media (max-width: 768px) {

    .bottom-1 {
        flex-direction: column;
    }

    .bottom-1 .img-box-in {
        width: 85%;
    }

    .img-tag-line {
        font-size: 8px;
    }
}


@media (max-width: 500px) {

    .bottom-1 .img-box {
        width: 60%;
    }




    .bottom-1 {
        width: 90% !important;
    }

}

/* location-sec */

.location-sec {
    /* position: relative; */
    margin: 0 auto;
    max-width: 1200px;
}

.location-sec .middle .tagline {
    font-size: var(--tagline-font);

    margin-top: calc(-1 * (var(--sec-elem-gap) / 2));
    margin-bottom: 2rem;
    text-align: center;
}

.location-sec .middle p {
    text-align: justify;
    margin-bottom: 1rem;
}

.btm-wave-2 {
    width: 100%;
    aspect-ratio: 1440 / 313;
    margin-top: calc(-1 * var(--sec-elem-gap));
}

.heading {
    font-size: var(--heading-font);
    font-weight: 500;

    padding-bottom: 2rem;

    position: relative;
}


.location-sec .bottom {
    /* display: flex
; */
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.location-sec .bottom iframe {
    width: 100%;
}

@media (max-width: 700px) {
    .location-sec .bottom {
        width: 100%;
    }
}

/* plan section */

.plan-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: var(--sec-elem-gap);

    position: relative;

    padding: var(--sec-pad-tb) 0;
}

.plan-sec .middle {
    font-size: var(--tagline-font);
    font-weight: 500;
}

.plan-sec .bottom {

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 3rem;

    /* background-image: url("../imgs/Gifs/riverin-wave-gif_1.gif");
    background-color: #e1f4fd; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    padding: 2rem 4rem;

}

.plan-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    width: 320px;

    gap: 1rem;

    padding: 1.5rem;

    background: #fff;

    border-radius: 5px;

    border: 1px solid var(--primary-clr);
}



/*   emi cal css  */

.price-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: var(--sec-elem-gap);

    position: relative;

    padding: var(--sec-pad-tb) 0;

}

.price-sec .middle {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;

    gap: 3rem;

    width: 100%;

    background-image: url("../images/price-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    padding: calc(var(--sec-pad-tb) / 2) var(--sec-pad-tb);
}

.pricing-table {
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    background-color: #fff;
}

.pricing-header {
    background-color: var(--primary-clr);
    color: #fff;
    text-align: left;
    padding: 10px 15px;
    font-weight: bold;
}

.pricing-body {
    padding: 15px;
    border: 1px solid #e0e0e0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-type {
    font-weight: 500;
}

.pricing-price {
    color: #333;
    font-weight: bold;
}

.additional-info {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 480px) {
    .pricing-row {
        align-items: flex-start;
    }

    .pricing-price {
        margin-top: 5px;
    }
}

.emi-calculator {
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2rem;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.emi-calculator h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 5px;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    transition: background 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid #333;
    cursor: pointer;
    transition: transform 0.3s;
}

input[type="range"]:hover::-webkit-slider-thumb {
    transform: scale(1.2);
}

.emi-result {
    text-align: center;
    margin-top: 20px;
}

.emi-result h3 {
    font-size: 16px;
}

.emi-result p {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.gallery-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
}

.g-box {

    width: 100%;
    aspect-ratio: 2099 / 700;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    position: relative;


}

.g-box img {

    width: 100%;
    aspect-ratio: 2099 / 1428;
    object-fit: cover;

    position: absolute;

    top: 0;

    filter: brightness(.8);

}

.g-box p {
    font-size: var(--gallery-font);
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    text-align: center;
}

@media (max-width: 1000px) {
    .g-box {
        aspect-ratio: 2099 / 1128;
    }

    .g-box img {
        width: 150%;
    }
}

@media (max-width: 1000px) {
    .g-box {
        aspect-ratio: 2099 / 2028;
    }

    .g-box img {
        width: 250%;
    }
}

/* highlights-sec */

.highlights-sec {
    padding: var(--sec-pad-tb) 0;

    width: 100%;

}

.highlight-box {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 50% 50%;
    width: 100%;
    height: 100vh;
}

.left-al-text .img-holder {
    order: 2;
}

.left-al-text .text-content {
    order: 1;
}


.img-holder {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.img-holder-1 {
    background-image: url("../images/Drink.webp");
}

.img-holder-2 {
    background-image: url("../images/Hospitality.webp");
}

.img-holder-3 {
    background-image: url("../images/Lobby.webp");
}

.text-content {
    background-color: var(--primary-clr);
    width: 100%;
    height: 100%;
    /* text-transform: uppercase; */
    font-size: 18px;
    /* text-align: center; */
    color: #fff;
    display: flex
;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    /* letter-spacing: 2px; */
}

.text-content ul {
    padding-left: 50px;
}

.text-content span {
    font-size: calc(var(--heading-1-font) + 15px);
}

.tag-line {
    font-size: var(--body-font);
    margin-top: 2rem;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    min-height: 288px;
    max-height: 288px;
}

@media (max-width: 768px) {
    .text-content ul {
    padding-left: 40px;
}
    .highlight-box {
        aspect-ratio: 1 / 1.5;
        grid-template-rows: 50% 50%;
        grid-template-columns: 1fr;
    }

    .left-al-text .img-holder {
        order: 1;
    }
    
    .left-al-text .text-content {
        order: 2;
    }
}

/* amenities-sec */

.amenities-sec {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: var(--sec-elem-gap);

    position: relative;

    padding: var(--sec-pad-tb);
}

.amenities-tagline {
    text-align: center;
    color: var(--primary-clr);
    font-size: var(--heading-1-font);
}

.amenity-box {
    position: relative;
}

.amenity-box p {
    padding: 2rem;

    background-color: #28282865;
    text-align: start;

    color: #fff;

    font-size: var(--heading-font);

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
}

/* contact-us-sec */

.contact-us-sec {
    padding: var(--sec-pad-rl);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .3rem;
    margin-top: 2rem;
    font-size: var(--body-font);
    text-align: center;
    
    padding: 0 var(--sec-pad-rl);
}

/* footer */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: calc(var(--sec-elem-gap) / 2);

    position: relative;

    padding: 0;

    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 9, 0.6) 100%), url(../images/footer-bg.webp);
    background-size: cover;
    background-position: 50% 50%;

    padding: var(--sec-pad-rl);


}


footer .top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 var(--sec-pad-rl);
}

footer .top p {
    font-size: var(--tagline-font);
    color: #fff;
    font-weight: 600;
}

footer .top img {
    width: 30%;
}

footer .middle {
    /* padding: 0 var(--sec-pad-rl); */
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    text-align: justify;
}

footer .bottom {
    width: 100%;
    aspect-ratio: 1440 / 313;

    background-image: url(../imgs/Gifs/riverin-wave-gif_1.gif);
    background-size: contain;
    background-position: center;

    margin-top: calc(-1 * var(--sec-elem-gap) / 2);

}

@media (max-width: 500px) {
    
    footer .top,
    footer .middle
    {
        padding: 0;
    }
    
    footer .top p {
        font-size: 2.2vh;
    }

    footer .top img {
        width: 40%;
    }
}



/* form */

.form-modal {
    display: none;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: #00000080;
    backdrop-filter: blur(5px);
}


.form-container {
    width: 400px;
    margin: 100px auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-header h2 {
    margin: 0;
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
}

.error img{
        width: 10px;
}

.frmContactus input,
.frmContactus select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    align-items: self-start;
    margin-bottom: 15px;
}

.checkbox-container input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-clr);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #b88a4a;
}

.logo-box.cp-logo {
    width: 9%;
}
.site-address h3 {
    font-size: var(--tagline-font);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.site-address {
    display: flex;
    justify-content: space-between;
    margin: 0 -25px;
    flex-wrap: wrap;
}

.site-address .col-md-6 {
    padding: 0 25px;
}

.site-address p {
    color: #fff;
    margin-bottom: 15px;
}
hr {
    border: 1px solid #545454;
    width: 100%;
}
.btm-link {
    color: #fff;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.btm-link a {
    color: #fff;
    font-size: 14px;
    padding: 0 5px;
}
a.menu-btn img {
    width: 30px;
    height: 30px;
    margin-right: 9px;
}

a.menu-btn {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.location-sec .bottom-1 .img-box img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border: 1px solid #cecece;
    border-radius: 15px;
    padding: 8px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next,.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    display: block!important;
    background: #000;
    box-shadow: none;
    margin-top: -17px
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
    border: 0 solid #000;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: -15px;
    border: 0 solid #000;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next i,.round-arrow.owl-carousel .owl-nav button.owl-prev i {
    font-size: 17px;
    padding: 0!important;
    color: #fff;
    position: relative;
    top: 1px
}

.round-arrow.owl-carousel .owl-nav button img{
    width: 100%;
    height: 100%;
    padding: 9px;
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none!important
}

.owl-dots {
    display: none;
}

.whatsapp-floting-btn {
    background: #29a71a;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    padding: 14px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.whatsapp-floting-btn img {
    width: 27px;
    height: 27px;
    margin-right: 7px;
}
.m-fixed-btn{
    display: none;
}

.location-sec .bottom-1 {
    width: 100% !important;
    border: 0;
}

.location-sec .middle {
    width: 100%;
}

.loaction-row {
    display: flex;
    margin: 30px -25px;
    flex-wrap: wrap;
}

.loaction-row .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 25px;
}
@media(max-width: 767px){
    .logo-box.cp-logo {
    width: 30%;
}
.site-address {}

.site-address .col-md-6 {
    flex: 0 0 100%;
    width: 100%;
}

.site-address p {
    font-size: 12px;
}
.whatsapp-floting-btn {
    display: none;
}
.m-fixed-btn{
    display: flex;
    background: var(--primary-clr);
    height: 40px;
    position: fixed;
    bottom: 0;
    z-index: 9;
    width: 100%;
}
.m-fixed-btn a img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.m-fixed-btn a {
    display: flex;
    align-items: center;
    flex: 0 0 33.33%;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    width: 33.33%;
    padding: 0;
}

body {
    padding-bottom: 40px;
}
a.menu-btn {
    color: #000;
}
.loaction-row .col-md-6 {
    width: 100%;
    flex: 0 0 100%;
}
.location-sec {
    padding: 0 25px;
}
.form-container {
    max-width: 90%;
}
}