@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@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=Alike&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

body {
    background: #000;
    font-family: "Alike", serif;
    color: #fff;
}

/* HEADER CSS STARTS */
header {
    position: fixed;
    width: 93%;
    left: 50%;
    top: 6px;
    z-index: 99;
    background-color: #000;
    padding: 5px 0;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translate(-50%);
    border-radius: 10px;
    box-shadow: 0 0 3px #fff;
    border: 1px solid #daa520;
}

.newClass {
    background-color: #000;
    box-shadow: 0 0 1px #000000;
    z-index: 999;
    border-radius: 10px;
}

.inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    max-width: 77px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.banner-inner.price-info {
    font-family: 'Lato-LightItalic';
    font-size: 25px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 0px 15px;
    text-transform: uppercase;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    letter-spacing: 1px;
    font-family: 'Montserrat';
}

.newClass .menu ul li a {
    color: #fff;
}

.project-overview-section .know-more {
    text-align: left;
}

/* HEADER CSS ENDS */
.privacy-section {
    margin-top: 90px;
}

.section-title {
    text-align: center;
    font-family: "Alike", serif;
    margin-bottom: 30px;
}

.section-title h1 {
    font-family: "Dancing Script", cursive;
    font-weight: 400;
    color: #DAA520;
}

.privacy-infromation h2 {
    color: #DAA520;
    font-size: 23px;
}

.padding-space-extra {
    padding: 50px 0;
}

.privacy-infromation p {
    font-size: 14px;
    color: #d9d9d9;
}

footer {
    text-align: center;
    font-family: "Alike", serif;
    color: #fff;
    background: #000;
    border-top: 1px dashed #565454;
}

.footer-menu-in a {
    color: #c6822f;
}

.footer-inn p {
    margin-top: 20px;
}

.footer-inn p a {
    font-family: "Dancing Script", cursive;
    font-weight: 400;
    color: #c6822f;
    font-size: 23px;
}
.enquire-outer{
    display:none;
}
@media only screen and (max-width: 991px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .glow-flow-inn {
        margin-top: 20px;
    }

    .button_container {
        position: absolute;
        top: 50%;
        right: 0;
        height: 29px;
        width: 35px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }

    .button_container span {
        background: #fff;
        border: none;
        height: 3px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
        border-radius: 31px;
    }

    .overlay {
        position: fixed;
        background: #000;
        top: 73px;
        left: 0;
        width: 100%;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        max-height: 0;
        -webkit-transition: max-height .3s, -webkit-transform .3s;
        transition: max-height .3s, -webkit-transform .3s;
        -o-transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s, -webkit-transform .3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        overflow: auto;
    }

    .overlay.open {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        max-height: 100vh;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        width: 100%;
    }

    .overlay nav {
        text-align: center;
    }

    .overlay.open li {
        opacity: 1;
        border-bottom: 1px solid gray;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #fff;
    }

    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #fff;
    }

    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }

    .button_container span:nth-of-type(2) {
        top: 11px;
        width: 61%;
        height: 3px;
        right: 0;
        left: auto;
    }

    .button_container span:nth-of-type(3) {
        top: 22px;
    }
}

@media only screen and (max-width: 565px) {
    .logo {
        max-width: 60px;
    }

    header {
        width: 100%;
        top: 0;
        border-radius: 0;
    }

    .newClass {
        border-radius: 0;
    }

    .testimonal-img img {
        max-width: 52px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .choose-info p {
        font-size: 15px;
    }

    .testimonal-section-inn p {
        font-size: 12px;
    }

    .enquire-outer {
        display: block;
        background: #000;
        color: #fff;
        text-align: center;
        font-family: 'Montserrat-Regular';
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        box-shadow: 0 0 3px #4f4a4a;
    }

    .enquire-outer ul {
        display: flex !important;
        justify-content: center;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }

    .enquire-outer ul li {
        font-family: 'Montserrat';
        width: 50%;
        background: #fff;
        color: #000;
        padding: 10px 0;
        text-align: center;
    }

    .enquire-outer ul li a {
        color: #000;
        text-align: center;
    }

    .enquire-outer ul li a .form-setup {
        max-width: 25px;
        margin: 0 auto;
    }

    .enquire-outer ul li a p {
        margin-bottom: 0;
        font-size: 13px;
    }

    .form-fer-call {
        background: #000 !important;
    }

    .form-fer-call a {
        color: #fff !important;
    }

    .contact-us-form .section-title p {
        font-size: 12px;
        color: #dbd8d5;
    }

    .social-links-info {
        width: 100%;
    }

    .padding-space-extra {
        padding: 30px 0;
    }

    .glow-img-fine {
        border: 1px solid #daa520;
    }

    .contact-us-info h3 {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #fff;
        font-size: 20px;
        margin-top: 10px;
    }

    .footer-menu-in {
        margin-bottom: 20px;
        border-bottom: 1px dashed #fff;
    }

    .section-title h1 {
        font-size: 30px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .privacy-infromation h2 {
        font-size: 19px;
    }

    .privacy-infromation p {
        font-size: 14px;
        color: #bababa;
        text-align: justify;
    }
    footer {
    margin-bottom: 30px;
}
}