/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* NOTE
html is set to 62.5% so that all the REM measurements throughout CSS
are based on 10px sizing. So basically 1.5rem = 15px :) */


/*@import "../css/my_styles.css";*/

html {
    font-size: 12px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: normal;
    font-weight: normal;
    font-family: "museo_sans300";
    color: #000;
    margin: 0px;
    -webkit-text-size-adjust: 100%;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
    font-family: 'museo_sans700';
}

h1 {
    font-size: 32px;
    line-height: 26px;
    letter-spacing: 0px;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: 0px;
}

h3 {
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 0px;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: 0px;
}

h5 {
    font-size: 18px;
    line-height: 14px;
    letter-spacing: 0px;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0px;
}


/* Larger than phablet */

p {
    margin-top: 0;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
    color: inherit;
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: inherit;
    outline: 0;
}

a:active,
a:focus {
    outline: none;
    ie-dummy: expression(this.hideFocus=true);
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    /*color: #4f4f4f;
    border-color: #a4a4a4;*/
    outline: 0;
}

.button:focus,
button:focus {
    outline: 0;
}


input[type="submit"]:focus,
input[type="button"]:focus {
    /*color: #4f4f4f;*/
    border-color: #a4a4a4;
    outline: 0;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */

textarea,
select {
    height: 38px;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #fbfbfb;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}


/* Removes awkward default styles on some inputs for iOS */

input[type="email"],
input[type="reset"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
}

.pb-10 {
    padding-bottom: 10%;
}

.form_row input[type="email"],
.form_row input[type="text"] {
    font-size: 12px !important;
}

.brochure_form input[type="email"],
.brochure_form input[type="text"] {
    font-size: 12px !important;
}

.form_row input[type="email"]:focus,
.form_row input[type="text"]:focus {
    font-size: 12px !important;
}

.form_row input[type="email"],
.form_row input[type="text"] {
    font-size: 12px !important;
}

.brochure_form input[type="email"]:focus,
.brochure_form input[type="text"]:focus {
    font-size: 12px !important;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 104px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #e1e1e1;
    outline: 0;
    padding: 8px 5px;
    font-size: 16px;
}

.contact_form input[type="email"]:focus,
.contact_form input[type="text"]:focus {
    padding: 12px 9px 12px !important;
}

.form_row .comment:focus {
    padding: 12px 9px 3px 9px;
}
.tower_select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    padding: 8px 20px;
    font-size: 16px;
    border: 1px solid #e1e1e1;
}
textarea:focus,
select:focus {
    /*border: 1px solid @primary-color;*/
    outline: 0;
    border: 1px solid #e1e1e1;
    padding: 8px 5px 3px;
}

label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="radio"] {
    display: inline;
    margin-top: 2px;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.carousel-indicators{
    margin-bottom: 60px;
}
ol {
    list-style: decimal inside;
    padding: 0;
    margin: 0;
}
.header a{
    text-decoration: none !important;
    color: #000 !important;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

button,
.button {
    margin: 0px;
}

input,
textarea,
select,
fieldset {
    margin: 0px;
}

p,
ul,
ol,
form {
    margin: 0px;
}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.align_right {
    float: right;
}

.align_left {
    float: left;
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    background: #fff;
}

.container {
    position: relative;
    width: 1270px;
    margin: 0 auto;
    padding: 0px;
}

.full_width {
    float: left;
    width: 100%;
}


/* Header */

.header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    top: 20px;
    z-index: 1;
}

.proj_logo {
    float: left;
    width: 78px;
    height: 35px;
}

.proj_logo img {
    float: left;
    width: 100%;
    height: 100%;
}

.navbar {
    float: right;
    width: calc(100% - 80px);
    position: relative;
}

ul.menu_items {
    float: right;
    padding: 0;
    margin-top: 22px;
}

.home_header ul.menu_items {
    margin-top: 12px;
}

.inner_pages .floating ul.menu_items {
    margin-top: 14px;
}

.menu_items li {
    float: left;
    font-family: 'museo_sans500';
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-right: 137px;
    list-style: none;
    cursor: pointer;
    text-transform: uppercase;
}

.menu_items li:last-child {
    margin-right: 0px;
}

.download_btn {
    background: #55b849 url("../images/e-brochure.svg") no-repeat scroll left 21% center;
    background-size: 14px 13px;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    float: left;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 43px;
    width: 216px;
    text-align: center;
}

.download_btn:hover {
    background-color: #47a13c;
}


/* Enquiry Form */

.download_form {
    box-sizing: border-box;
    display: none;
    position: absolute;
    left: 0px;
    bottom: 53px;
    width: 300px;
    background: #fff;
    border: 1px solid #979797;
    border-radius: 4px;
    padding: 20px 12px;
    z-index: 9;
}

.download_header {
    float: left;
    width: 100%;
    text-align: center;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 14px;
    color: #050505;
    padding-bottom: 10px;
}

.close_download {
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-family: 'museo_sans700';
    line-height: 14px;
    position: absolute;
    text-align: center;
    right: 10px;
    top: 10px;
}

.clr {
    clear: both;
}

.brochure_form {
    float: left;
    width: 100%;
}

.submit {
    border: medium none;
    border-radius: 2px;
    background: #55B849;
    cursor: pointer;
    color: #fff;
    float: left;
    font-family: "museo_sans500";
    font-size: 14px;
    line-height: 17px;
    padding: 13px 0;
    text-align: center;
    width: 178px;
    vertical-align: middle;
    margin-right: 11px;
}

.submit {
    margin-right: 0px;
}


/*************************/


/* Footer */

footer {
    float: left;
    width: 100%;
    padding: 52px 0;
    background: #e2e2e2;
    position: relative;
    z-index: 99;
}

.foo_row1 {
    float: left;
    width: 100%;
    margin-bottom: 43px;
}

.foo_assetz_logo {
    float: left;
    width: 75px;
    height: 35px;
}

.foo_assetz_logo img {
    float: left;
    width: 100%;
}

.social_media {
    float: right;
    width: 250px;
    padding-bottom: 10px
}

.social_media a img {
    float: left;
    width: 33px;
    height: 33px;
    margin-right: 10px;
}

.social_media a:nth-of-type(5) img {
    margin-right: 0px;
}

.foo_row2 {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.foo_col1 {
    float: left;
    width: 22.75%;
    margin-right: 2.25%;
}

.foo_col2 {
    float: left;
    width: 22.20%;
    margin-right: 5%;
}

.foo_col3 {
    float: left;
    width: 270px;
    position: relative;
}

.foo_col4 {
    float: right;
    width: 250px;
}

.foo_row2 h4 {
    float: left;
    width: 100%;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 17px;
    color: #000;
    margin-bottom: 4px;
}

.foo_row2 p {
    float: left;
    width: 100%;
    font-family: "museo_sans300";
    font-size: 12px;
    line-height: 20px;
    color: #000;
}

.foo_button {
    float: left;
    width: 216px;
    border: none;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 43px;
    color: #000;
    margin-top: 10px;
    text-transform: uppercase;
    padding: 0;
}

.foo_button:hover {
    background: #000;
    color: #fff;
}

.foo_col3 a:nth-of-type(2) .foo_button {
    margin-bottom: 0px;
}

.foo_col4 h6 {
    cursor: pointer;
    float: left;
    width: 100%;
    font-family: "museo_sans700";
    font-size: 10px;
    line-height: 12px;
    color: #000;
    margin-bottom: 9px;
    text-align: right;
    text-transform: uppercase;
}

.foo_col4 p {
    float: left;
    width: 100%;
    font-family: "museo_sans300";
    font-size: 10px;
    line-height: 11px;
    color: #000;
    margin-bottom: 9px;
    /* text-align: right; */
}

.foo_row3 {
    float: left;
    width: 100%;
    position: relative;
}

.foo_row3 .foo_col1 {
    width: 242px;
    margin-right: 78px;
}

.foo_row3 .foo_col1 p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 27px;
    line-height: 36px;
}

.pattern_theme {
    float: left;
    width: 535px;
    background: #000;
    height: 1px;
    position: relative;
    margin-top: 29px;
}

.pattern_theme:after {
    content: '';
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #63b454;
    border-radius: 50%;
    position: absolute;
    right: -27px;
    top: -9px;
}

.enquire_btn {
    float: left;
    height: 43px;
    width: 154px;
    border: none;
    border-radius: 2px;
    background-color: #373837;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    color: #b8e986;
    cursor: pointer;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-left: 188px;
    padding: 0;
}


/* Enquiry Form */

.query_form {
    box-sizing: border-box;
    display: none;
    position: absolute;
    right: 90px;
    bottom: 51px;
    width: 350px;
    background: #fff;
    border: 1px solid #979797;
    border-radius: 4px;
    padding: 20px 12px;
    z-index: 99;
}

.enquire_header {
    float: left;
    width: 100%;
    text-align: center;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 18px;
    color: #050505;
    padding-bottom: 10px;
}

.close_query {
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-family: 'museo_sans500';
    line-height: 14px;
    position: absolute;
    text-align: center;
    right: 10px;
    top: 10px;
}

.enquiry_form,
.contact_form {
    float: left;
    width: 100%;
}

.ename,
.contact,
.email,
.comment {
    box-sizing: border-box;
    float: left;
    margin: 0 0 10px;
    padding: 9px 6px;
    width: 100%;
    background: #f6f6f6;
    border: none;
    font-family: "museo_sans100";
    font-size: 12px;
    line-height: 12px;
    color: #000;
    text-align: left;
}

.site-visit {
    box-sizing: border-box;
    float: left;
    margin: 0 0 10px;
    padding: 9px 6px;
    width: 100%;
    background: #f2f2f2;
    border: none;
    font-family: "museo_sans100";
    font-size: 12px;
    line-height: 14px;
    color: #000;
    text-align: left;
}


/*.site-visit span:first-child {
    margin-top: 2px;
}*/

.buttonfix {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.71);
    border: none;
    padding-left: 8px;
    padding-top: 5px;
    text-align: center;
    color: #111;
    height: 50px;
    position: fixed;
    top: 300px;
    left: -42px;
    cursor: pointer;
    transform: rotate(-90deg);
    color: #fff;
}

.site-visit label {
    float: right;
    font-family: "museo_sans100";
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000;
    margin-bottom: 0px;
    margin-top: 2px;
}

