@import url("https://fonts.googleapis.com/css?family=Sofia Sans");
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Architects+Daughter");

@font-face {
    font-family: "FontAwesome";
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
        url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color-primary: #1f4774;
    --theme-color-secondary: #c09664;
    --theme-light-color: #f8fcd9;
    --theme-dark-color: #021428;
    --theme-link-color: #06264b;
    --theme-link-hover: #011c3a;
    --theme-bgcolor: rgba(236, 240, 243, 1);
}

html {
    height: 100%;
    scroll-behavior: smooth; /*cursor: url('../image/cursor.png'), auto;*/
}

body {
    font-family: "Roboto" !important;
    line-height: 1.5;
    color: #666;
    margin: 0px;
}
body::-webkit-scrollbar {
    width: 8px;
    height: 100%;
}
body::-webkit-scrollbar-track {
    background: var(--theme-color-secondary);
    border: 3px solid #fff;
}
body::-webkit-scrollbar-thumb {
    background: var(--theme-link-color);
    border: none;
    border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--theme-link-hover);
}
.container {
    width: 90%;
    max-width: 90%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sofia Sans";
    font-weight: 600;
    color: var(--theme-dark-color);
    margin-bottom: 10px;
}
form {
    margin: 0;
    padding: 0;
}
input[type="text"]:focus,
textarea:focus {
    outline: none;
}
::placeholder {
    color: #d0d0d0;
    opacity: 0.9;
}
img {
    max-width: 100%;
}

.br {
    display: block;
    margin-bottom: 10px;
}
.gap {
    height: 40px;
}
.clear {
    clear: both;
}
.bold {
    font-weight: bold !important;
}
.line {
    border: 2px solid var(--theme-color-secondary);
    line-height: 1px;
    margin: 0;
}
.floatr {
    float: right;
}
.floatl {
    float: left;
}
.hidden {
    display: none !important;
}
.bg1 {
    background-color: var(--theme-color-primary);
}
.bg2 {
    background-color: var(--theme-color-secondary);
}
.bg3 {
    background: #eee;
}
.bg4 {
    background: #f3e7da url(../images/) no-repeat 4% bottom;
}
.tprime {
    color: var(--theme-color-primary);
}
.tsecond {
    color: var(--theme-color-secondary);
}
.tdark {
    color: var(--theme-dark-color);
}
.lt-1 {
    line-height: 1.7;
}
.lt-2 {
    line-height: 2;
}

.btn-prime {
    display: inline-block;
    background-color: var(--theme-color-primary);
    color: #fff;
    font-size: 100%;
    font-weight: 500;
    text-decoration: none;
    border: 0;
    border-radius: 20px;
    margin: 12px auto;
    padding: 8px 15px !important;
    cursor: pointer;
}
.btn-prime:hover {
    background-color: var(--theme-dark-color);
    color: #fff !important;
}
.btn-second {
    display: inline-block;
    background: #fff;
    color: var(--theme-color-primary);
    font-size: 100%;
    font-weight: 500;
    text-decoration: none;
    border: 0;
    border-radius: 20px;
    margin: 12px auto;
    padding: 8px 15px !important;
    cursor: pointer;
}
.btn-second:hover {
    background: var(--theme-color-secondary);
    color: #fff;
}
.btn-block1 {
    width: 50%;
    margin: 5px;
    margin-bottom: 20px;
}
.cursor {
    cursor: pointer;
}
.cbox {
    width: 90%;
    position: relative;
    left: 5%;
    padding-bottom: 5px;
}
.notes {
    width: 97%;
    margin: 8px;
    padding: 10px 25px;
    color: black;
    border: 1px solid #000;
}
.yellow {
    border: 1px solid #e09d06;
    color: #e09d06;
}
.red {
    border: 1px solid #e52b00;
    color: #e52b00;
}
.green {
    border: 1px solid #169f00;
    color: #169f00;
}
.orange {
    border: 1px solid #db4a8a;
    color: #db4a8a;
}
.btn-large {
    display: inline-block;
    position: relative;
    top: 20%;
    padding: 10px 35px;
    background-color: var(--theme-color-primary);
    border-radius: 25px;
    font-size: 110%;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.btn-large a {
    color: #fff;
    text-decoration: none;
}
.btn-large:hover {
    background-color: #41163e;
    color: #fff !important;
    cursor: pointer;
}

.heads h1,
.heads h2,
.heads h3,
.heads h4 {
    padding-bottom: 9px;
    margin-bottom: 10px;
    background: url(../images/hd-line.png) no-repeat center bottom;
}

/* Header */

#header {
    display: block;
    width: 100%;
    background: #fff;
    box-shadow: 1px 2px 4px #777;
}

