/* ===== Hero ===== */
.features {
    color: rgba(255,255,255, 0.8);
    margin: 0;
    padding: 0;
}
.features li {
    display: inline-block;
    margin: 2px;
}
.features li:first-child {
    margin-left: 0;
}

/* ==== Main === */
/* slider*/
.img_slider{
    width: 100%;
    height:700px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 0;
    background-color: inherit;
}
.img_slide_viewer{
    height: inherit;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}
.img_slide_group{
    height: inherit;
    position: absolute;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
.img_slide {
    display: none;
    height: inherit;
    position: absolute;
    width: 100%;
    transition: all 0.7s;
    transition-duration: 1s;
    padding: 0;
    margin: 0;
}
.img_slider:hover .slide_btn {
    opacity: 1;
}
.img_slide img {
    width: 100%;
    height: inherit;
}
.img_slide:first-child{
    display: block;
}
.slide_btn_tiles {
    width: 95%;
    height: 110px;
    padding: 0 10px;
    overflow: hidden;
    background-color: transparent;
    position: absolute;
    text-align: center;
    margin: 0 2%;
    bottom: 0;
}
.slide_buttons {
    width: 100%;
    height:inherit;
    padding: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    background-color: rgba(0,0,0, 0);
    position: absolute;
    transition: all 0.4s ease-in-out;

    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}
.slide_buttons::-webkit-scrollbar {
    height: 0;
    background: transparent;  /* optional: just make scrollbar invisible */
}
.slide_btn {
    width: 130px;
    height: 100px;
    opacity: 0;
    display: inline-block;
    position: relative;
    margin: 0 0.2em;
    transition: all 0.4s ease-in-out, opacity 1s ease-in-out;

    -webkit-transition: all 0.4s ease-in-out, opacity 1s ease-in-out;
    -moz-transition: all 0.4s ease-in-out, opacity 1s ease-in-out;
    -ms-transition: all 0.4s ease-in-out, opacity 1s ease-in-out;
    -o-transition: all 0.4s ease-in-out, opacity 1s ease-in-out;
}
.slide_btn.active, .slide_btn:hover{
    width: 135px;
    height: 110px;
    border: solid white 2px;
    cursor: pointer;
    margin: 0 0.15em;
    margin-right: -0.05em;
}
/* end slider*/
#next {
    float: right;
    position: absolute;
    right: 0;
    width: 10%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
#back {
    float: left;
    position: absolute;
    left: 0;
    width: 10%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.line-arrow {
    position: absolute;
    overflow: hidden;
    display: inline-block;
    font-size: 24px; /*set the size for arrow*/
    width: 2em;
    height: 2em;
    margin-top: -2em;
    top: 50%;
}

.line-arrow.left {
    border-top: 4px solid #22bb5b;
    border-left: 4px solid #22bb5b;
    transform: rotate(-54deg) skew(-20deg);
    left: 30px;
}

.line-arrow.right {
    border-top: 4px solid #22bb5b;
    border-right: 4px solid #22bb5b;
    transform: rotate(54deg) skew(20deg);
    right: 30px;
}
#next:hover, #back:hover {
    cursor: pointer;
    background-color: rgba(0,0,0, 0.3);
}
#next:hover .line-arrow, #back:hover .line-arrow  {
    border-width: 6px;
}
/* Menu of properties */
.menu_of_properties {
    width: 100%;
    height: auto;
    color: black;
    position: relative;
    background-color: #F1ECD6;
    margin-top: 20px;
    margin-bottom: 20px;
}
.property {
    width: 100%;
    height: 290px;
    margin-bottom: 20px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.property:hover {
    cursor: pointer;
}
.property:hover .tile_info {
    visibility: visible;
    width: 100%;
}
.property:hover .tile_info1 {
    height: auto;
}
.firstImg {
    width: 100%;
    height: 290px;
}
.tile_info {
    top: 0;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    height: 100%;
    width: 100%;
    color: #F1ECD6;;
    background-color: rgba(0,0,0,0.6);
    -webkit-transition: all 100ms ease-out 10ms;
    -moz-transition: all 100ms ease-out 10ms;
    -ms-transition: all 100ms ease-out 10ms;
    -o-transition: all 100ms ease-out 10ms;
    transition: all 100ms ease-out 10ms;
}
.tile_info1 {
    display: none;
    height: auto;
    bottom: 0;
    position: absolute;
    color: white;
    overflow: hidden;
    width: auto;
    -webkit-transition: all 100ms ease-in-out 200ms;
    -moz-transition: all 100ms ease-in-out 200ms;
    -ms-transition: all 100ms ease-in-out 200ms;
    -o-transition: all 100ms ease-in-out 200ms;
    transition: all 100ms ease-in-out 200ms;
}

.property:hover {
    cursor: pointer;
}
.property:hover .tile_info {
    visibility: visible;
}
.property:hover .tile_info1 {
    height: auto;
}


/* MEDIA QUERIES */
@media (max-width: 820px) {
    .slide_info {
        width: 95%;
        padding: 10px;
        text-align: left;
    }
    .tile_info {
        visibility: visible;
    }
    .slide_btn {
        opacity: 1;
    }
}