:root {
    --main-txt-color: #fff;
    --main-bg-color: #383838;
    --main-border-color: #f9cf16;
    --secondary-border-color: #383838;
    --secondary-txt-color: #383838;
}

/*Hero Image*/

.hero {
    /* height: 460px; */
    height: 387px;
    position: relative;
    box-shadow: 0 8px 6px rgb(0 0 0 / 20%), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hero__image {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center bottom;
    transition: 1s;
}

.hero__text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 100%;
    z-index: 2;
}

.hero__text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
}

.hero__text button:hover {
    background-color: #555;
    color: white;
}

.hero__text--title {
    font-size: 31px;
    color: var(--main-txt-color);
}

.search-icon {
    background-color: #2c7eef;
    color: #fff;
    padding: 12px;
    vertical-align: middle;
    font-size: 18px;
    cursor: pointer;
}

.custom-control {
    vertical-align: middle;
    width: 650px;
    outline: none;
    border: none;
    display: inline-block;
    height: 39px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-txt-color);
    border-radius: 3px;
    font-size: 16px;
}

.search__input {
    display: inline-block;
    padding-left: 10px;
    background-color: #fff;
}

.search__button {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #383938;
    text-transform: capitalize;
    padding: 11px 26px;
    border-radius: 3px;
    border: 2px solid #ffffff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 3px #222222;
}

.search__button:hover {
    background-color: #e22e29;
}

/* #search-type:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f007";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
} */

/*End of hero image*/

/*Menu links*/

.dd-button {
    display: inline-block;
    vertical-align: middle;
}

/* .user_profile {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.user__container--image {
    display: inline-block;
    margin-right: 5px;
}

.user__container--image img {
    height: 33px;
}

.navigation {
    padding: 15px 0;
    background-color: #f6fafc;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    box-shadow: 0 0 3px #9a9696;
}

/* .navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    line-height: inherit;
    white-space: nowrap;
    height: 50px;
    width: 100px;
} */

.navbar-brand img {
    vertical-align: middle;
    /* width: 100%; */
    height: 100%;
}

.navbar-list--container {
    display: inline-block;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.navigation__links {
    display: -webkit-box;
    display: flex;
    width: 100%;
}

.key__icon {
    margin-right: 5px;
    width: 10px;
    vertical-align: middle;
}

/* .navbar-list>li:last-child {
    float: right;
} */

.navbar-list .nav-item {
    display: inline-block;
    /* margin-left: 10px; */
}

.navbar-list .nav-item .nav-link {
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
}

.nav-item.active {
    border-bottom: 3px solid #383838;
}

/*User dropdown*/

.dropdown {
    text-align: right;
}

.user_profile {
    cursor: pointer;
}

.dd-button {
    display: inline-block;
    cursor: pointer;
}

.dd-input {
    display: none;
}

.dd-menu {
    z-index: 999;
    position: absolute;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    list-style-type: none;
}

.dd-input + .dd-menu {
    display: none;
}

.dd-input:checked + .dd-menu {
    display: block;
}

.dd-menu li {
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 0;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
    color: black;
}

.dd-menu li.divider {
    padding: 0;
    border-bottom: 1px solid #cccccc;
}

.button {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--secondary-border-color);
    text-transform: capitalize;
    padding: 8px 32px;
    border-radius: 3px;
    border: 1px solid var(--secondary-border-color);
}

.button:hover {
    background-color: #022d8c;
}

#list_property {
    color: #383838;
    background-color: transparent;
    /* border: 1px solid var(--secondary-border-color); */
    /* padding: 8px 24px; */
}

select {
    display: none;
}

.current {
    font-weight: 500;
}

.dropdown {
    color: var(--secondary-border-color);
    /* border: 1px solid var(--secondary-border-color); */
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
    cursor: pointer;
    font-size: 14px;
    vertical-align: middle;
    /* padding: 8px 24px; */
    position: relative;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    display: inline-block;
}