.comment {
    box-sizing: border-box;
    float: left;
    margin: 0 0 10px;
    padding: 9px 6px 4px;
    width: 100%;
    background: #f2f2f2;
    border: none;
    font-family: "museo_sans100";
    font-size: 12px;
    line-height: 14px;
    color: hsl(171, 10%, 66%);
    color: #565656;
    text-align: left;
}

.submit,
.cancel {
    border: medium none;
    border-radius: 2px;
    background: #55B849;
    cursor: pointer;
    color: #fff;
    float: left;
    font-family: "museo_sans500";
    font-size: 14px !important;
    line-height: 16px;
    padding: 7px 0;
    text-align: center;
    width: 128px;
    vertical-align: middle;
    margin-right: 11px;
    margin-top: 10px;
}

.submit:hover,
.cancel:hover {
    background: #47a13c;
}

.submit {
    margin-right: 0px;
}

label.error {
    color: red;
    float: left;
    width: 100%;
    font-family: "museo_sans300";
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    line-height: 12px;
    margin: -8px 0 12px;
    padding-left: 5px;
}


/*****************/


/* Disclaimer */

.disclaimer_text {
    background: #ffffff;
    float: left;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
    display: none;
}

.close_icon {
    background: url("../images/delete.png") repeat scroll 0 0;
    cursor: pointer;
    display: block;
    height: 18px;
    position: absolute;
    right: -22px;
    top: -10px;
    width: 18px;
    z-index: 9;
}

.disclaimer_header {
    float: left;
    color: #3b4846;
    width: 22%;
    font-family: "museo_sans_rounded300";
    font-size: 30px;
    line-height: 30px;
    margin-top: 10px;
}

.disclaimer_text1,
.disclaimer_text2,
.disclaimer_text3 {
    float: left;
    color: #3b4846;
    width: 26%;
    font-size: 14px;
    line-height: 16px;
    font-family: "museo_sans_rounded300";
    padding-left: 15px;
    box-sizing: border-box;
    text-align: justify;
}


/* Home page */

.site_intro {
    float: left;
    width: 100%;
    position: relative;
}

.cgi_note {
    bottom: 10px;
    font-size: 10px;
    line-height: 12px;
    font-family: museo_sans700;
    left: 10px;
    padding: 5px;
    background: #666;
    border-radius: 5px;
    z-index: 999;
    position: absolute;
}

.cgi_mob {
    display: none;
    bottom: 10px;
    font-size: 10px;
    line-height: 12px;
    font-family: museo_sans700;
    left: 10px;
    padding: 5px;
    background: #666;
    border-radius: 5px;
    z-index: 999;
    position: absolute;
    color: #fff;
}

.margin-top {
    margin-top: 114px;
}

.site_intro img.home_bg {
    float: left;
    width: 100%;
    /*height: 100vh;
    object-fit: cover;*/
}

.home_band {
    display: none;
    height: 100%;
    padding: 13% 0 0;
    position: absolute;
    right: -100%;
    top: 0;
    width: 28%;
    background: rgba(0, 0, 0, 0.71);
    text-align: center;
}

.price_block {
    display: table;
    margin: 0 auto;
    width: 324px;
    padding: 0px 18px;
}

.price_block img {
    display: table;
    width: 100%;
    height: 91px;
    margin: 0 auto;
}

.toggle_text {
    float: left;
    width: 100%;
    border-top: 1px solid #979797;
    margin: 28px 0 0;
    padding-top: 23px;
}

.toggle_visible {
    float: left;
    width: 100%;
    display: block;
}

.visible_onscroll {
    float: left;
    width: 100%;
    display: none;
}

