/* @group Property Search
------------------------------------ */
.property-search{
    --top: 7rem;
    background-color: var(--bg-nav);
    position: fixed;
    top: var(--top);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--top));
    z-index: 10;
    padding-top: 4.3rem;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out, transform .5s ease-in-out;
}

body.toggleSearch .property-search{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.property-search .row{
    max-width: 144rem;
}

.property-search--scroll{
    position: relative;
}

.property-search__line{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 0;
}

.property-search__top{
    text-align: center;
}

.property-search__title{
    font-weight: 700;
    font-size: 3.6em;
    line-height: 4.2rem;
    text-transform: uppercase;
    color: var(--teal);
}

/* Bottom */

.property-search__bottom{
    padding-top: 4.5rem;
}

.property-search__bottom__item{
    padding-block: 2.8rem;
    position: relative;
}

.property-search__bottom__item:after{
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    height: 0.1rem;
    width: calc(100% + 2rem);
    background-color: var(--main-grey);
}

.property-search__bottom__item h3{
    font-weight: 600;
    font-size: 1.4em;
    line-height: 2.2rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--main-white);
}

.property-search__bottom__item ul li a{
    font-weight: 300;
    font-size: 1.4em;
    line-height: 2.4rem;
    letter-spacing: -0.01em;
    color: var(--main-white);
    text-decoration: underline;
}
 
@media only screen and (min-width : 961px) {
    .property-search{
        padding-top: 0;
    }

    .property-search__line{
        height: 96rem;
        width: 140rem;
    }

    .property-search__title{
        font-weight: 700;
        font-size: 7.5rem;
        line-height: 7.5rem;
    }

    .property-search--scroll{
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .property-search--scroll .row{
        flex: 0 1 50%;
    }
    
    .property-search--scroll .row:last-child{
        flex: 0 0 auto;
    }
    
    .property-search__bottom {
        padding-top: 0;
        position: relative;
        padding-block: 9rem;
    }

    .property-search__bottom:before,
    .property-search__bottom:after {
        content: '';
        position: absolute;
        top: 0;
        left: -20vw;
        height: 0.1rem;
        width: 120vw;
        background-color: var(--main-grey);
    }

    .property-search__bottom:after{
        top: auto;
        bottom: 0;
    }

    .property-search__bottom__item{
        padding-block: 0;
        padding-left: 3.3rem;
    }

    .property-search__bottom__item:after{
        bottom: 0;
        left: 0;
        height: 100%;
        width: 0.1rem;
    }

    .property-search__bottom__item:first-child::after{
        /* display: none; */
    }

    .property-search__bottom__item:last-child ul{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */
