@font-face {
    font-family: 'BebasNeue-Regular';
    src: url('../../../fonts/BebasNeue Regular.otf');
}

@font-face {
    font-family: 'Gill-Sans';
    src: url('../../../fonts/Gill Sans.otf');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-Roman';
    src: url('../../../fonts/HelveticaNeueLTStd-Roman.otf');
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'HelveticaNeueLTStd-Roman';
    font-size: 0.8rem;;
    letter-spacing: 1px;
    overflow: hidden;
    background: #e6e7e9;
    color: #231f20;
}

h1, h2, h3, h4, h5 {
    font-family: 'BebasNeue-Regular';
}

h4 {
    font-size: 1.2rem;;
}

a {
    /* color: white;
    text-decoration: none; */
}

a:hover {
    /* color: white;
    text-decoration: none; */
}

img {
    width: auto;
    max-width: 100%;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.error {
    color: #ef4136;
    font-size: 12px;
}

.cursor-pointer {
    cursor: pointer;
}

.sticky {
	position: fixed !important;
	top: 0;
	z-index: 9;
	width: 100%;
    box-shadow: 0cm 1px 5px 1px rgba(0, 0, 0, 0.1);
}

#header {
    font-family: 'Gill-Sans';
    background: #e6e7e9;
    letter-spacing: 0.1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#header .logo {
    vertical-align:middle;
    max-width: 160px;
}

#header .selected {
    color: #8c992e!important;
}

#header .link-list {
    color: #858688;
    position: relative;
    transition: width 0.3s ease;
}

#header .link-list:hover, #header .link-list2:hover {
    color: #8c992e;
    text-decoration: none;
    transition: width 0.3s ease;
}

#header .link-list2 {
    background: white;
    color: inherit;
}

#header .link-list::after {
    content: '';
    position: absolute;
    bottom: -7px; /* Adjust to control the distance from the text */
    left: 50%; /* Start the line in the middle */
    transform: translateX(-50%); /* Offset by 50% of the element's width to truly center the line */
    width: 0; /* Set the width of the line (you can adjust this value for a shorter line) */
    height: 3px; /* Height of the line */
    background-color: #8c992e; /* Color of the line */
    transition: width 0.3s ease; /* Smooth transition for width */
}

#header .link-list:hover::after {
    width: 25%; /* Full width of the text */
}

#register {
    background: #d4dde4;
}

#register .registration-div {
    /* margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
}

#register input[type="text"], #register input[type="email"] {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #8e9598;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 15px;
    color: #5b5b5d;
}

#our-products .product-modal {
    background: #e7e3e2;
    max-width: 95%;
}

#our-products .modal-content {
    background: #e7e3e2;
    border: none;
}

#our-products .room-type {
    font-family: 'BebasNeue-Regular';
    font-size: 3rem;
}

.floor-label-div {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
.floor-label-div .label {
    line-height: 60%;
}

.floor-label-div .large-label {
    font-size: 4rem !important;
}

#our-products .product-modal hr {
    border: 1px solid;
    margin-left: 0;
}

.view-gallery-btn {
    border: none;
    background: #8c992e;
    color: white;
    padding: 8px 30px;
    transition: .2s ease all;
    letter-spacing: 1px;
    font-size: 16px;
    border-radius: 30px;
}

.view-gallery-btn:focus, .view-gallery-btn:active {
    outline: none;
    border: none;
}

.close {
    width: 60px;
}

/* Change the color of the radio button */
input[type="radio"] {
    accent-color: #5b5b5d;  /* Color of the radio button when selected */
}

#register input::placeholder {
    color: #5b5b5d;
    letter-spacing: 1.5px;
}

/* #register input.required::before {
    content: '*';
    color: #bf303d;
    margin-left: 5px;
} */

#register .mandatory-text {
    color: #bf303d;
    font-size: 14px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 1;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #b2b2b4;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #5b5b5d;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.submit-btn {
    border: none;
    background: #5b5b5d;
    color: white;
    padding: 10px 60px;
    transition: .2s ease all;
    letter-spacing: 5px;
    font-size: 20px;
    border-radius: 30px;
}

.submit-btn:hover, .view-gallery-btn:hover {
    transition: .2s ease all;
    transform: scale(1.1);
}

#footer {
    font-family: 'HelveticaNeueLTStd-Roman';
    background: #484444;
    color: #fff;
}

