:root {
    /* CSS HEX */
    --blue: #3C4F8F;
    --white: #ffffff;
    --white2: #f8f8f8;
    --grey: #b3b3b3;
    --black: #131819;
    --orange: #f07f1b;
}

@font-face {
    font-family: "Iceland";
    src: url("../fonts/Iceland-Regular.ttf");
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    /* max-width: 100vw; */
}

body {
    font-family: Iceland;
    color: var(--white);
    background-color: var(--black);
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 4px;
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--grey);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--grey);
}

#AllContent {
    /* width: 92vw; */
    /* overflow: hidden; */
    position: relative;
    transition: 1s cubic-bezier(0.5, 0, 0.5, 1);
}

a {
    text-decoration: none;
}

h3 {
    margin: 1vh 0vw;
}

.pages {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    /* margin-bottom: 1vh; */
    overflow-x: hidden;
    background: var(--black);
}


/* Nalanda Icon Top Left Main Logo */

#section-navbar {
    display: block;
    position: fixed;
    height: 10vh;
    width: 100vw;
    z-index: 10;
    top: 0;
    /* background: var(--black); */
    left: 0;
}

#sub-section-navbar-options {
    background: var(--black);
}

.main-logo {
    height: 100%;
    padding: 1vw;
}

.mobile-menu {
    display: none;
}

#ul-navbar-options {
    display: inline-block;
    /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
    right: 0vw;
    font-size: 1.25vw;
    top: 0;
    list-style: none;
    position: absolute;
    text-align: center;
    background: var(--black);
    padding: 2vh 1vw;
    margin: 0;
    border-radius: 0vw 0vw 0vw 1vw;
}

.li-navbar-options {
    padding: 1vh 1vw;
    list-style: none;
    cursor: pointer;
    display: inline-block;
    width: auto;
}

.li-navbar-options.floorplan-btn {
    text-align: center;
    margin: 0 0.3em 0.3em 0;
    transition: all 0.5s;
    animation: floor-plan-bounce 5s infinite linear;
    position: relative;
    background: var(--orange);
    border-radius: 50vw;
    color: var(--white);
    border: 1px solid var(--orange);
}

.li-navbar-options.floorplan-btn button {
    background: transparent;
    color: inherit;
    font: inherit;
    border: none;
}

.li-navbar-options.floorplan-btn:hover {
    background-color: transparent;
    color: var(--grey);
}


/* @keyframes floor-plan-bounce {
    0% {
        top: 0em;
    }
    40% {
        top: 0em;
    }
    43% {
        top: -0.9em;
    }
    46% {
        top: 0em;
    }
    48% {
        top: -0.4em;
    }
    50% {
        top: 0em;
    }
    100% {
        top: 0em;
    }
} */

.sub-header {
    font-size: 1.25vw;
    text-align: left;
    padding: 0vh 1vw;
}

.header-3 {
    font-size: 2em;
    letter-spacing: 0vw;
    margin: 0;
    margin-bottom: 0.5vw;
}

.active-nav {
    /* background: var(--white2); */
    color: var(--orange) !important;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-position: under;
}

.a-navbar {
    text-decoration: none;
    color: var(--white);
    padding: 1vh 1vw;
}


/* Main Content */

#section-homepage {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

#sub-section-homepage {
    width: 100%;
    position: relative;
    top: 50vh;
}

.header-navbar-logo {
    position: absolute;
    height: 100%;
}


/* Bottom Left Image Home Page */

#sub-section-main-image {
    width: 55vw;
}

.main-image {
    /* height: 100vh; */
    display: none;
}

#header-main-image {
    background-image: url("../images/MainPhoto.png");
    /* width: 100%; */
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* Center Left Nalanda Logo + Content */

#sub-section-main-content {
    position: absolute;
    width: 50vw;
    right: 0;
    margin-top: 10vh;
}

.nalanda-logo {
    width: 40vw;
    position: relative;
    top: 2vw;
    padding: 4vw;
}

.home-sub-section {
    width: 100%;
    margin-bottom: 5vh;
    position: relative;
    margin: 0;
    /* margin-top: 15vh; */
    /* top: 15vh; */
}

.homepage {
    display: inline-block;
    grid-template-columns: auto;
    position: relative;
    padding: 1vh 1vw;
    justify-content: center;
    align-content: center;
    justify-items: center;
    margin: auto;
    align-items: center;
}

.homepage-icons {
    width: 4vw;
    margin-bottom: 1vh;
}