.stickyH {
    position: fixed;
    top: 0;
    z-index: 999;
    -webkit-transition: ease all 0.3s;
    -moz-transition: ease all 0.3s;
    -ms-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.logo {
    display: inline-block;
    width: 25%;
    height: auto;
    padding: 8px;
    text-align: left;
}
.logo img {
    width: 90%;
}

.menubar {
    display: inline-block;
    width: 74%;
    height: auto;
    padding: 10px;
    text-align: right;
}
.menubar a,
.menubar div {
    display: inline-block;
    margin: auto 10px;
    padding: 6px 2px;
    font-size: 110%;
    color: var(--theme-link-color);
    text-decoration: none;
}
.menubar a:hover {
    color: var(--theme-color-secondary);
    border-bottom: 2px solid var(--theme-color-primary);
}
.menubar div:hover {
    color: var(--theme-color-secondary);
}
.menubar a i,
.menubar div i {
    font-size: 140%;
}

.menubar .dropdown {
    margin: 0;
    padding: 0;
}
.menubar .dropdown a {
    margin-right: 5px;
}
.menubar .dropdown i {
    display: inline-block;
    font-size: 110%;
    color: #999;
}

.menubar .dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 39px;
    background-color: #f9f9f9;
    min-width: 275px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.menubar .dropdown .dropdown-content a {
    float: none;
    color: black;
    padding: 5px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.menubar .dropdown .dropdown-content a:hover {
    border-bottom: 2px solid var(--theme-color-primary);
}
.menubar .dropdown:hover .dropdown-content {
    display: block;
}
.menubar .btn-prime {
    color: #eee;
}

.menu-icon {
    display: none;
}

/* Footer */

#main-footer {
    position: relative;
}
#main-footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/footer-bg.png) no-repeat right bottom;
    background-size: 80%;
    opacity: 0.3;
}
#main-footer .container {
    position: relative;
    z-index: 1;
}
#main-footer li a {
    color: #f0f0f0;
    text-decoration: none;
}
#main-footer li a:hover {
    color: #fff;
    text-decoration: underline;
}
#main-footer,
#main-footer h5 {
    color: #fff;
}
.iconbox {
    padding: 10px;
    margin-bottom: 5px;
    color: #fff;
}
.iconbox .fa {
    position: relative;
    width: 35px;
    height: 35px;
    margin: 0 10px 12px 0;
    text-align: center;
    font-size: 160%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
#sub-footer {
    color: #686008;
    margin: 20px;
}
#sub-footer .copyright {
    font-size: 90%;
    line-height: 2;
    font-weight: 400 !important;
    margin: 0;
    padding: 0;
}
#sub-footer .copyright a {
    color: #686008;
    text-decoration: none;
}
#sub-footer .copyright a:hover {
    color: var(--theme-color-primary);
}

.disclaimer {
    width: 84%;
    margin: 0 auto;
    padding: 20px 0 0;
    font-size: 10px;
    line-height: 20px;
    color: #686008;
    text-align: center;
}

.footer-social {
    margin-top: 35px;
}
.footer-social a {
    display: inline-block;
    margin: 0 7px;
    padding: 5px 9px;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    text-decoration: none;
}
.footer-social a:hover {
    color: #d13d7e;
    text-decoration: none;
    border: 2px solid #d13d7e;
}

.scrollup {
    position: fixed;
    bottom: 22px;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 998;
    background-color: var(--theme-link-color);
    color: #fff;
    border-radius: 100%;
}
.scrollup:hover {
    background-color: var(--theme-link-hover);
    color: #fff;
    font-weight: 600;
}
.scrollup .fa {
    font-size: 130%;
}

.WhatsApp-Layer {
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 99;
}

.WA-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 72px;
    height: 72px;
}

@keyframes spinner {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.WA-badge .WA-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: #299c37;
}

/* The Modal (background) */


.zmImg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 15px;
    overflow: scroll;
    background-color: #fff;
}
.zmCont {
    display: block;
    width: 1930px;
    height: 850px;
}
.zmImg .closeBtn {
    color: var(--theme-link-color);
    position: absolute;
    top: 5px;
    left: 20px;
    font-size: 24px;
    font-weight: bold;
    opacity: 1;
}

.zmImg .closeBtn:hover,
.zmImg .closeBtn:focus {
    color: var(--theme-link-primary);
    text-decoration: none;
    cursor: pointer;
}

/* Home page */

.side-bg {
    background: var(--theme-color-primary) url(../images/brand-dark.png) no-repeat bottom right;
    background-size: 50% auto;
    color: #fff;
}
.sideHeadtxt {
    display: inline-block;
    position: relative;
    top: 0px;
    font-size: 150%;
}
.sideHeadtxt h3 {
    color: #fff;
}
.sideHeadtxt img {
    margin: 17% 0 15px 0;
}
.sideMaintxt {
    display: inline-block;
    position: relative;
    margin-top: 26%;
    font-size: 107%;
}

#amenities img {
    border-radius: 20px;
    margin: 10px;
    width: 94%;
    transition: transform 0.5s;
    transform: scale(0.9);
}
#amenities img:hover {
    transform: scale(1.1);
}
@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.bgmap {
    padding: 100px 20px;
    background: var(--theme-color-secondary) url(../images/Andheri-Map.jpg) no-repeat center center;
    background-size: cover;
    color: #000;
    font-size: 116%;
}
.white {
    color: #fff;
}
.split2 {
    width: 48.5%;
    display: inline-block;
    vertical-align: top;
}
.smtx {
    font-size: 83%;
}
.curve {
    border-radius: 5%;
}
.zoomCr {
    cursor: zoom-in;
}
.qrImg {
    width: 150px;
    float: right;
}