.dropdown:active,
.dropdown.open {
    background-color: #f0f0f0 !important;
    border-color: #e4e4e4;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.dropdown:after {
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--secondary-border-color);
    transform: origin(50% 20%);
    transition: all 0.125s ease-in-out;
    content: "";
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
}

.dropdown.open:after {
    transform: rotate(-180deg);
}

.dropdown.open .list {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown.open .option {
    cursor: pointer;
}

.dropdown.wide {
    width: 100%;
}

.dropdown.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.dropdown .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transform: scale(0.75);
    transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 3px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 999;
}

.dropdown .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.dropdown .list ul {
    padding: 0;
}

.dropdown .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 20px;
    text-align: left;
    transition: all 0.2s;
}

.dropdown .option:hover,
.dropdown .option:focus {
    background-color: #f6f6f6 !important;
}

.dropdown .option.selected {
    font-weight: 600;
}

.dropdown .option.selected:focus {
    background: #f6f6f6;
}

.by {
    bottom: 12px;
    color: #aaa;
    font-size: 12px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}

.list ul {
    margin: 0;
}

.list ul li {
    margin: 0;
}

/*Modal signup*/

.modale-signup:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}

.modale-create-signup:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}

.btn-close-signup {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    position: absolute;
    right: 17px;
    top: 6px;
}

.btn-close-signup:hover {
    color: #919191;
}

.opened-signup:before {
    display: block;
}