.homepage-header {
    font-size: 1.5vw;
    text-decoration: none;
    color: var(--white2);
}

.homepage-btn .homepage-header {
    background-color: var(--white);
    color: var(--black);
    padding: 1vh 1vw;
    border-radius: 50px;
}

.homepage-btn:hover .homepage-header {
    background-color: transparent;
    color: var(--white);
    transition: 0.5s;
}

.homepage-btn:first-child {
    animation: floor-plan-bounce 5s infinite linear;
}

.homepage-btn:nth-child(2) {
    animation: floor-plan-bounce 5s infinite linear;
    animation-delay: 0.25s;
}

.homepage-btn:nth-child(3) {
    animation: floor-plan-bounce 5s infinite linear;
    animation-delay: 0.5s;
}

.homepage-sub-header {
    font-size: 1vw;
}


/* Page-2 */

#page-2 {
    margin-bottom: 10vh;
    position: relative;
}

.page-content-fp {
    padding: 1vh 0vw;
    width: 43vw;
    font-size: 1.25vw;
}

.header-2 {
    font-size: 3vw;
    padding: 1vh 0vw;
}

.header-fp {
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    WORD-SPACING: 0.5vw;
    letter-spacing: 0.25vw;
    font-weight: 100;
}

.fp-image {
    width: 45vw;
}

#sub-section-navbar-fp {
    position: absolute;
    bottom: 5vh;
    align-items: center;
    /* text-align: center; */
    right: 0;
    width: 30vw;
    align-content: center;
}

.sub-section-floor-plans {
    /* display: grid; */
    grid-template-columns: auto;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.sub-header-floor-plans {
    position: absolute;
    bottom: 5vh;
    top: 10vh;
    left: 30vw;
    width: 45vw;
}

.fp-content-container {
    position: absolute;
    bottom: 0vw;
}

.content-container {
    padding: 5vh 0vw;
}

#section-floor-plans {
    padding: 3vh 0vw;
}

#ul-navbar-fp {
    position: relative;
    bottom: 0;
    text-align: center;
    padding-inline-start: 0;
}

.header-plan-sizes {
    word-spacing: 0vw;
    letter-spacing: 0vw;
    font-size: 1.25vw;
}

.floor-plan {
    max-width: 25vw;
    height: 90vh;
    position: absolute;
    left: 5vw;
    bottom: 5vh;
}

.map {
    width: 100%;
}

.mobile-fp-btn-wrap {
    display: none;
}

.map-container {
    position: relative;
    width: 15vw;
    left: 50%;
    transform: translateX(-50%);
}

.table-fp-size {
    display: table-cell;
    columns: 2;
    column-gap: 3vw;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
}

.th-fp-size {
    padding-right: 1vw;
    border-right: 1px solid var(--grey);
}

.td-fp-size {
    padding-left: 1vw;
}

.active-fp {
    background: transparent !important;
    color: var(--grey) !important;
    border: 1px solid var(--white) !important;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 150px;
    height: 150px;
    z-index: 5;
}


/* Page-3 : Features */

#section-features {
    min-height: 100vh;
}

#page-content-features {
    position: relative;
    /* bottom: 0; */
    display: block;
    width: 100vw;
    height: 10vh;
}

#features {
    position: relative;
    width: 100vw;
    left: 0;
    /* transform: translateX(-50%); */
    display: block;
    max-height: 90vh;
}

.features-table {
    position: relative;
    /* left: 0; */
    display: inline-block;
    /* vertical-align: middle; */
    padding: 0;
    /* top: 9vh; */
    margin: 0;
    width: 100%;
    height: 100%;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

.features-tr {
    display: inline-block;
    width: 16.4%;
    height: 100%;
    /* margin: 2vh 0; */
    /* position: relative; */
    padding: 1vh;
    text-align: center;
}

.features-icons {
    display: inline-block;
    max-width: 20%;
    max-height: 6vh;
    position: relative;
    top: 1vh;
}

.features-label {
    width: 75%;
    margin: auto;
    position: relative;
    display: inline-block;
    font-size: 1.15vw;
    margin-left: 0.5vw;
    top: 50%;
    transform: translateY(-50%);
    vertical-align: top;
    text-align: left;
}


/* Page-4 : Specifications  */

#sub-section-features {
    height: 100vh;
}

#section-specifications {
    display: inline-block;
    width: 100vw;
    padding-top: 10vh;
}

.sub-header-specifications {
    padding: 1vh 2vw;
    top: 10%;
    transform: translateY(-10%);
    position: relative;
    list-style: none;
}