.visible_onscroll p {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans300";
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.know_more {
    margin: 0 auto;
    display: table;
    height: 43px;
    width: 215px;
    border-radius: 2px;
    background-color: #55b849;
    color: #fff;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 43px;
    text-align: center;
}

.price_block h4 {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    opacity: 0.5;
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.brand_tag {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans700";
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.site_visit {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.site_visit span {
    font-family: "museo_sans700";
    font-size: 22px;
    line-height: 24px;
    opacity: 0.5;
    text-transform: uppercase;
}

.igbc {
    display: table;
    width: 67px;
    height: 67px;
    background: url('../images/igbc_logo.svg');
    background-size: 67px 67px;
    margin: 0 auto;
}

.scroll-down {
    float: left;
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 38px;
    margin: 0 auto;
    z-index: 99;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .6s;
    letter-spacing: 0.08em;
    animation-name: scrollBounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.scroll_txt button {
    width: 215px;
    height: 43px;
    background: #55B849;
    border: none;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.scroll-down img {
    margin: 0 auto;
    width: 23px;
    height: auto !important;
    position: absolute;
    left: 0;
    right: 0;
}

@keyframes scrollBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.scroll_txt {
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    font-family: "museo_sans500";
    font-size: 8px;
    line-height: 10px;
    margin-top: 10px;
}


/* Projecs page */

.inner_pages .header {
    float: left;
    background: #fff;
    padding: 13px 0;
    position: relative;
    top: 0;
}

.inner_pages .header .navbar {
    width: calc(100% - 62px);
}

.inner_pages .header .proj_logo {
    width: 60px;
    height: 61px;
}

.inner_pages .header.floating .proj_logo {
    width: 40px;
    height: 41px;
}

.inner_pages .menu_items li {
    color: #858585;
}

.inner_pages .menu_items li:hover {
    color: #000;
    font-family: 'museo_sans500';
}

.home_header .menu_items li:hover {
    transform: scale(1.04, 1.04);
}

.upper_sec {
    float: left;
    width: 100%;
    background: #f3f3f3;
    padding-top: 68px;
}

.proj_intro {
    float: left;
    width: 100%;
}

.proj_intro .text_cen {
    position: relative;
}

.project_element {
    float: left;
    position: absolute;
    width: 40px;
    height: 1px;
    background: #b5b5b5;
    top: -18px;
    left: 0;
    opacity: 0;
    transition: all 2s linear;
    overflow: visible !important;
}

.element_animation {
    background-position: left bottom;
}

.specs_block .project_element,
.amenities_block .project_element,
.gal_block .project_element,
.conupdate_block .project_element {
    width: 42px;
    opacity: 0;
    left: 0;
    overflow: visible !important;
}

.project_element:before {
    content: "";
    border: 1px solid #55b849;
    /*opacity: 0.54;*/
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: -6px;
    right: -22px;
}

.text_cen {
    display: table;
    margin: 0 auto;
    width: 620px;
    padding: 0 22px;
    position: relative;
}

.project_page h1,
h1 {
    float: left;
    width: 100%;
    opacity: 0.22;
    color: #63b454;
    font-family: "museo_sans900";
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    margin-bottom: 17px;
    text-transform: uppercase;
}

.project_page p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.proj_element {
    display: table;
    margin: 0 auto 18px;
    width: 23px;
    height: 62px;
}

.proj_element .proj_line {
    position: relative;
    width: 1px;
    height: 25px;
    background: #b5b5b5;
    margin: 0 auto;
    display: block;
    opacity: 0;
}

.proj_line:before {
    content: "";
    width: 23px;
    height: 23px;
    border: 1px solid #63b454;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    bottom: -12px;
}

.masterplan_intro {
    float: left;
    width: 100%;
    position: relative;
}

.masterplan_layout {
    position: relative;
    float: left;
    width: 100%;
}

.masterplan_layout img {
    float: left;
    width: 100%;
    position: relative;
    /*height: 856px;*/
    object-fit: cover;
}

.masterplan_band {
    height: 100%;
    padding: 4% 2%;
    position: absolute;
    right: -100%;
    top: 0;
    width: 23.39%;
    background: rgba(0, 0, 0, 0.66);
    text-align: center;
}

.masterplan_band ul {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    min-height: 416px;
}

.masterplan_band li {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans500";
    font-size: 14px;
    line-height: 45px;
    list-style: none;
    text-align: left;
    padding-left: 15px;
}

.masterplan_band li.entr span {
    background: url('../images/project/entrance.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.tennis span {
    background: url('../images/project/tennis.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.basket span {
    background: url('../images/project/basketball.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.fball span {
    background: url('../images/project/football.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}


/*.masterplan_band li.vball span{
    background: url('../images/project/football.svg')no-repeat center left 0;
   background-size: 40px 40px;
   padding-left: 50px;
}*/

.masterplan_band li.club span {
    background: url('../images/project/clubhouse.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.cext span {
    background: url('../images/project/clubhouse.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.yogadeck span {
    background: url('../images/project/yoga.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.amenities span {
    background: url('../images/project/civic.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}


/*.masterplan_band li.organic span{
    background: url('../images/project/farming.svg')no-repeat center left 0;
    background-size: 40px 40px;
	padding-left: 50px;
}*/

.masterplan_band li.swim2 span {
    background: url('../images/project/yoga.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}

.masterplan_band li.swim1 span {
    background: url('../images/project/swimming.svg')no-repeat center left 0;
    background-size: 40px 40px;
    padding-left: 50px;
}


/*.masterplan_band li.skatingring span{
                background: url('../images/project/skating.svg')no-repeat center left 0;
               background-size: 40px 21px;
			   padding-left: 50px;
            }
             .masterplan_band li.organicgarden span{
                background: url('../images/project/farming.svg')no-repeat center left 0;
                background-size: 40px 20px;
				padding-left: 50px;
            }
             .masterplan_band li.volleyballcourt span{
                background: url('../images/project/volleyball.svg')no-repeat center left 0;
                   background-size: 40px 23px;
				   padding-left: 50px;
            }*/

.key_point {
    color: rgba(255, 255, 255, 0.59);
    display: none;
    float: left;
    font-family: "museo_sans700";
    font-size: 50px;
    line-height: 62px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.key_point span {
    float: left;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    line-height: 17px;
    width: 100%;
    margin-top: -12px;
}

.masterplan_element {
    float: left;
    width: 1px;
    height: 96px;
    background: #b5b5b5;
    /*background: url('../images/project/masterplan_line.svg')no-repeat;
    background-size: 19px 140px;*/
    position: absolute;
    left: 78%;
    opacity: 0;
    bottom: 10px;
    transition: all 1s ease;
}

.masterplan_element:before {
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid #63b454;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    bottom: -28px;
}

.apartments_intro {
    float: left;
    width: 100%;
    position: relative;
    padding-top: 96px;
}

.project_page .apartments_intro p {
    margin-bottom: 70px;
}

.apartments_element {
    position: absolute;
    width: 30px;
    height: 1px;
    background: #d8d8d8;
    top: 58px;
    left: 16%;
    opacity: 0;
    transition: all 1s ease;
}

.apartments_element:before {
    content: "";
    border: 1px solid #55b849;
    /*opacity: 0.54;*/
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    bottom: -6px;
    left: 16%;
}

.apartments_menu {
    display: table;
    width: 392px;
    margin: 0 auto;
    position: relative;
}

.apt_type.active {
    font-family: 'museo_sans700';
    color: #000;
    border-bottom: 7px solid rgba(99, 180, 84, 0.48);
}

.apt_type {
    float: left;
    width: 70px;
    margin-right: 37px;
    color: #7d7c7c;
    cursor: pointer;
    font-family: 'museo_sans500';
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    border-bottom: 7px solid #cbcbcb;
    padding-bottom: 7px;
}

.apt_type span {
    font-family: 'museo_sans300';
    font-size: 10px;
    line-height: 10px;
}

.apt_type:last-child {
    margin-right: 0px;
}

.floorplans_row {
    float: left;
    width: 100%;
    background: #fff;
    padding: 30px 0px 60px;
}

.apptype_block {
    display: table;
    width: 1048px;
    margin: 0 auto;
    position: relative;
}

.view_floorplan {
    float: left;
    width: 100%;
}

.floor_info {
    float: left;
    width: 214px;
    text-align: right;
    padding-left: 10px;
    position: relative;
    margin-top: 38px;
}

.info_line {
    position: absolute;
    width: 1px;
    height: 244px;
    background: #d8d8d8;
    top: 0;
    left: -45px;
    transition-duration: 3s;
    opacity: 0;
}

.info_line:before {
    content: "";
    border: 1px solid #55b849;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    bottom: -25px;
    left: -24px;
}

.floor_img {
    float: right;
    width: 773px;
    position: relative;
}

.floor_info h2 {
    float: left;
    width: 100%;
    opacity: 0.48;
    color: #63b454;
    font-family: "museo_sans700";
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 60px;
    text-align: right;
    position: relative;
}

.u_line {
    float: left;
    width: 42px;
    height: 1px;
    background: #d8d8d8;
    margin-bottom: 28px;
    position: relative;
    margin-right: 22px;
    opacity: 0;
}

.u_line:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #63b454;
    background: #fff;
    position: absolute;
    right: -22px;
    bottom: -6px;
}

.floor_with {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 18px;
    line-height: 22px;
    text-align: right;
    margin-bottom: 16px;
}

.floor_with span {
    font-family: "museo_sans700";
    font-size: 20px;
    line-height: 25px;
}

.floor_with.rera {
    font-size: 14px;
}

.norms_tag {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    margin-bottom: 4px;
}

.floor_info p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    margin-bottom: 31px;
}

.note_tag {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans100_italic";
    font-size: 12px;
    line-height: 14px;
    text-align: right;
}

.floor_tit {
    float: left;
    width: 100%;
    padding-left: 20px;
}

.floor_tit h3 {
    float: left;
    color: #000;
    font-family: "museo_sans700";
    font-size: 21px;
    line-height: 57px;
    text-align: center;
}

.floor_switch {
    cursor: pointer;
    position: absolute;
    width: 214px;
    height: 57px;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 58px;
    right: 0;
    top: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 45px center;
    background-size: 25px 18px;
    padding-left: 45px;
}

.floor_switch:hover {
    background-color: #88C796;
}


/*.floor_switch:after{
    content: "";
    background: rgba(198,231,205,1) url('../images/project/right_arrow.svg')no-repeat right 0 center;
    background-size: 25px 18px;
}*/

.plan_block {
    float: left;
    width: 100%;
    border: 1px solid #D8D8D8;
    /*padding: 23px 0;*/
    height: 610px;
    position: relative;
}

.plan_block img {
    position: absolute;
    left: 0;
    right: 0;
    top: 33px;
    bottom: 0;
    margin: auto;
    display: table;
}

.plan_block img.bhk1_3d {
    width: 646px;
    display: table;
}

.plan_block img.bhk1_2d {
    width: 446px;
    display: none;
}

.bhk1_foyer .plan_block img.bhk1_3d {
    width: 656px;
}

.bhk1_foyer .plan_block img.bhk1_2d {
    width: 409px;
}

.bhk2_typical .plan_block img.bhk1_3d {
    width: 685px;
    top: 57px;
}

.bhk2_typical .plan_block img.bhk1_2d {
    width: 348px;
    top: 37px;
}

.bhk3_typical .plan_block img.bhk1_3d {
    width: 697px;
}

.bhk3_typical .plan_block img.bhk1_2d {
    width: 307px;
}

.bhk1_foyer,
.bhk2_typical,
.bhk3_typical {
    display: none;
}

.apt_sel_row {
    float: left;
    width: 100%;
    position: relative;
}

.apartmentimg {
    float: left;
    width: 100%;
    height: 576px;
    background: url('../images/project/apartment-selector.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-clip: initial;
    background-color: initial;
    background-origin: initial;
    data-ios-fix="false";
}

.fix_img {
    position: fixed;
    top: 87px;
    left: 0;
    width: 100%;
    height: 707px;
}

.apartment_tag {
    position: absolute;
    width: 460px;
    padding: 10px 20px;
    box-sizing: border-box;
    margin: auto;
    left: 0;
    right: 0;
    top: 189px;
    text-align: center;
}

.apartment_tag p {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans300";
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 45px;
}

.apartment_tag button {
    border: none;
    cursor: pointer;
    display: table;
    margin: 0 auto;
    height: 43px;
    width: 214px;
    border-radius: 2px;
    background-color: #55b849;
    color: #fff;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 43px;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
}

.apartment_tag button:hover {
    background-color: #47a13c;
}

.partners_row {
    float: left;
    width: 100%;
    padding: 95px 0px 110px;
    background: #f3f3f3;
    position: relative;
}

.partners_row h1 {
    margin-bottom: 20px;
}

.partners_info {
    background-color: #fff;
    box-shadow: 0 5px 4px 2px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    width: 839px;
    padding: 35px 0px;
    position: relative;
}

.partners_line {
    position: absolute;
    width: 24px;
    height: 106px;
    background: url('../images/project/partners_line.svg')no-repeat;
    background-size: 24px 106px;
    left: -45px;
    top: -152px;
    opacity: 0;
    transition-duration: 2s;
}

.partners_tit {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.partners_tit span {
    font-family: "museo_sans500";
    font-size: 18px;
    line-height: 18px;
    display: block;
}

.about_partners {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0px 106px;
}

.about_partners p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin: 0px;
}


/*.partners_info .bx-pager{
    background: rgba(35,31,32,0.5);
}*/

.partners_info .bx-controls-direction a {
    position: absolute;
    margin-top: 0px;
    outline: 0;
    width: 63px;
    height: 56px;
    text-indent: -9999px;
    z-index: 9;
    right: -63px;
    top: inherit !important;
}

.partners_info .bx-prev {
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat center !important;
    background-size: 25px 18px !important;
    left: inherit;
    bottom: -45px;
}

.partners_info .bx-next {
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat center !important;
    background-size: 25px 18px !important;
    bottom: 14px;
}


/* Specs page */

.specs_intro {
    float: left;
    margin-bottom: 62px;
}

.specs_block {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
    position: relative;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: overflow;
}

.in_specs_block,
.ex_specs_block {
    cursor: pointer;
    width: 50%;
    position: relative;
}

.in_specs_block {
    float: left;
}

.ex_specs_block {
    float: right;
}

.in_specs_block img,
.ex_specs_block img {
    float: left;
    width: 100%;
    /*height: 100vh;*/
}

.specs_tit_tab {
    cursor: pointer;
    width: 100%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    height: 44px;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    bottom: 0;
}

.specs_tit {
    float: left;
    width: 100%;
    opacity: 0.8;
    color: #fff;
    font-family: "museo_sans900";
    font-size: 60px;
    letter-spacing: 2px;
    line-height: 44px;
}

.specs_tit_sm {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans700";
    font-size: 16px;
    line-height: 12px;
    position: relative;
    margin-bottom: 17px;
    margin-top: -12px;
}

.ani_arrow {
    display: table;
    margin: 0 auto;
    width: 25px;
    /*position: absolute;*/
    right: 48%;
    bottom: 30px;
}

.amenities_right .ani_arrow {
    right: inherit;
    left: 48%;
}

.ex_specs_block .ani_arrow {
    left: 48%;
    right: inherit;
}

.specs_arrow {
    position: relative;
    width: 25px;
    height: 1px;
    background: #fff;
    -webkit-transition: .2s;
    transition: .2s;
}

.specs_tit_tab:hover .specs_arrow {
    width: 2.6666666667em;
}

.specs_arrow i {
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 5px;
    float: left;
    margin-top: -5px;
}

.specs_arrow i.right {
    float: right;
}

.specs_arrow .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.specs_arrow .left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.interior_specs,
.exterior_specs {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.interior_slide:focus,
.exterior_slide:focus {
    outline: none
}

.outer {
    overflow: hidden !important;
}

.interior_slide::-webkit-scrollbar {
    width: 0 !important;
}

.interior_slide {
    -ms-overflow-style: none !important;
}

.exterior_slide::-webkit-scrollbar {
    width: 0 !important;
}

.exterior_slide {
    -ms-overflow-style: none !important;
}

::-webkit-scrollbar {
    width: 0px;
    height: 10px;
}

.interior_slide {
    width: 80%;
    background: #f4f4f4;
    position: absolute;
    right: -80%;
    top: 0;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
}

.exterior_slide {
    width: 80%;
    background: #f4f4f4;
    position: absolute;
    left: -80%;
    top: 0;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
}

.interior_slide::-webkit-scrollbar {
    display: none;
}

.interior_slide h1 {
    margin-bottom: 0px;
}

.specs_block .text_cen {
    position: relative;
}

.interior_slide .project_element {
    left: 43%;
}

.interior_slide .project_element:before {
    content: "";
    border: 1px solid #55b849;
    /*opacity: 0.54;*/
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: -6px;
    right: -22px;
}

.interior_row {
    float: left;
    width: 100%;
    margin-top: 42px;
}

.interior_col {
    float: left;
    width: 33.33%;
    padding: 0px 5%;
}

.interior_img {
    float: left;
    height: 154px;
    position: relative;
    width: 100%;
}

.interior_img img {
    display: table;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.line_img img {
    margin-left: -120px;
}

.interiors_title {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 11px;
}

.specs_text {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.specs_text p {
    margin-top: 10px;
    margin-bottom: 0;
}

.specs_text span {
    display: block;
    margin-top: 15px;
    font-family: "museo_sans700";
}

.specs_text span:first-child {
    margin-top: 0;
}

.specs_switch {
    cursor: pointer;
    position: absolute;
    width: 214px;
    height: 57px;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 57px;
    /*text-align: center;*/
    right: 0;
    top: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 51px center;
    background-size: 25px 18px;
    padding-left: 51px;
}

.in_switch {
    left: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat left 51px center;
    background-size: 25px 18px;
    padding-left: 86px;
}

.bg_fix {
    float: left;
    width: 100%;
    height: 768px;
    background: url('../images/specs/interiors_bg.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-clip: initial;
    background-color: initial;
    background-origin: initial;
}


/* Amenities page */

.amenities_intro .text_cen {
    width: 724px;
    padding: 0;
}

.project_page .amenities_intro p {
    width: 627px;
    margin: 0px auto 76px;
    display: table;
    padding: 0 22px;
    float: none;
}

.amenities_intro h3,
.text_cen h3 {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 35px;
}

.amenities_intro .text_cen h1::before {
    right: 86px;
}

.amenities_row {
    float: left;
    width: 100%;
}

.amenities_left {
    float: left;
    width: 50%;
    position: relative;
}

.amenities_right {
    float: right;
    width: 50%;
    position: relative;
}

.amenities_left img,
.amenities_right img {
    cursor: pointer;
    float: left;
    width: 100%;
    position: relative;
}

.video_icon {
    display: table;
    margin: 0 auto;
    background: url('../images/amenities/video-icon.svg')no-repeat center;
    width: 42px;
    height: 42px;
    background-size: 42px 42px;
}

.amenities_page {
    float: left;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.amenities_block {
    float: left;
    width: 100%;
    padding: 70px 0px 0px;
    position: absolute;
    background: #f3f3f3;
    z-index: 999;
}

.amenities_page .ame_switch,
.feel_fit .ame_switch,
.design_iq .ame_switch {
    right: 0;
    left: inherit;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 71px center;
    background-size: 25px 18px;
}

.conupdate_block .ame_switch {
    right: 0;
    left: inherit;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 71px center;
    background-size: 25px 18px;
    padding-left: 71px;
}

.ame_switch {
    cursor: pointer;
    position: absolute;
    width: 214px;
    height: 57px;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 58px;
    /*text-align: center;*/
    top: 0;
    left: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat left 71px center;
    background-size: 25px 18px;
    text-transform: uppercase;
    padding-left: 71px;
}

.go_social,
.tech {
    left: -100%;
}

.feel_fit,
.design_iq,
.go_green {
    right: -100%;
}

.go_social .ame_switch,
.tech .ame_switch {
    left: 0;
    right: inherit;
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat left 71px center;
    background-size: 25px 18px;
    padding-left: 106px;
}

.green_tabrow {
    display: table;
    margin: 0 auto;
    width: 961px;
}

.design_tabrow {
    display: table;
    margin: 0 auto;
    width: 473px;
}

.design_tabrow .green_tabs {
    padding: 22px 38px;
}

.green_block {
    float: left;
    width: 100%;
    position: relative;
}

.position {
    float: left;
    width: 100%;
    position: relative;
    height: 1px;
}

.green_tabs {
    cursor: pointer;
    float: left;
    width: 229px;
    height: 65px;
    color: #fff;
    font-family: "museo_sans300";
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding: 10px 38px;
    margin-right: 15px;
    background: #97cb8e;
}

.green_tabs:last-child {
    margin-right: 0px;
}

.green_tabs.active {
    background: #fff;
    color: #000;
    font-family: "museo_sans700";
}

.green_ind_row {
    float: left;
    width: 100%;
    background: #fff;
    padding: 68px 0px;
}

.green_ind_block {
    float: left;
    width: 100%;
}

.green_ind_block img {
    display: table;
    margin: 0 auto;
}

.energy_con,
.solid_waste,
.low_landscape,
.ext_con {
    display: none;
}

.feel_fit_block {
    display: table;
    margin: 0 auto;
    width: 940px;
}

.feel_fit_row {
    float: left;
    width: 100%;
    /*margin-bottom: 53px;*/
}

.feel_fit_tab {
    float: left;
    width: 196px;
    height: 171px;
    margin-right: 52px;
    border: 1px solid #c7c6c6;
    margin-bottom: 53px;
}


/*.feel_fit_row .feel_fit_tab:nth-child(9),.feel_fit_row .feel_fit_tab:nth-child(10),
.feel_fit_row .feel_fit_tab:nth-child(11){margin-bottom: 0px;}*/

.feel_fit_tab.m_right {
    margin-right: 0px;
}

.feel_fit_img {
    float: left;
    height: 103px;
    position: relative;
    width: 100%;
}

.feel_fit_img img {
    display: table;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 16px;
    position: absolute;
}

.feel_fit_tab h5 {
    float: left;
    width: 100%;
    color: #0e0f0f;
    font-family: "museo_sans_rounded700";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.feel_fit_tab p {
    float: left;
    width: 100%;
    color: #0e0f0f;
    font-family: "museo_sans_rounded300";
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    padding: 0px 36px;
    margin: 0;
}


/* video */

.video_overlay {
    background: rgba(0, 0, 0, 1.0);
    float: left;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: none;
    cursor: pointer;
}

.fullvideo_frame {
    display: none;
    height: auto;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 860px;
    z-index: 9999;
}

.fullvideo_frame .ytd_video {
    width: 100%;
    height: 300px;
}

.close_fulllife {
    background: hsla(0, 0%, 0%, 0) url("../images/amenities/cancel_button.png") no-repeat scroll right 10px center;
    cursor: pointer;
    float: right;
    height: 40px;
    position: absolute;
    right: 20%;
    top: -30px;
    width: 100%;
    z-index: 99999;
    display: none;
}

.video_row {
    position: relative;
}


/*******************/


/* Gallery page */

.gal_tabs {
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

.gal_block,
.conupdate_block {
    float: left;
    width: 100%;
    padding: 70px 0px 0px;
    background: #f3f3f3;
    position: absolute;
    top: 0;
    z-index: 999;
}

.conupdate_block h1 {
    line-height: 60px;
    margin-bottom: 10px;
}

.conupdate_block h3 {
    margin-bottom: 28px;
}

.conupdate_block {
    right: -100%;
}

.internal_block {
    right: -100%;
}

.external_block {
    left: -100%;
}

.gslider {
    width: 100%;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    color: white;
}

.slider img {
    display: block;
    margin: auto;
}

.gallery_switch {
    cursor: pointer;
    position: absolute;
    width: 214px;
    height: 57px;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 58px;
    top: 0;
    right: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 54px center;
    background-size: 25px 18px;
    text-transform: uppercase;
    padding-left: 54px;
}

.int_gal_switch {
    right: inherit;
    left: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat left 54px center;
    padding-left: 89px;
}

.gradient_bg {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.49);
    width: 100%;
    height: 100%;
}


/* Constrution update page */

.con_intro,
.location_intro {
    position: relative;
}

.con_intro .project_element:before,
.location_intro .project_element:before {
    content: "";
    border: 1px solid #55b849;
    /*opacity: 0.54;*/
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: -6px;
    right: -18px;
}

.text_cen p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans300";
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.cons_block {
    float: left;
    width: 100%;
    padding: 32px 0 72px;
}

.construction_update_row {
    width: 947px;
    margin: 0px auto;
    display: table;
}

.cons_block h3 {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 11px;
}

.construction_update_col {
    width: 307px;
    float: left;
    position: relative;
    margin-right: 13px;
    cursor: pointer;
}

.construction_update_col:last-child {
    margin-right: 0px;
}

.construction_update_col img {
    float: left;
    width: 100%;
}

.construction_text {
    color: #fff;
    cursor: pointer;
    float: left;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    top: 86px;
}

.coming_soon {
    width: 921px;
    margin: 45px auto 0;
    display: table;
    height: 114px;
    background-color: rgba(155, 155, 155, 0.21);
    ;
}

.coming_soon h3 {
    margin: 30px 0px 9px;
}

.coming_soon p {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.cons_block .bx-controls-direction a {
    position: absolute;
    margin-top: 0px;
    outline: 0;
    width: 63px;
    height: 56px;
    text-indent: -9999px;
    z-index: 9;
    right: -63px;
    top: inherit !important;
}

.cons_block .bx-pager {
    display: none;
}

.cons_block .bx-next {
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat center !important;
    background-size: 25px 18px !important;
    bottom: 60px;
}

.cons_block .bx-prev {
    background: rgba(198, 231, 205, 1) url('../images/project/left_arrow.svg')no-repeat center !important;
    background-size: 25px 18px !important;
    left: inherit;
    bottom: 0px;
}

.cons_block .bx-next:hover,
.cons_block .bx-prev:hover {
    background-color: #88C796 !important;
}

.partners_info .bx-next:hover,
.partners_info .bx-prev:hover {
    background-color: #88C796 !important;
}


/***************************/


/* Contact Us */

.contact_cen {
    display: table;
    margin: 0 auto;
    width: 1094px;
    padding: 0 0 60px;
    position: relative;
}

.form_row {
    float: left;
    width: 100%;
    /*margin-bottom: 22px;*/
}

.form_row:last-child {
    margin-bottom: 0px;
}

.form_left {
    float: left;
    width: 47.6%;
}

.form_right {
    float: right;
    width: 47.6%;
}

.form_row .ename,
.form_row .contact,
.form_row .email,
.form_row .comment,
.form_row .site-visit {
    margin-bottom: 22px;
    background: #fff;
    padding: 13px 10px 13px;
    height: 38px;
}

.form_row .site-visit {
    padding: 10px;
    height: 38px;
}

.form_row label.error {
    margin: -16px 0 20px;
}

.form_row .submit,
.form_row .cancel {
    margin-top: 0;
    width: 151px;
    padding: 12px 0;
}

.form_row .comment {
    min-height: 89px;
}

#map-canvas {
    width: 100%;
    height: 432px;
    cursor: pointer;
}


/* Google maps removing default styles*/

.gm-bundled-control-on-bottom,
.gm-style-cc {
    display: none;
}

a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

a[href^="https://maps.google.com/maps"] {
    display: none !important;
}


/************************/


/* Location Page */

.loc_video_frame {
    display: table;
    width: 702px;
    margin: 0 auto 87px;
    position: relative;
}

.loc_video_frame iframe {
    float: left;
    width: 100%;
    height: 426px;
}

.loc_video,
.loc_video img {
    float: left;
    width: 100%;
}

.location_intro p {
    width: 627px;
    margin: 0px auto 76px;
    display: table;
    padding: 0 36px;
    float: none;
}

.locations_row {
    float: left;
    width: 100%;
}

.locations_col {
    float: left;
    width: 33.3%;
    position: relative;
    display: table;
}

.hover_location {
    cursor: pointer;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.locations_col:hover .loc_tit_tab {
    z-index: 2;
}

.locations_col:hover .hover_location {
    display: block;
}

.locations_col img {
    cursor: pointer;
    float: left;
    width: 100%;
    position: relative;
}

.loc_tit_tab {
    cursor: pointer;
    width: 100%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 46%;
}

.all_loc {
    top: 36%;
}

.sports_loc {
    top: 42%;
}

.locations_tit {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans700";
    font-size: 18px;
    line-height: 22px;
    vertical-align: middle;
    display: table-cell;
    margin-bottom: 14px;
}

.allloc_btn {
    cursor: pointer;
    display: table;
    width: 152px;
    height: 40px;
    background: #fff;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
}

.routes_sec {
    float: left;
    width: 100%;
    background: #000;
    padding: 84px 0;
    margin-bottom: 87px;
}

.routes_row {
    display: table;
    width: 962px;
    margin: 0 auto;
}

.routes_row h1 {
    opacity: 0.48;
}

.routes_row h4 {
    float: left;
    width: 100%;
    color: #fff;
    font-family: "museo_sans900";
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 44px;
}

.nearby_loc {
    float: left;
    width: 177px;
    height: 177px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    margin-right: 84px;
}

.routes_row a:nth-of-type(4) .nearby_loc {
    margin-right: 0px;
}

.nearby_loc:hover {
    background: #fff;
    cursor: pointer;
}

.nearby_loc:hover div {
    color: #000;
}

.nearby_loc div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    font-family: "museo_sans500";
    font-size: 14px;
    line-height: 17px;
    height: 34px;
    text-align: center;
    vertical-align: middle;
}

.location_page {
    float: left;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.map_block {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
}

.loc_block {
    float: left;
    width: 100%;
    position: relative;
    background: #f3f3f3;
    /*padding: 70px 0px 0px;
    z-index: 999;
    right: 0;*/
}

.loc_navigation {
    position: absolute;
    top: 37px;
    left: 67px;
    width: auto;
    display: table;
}

.map_main {
    height: 750px;
    top: 0;
    left: 0;
    width: 100%;
    float: left;
    position: absolute;
}

.loc_list {
    float: left;
    width: 78px;
}

.loc_tab {
    cursor: pointer;
    float: left;
    width: 78px;
    height: 64px;
    background: #141414;
    margin-bottom: 3px;
}

.loc_tab.active .loc_icon img {
    display: none;
}

.all_tab.active .loc_icon {
    background: url('../images/location/list-icons/all-location_act.svg')no-repeat center;
    background-size: 29px 14px;
}

.con_tab.active .loc_icon {
    background: url('../images/location/list-icons/connectivity_act.svg')no-repeat center;
    background-size: 13px 25px;
}

.school_tab.active .loc_icon {
    background: url('../images/location/list-icons/schools_act.svg')no-repeat center;
    background-size: 34px 21px;
}

.res_tab.active .loc_icon {
    background: url('../images/location/list-icons/restaurants_act.svg')no-repeat center;
    background-size: 14px 22px;
}

.malls_tab.active .loc_icon {
    background: url('../images/location/list-icons/malls_act.svg')no-repeat center;
    background-size: 17px 25px;
}

.groc_tab.active .loc_icon {
    background: url('../images/location/list-icons/grocery_act.svg')no-repeat center;
    background-size: 26px 25px;
}

.it_tab.active .loc_icon {
    background: url('../images/location/list-icons/it-campus_act.svg')no-repeat center;
    background-size: 21px 21px;
}

.hos_tab.active .loc_icon {
    background: url('../images/location/list-icons/hospitals_act.svg')no-repeat center;
    background-size: 26px 22px;
}

.sp_tab.active .loc_icon {
    background: url('../images/location/list-icons/sports_act.svg')no-repeat center;
    background-size: 24px 24px;
}

.loc_tab.active .list_tit {
    color: #000;
}

.all_tab.active {
    background-color: #fff;
}

.con_tab.active {
    background-color: #86a781;
}

.school_tab.active {
    background-color: #e6d582;
}

.res_tab.active {
    background-color: #c686bf;
}

.malls_tab.active {
    background-color: #f5c16d;
}

.groc_tab.active {
    background-color: #acc88c;
}

.it_tab.active {
    background-color: #93cee3;
}

.hos_tab.active {
    background-color: #f38181;
}

.sp_tab.active {
    background-color: #c89c7e;
}

.loc_icon {
    float: left;
    height: 40px;
    position: relative;
    width: 100%;
}

.loc_icon img {
    display: table;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.list_tit {
    float: left;
    width: 100%;
    color: #C0C0C0;
    font-family: "museo_sans700";
    font-size: 8px;
    line-height: 9px;
    text-align: center;
    padding: 0px 6px;
}

.loc_switch {
    cursor: pointer;
    position: absolute;
    width: 214px;
    height: 57px;
    color: #000;
    font-family: "museo_sans700";
    font-size: 14px;
    line-height: 57px;
    /*text-align: center;*/
    top: 0;
    right: 0;
    background: rgba(198, 231, 205, 1) url('../images/project/right_arrow.svg')no-repeat right 71px center;
    background-size: 25px 18px;
    text-transform: uppercase;
    z-index: 9;
    padding-left: 71px;
}

.loc_switch:hover,
.specs_switch:hover,
.ame_switch:hover,
.gallery_switch:hover {
    background-color: #88C796;
}

.all_loc_map,
.all_con_map {
    float: left;
    width: 100%;
    height: 750px;
    display: none;
    top: 0;
    left: 0;
    position: absolute;
}

.all_loc_map {
    display: block;
}

.all_loc_map {
    background: url('../images/location/map/all-locations.jpg')no-repeat;
    background-size: 100% 100%;
    background-position: 50% 100%;
}

.all_con_map {
    background: url('../images/location/map/all-connectivity.jpg')no-repeat;
    background-size: 100% 100%;
    background-position: 50% 100%;
}


/******************/

.chat_icon {
    position: fixed;
    right: 15px;
    bottom: 10px;
    float: right;
    width: 70px;
    height: 70px;
    background: url('../images/chat-icon.png')no-repeat;
}

.home_header.floating {
    background: rgba(0, 0, 0, 0.8) !important;
}

.floating {
    position: fixed !important;
    background: #fff !important;
    top: 0 !important;
    -webkit-box-shadow: -5px 2px 25px -10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -5px 2px 25px -10px rgba(0, 0, 0, 0.5);
    /*box-shadow: 0 8px 6px -6px rgba(0,0,0,0.5);*/
    box-shadow: -5px 2px 25px -10px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    padding: 6px 0 !important;
}

.scrolltop {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 85px;
    width: 40px;
    height: 40px;
    background: url('../images/scroll-up.svg')no-repeat;
    background-size: 40px 40px;
    cursor: pointer;
    z-index: 9999;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 1);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 1);
    opacity: 1;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 1);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 1);
}

.terms_intro {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

.terms_intro .text_cen p span {
    font-family: "museo_sans700";
}

.carousel-feature {
    overflow: visible !important;
}


/* Placeholder */

.mob-menu,
.mob_media {
    display: none;
}


/* Specifications updates */

.specifications_block {
    float: left;
    width: 100%;
    background: #f3f3f3;
    margin-bottom: 70px;
    padding-top: 95px;
}


/*.specifications_block .interior_col{
    float: left;
    width: 25%;
    padding: 0px 3%;
}*/

.interior_specsblock,
.exterior_specsblock {
    float: left;
    width: 100%;
    background: #fff;
}

.exterior_specsblock {
    display: none;
}

.ex_container {
    position: relative;
    width: 870px;
    margin: 0 auto;
    padding: 0px;
}

.ex_container h3 {
    float: left;
    width: 100%;
    color: #000;
    font-family: "museo_sans700";
    font-size: 21px;
    line-height: 16px;
    text-align: center;
    border-bottom: 1px solid #979797;
    padding-bottom: 26px;
    margin-top: 62px;
}

.specs_2col {
    position: relative;
    width: 548px;
    margin: 0 auto;
    padding: 0px;
}

.specs_2col .interior_col,
.specs_2col .exterior_col {
    width: 50%;
}

.exterior_col {
    float: left;
    width: 33.33%;
    padding: 0px 3%;
}

.partners_element {
    float: left;
    position: absolute;
    width: 40px;
    height: 1px;
    background: #b5b5b5;
    top: 54px;
    right: 0;
    opacity: 0;
    transition: all 2s linear;
}

.partners_element:before {
    content: "";
    border: 1px solid #55b849;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: -6px;
    left: -22px;
}

.around_block,
.mob-view,
.list_view {
    display: none;
}


/* Explore view in home page */

.explore_row {
    float: left;
    width: 100%;
    margin: 73px 0px;
}

.explore_view {
    margin: 0px auto;
    width: 1094px;
    display: table;
    position: relative;
}

.explore_view {
    position: relative;
}

.explore_view img {
    float: left;
    width: 100%;
}

.explore_view iframe {
    width: 100%;
    height: 415px;
    display: none;
}


/*****************************/

.form_row input[type="radio"] {
    display: none;
}

.form_row .site-visit label::before {
    border: 1px solid #c1c1c1;
    content: "";
    display: inline-block;
    height: 18px;
    left: 0;
    margin-right: 10px;
    vertical-align: middle;
    width: 18px;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    margin-top: -7px;
}

.form_row .site-visit input[type="radio"]:checked+label {
    color: #393838;
}

.form_row .site-visit input[type="radio"]:checked+label::before {
    color: #000;
    content: "\2714";
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border: 1px solid #393838;
    height: 18px;
    vertical-align: middle;
}

.site-visit span:nth-child(1) {
    float: left;
    width: 50%;
    color: #000;
    font-family: "museo_sans100";
    font-size: 12px;
    line-height: 12px;
    margin-top: 3px;
}


/* Agree popup */


/*.agree_popup{
    display: none;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    height: 100vh;
}*/

.agree_popup {
    display: none;
    left: -9px;
    position: fixed;
    top: auto;
    width: 280px;
    z-index: 999999;
    height: 300px;
    bottom: 0;
    float: right;
}

.agree_overlay {
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.agree_disclaimer {
    background: #fff;
    border-radius: 10px;
    display: block;
    left: 0;
    margin: 0 auto;
    position: fixed;
    right: 0;
    top: 20px;
    width: 920px;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
}

.agree_popup .agree_disclaimer {
    background: #333;
    border-radius: 10px;
    display: block;
    left: unset;
    margin: 0;
    position: fixed;
    right: 0;
    max-width: 300px;
    z-index: 10;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    bottom: 10px;
    top: unset;
    height: auto;
}

.agree_disclaimer h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 18px;
    font-family: 'museo_sans_rounded300';
    color: #231f20;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.agree_disclaimer p {
    float: left;
    width: 100%;
    text-align: justify;
    font-size: 10px;
    line-height: 12px;
    font-family: 'museo_sans_rounded300';
    color: #231f20;
    margin: 0 0 10px;
}

.agree_disclaimer p.add_mbott {
    margin-bottom: 24px;
}

.agree_disclaimer button {
    background: #016b9f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
    display: table;
    width: 150px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    font-family: 'museo_sans_rounded300';
    color: #fff;
    margin: 0 auto;
}

.agree_disclaimer button:focus {
    outline: none;
}

.ext_txt {
    display: none;
}

.cgi_note {
    position: absolute;
    bottom: 10px;
    font-size: 10px;
    line-height: 12px;
    font-family: 'museo_sans700';
    color: #fff;
    left: 10px;
    padding: 5px;
    background: #666666;
    border-radius: 5px;
}

.rera_no {
    float: left;
    width: 100%;
    font-size: 10px;
    line-height: 12px;
    font-family: 'museo_sans700';
    color: #000;
    margin: 0px 0px 10px;
    /*text-align: center;*/
}

.mob-stickey-button {
    display: inline-flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.mob-stickey-button #buthid {
    width: 100%;
}

.mob-stickey {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.71);
    border: none;
    padding: 15px;
    text-align: center;
    color: #fff;
}

.dis-none {
    display: none;
}


/* Media Queries */

@media (min-width: 1400px) {
    .map_main {
        display: none;
    }
    /*.loc_block{
        background: url('../images/location/map/full-map.jpg')no-repeat;
        width: 100%;
    }*/
    .all_loc_map {
        background: url('../images/location/map/all locations-full.jpg')no-repeat;
        background-size: 100% 100%;
        background-position: 50% 100%;
    }
    .all_con_map {
        background: url('../images/location/map/all-connectivity-full.jpg')no-repeat;
        background-size: 100% 100%;
        background-position: 50% 100%;
    }
}

@media (max-width: 1300px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 1299px) and (min-width: 990px) {
    /* header */
    .menu_items li {
        margin-right: 90px;
    }
    /**********/
    /* footer */
    .foo_col1 {
        width: 17%;
    }
    .foo_col2 {
        width: 26%;
        margin-right: 2%;
    }
    .foo_row3 .foo_col1 {
        width: 20%;
        margin-right: 2%;
    }
    .foo_row3 .foo_col1 p {
        font-size: 21px;
    }
    .pattern_theme {
        width: calc(28% + 195px);
    }
    .enquire_btn {
        float: right;
        margin-left: 0;
        margin-right: 7%;
    }
    /* Home page */
    .home_band {
        width: 33%;
        padding: 10% 0 0;
    }
    .price_block img {
        height: 61px;
    }
    .toggle_text {
        margin: 18px 0 0;
        padding-top: 13px;
    }
    .price_block h4 br {
        display: none;
    }
    .site_visit span {
        font-size: 20px;
        line-height: 22px;
    }
    .brand_tag {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .site_visit {
        margin-bottom: 16px;
    }
    .igbc {
        width: 60px;
        height: 60px;
        background-size: 60px 60px;
    }
    /**************/
    /* Contact page */
    .contact_cen {
        width: 95%;
    }
}

@media (max-width: 1100px) and (min-width: 990px) {
    .floor_img {
        width: calc(100% - 273px);
    }
    .apptype_block,
    .fullvideo_frame {
        width: 100%;
    }
    .fullvideo_frame .ytd_video {
        height: 230px;
    }
    .specs_tit {
        font-size: 48px;
        line-height: 34px;
    }
    /* Contact page */
    .construction_update_row,
    .coming_soon {
        width: 898px;
    }
    /* Explore view in home page */
    .explore_view {
        width: 90%;
    }
}

@media (max-width: 989px) and (min-width: 771px) {
    .fullvideo_frame {
        width: 100%;
    }
    .fullvideo_frame .ytd_video {
        height: 200px;
    }
    /* header */
    .menu_items li {
        margin-right: 50px;
    }
    /*.proj_logo{width: 46px;height: 21px;}*/
    /*.inner_pages .header .proj_logo{width: 26px;height: 27px;}
    .navbar{width: calc(100% - 46px);}
    .inner_pages .header .navbar {width: calc(100% - 27px);}
    ul.menu_items{margin-top: 10px;}
    .inner_pages  ul.menu_items{margin-top: 7px;}*/
    /*.download_btn{margin-top: -4px;background-size: 11px 10px;font-size: 10px;height: 20px;line-height: 20px;width: 100px;}*/
    /**********/
    /* footer */
    .foo_col1 {
        width: 50%;
        margin-right: 0;
    }
    .foo_col2 {
        width: 50%;
        margin-right: 0;
        float: right;
        text-align: right;
    }
    .foo_row3 .foo_col1 {
        width: 27%;
        margin-right: 2%;
    }
    .foo_row3 .foo_col1 p {
        font-size: 21px;
    }
    .pattern_theme {
        width: calc(29% + 50px);
    }
    .enquire_btn {
        float: right;
        margin-left: 0;
        margin-right: 7%;
    }
    .foo_col3 {
        margin-top: 40px;
    }
    .foo_col4 {
        clear: right;
        margin-top: 20px;
    }
    /* Home page */
    .home_band {
        padding: 10% 0px 0px;
        width: 33%;
    }
    .price_block {
        width: 100%;
    }
    .price_block img {
        height: 41px;
    }
    .toggle_text {
        margin: 10px 0 0;
        padding-top: 12px;
    }
    .price_block h4 br {
        display: none;
    }
    .price_block h4,
    .site_visit span {
        font-size: 12px;
        line-height: 16px;
    }
    .brand_tag {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .site_visit {
        margin-bottom: 10px;
    }
    .igbc {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }
    .visible_onscroll p {
        margin-bottom: 18px;
        font-size: 12px;
        line-height: 17px;
    }
    /**************/
    /* Contact page */
    .contact_cen {
        width: 95%;
    }
    /* Gallery page */
    .carousel-image {
        width: 100% !important;
    }
    /* Location page */
    .routes_row {
        width: 440px;
    }
    .routes_row a:nth-of-type(2) .nearby_loc {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .routes_row a:nth-of-type(1) .nearby_loc {
        margin-bottom: 20px;
    }
    /* Amenities */
    .green_tabrow,
    .feel_fit_block {
        width: 760px;
    }
    .design_tabrow {
        width: 371px;
    }
    .green_tabs {
        width: 180px;
        margin-right: 10px;
        padding: 10px 15px;
    }
    .green_ind_block img {
        width: 100%;
    }
    .feel_fit_tab {
        width: 182px;
        margin-right: 10px;
    }
    .specs_tit {
        font-size: 32px;
        line-height: 44px;
    }
    .specs_tit_sm {
        font-size: 12px;
        line-height: 8px;
        margin-top: -20px;
    }
    /* Project page */
    .apptype_block {
        width: 100%;
    }
    .floor_img {
        float: left;
        margin-left: 20px;
        width: calc(100% - 240px);
    }
    .plan_block img.bhk1_3d,
    .bhk1_foyer .plan_block img.bhk1_3d,
    .bhk2_typical .plan_block img.bhk1_3d,
    .bhk3_typical .plan_block img.bhk1_3d {
        width: 90%;
    }
    .bhk3_typical .plan_block img.bhk1_2d {
        width: 296px;
    }
    .info_line {
        display: none;
    }
    .masterplan_band {
        padding: 8% 2% 0px;
        width: 29%;
    }
    /*.exterior_col{width: 30%;}*/
    .ex_container {
        width: 770px;
    }
    .partners_info {
        width: 640px;
    }
    /* Progress page */
    .construction_update_row,
    .coming_soon {
        width: 627px;
    }
}

@media (max-width: 989px) {
    .close_fulllife {
        right: 10px;
    }
    .amenities_block {
        padding-top: 97px;
    }
    .carousel-container,
    .gal_block .project_element,
    .conupdate_block .project_element {
        display: none;
    }
    .list_view {
        display: block;
        float: left;
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }
    .list_nm {
        margin-bottom: 0px;
    }
    .list_view img {
        float: left;
        width: 100%;
    }
    .list_view p {
        float: left;
        width: 100%;
        font-family: 'museo_sans700';
        font-size: 16px;
        line-height: 19px;
        color: #000;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 5px;
        padding: 0 20px;
    }
    .stickey-button {
        display: none !important;
    }
    .dis-none {
        display: block;
    }
    /* Explore view in home page */
    .explore_view {
        width: 90%;
    }
    .text-xs-center {
        text-align: center;
    }
    .plan_block img {
        width: 100% !important;
    }
}

@media (max-width: 770px) {
    .price_block h4 {
        margin-bottom: 0;
    }
    .proj_logo {
        width: 55px;
        height: 26px;
    }
    .header {
        z-index: 9999;
    }
    .inner_pages .header .proj_logo {
        width: 41px;
        height: 40px;
    }
    .scroll-down,
    .navbar {
        display: none;
    }
    .mob-menu {
        display: none;
        float: left;
        width: 100%;
        background: #000;
        padding: 60px 0px;
        position: absolute;
        top: -20px;
        z-index: 49;
        height: 460px;
    }
    .mob_menu_overlay {
        background: #000;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
    }
    .inner_pages .mob-menu {
        top: 0px;
    }
    .menu-icon {
        float: right;
        position: relative;
        width: 25px;
        height: 16px;
        margin: 0 auto;
        margin-top: 5px;
        cursor: pointer;
        background: url('../images/list-menu.svg')no-repeat;
        background-size: 25px 16px;
    }
    .inner_pages .menu-icon {
        background: url('../images/list-menu_in.svg')no-repeat;
        margin-top: 12px;
    }
    .mob-menu li {
        float: left;
        color: #6d6d6d;
        font-family: "museo_sans300";
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        list-style: none;
        width: 100%;
        padding-bottom: 40px;
        text-transform: uppercase;
    }
    .close_menu {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 25px;
        background: url('../images/close.svg')no-repeat;
        background-size: 17px 17px;
        width: 17px;
        height: 17px;
    }
    .download_btn {
        display: table;
        float: none;
        margin: 0 auto;
    }
    .download_form {
        left: -44px;
        bottom: inherit;
        top: 0;
    }
    /**********/
    .home_band {
        position: relative;
        width: 100%;
        right: 0;
        float: left;
        display: block;
        padding: 8% 0;
        background: rgba(0, 0, 0, 1);
    }
    /* footer */
    footer {
        z-index: 0;
    }
    .foo_col1,
    .foo_col2,
    .foo_col4,
    .foo_row3 .foo_col1 {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .foo_col4 h6,
    .foo_col4 p {
        text-align: center;
    }
    .foo_col4 p {
        margin-bottom: 3px;
    }
    .foo_row3 .foo_col1 p {
        font-size: 21px;
    }
    .pattern_theme {
        display: none;
    }
    .enquire_btn {
        float: none;
        margin: 0 auto;
        width: 154px;
        display: table;
    }
    .foo_col3 {
        float: none;
        margin: 0 auto;
        display: table;
    }
    .foo_col4 {
        clear: right;
        margin-top: 20px;
    }
    .foo_assetz_logo {
        display: table;
        margin: 0 auto;
        float: none;
    }
    .web_media {
        display: none;
    }
    .mob_media {
        display: table;
        margin: 0 auto;
        /* float: none; */
        clear: both;
    }
    .foo_row1,
    .foo_col1,
    .foo_col2,
    .foo_col3 .foo_button {
        margin-bottom: 35px;
        margin-top: 0;
    }
    .foo_row2 {
        margin-bottom: 14px;
    }
    .foo_col3 .foo_button {
        margin: 10px auto 30px;
        display: table;
        float: none;
    }
    .foo_row3 .foo_col1 {
        margin-bottom: 0;
    }
    .foo_col4 {
        margin-top: 35px;
    }
    /* Home page */
    .site_intro {
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .site_intro img.home_bg {
        width: 135%;
    }
    .cgi_note {
        display: none;
    }
    .explore_row {
        margin: 42px 0px;
    }
    /* contact page */
    .contact_cen {
        width: 90%;
    }
    .form_left,
    .form_right {
        width: 100%;
    }
    .project_page h1,
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .query_form {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    /* Gallery page */
    .in_specs_block,
    .ex_specs_block {
        width: 100%;
    }
    .in_specs_block img,
    .ex_specs_block img {
        height: auto;
    }
    .carousel-feature,
    .carousel-image,
    .amenities_intro .text_cen {
        width: 100% !important;
    }
    .tracker-individual-container {
        bottom: 0 !important;
    }
    .carousel-image {
        height: 100% !important;
    }
    /* Location page */
    .routes_row {
        width: 440px;
    }
    .routes_row a:nth-of-type(2) .nearby_loc {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .routes_row a:nth-of-type(1) .nearby_loc {
        margin-bottom: 20px;
    }
    .text_cen {
        width: 100%;
        display: block;
    }
    .loc_video_frame,
    .location_intro p {
        width: 100%;
    }
    .loc_map {
        display: none;
    }
    .around_block {
        float: left;
        width: 100%;
        background: #333;
        padding: 42px 26px 48px;
        display: block;
    }
    .around_block h2 {
        float: left;
        width: 100%;
        opacity: 0.27;
        color: #63b454;
        font-family: "museo_sans900";
        font-size: 40px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }
    .around_tab {
        float: left;
        width: 100%;
        background: #141414;
        padding: 22px;
        position: relative;
        margin-bottom: 5px;
    }
    .around_icon {
        float: left;
        width: 100%;
        margin-bottom: 8px;
    }
    .school_icon {
        background: url("../images/location/responsive/schools.svg") no-repeat center;
        height: 27px;
    }
    .school_icon.active {
        background: url("../images/location/responsive/schools-active.svg") no-repeat center;
    }
    .restu_icon {
        background: url("../images/location/responsive/restaurants.svg") no-repeat center;
        height: 30px;
    }
    .restu_icon.active {
        background: url("../images/location/responsive/restaurants-active.svg") no-repeat center;
    }
    .malls_mobicon {
        background: url("../images/location/responsive/malls.svg") no-repeat center;
        height: 31px;
    }
    .malls_mobicon.active {
        background: url("../images/location/responsive/malls-active.svg") no-repeat center;
    }
    .groc_mobicon {
        background: url("../images/location/responsive/grocery.svg") no-repeat center;
        height: 29px;
    }
    .groc_mobicon.active {
        background: url("../images/location/responsive/grocery-active.svg") no-repeat center;
    }
    .it_mobicon {
        background: url("../images/location/responsive/it-campus.svg") no-repeat center;
        height: 29px;
    }
    .it_mobicon.active {
        background: url("../images/location/responsive/it-active.svg") no-repeat center;
    }
    .hosp_mobicon {
        background: url("../images/location/responsive/hospitals.svg") no-repeat center;
        height: 25px;
    }
    .hosp_mobicon.active {
        background: url("../images/location/responsive/hospital-active.svg") no-repeat center;
    }
    .sports_mobicon {
        background: url("../images/location/responsive/sports.svg") no-repeat center;
        height: 28px;
    }
    .sports_mobicon.active {
        background: url("../images/location/responsive/sports-active.svg") no-repeat center;
    }
    .around_title {
        float: left;
        width: 100%;
        color: #C0C0C0;
        font-family: "museo_sans700";
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        text-transform: uppercase;
    }
    .around_title.active {
        color: #e6d582;
    }
    .restu_tab .around_title.active {
        color: #c686bf;
    }
    .malls_mobtab .around_title.active {
        color: #f5c16d;
    }
    .groc_mobtab .around_title.active {
        color: #acc88c;
    }
    .it_mobtab .around_title.active {
        color: #93cee3;
    }
    .hosp_mobtab .around_title.active {
        color: #f38181;
    }
    .sports_mobtab .around_title.active {
        color: #c89c7e;
    }
    .view_around {
        cursor: pointer;
        position: absolute;
        width: 25px;
        height: 25px;
        background: url("../images/location/responsive/plus-icon.svg") no-repeat;
        background-size: 25px 25px;
        right: 10px;
        top: 10px;
    }
    .view_around.active {
        width: 17px;
        height: 17px;
        background: url("../images/location/responsive/close.svg") no-repeat;
        background-size: 17px 17px;
    }
    .around_details {
        display: none;
        float: left;
        width: 100%;
    }
    .nearby_dtag {
        float: left;
        width: 100%;
        color: #fff;
        font-family: "museo_sans300";
        font-size: 10px;
        line-height: 12px;
        text-align: center;
        margin-top: 18px;
    }
    .nearby_dtag span {
        display: block;
    }
    .routes_sec {
        padding: 43px 0 48px;
        margin-bottom: 0;
    }
    .loc_video_frame {
        margin-bottom: 0;
    }
    .location_intro p {
        padding: 0;
        margin-bottom: 44px;
    }
    .amenities_intro h3,
    .text_cen h3 {
        margin-bottom: 16px;
    }
    /* Amenities */
    .project_page .amenities_intro p {
        margin-bottom: 44px;
    }
    .green_ind_block img,
    .project_page .amenities_intro p,
    .amenities_left,
    .amenities_right {
        width: 100%;
    }
    .feel_fit_row {
        margin-bottom: 0;
    }
    .feel_fit_tab p {
        padding: 0px 15px;
    }
    .specs_tit {
        font-size: 40px;
        line-height: 44px;
    }
    .specs_tit_sm {
        font-size: 12px;
        line-height: 8px;
        margin-top: -16px;
    }
    .green_ind_row {
        padding: 30px 0px;
    }
    .amenities_intro h3 {
        padding: 0 23px;
    }
    .fullvideo_frame,
    .amenities_row iframe.ytd_video {
        width: 100%;
    }
    .feel_fit_block {
        padding-bottom: 30px;
    }
    /* Project page */
    .partners_row {
        padding: 22px 0px 25px;
    }
    .apartmentimg {
        background-attachment: initial;
    }
    /*.interior_specsblock, .exterior_specsblock{padding-top: 42px;}
    .partners_row h1{margin-bottom: 34px;}*/
    .partners_row .partners_element,
    .masterplan_element,
    .info_line,
    .apartments_element {
        display: none;
    }
    .partners_info {
        width: 90%;
        padding: 95px 0px;
    }
    .partners_info .bx-controls-direction {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 130px;
        top: -40px;
    }
    .partners_info .bx-controls-direction a.bx-prev {
        left: 0;
    }
    .partners_info .bx-controls-direction a.bx-next {
        right: 0;
    }
    .about_partners {
        padding: 0 22px;
    }
    .apartment_tag p {
        font-size: 16px;
        line-height: 25px;
    }
    .masterplan_layout {
        overflow-y: hidden;
        overflow-x: hidden;
    }
    .masterplan_layout img {
        width: 125%;
    }
    .masterplan_band {
        position: relative;
        float: left;
        width: 100%;
        padding: 34px 0;
        background: rgba(0, 0, 0, 1.0);
    }
    .masterplan_band ul {
        float: none;
        margin: 0 auto;
        width: 189px;
    }
    .project_page .apartments_intro p {
        margin-bottom: 42px;
    }
    .apartments_intro {
        padding-top: 44px;
    }
    .apartments_menu {
        width: 320px;
    }
    .apt_type {
        margin-right: 13px;
    }
    .apptype_block,
    .floor_img {
        width: 100%;
    }
    .floor_info {
        width: 100%;
        margin-top: 0;
        padding: 0 12%;
        margin-bottom: 28px;
    }
    .note_tag br {
        display: none;
    }
    .floor_info h2,
    .floor_with,
    .norms_tag,
    .floor_info p,
    .note_tag {
        text-align: center;
    }
    .plan_block {
        height: auto;
    }
    .plan_block img {
        position: relative;
    }
    .plan_block img.bhk1_3d,
    .bhk1_foyer .plan_block img.bhk1_3d,
    .bhk2_typical .plan_block img.bhk1_3d,
    .bhk3_typical .plan_block img.bhk1_3d {
        top: 0;
        padding: 15px 0;
    }
    .plan_block img.bhk1_2d,
    .bhk2_typical .plan_block img.bhk1_2d,
    .bhk1_foyer .plan_block img.bhk1_2d {
        top: 0;
        padding: 15px 0;
    }
    .floor_switch {
        padding-left: 27px !important;
        width: 174px;
        background-position-x: 120px;
    }
    .floor_tit h3 {
        font-size: 18px;
    }
    .floorplans_row {
        padding: 10px 0px 48px;
    }
    .specifications_block {
        padding-top: 45px;
        margin-bottom: 40px;
    }
    /* Contact page */
    .construction_update_row,
    .coming_soon {
        width: 307px;
    }
    .construction_update_col {
        margin-right: 0px;
    }
    .coming_soon {
        margin: 65px auto 0;
    }
    .rera_no {
        text-align: center;
    }
}

@media (max-width: 359px) {
    .price_block {
        width: 100%;
    }
    .form_row .submit,
    .form_row .cancel {
        width: 138px;
    }
    .query_form {
        width: 300px;
    }
    .specs_tit {
        font-size: 32px;
    }
    .specs_tit_sm {
        margin-top: -20px;
    }
    .site-visit span:nth-child(1) {
        width: 54%;
    }
    .site-visit span:nth-child(2) {
        margin-right: 5px !important;
    }
}

@media (max-width: 480px) and (min-width: 320px) {
    .container {
        width: 90%;
    }
    /* Location page */
    .routes_row {
        width: 177px;
    }
    .routes_row a .nearby_loc {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .feel_fit_tab {
        width: 150px;
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .feel_fit_block .feel_fit_tab:nth-child(odd) {
        margin-right: 10px;
    }
    .feel_fit_block {
        width: 310px;
    }
    .green_tabrow {
        width: 310px;
    }
    .green_tabrow .green_tabs {
        width: 47.5%;
        padding: 15px 10px;
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .green_tabrow .green_tabs:nth-child(even) {
        margin-right: 0px;
    }
    .green_tabs {
        width: 47.5%;
    }
    .design_tabrow {
        width: 310px;
    }
    .video_icon {
        width: 32px;
        height: 32px;
        background-size: 32px 32px;
    }
    .close_fulllife {
        right: 0;
    }
    /*.project_element,.specs_block .project_element, .amenities_block .project_element, .gal_block .project_element, .conupdate_block .project_element{left: 12% !important;}*/
    .apartment_tag {
        width: 100%;
    }
    .specifications_block .interior_col,
    .specifications_block .exterior_col {
        width: 100%;
        margin-bottom: 30px;
    }
    .interior_row {
        margin-top: 0;
    }
    .ex_container {
        width: 100%;
    }
    .plan_block img.bhk1_2d,
    .bhk1_foyer .plan_block img.bhk1_2d {
        width: 100%;
        top: 0;
        padding: 15px 0;
    }
    .about_partners p {
        font-size: 12px !important;
        line-height: 15px;
    }
    /* Contact page */
    .construction_update_row .bx-controls-direction {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        width: 130px;
    }
    .construction_update_row .bx-controls-direction a.bx-prev {
        left: 0;
        bottom: -56px;
    }
    .construction_update_row .bx-controls-direction a.bx-next {
        right: 0;
        bottom: -56px;
    }
    .explore_img .specs_tit {
        font-size: 24px;
    }
    .explore_row {
        margin: 20px 0px;
    }
    .specs_2col {
        width: 100%;
    }
    .exterior_specsblock .specs_2col,
    .ex_container h3 {
        margin-top: 32px;
    }
    .cgi_mob {
        display: block;
        bottom: 67%;
    }
    .explore_img .cgi_mob {
        bottom: 10px;
    }
}

@media (max-width: 659px) and (min-width: 481px) {
    .feel_fit_tab {
        width: 150px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .feel_fit_tab.m_right {
        margin-right: 10px;
    }
    .feel_fit_tab:nth-child(3n) {
        margin-right: 0px;
    }
    .feel_fit_block {
        width: 470px;
    }
    .specs_2col {
        width: 480px;
    }
    .explore_img .cgi_mob {
        bottom: 10px;
    }
    .cgi_mob {
        display: block;
        bottom: 53%;
    }
    .explore_img .cgi_mob {
        bottom: 10px;
    }
}

@media (max-width: 770px) and (min-width: 481px) {
    .balcony_info p br {
        display: none;
    }
    .green_tabs:nth-child(2) {
        margin-right: 0;
    }
    .green_tabrow {
        width: 475px;
    }
    .green_tabrow .green_tabs {
        margin-bottom: 10px;
    }
    .specifications_block .green_tabs {
        margin-bottom: 0px;
    }
    .specifications_block .interior_col,
    .specifications_block .exterior_col {
        padding: 0px 3%;
    }
    /*.interior_row{margin-top: 0;}*/
    .ex_container {
        width: 100%;
    }
    /*.specifications_block .interior_row .interior_col:nth-child(3){clear: left;}
    .specifications_block .interior_row .exterior_col:nth-child(3){clear: left;}
    .specifications_block .interior_row .mob-view .exterior_col:nth-child(2){clear: left;}*/
    .mob-view {
        display: block;
    }
    .mob-hide {
        display: none;
    }
}

@media (max-width: 700px) {
    .plan_block img.bhk1_3d,
    .bhk1_foyer .plan_block img.bhk1_3d,
    .bhk2_typical .plan_block img.bhk1_3d,
    .bhk3_typical .plan_block img.bhk1_3d {
        width: 100%;
        top: 0;
        padding: 15px 0;
    }
}

@media (max-width: 770px) and (min-width: 660px) {
    /* Amenities */
    .feel_fit_tab {
        width: 150px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .feel_fit_block {
        width: 630px;
    }
    /***************/
    /* Contact page */
    .construction_update_row,
    .coming_soon {
        width: 627px;
    }
    .construction_update_col {
        margin-right: 13px;
    }
    .explore_img .cgi_mob {
        bottom: 10px;
    }
    .cgi_mob {
        position: absolute;
        bottom: 52%;
        font-size: 10px;
        line-height: 12px;
        font-family: 'museo_sans700';
        color: #fff;
        left: 10px;
        padding: 5px;
        background: #666666;
        border-radius: 5px;
        display: block;
    }
}

@media (max-width: 568px) and (min-width: 320px) {
    .cgi_mob {
        display: block;
        bottom: 69%;
        z-index: 0;
    }
}

@media (max-width: 1023px) and (min-width: 320px) {
    .agree_disclaimer {
        width: 90%;
        top: 10px;
        height: 500px;
        overflow: auto;
        z-index: 9999;
    }
    .agree_disclaimer p {
        font-size: 10px;
        line-height: 12px;
    }
}

a.navbar-brand.canvas_cove_logo img {
    width: 90px;
    margin-right: 0px;
}

a.navbar-brand.assetz_logo_new img {
    margin-left: 0px;
}


/* enq btn */

.stickymobile-button {
    font-size: 0;
    position: fixed;
    /* margin-top: 30px; */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0px 0 0px 0;
}

a.enquiry_btn {
    color: #fff !important;
    background-color: #000;
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 0;
    font-size: 18px;
    border: 1px solid #000;
}

.right_enquire {
    position: fixed;
    top: 40%;
    right: -4%;
    transform: rotate(-90deg);
    width: 10%;
    padding: 5px 4px 9px;
    float: left;
    background: #000;
    text-align: center;
    z-index: 999;
}

p.enquire a {
    color: #fff!important;
    cursor: pointer;
    font-size: 18px;
}

.desk_show {
    display: block;
}

.mob_show {
    display: none;
}

@media(max-width:767px) {
    .desk_show {
        display: none;
    }
    .mob_show {
        display: block;
    }
}


/* chatbot */

.verloop-button {
    background-color: #c1acd5 !important;
}

.verloop-button {
    overflow: visible;
    position: relative;
}

.verloop-button:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, transform .3s;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

.livechat-room .livechat-header {
    background-color: rgb(93 93 93)!important;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}


/* move chat window to left */

.verloop-container {
    position: fixed;
    left: 20px;
    top: 20px;
}


/* move chat button to left */

.verloop-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
}


/* change the icon on chat button */

.verloop-livechat-logo {
    background-image: url('https://i.imgur.com/KKKBMgr.png') !important;
    background-size: 40px 40px !important;
    /* border-radius: 50%; */
}

.verloop-trigger-msg {
    left: 68px;
    right: 0px;
}


/* .livechat-header {
    background-color: rgb(93 93 93)!important; }*/


/* change the background color from verloop dashboard */

.verloop-button {
    background-color: hsl(270, 64%, 76%) !important;
}

.agree_disclaimer button {
    background: hsl(270, 64%, 76%);
}