.opened-signup .modal-dialog-signup {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 20%;
    position: fixed;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.modal-dialog-signup {
    background: #fefefe;
    border: #333333 solid 0;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    z-index: 9;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(0, -500%);
    transform: translate(0, -500%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-dialog-signup .header__signup--title {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.modal-body-signup {
    padding: 30px 20px;
}

.modal-header-signup {
    padding: 10px 20px;
    text-align: center;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.modal-header-signup {
    border-bottom: #eeeeee solid 1px;
    background-color: var(--main-bg-color);
}

.g-recaptcha {
    display: inline-block;
    vertical-align: middle;
}

.btn-primary-register {
    padding: 25px 22px;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    background: #383838;
    color: #fff;
    display: inline-block;
}

.modal-footer-signup {
    text-align: center;
}

/*Signup css*/

h4 {
    color: var(--main-txt-color);
}

.input--credentials {
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    padding: 12px;
    line-height: 1.4;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 3px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.input--credentials:focus {
    outline: 0;
    border-color: var(--main-txt-color);
}

.input--credentials:focus + .input-icon i {
    color: var(--main-txt-color);
}

.input--credentials:focus + .input-icon {
    border-right: 1px solid var(--main-txt-color);
}

.input-group {
    margin-bottom: 1em;
    zoom: 1;
}

.input-group:before,
.input-group:after {
    content: "";
    display: table;
}

.input-group:after {
    clear: both;
}

.input-group-icon {
    position: relative;
}

.input-group-icon .input--credentials {
    padding-left: 4.4em;
}

.input-group-icon .input-icon {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 2.6em;
    text-align: center;
    pointer-events: none;
    border-right: 1px solid #e5e5e5;
    width: 45px;
}

/* .input-group-icon .input-icon:after {
        position: absolute;
        top: 0.6em;
        bottom: 0.6em;
        left: 2.8em;
        display: block;
        border-right: 1px solid #e5e5e5;
        content: "";
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    } */

.input-group-icon .input-icon i {
    vertical-align: middle;
}

.container-register {
    margin: 0em auto;
    background-color: #fff;
    border-radius: 3px;
    /* box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2); */
}

.container-register h4 {
    font-size: 36px;
}

.row {
    zoom: 1;
}

.row:before,
.row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

.col-half {
    padding-right: 10px;
    float: left;
    width: 50%;
}

.col-half:last-of-type {
    padding-right: 0;
}

.col-third {
    padding-right: 10px;
    float: left;
    width: 33.333333333333%;
}

.col-third:last-of-type {
    padding-right: 0;
}

@media only screen and (max-width: 540px) {
    .col-half {
        width: 100%;
        padding-right: 0;
    }
}

/* .btn-primary {
        padding: 25px 22px;
        cursor: pointer;
        border-radius: 3px;
        border: none;
        background: #383838;
        color: #fff;
        font-size: 17px;
        display: inline-block;
    } */

.sign-in-text {
    color: #978897;
    font-size: 14px;
}

.sign-in-btn {
    color: var(--main-txt-color);
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
}

.signin__container {
    display: inline-block;
}

.text-align-center {
    text-align: center;
}

.invalid-feedback-signup {
    display: block;
    color: red;
    font-weight: 600;
    font-size: 14px;
}

/*Tabs*/

/* .content {
    margin-top: 48px;
} */

.hero__form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs {
    border-radius: 5px;
    min-width: 240px;
}

.tabs input[name="tab-control"] {
    display: none;
}

.tabs .content section h2,
.tabs .tabs-ul .tabs-li label {
    color: var(--main-txt-color);
    font-weight: bold;
    font-size: 18px;
}

/* .tabs .tabs-ul {
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
} */

.tabs .tabs-ul .tabs-li {
    box-sizing: border-box;
    display: inline-block;
    margin-right: 30px;
}

.tabs .tabs-ul .published-tab {
    float: left;
    margin-right: 70px;
}

.tabs .tabs-ul .draft-tab {
    float: left;
}

.tabs .tabs-ul .add-tab {
    float: right;
}

.tabs .tabs-ul .tabs-li label {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #c1c1c1;
    padding: 5px auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    -webkit-touch-callout: none;
}

.tabs .tabs-ul .tabs-li label br {
    display: none;
}

.tabs .tabs-ul .tabs-li label:hover,
.tabs .tabs-ul .tabs-li label:focus,
.tabs .tabs-ul .tabs-li label:active {
    outline: 0;
    color: #bec5cf;
}

.tabs .slider {
    position: relative;
    width: 4.3%;
    -webkit-transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slider .indicator {
    position: relative;
    width: 50px;
    max-width: 100%;
    /* margin: 0 auto; */
    height: 4px;
    background: var(--main-bg-color);
    border-radius: 1px;
    margin: 0 10px;
}

.tabs .content section {
    display: none;
    -webkit-animation-name: content;
    animation-name: content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    line-height: 1.4;
}

.tabs .content section h2 {
    color: var(--main-txt-color);
    display: none;
}

.tabs .content section h2::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: var(--main-bg-color);
    margin-top: 5px;
    left: 1px;
}

.tabs
    input[name="tab-control"]:nth-of-type(1):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(1)
    > label {
    cursor: default;
    color: var(--main-txt-color);
    border-bottom: 3px solid var(--main-border-color);
}

.tabs
    input[name="tab-control"]:nth-of-type(1):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(1)
    > label
    svg {
    fill: var(--main-txt-color);
}

@media (max-width: 600px) {
    .tabs
        input[name="tab-control"]:nth-of-type(1):checked
        ~ .tabs-ul
        > .tabs-li:nth-child(1)
        > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.tabs
    input[name="tab-control"]:nth-of-type(1):checked
    ~ .content
    > section:nth-child(1) {
    display: block;
}

.tabs
    input[name="tab-control"]:nth-of-type(2):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(2)
    > label {
    cursor: default;
    color: var(--main-txt-color);
    border-bottom: 3px solid var(--main-border-color);
}

.tabs
    input[name="tab-control"]:nth-of-type(2):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(2)
    > label
    svg {
    fill: var(--main-txt-color);
}

@media (max-width: 600px) {
    .tabs
        input[name="tab-control"]:nth-of-type(2):checked
        ~ .tabs-ul
        > .tabs-li:nth-child(2)
        > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.tabs
    input[name="tab-control"]:nth-of-type(2):checked
    ~ .content
    > section:nth-child(2) {
    display: block;
}

.tabs
    input[name="tab-control"]:nth-of-type(3):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(3)
    > label {
    cursor: default;
    color: var(--main-txt-color);
    border-bottom: 3px solid var(--main-border-color);
}

.tabs
    input[name="tab-control"]:nth-of-type(3):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(3)
    > label
    svg {
    fill: var(--main-txt-color);
}

@media (max-width: 600px) {
    .tabs
        input[name="tab-control"]:nth-of-type(3):checked
        ~ .tabs-ul
        > .tabs-li:nth-child(3)
        > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
}

.tabs
    input[name="tab-control"]:nth-of-type(3):checked
    ~ .content
    > section:nth-child(3) {
    display: block;
}

.tabs
    input[name="tab-control"]:nth-of-type(4):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(4)
    > label {
    cursor: default;
    color: var(--main-txt-color);
}

.tabs
    input[name="tab-control"]:nth-of-type(4):checked
    ~ .tabs-ul
    > .tabs-li:nth-child(4)
    > label
    svg {
    fill: var(--main-txt-color);
}

@media (max-width: 600px) {
    .tabs
        input[name="tab-control"]:nth-of-type(4):checked
        ~ .tabs-ul
        > .tabs-li:nth-child(4)
        > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
    -webkit-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs
    input[name="tab-control"]:nth-of-type(4):checked
    ~ .content
    > section:nth-child(4) {
    display: block;
}

@-webkit-keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@media (max-width: 1000px) {
    .tabs ul li label {
        white-space: initial;
    }
    .tabs ul li label br {
        display: initial;
    }
    .tabs ul li label svg {
        height: 1.5em;
    }
}

@media (max-width: 600px) {
    .tabs ul li label {
        padding: 5px;
        border-radius: 5px;
    }
    .tabs ul li label span {
        display: none;
    }
    .tabs .slider {
        display: none;
    }
    .tabs .content {
        margin-top: 20px;
    }
    .tabs .content section h2 {
        display: block;
    }
}

/*Feature Section Mobile */
.feature-mobile {
    margin: 48px 0;
}
.image__figcaption--title--mobile {
    font-weight: 600;
    font-size: 24px;
    color: #4e3838;
    width: 80%;
    display: block;
    margin: 16px auto;
}
.image__figcaption--description--mobile {
    color: #000000;
    margin-top: 16px;
    display: block;
    font-size: 16px;
    line-height: 1.5;
}
#section-features {
    padding: 20px;
    display: none;
    border-bottom: 1px solid #ffe8e8;
}
#section-footer {
    display: none;
    padding: 20px;

    /* background-image: url(/assets/image/icon/background-footer.png);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100%; */
}
.footer__container--mobile .navbar-brand {
    margin: 14px auto;
}
.footer__container--mobile .powered__container {
    display: block;
}
.footer__container--mobile {
    text-align: center;
}
.footer__container--mobile a {
    display: block;
}
.py-100 {
    padding-bottom: 0px !important;
}
.py-100 .container_12 {
    padding: 16px;
}
/*Feature Section Desktop*/

.feature {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 16px 0;
}

.image__figure {
    text-align: center;
    margin-bottom: 0;
}

.image__figure--size {
    height: 100%;
}

.image__figcaption {
    margin-top: 16px;
}

.image__figcaption--title {
    color: var(--secondary-txt-color);
    font-weight: 600;
    font-size: 24px;
    width: 80%;
    display: block;
    margin: 16px auto;
}

.image__figcaption--description {
    color: #383838;
    margin: 16px auto;
    width: 80%;
    display: block;
    font-size: 16px;
    line-height: 1.5;
}

.image__container {
    height: 129px;
}

/*Icon for categories*/

#real__estate--span::before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 2;
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f1ad";
    margin-right: 5px;
}

#car--span::before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 2;
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f1b9";
    margin-right: 5px;
}

#events_place--span::before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 2;
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    margin-right: 5px;
}

/*Stories Section*/

#stories-section {
    background-color: var(--main-bg-color);
    position: relative;
    height: 640px;
}

.story__title h1 {
    color: #fff;
    font-size: 48px;
    z-index: 2;
    position: relative;
    margin: 48px 0;
    text-align: center;
}

#quote-left {
    z-index: 1;
    display: block;
    top: 50px;
    left: 70px;
    font-size: 180px;
    color: #00000030;
    position: absolute;
}

#quote-right {
    z-index: 1;
    display: block;
    bottom: 15px;
    right: 70px;
    font-size: 180px;
    color: #00000030;
    position: absolute;
}

.stories {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-evenly;
}

.story__container {
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    height: 340px;
    position: relative;
    width: 300px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    position: relative;
    z-index: 3;
    padding: 24px;
}

.story__image,
.story__name {
    text-align: center;
}

.story__image--size {
    text-align: center;
    margin: 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.story__description {
    text-align: center;
    margin-top: 16px;
}

.story__description--paragraph {
    line-height: 1.5;
    font-size: 16px;
    color: var(--secondary-txt-color);
}

.story--span {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary-txt-color);
}

/*Search grids input*/

.search__property--house,
.search__property--cars {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-evenly;
}

.search__property--event {
    justify-content: center;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 8px;
}


/*Footer Section*/
.mr-20 {
    margin-right: 20px;
}

.powered__container,
.copyright-text,
.contact__container--footer {
    display: inline-block;
}

.copyright-text {
    color: #737373;
}

.contact-image {
    width: 180px;
}

.powered__company--text {
    color: #737373;
}

.eastgate_logo__container {
    width: 124px;
    display: inline-block;
    margin-left: 5px;
}

.eastgate-logo {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.eastgate-logo:hover {
    -webkit-filter: none;
    filter: none;
}

img {
    color: transparent;
    font-size: 0;
    vertical-align: middle;
}

.label__text--color {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    font-size: 13.5pt;
    text-shadow: 0px 2px 3px black;
}

.dropdown-menu {
    width: 383px;
    position: absolute;
    color: #383838;
    background-color: white;
    margin-left: -10px;
    margin-top: 5px;
    border-radius: 3px;
    color: #000;
    display: block;
    box-shadow: 0 0 3px 0px #514f4d;
    /* height: 200px;
    overflow-y:scroll; */
}

.dropdown-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-left: 0;
    cursor: pointer;
    text-align: initial;
}
.slider {
    height: 387px;
    position: relative;
}
.cover_link{
    transition: 1s;
    position: absolute;
    opacity: 0;
    transition: 1s;

}
.slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
}
.slider:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(rgb(167 159 159 / 50%), rgb(0 0 0 / 84%)); */
    opacity: 0.7;
}
#tab-property {
    background-color: #383838c7;
    padding: 25px 25px 30px 25px;
}