#image-container {
    position: relative;
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#image-container img {
    max-width: 98%;
    transition: all 0.2s;
    margin-bottom: 25px;
}

.controls {
    opacity: 0;
    transition: opacity 0.5s;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

#image-container:hover .controls {
    opacity: 1;
}

/* Contact page */
.contact-card {
    border-radius: 0.2rem;
    border: 1px solid #eaf0fc;
    background: #fff;
    box-shadow: 1px 3px 10px rgba(173, 181, 189, 0.4);
    padding: 40px 0;
    margin: 0 15px;
}

.contact-card .infos {
    padding: 0 40px;
    border-right: 1px solid #eaf0fc;
}
.contact-card .infos .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eaf0fc;
    margin-top: 15px;
    padding-bottom: 10px;
}
.contact-card .infos .item a {
    color: var(--theme-link-color);
    text-decoration: none;
}
.contact-card .infos .item a:hover {
    color: var(--theme-link-hover);
}
.contact-card .infos .item i {
    display: block;
    width: 30px;
    font-size: 30px;
    color: var(--theme-color-primary);
    margin: 4px 20px 0 0;
}

.contactForm {
    position: relative;
    padding: 20px 30px;
    border-radius: 25px;
}
.contactForm input,
.contactForm textarea {
    display: block;
    width: 99%;
    border: 1px solid #e0e0e0;
    line-height: 1.7;
    padding: 4px 10px;
    margin: 15px 0;
    border-radius: 4px;
}

@media (min-width: 1500px) /* Extra Large View */ {
    body {
        font-size: 18px;
    }
    .menubar .dropdown .dropdown-content {
        min-width: 310px;
    }
}

@media (max-width: 1290px) {
}

@media (max-width: 1099px) and (min-width: 770px) /* Tablet View */ {
    body {
        font-size: 12px;
    }
    #header {
        height: 70px;
    }
    .container {
        width: 96%;
        max-width: 96%;
    }
    .logo {
        width: 19%;
    }
    .logo img {
        width: 80%;
    }
    .menubar {
        width: 80%;
        font-size: 110%;
    }
    .menubar a,
    .menubar div {
        margin: auto 5px;
    }

    .sideHeadtxt {
        top: 0px;
        font-size: 125%;
    }
    .sideHeadtxt img {
        max-width: 270px;
    }
    .fs-5,
    .fs-4 {
        font-size: 130% !important;
    }
}

@media (max-width: 769px) /* Mobile View */ {
    body {
        font-size: 16px;
    }
    .container {
        width: 94%;
        max-width: 94% !important;
    }
    #header {
        height: auto;
    }
    .stickyH {
        height: auto;
    }
    .logo {
        width: 65%;
        padding: 5px;
    }
    .logo img {
        width: 70%;
    }
    .menu-icon {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        color: var(--theme-link-color);
    }
    .menu-icon:hover {
        color: var(--theme-link-hover);
    }
    .menubar {
        display: none;
        position: absolute;
        top: 65px;
        right: 15px;
        width: 240px;
        background-color: rgba(255, 255, 255, 0.8);
        margin: 0;
        text-align: left;
        padding: 12px;
        border-radius: 5px;
        z-index: 99;
    }
    .menubar a {
        width: 95%;
        text-align: left;
    }
    .menubar .dropdown i {
        position: absolute;
        width: 10px;
        top: 8px;
        right: -10px;
    }
    .menubar .dropdown .dropdown-content {
        right: 0px;
    }

    #main-footer .col-sm-12 {
        padding: 25px 50px;
    }
    #main-footer:after {
        background: url(../images/footer-bg.png) no-repeat center bottom;
        background-size: 250%;
    }

    .side-bg {
        min-height: 400px;
    }
    .sideHeadtxt {
        top: -15px;
        font-size: 80%;
    }
    .sideHeadtxt h3 {
        color: #fff;
        font-size: 130%;
    }
    .sideMaintxt {
        margin-top: 20%;
        font-size: 75%;
    }

    .bgmap {
        padding: 70px 5px;
        background: var(--theme-color-secondary) url(../images/Chembur-Map.png) no-repeat center center;
        background-size: cover;
        color: #fff;
        font-size: 100%;
    }
}

@media (max-width: 500px) /* Small Mobile Screen */ {
    #main-footer:after {
        background: url(../images/footer-bg.png) no-repeat center bottom;
        background-size: 550%;
    }

    .sideMaintxt {
        margin-top: 22%;
    }
    .bgmap {
        padding: 55px 0px;
        font-size: 100%;
    }
    .split2 {
        width: 99.5%;
        display: block;
    }
    .split2 ul {
        margin-bottom: 0;
    }
    .qrImg {
        width: 180px;
        float: none;
        padding: 15px 0;
    }

    #contactDetail .plr50 {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 380px) /* Very Small Mobile Screen */ {
}
