
.inner-wrapper .hero {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    height: calc(var(--window-height) - var(--bottom-menu-height));
}

.inner-wrapper .hero .darken {
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 35%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--menu-height);
}

.inner-wrapper .hero .logo {
    /* width: 100%; */
    max-width: 40vw;
    max-height: 30vh;
}

.inner-wrapper .hero .title {
    font-family: 'Ragam', sans-serif;
    font-size: 2em;
    color: white;
    text-align: left;
    margin: 20px 0;
    line-height: 1.2em;
}

.inner-wrapper .hero .inner {
    height: 100%;
    align-content: center;
}

.floorplans {

}

.floorplans .title {
    font-family: 'contralto-small', sans-serif;
    font-weight: 600;
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    color: #23433e;
}

.floorplans .subtitle {
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'elza', sans-serif;
}

.tab-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-container .tab {
    padding: 10px 10px 5px 10px;
    cursor: pointer;
    font-family: 'elza', sans-serif;
    font-size: 1.2em;
    color: #23433e;
    border-radius: 100% 100% 0% 0%;
    border-width: 2px;
    border-style: solid;
    border-color: #23433e;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tab-container .tab img {
    width: 32px;
    height: 32px;
    display: block;
    vertical-align: middle;
}

.tab-container .tab .ifinactive {
    
}

.tab-container .tab .ifactive {
    display: none;
}

.tab-container .tab.active {
    background: #23433e;
    color: white;
    border-color: #23433e;
}

.tab-container .tab.active .ifinactive {
    display: none;
}
.tab-container .tab.active .ifactive {
    display: block;
}

.tab-container .tab span {
    font-size: 0.5em;
    margin-top: 10px;
}

.tab-contents {
    margin-top: 40px;
}

.tab-contents .tab-content {
    display: none;
    position: relative;
}
.tab-contents .tab-content.active {
    display: block;
}

.tab-contents .tab-content .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    pointer-events: none;
}

.tab-contents .tab-content .overlay svg {
    position: absolute;
    top: 0px;
    left: 0px;
}

.tab-contents .tab-content .overlay svg polygon, .tab-contents .tab-content .overlay svg path {
    fill: rgba(0, 255, 0, 0.5);
    opacity: .5;
    pointer-events: all;
    cursor: pointer;
}

.tab-contents .tab-content .overlay svg polygon:hover, .tab-contents .tab-content .overlay svg path:hover {
    opacity: 1;
}

.tab-contents .tab-content .units {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 50px;
}

.tab-contents .tab-content .units .unit {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 33%);
    background: white;
}

.tab-contents .tab-content .units .unit .preview {
    width: 100%;
    height: 200px;
    background-image: var(--bg-image);;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 10px;
}

.tab-contents .tab-content .units .unit .details {
    background-color: #061d1d;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}

.tab-contents .tab-content .units .unit .details .title {
    font-family: 'contralto-small', sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    color: white;
    margin-top: 0px;
}

.tab-contents .tab-content .units .unit .details .button {
    margin-top: 20px;
}


.tab-contents .tab-content .units .unit .details .items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.tab-contents .tab-content .units .unit .details .items .item {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    align-items: center;
}

.tab-contents .tab-content .units .unit .details .items .item img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.tab-contents .tab-content .units .unit .details .items .item .name {
    color: #b57733;
}

#cursorText {
    display: none;
}

@media (min-width: 768px) {
    #cursorText {
        display: block;
        width: 150px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: white;
        opacity: 0;
        pointer-events: none;
        padding: 10px;
        border-radius: 10px;
        transition-duration: opacity .5s;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .inner-wrapper .hero {
        height: var(--window-height);
    }

    .inner-wrapper .hero .logo {
        width: 25%;
    }

    .inner-wrapper .hero .title {
        font-size: 5em;
    }

    .tab-container .tab {
        flex: unset;
        padding: 20px 30px 10px 30px;
    }

    .tab-container .tab img {
        width: 64px;
        height: 64px;
    }

    .tab-container .tab span {
        font-size: 0.7em;
    }

    .tab-contents .tab-content .units {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .tab-contents .tab-content .units .unit {
        flex: 1 1 calc(50% - 20px);
    }

    .tab-contents .tab-content .units .unit .preview {
        height: 300px;
    }

    .tab-contents .tab-content .units .unit .details .title {
        margin-left: 20px;
    }

    .tab-contents .tab-content .units .unit .details .unit-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tab-contents .tab-content .units .unit .details .unit-header .button {
        margin-top: 0px;
    }

    .tab-contents .tab-content .units .unit .details .items .item {
        flex: 1;
    }

    .tab-contents .tab-content .units .unit .details .items .item .name {
        font-size: 0.8em;
    }
}

@media (min-width: 1200px) {
    
}