.active {
    opacity: 1 !important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
}
.mobile-hero-page {
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}
.overflow {
    overflow-x: hidden;
    position: relative;
}

/*Carousel*/
.carousel {
    width: 100vw;
    display: none;
    margin-top: 71px;
}
.carousel .slide {
    width: 324px;
    margin: 0 auto;
}
.slide img {
    width: 100%;
}
.center {
    /* background-image: -webkit-linear-gradient(150deg, #114dd2 35%, #383838 35%); */
}
.center .slide {
    position: relative;
}
.center img {
    width: 100%;
    height: 100%;
}
.center .slide:nth-of-type(1) {
    margin-left: -0.3em;
}
.badge {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.6em 1em;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1px;
}
.badge p {
    margin: 0;
}

/*Download buttons*/
.flex {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    width: 100vw;
    justify-content: center;
}
.app-btn {
    width: 45%;
    max-width: 145px;
    color: #fff;
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
}
.app-btn.blu {
    background-color: #101010;
    -webkit-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
    padding: 4px;
}

.app-btn.blu:hover {
    background-color: #454545;
    color: #fff !important;
}
.app-btn.blu p {
    margin-bottom: 0;
}
.app-btn i {
    width: 20%;
    text-align: center;
    font-size: 24px;
    margin-right: 7px;
}
.app-btn .big-txt {
    font-size: 16px;
    text-transform: capitalize;
}
#app-download {
    display: none;
    background-color: #383838;
    background-image: -webkit-linear-gradient(150deg, #114dd2 35%, #383838 35%);
    min-height: 270px;
}
#app-title {
    text-align: center;
    padding: 20px;
    color: #fff;
}
#app-title h1 {
    margin-bottom: 0;
}
.refer__container {
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    /* background-image: url("/assets/image/entertainment/sell_entertainment_updated.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #d6d1cb;
}
.refer__description--container {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.refer__rewards--container {
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    width: 200px;
    display: inline-block;
    margin-right: 9px;
    vertical-align: middle;
}
.refer__rewards-one {
    color: #383838;
    font-size: 20px;
    text-align: right;
    display: block;
    text-shadow: 0 2px #fff;
}
.refer__rewards-two {
    color: #383838;
    font-size: 36px;
    display: block;
    text-align: right;
    text-shadow: 0 2px #fff;
}
.refer__grid {
    display: grid;
    grid-template-columns: 59% 32%;
    align-content: center;
    justify-content: center;
    height: 100%;
}
.refer__image {
    width: 112px;
    margin: 0px auto;
    display: inline-block;
}
.refer__container--image {
    text-align: center;
}
.refer__image img {
    width: 100%;
    height: 100%;
}
.main__features {
    font-size: 31px;
    font-weight: bold;
    color: #d52c26;
    text-align: center;
    display: block;
    margin-top: 24px;
}
.refer__description {
    text-shadow: 0 2px #1d1d1d;
}
.learn__more {
    display: inline-block;
    text-shadow: 0 2px #1d1d1d;
    font-size: 38px;
}

[data-tip] {
    position: relative;
}
[data-tip]:before {
    content: "";
    /* hides the tooltip when not hovered */
    display: none;
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #1a1a1a;
    position: absolute;
    top: 30px;
    left: 35px;
    z-index: 8;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}