#footer a {
    color: #fff;
    text-decoration: none;
}

#footer .footer-logo {
    width: 140px;
}

#footer .heading {
    font-family: 'Gill-Sans';
    letter-spacing: 1px;
}

#footer .line {
    background: #b2b2b4;
    height: 1px;
}

#footer .grey {
    color: #b2b2b4;
}

/* Slick */
.slick-dots {
    bottom: 80px !important;
}
.slick-dots li button:before {
    font-size: 0px !important;
    opacity: 0.7 !important;
    background: #fff !important;
    border-radius: 100% !important;
    width:10px !important;
    height:10px !important;
    transition: .2s ease all !important;
}
.slick-dots li.slick-active button:before{
    width: 30px !important;
    border-radius: 5px !important;
    opacity: 1 !important;
}
.slick-dots li.slick-active button {
    width: 30px !important;
}
.slick-dots li button,
.slick-dots li{
    width:auto !important;
}

.slick-next, .slick-prev {
    bottom: 75px !important; 
    top: auto !important;
    z-index: 8 !important;
}
.slick-next {
    right: 38% !important;
}
.slick-prev {
    left: 38% !important;
}
.section-1-slider,
.section-5-slider {
    margin-bottom: 0 !important;
}

/* Section 2 */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
#overview .content {
    max-width: 22%;
    margin-left: auto;
    margin-right: 10%;
}
p {
    font-size: 0.8rem;
}

#overview .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#overview .row {
    margin: 0;
}
#overview .row > div {
    padding: 0;
}

/* Location */
#location {
    background: #f6f5ee;
}
#location .row {
    align-items: center;
}
#location .row .content {
    margin-bottom: 200px;
}

/* Master Plan */
#master-plan {
    background: #f6f5ee
}
#master-plan .content {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 12vh;
    /* justify-content: space-around; */
}
#master-plan .content .legend {
    margin-top: 70px;
}
#master-plan img{
    max-width: 90%;
    text-align: center;
        
}
#master-plan .col-md-9 {
    text-align: center;
}

/* Product */
#our-products {
    background: url('../images/product-bg.png');
}
#our-products h1.white {
    color:  #fff;;
}

/* Modal Slick Colour */


.modal .slick-dots li button:before {
    background: #808184 !important;
}
.modal  .slick-next:before, .slick-prev:before {
    color: #808184 !important;
}
.modal  .slick-dots {
    bottom: -50px !important;
}
.modal .slick-next, .modal .slick-prev {
    bottom: -55px !important;
}
@media (max-width: 991px) {
    #footer #footer-logo {
        width: 180px;
    }

    #overview .content {
        max-width: 45%;
        margin-right: 2%;
    }
    .mobile-header-list img {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .registration-div {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 50px 15px;
    }
    #location .row .content {
        margin-bottom: 50px;
        text-align: center;
    }
    #overview .relative img {
        height: 450px;
        object-fit: cover;
        object-position: right;
    }
    #overview .content {
        max-width: 100%;
        margin-right: auto;
        padding: 15px;
    }
    h1 {
        font-size: 1.5rem;
    }
    .slick-next, .slick-prev {
        display: none !important;
    }
    .slick-dots {
        bottom:  0 !important;
    }
    #location, #master-plan {
        padding: 15px !important;
    }
    
    .submit-btn {
        font-size: 12px;
        padding: 10px 30px;
    }
    .modal-body {
        padding: 15px !important
    }
    .popup-logo {
        max-width: 150px;
    }
    .floor-label-div .large-label {
        font-size: 3rem !important;
    }
    .modal .slick-dots {
        bottom: -25px !important;
    }

    .view-gallery-btn {
        font-size: 12px;
    }

    #master-plan .content legend {
        margin-top: 0;
    }

    #overview .content {
        text-align: center;
    }

    #overview .relative img {
        opacity: 0.5;
    }

    #master-plan .content .legend {
        margin-top: 25px;;
    }

    .modal {
        text-align: center;
    }

    .floor-label-div {
        justify-content: center;
    }

    #footer > div {
        margin: 0 15px !important
    }

    #footer > div {
        margin: 0 15px !important
    }
    
    #footer .text-right {
        text-align: left !important;
    }

    #master-plan #master-image-div {
        order: 1;
    }

    #master-plan #master-legend-div {
        order: 2;
    }

    .copyright-text {
        text-align: right;
    }
}