#sub-section-specifications-image {
    max-height: 90vh;
    width: 49vw;
    text-align: right;
    display: inline-block;
    position: relative;
}

.specifications-image {
    width: 100%;
    max-height: 100%;
}

#sub-section-specifications {
    display: inline-block;
    width: 50vw;
    max-height: 90vh;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    /* right: 50%; */
}

.specs-label {
    font-size: 1.5em;
    text-align: right;
}

.specs-content {
    text-align: right;
    font-size: 1.25em;
    /* padding-left: 10%; */
}


/* Page-5: Suitable */

#page-5 {
    margin-bottom: 3vh;
}

#section-location-benefits {
    padding-top: 10vh;
}

.map-image {
    height: 80vh;
    max-width: 40%;
    display: inline-block;
    padding-left: 10vw;
}

#sub-section-location {
    display: inline-block;
    vertical-align: top;
    max-width: 59%;
    padding-left: 10vw;
}

#sub-section-suitable {
    margin: 0;
    padding-left: 1.2rem;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.page-content.suitable {
    position: relative;
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5vw;
    margin-top: 2vh;
}

.page-content.suitable:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: var(--orange);
    transform-origin: bottom left;
    transform: rotate(45deg);
}


/* Page - 6 : Gallery */

#page-6 {
    max-width: 100vw;
    overflow-x: scroll;
    padding-top: 10vh;
}

.gallery {
    width: 100vw;
    height: 100vh;
    margin: auto;
    border-radius: 3px;
    overflow: auto;
    white-space: nowrap;
    position: relative;
}

.img-c {
    width: 30%;
    height: 99%;
    /*   float: left; */
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.img-w {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform ease-in-out 300ms;
}

.img-w img {
    display: none;
}

.img-c {
    transition: width ease 400ms, height ease 350ms, left cubic-bezier(0.4, 0, 0.2, 1) 420ms, top cubic-bezier(0.4, 0, 0.2, 1) 420ms;
}

.img-c:hover .img-w {
    transform: scale(1.08);
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
}

.img-c.active {
    height: 100% !important;
    width: 100% !important;
    position: fixed;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.img-c.postactive {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.img-c.active.positioned {
    left: 0 !important;
    top: 0 !important;
    position: fixed;
    transition-delay: 50ms;
}

.img-c.active.positioned .img-w {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/* Page-7: Inquiry */

#page-7 {
    align-content: center;
    padding-top: 10vh;
    background: var(--blue);
}

.section-left {
    position: relative;
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

.section-right {
    position: relative;
    display: inline-block;
    width: 45%;
}

#contact-form {
    width: 100%;
}

.sub-section.sub-section-inquiry {
    width: 100%;
}

.sub-section-inquiry {
    padding: 3vh 0vw;
    font-size: 1.5vw;
}

#sub-section-map {
    width: 100%;
    height: 30vh;
}

#sub-section-name {
    padding-top: 0;
}

#sub-section-message {
    min-height: 20vh;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.input-text {
    min-width: 70%;
    font-size: 1.25vw;
    font-family: Iceland;
    padding: 0.5vw;
    border-radius: 0.5vw;
    background: var(--white2);
}

.inquiry-label {
    /* padding: 2vh; */
    margin: auto;
    position: relative;
    width: 20%;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

textarea {
    resize: none;
    height: 15vh;
}

#sub-section-submit {
    position: absolute;
    right: 5vw;
    text-align: center;
    /* padding: 0; */
    /* border: 1px solid var(--white2); */
    width: auto;
    margin: 0;
}

.submit-button {
    background: var(--white);
    color: var(--blue);
    padding: 1vh 2vw;
    border-radius: 50vw;
    cursor: pointer;
    border: none;
}

.submit-button:hover {
    background: transparent;
    color: var(--white);
}

.address-nalanda {
    padding: 0;
    margin: 0;
}

.sub-section-address {
    font-size: 1.25vw;
}

.section-footer {
    width: 100%;
    background-color: var(--black);
    position: absolute;
    bottom: 0;
}

.sub-section-footer {
    padding: 1vh 2vw;
    display: inline-block;
    width: 24.8%;
    /* vertical-align: top; */
    text-align: center;
    height: 15vh;
}

.footer-images {
    width: auto;
    height: 9vh;
}

.footer-label {
    line-height: 1.5;
    font-size: 1.5em;
    padding: 1vh 0vw;
}

@media screen and (max-height:750px) and (max-width:1280px) {
    #sub-section-features {
        padding-top: 10vh;
    }
}