/* =========================================================
PROPERTY SLIDER
========================================================= */

.main-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.property-slider-slides {
    position: relative;
    width: 100%;
    min-height: 650px;
}


/* =========================================================
   SLIDES
   ========================================================= */

.property-slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 650px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease,
    visibility 0.8s ease;

    z-index: 1;
}

.property-slide.active {
    position: relative;

    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.property-slider-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.60) 35%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.10) 100%
    );

    z-index: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */

.property-slider-content {
    position: relative;
    z-index: 3;

    width: 100%;

    padding-top: 70px;
    padding-bottom: 70px;
}

.property-slider-details {
    color: #fff;
    max-width: 800px;
}


/* =========================================================
   STATUS
   ========================================================= */

.property-status-wrapper {
    margin-bottom: 18px;
}

.property-status {
    display: inline-block;

    padding: 7px 16px;

    background: #fff;
    color: #222;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    border-radius: 3px;
}


/* =========================================================
   TITLE
   ========================================================= */

.property-slider-title {
    margin: 0 0 15px 0;

    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}

.property-slider-title-link {
    color: #fff;
    text-decoration: none;
}

.property-slider-title-link:hover,
.property-slider-title-link:focus {
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   LOCATION
   ========================================================= */

.property-slider-location {
    margin-bottom: 25px;
}

.property-slider-location-link {
    display: inline-flex;
    align-items: center;

    color: #fff;

    font-size: 18px;

    text-decoration: none;
}

.property-slider-location-link:hover,
.property-slider-location-link:focus {
    color: #fff;
    text-decoration: none;
}

.property-slider-location-link i {
    margin-right: 9px;
}


/* =========================================================
   INFO
   ========================================================= */

.property-slider-info {
    display: flex;
    flex-wrap: wrap;

    margin: 0 -10px 25px;
}

.property-slider-info-item {
    display: flex;
    align-items: center;

    margin: 5px 10px;

    font-size: 15px;
}

.property-slider-info-item i {
    width: 22px;

    margin-right: 7px;

    text-align: center;
}


/* =========================================================
   PRICE
   ========================================================= */

.property-slider-price {
    margin-top: 10px;

    font-size: 30px;
    font-weight: 700;

    color: #fff;
}

.property-slider-price .currency {
    margin-right: 4px;
}

.property-slider-price .price-separator {
    margin-left: 5px;
    margin-right: 5px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.property-slider-actions {
    margin-top: 25px;
}

.property-slider-button {
    display: inline-block;

    padding: 12px 24px;

    background: #fff;
    color: #222;

    border-radius: 3px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.property-slider-button:hover,
.property-slider-button:focus {
    background: #222;
    color: #fff;

    text-decoration: none;

    transform: translateY(-1px);
}


/* =========================================================
   PREVIOUS / NEXT
   ========================================================= */

.property-slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;

    background: rgba(0, 0, 0, 0.35);
    color: #fff;

    font-size: 28px;
    line-height: 48px;

    text-align: center;

    cursor: pointer;

    transform: translateY(-50%);

    transition: background 0.25s ease;
}

.property-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.70);
}

.property-slider-prev {
    left: 20px;
}

.property-slider-next {
    right: 20px;
}


/* =========================================================
   DOTS
   ========================================================= */

.property-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 10;

    display: flex;
    align-items: center;

    transform: translateX(-50%);
}

.property-slider-dot {
    width: 10px;
    height: 10px;

    margin: 0 5px;
    padding: 0;

    border: 2px solid #fff;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: background 0.25s ease,
    transform 0.25s ease;
}

.property-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .property-slider-slides,
    .property-slide {
        min-height: 570px;
    }

    .property-slider-title {
        font-size: 42px;
    }

    .property-slider-price {
        font-size: 26px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .property-slider-slides,
    .property-slide {
        min-height: 540px;
    }

    .property-slider-content {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .property-slider-title {
        font-size: 32px;
    }

    .property-slider-location-link {
        font-size: 16px;
    }

    .property-slider-info {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .property-slider-info-item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .property-slider-price {
        font-size: 23px;
    }

    .property-slider-arrow {
        width: 38px;
        height: 38px;

        font-size: 22px;
        line-height: 38px;
    }

    .property-slider-prev {
        left: 8px;
    }

    .property-slider-next {
        right: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .property-slider-title {
        font-size: 28px;
    }

    .property-slider-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .property-slider-arrow {
        display: none;
    }

}