[data-tip]:after {
    display: none;
    content: attr(data-tip);
    position: absolute;
    top: 35px;
    left: 0px;
    padding: 5px 8px;
    background: #1a1a1a;
    color: #fff;
    z-index: 9;
    font-size: 0.75em;
    height: 18px;
    line-height: 18px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    white-space: nowrap;
    word-wrap: normal;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
    display: block;
}
/* .loading {
    background-color: #ffffff;
    background-image: url("/assets/image/loading.gif");
    background-size: 25px 25px;
    background-position: 96% 53%;
    background-repeat: no-repeat;
} */
.entertainment__rewards--container {
    display: grid;
    grid-template-columns: 49.8% 49.8%;
    justify-content: space-between;
    height: 200px;
    margin-top: 10px;
}
.appstore__container {
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url(/assets/image/entertainment/mobile_app_entertainment.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.appstore__button--container {
    padding-top: 45px;
    width: 30%;
    text-align: right;
    margin-left: auto;
    margin-right: 40px;
}
.appstore__button--container img {
    width: 100%;
}
#location_input {
    display: none;
}
.hero__title {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #000;
    width: 70%;
    margin: 20px auto;
}
.hero__tagline {
    text-align: center;
    font-weight: 500;
}
.hero__feature__container {
    display: grid;
    /* grid-template-columns: 22% 22% 22% 22%; */
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
}
.feature__container {
    text-align: center;
}
.feature__image {
    border-radius: 8px;
    box-shadow: 1px 1px 5px 0px #918f8f;
    width: 396px;
    height: 222.75px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.feature__image:after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 80%;
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 80%,rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8) 100%);
}
.category_title{
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    letter-spacing: .1em;
}
.feature__image > div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.live_grid {
    display: grid;
    grid-template-columns: 49.8% 49.8%;
    justify-content: space-between;
    margin-top: 4px;
    height: 200px;
}
.listing__container {
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    /* background-image: url(/assets/image/entertainment/homepage_kitchen.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.feature__image{
    overflow: hidden;
}
