/* CSS Document */

body {
    color: #333;
    margin: 0;
    padding: 0px;
}

img {
    width: 100%;
}

a {
    color: #333;
    transition: 400ms;
    text-decoration: none;
}

a:hover {
    color: #111;
    text-decoration: none;
}

.scrollup {
    position: fixed;
    right: 12px;
    bottom: 35px;
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-weight: 900;
    font-size: 20px;
    z-index: 99999999 !important;
    display: none;
    border-radius: 12px;
    background-color: #333;
    transition: 400ms;
}

.scrollup:hover {
    color: #FFF;
    background-color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ul li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    line-height: 14px !important;
}

.btn-hg-1 {
    display: inline-block;
    background-color: #1A8944;
    border-color: #1A8944;
    padding: 12px 25px;
    color: #FFF;
}

.btn-hg-1:hover {
    background-color: #067230;
    border-color: #067230;
    color: #FFF;
}

.btn-hg-2 {
    display: inline-block;
    background-color: transparent;
    border-color: #1A8944;
    padding: 12px 25px;
    color: #1A8944;
}

.btn-hg-2:hover {
    background-color: #067230;
    border-color: #067230;
    color: #FFF;
}

.btn-long {
    padding: 12px 40px;
}

.no-caps {
    text-transform: none !important;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

.padding-1 {
    padding: 70px 0px;
}

.padding-2 {
    padding: 70px 0px 200px;
}

.padding-3 {
    padding: 80px 0px 80px;
}

.padding-4 {
    padding: 120px 0px;
}

.bg-lighten {
    background-color: #FAFAFA;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-select {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 992px) {
    .padding-1 {
        padding: 40px 0px;
    }
    .padding-2 {
        padding: 40px 0px 100px;
    }
    .padding-3 {
        padding: 60px 0px 60px;
    }
    .padding-4 {
        padding: 70px 0px;
    }
}


/* End Default CSS*/


/* Start Header CSS */

.header-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    position: absolute;
    padding: 25px 0px;
    transition: 400ms;
}

.header-wrapper-secondary {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    position: fixed;
    padding: 10px 0px;
    transition: all ease 400ms;
    display: none;
    background-color: #FFF !important;
}

.navbar-brand img {
    width: 230px;
}

.nav-link {
    font-size: 16px;
}

.d-flex-login {
    margin-left: 40px;
    display: flex;
}

.link-size {
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .header-wrapper-secondary {
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        position: fixed;
        padding: 10px 0px;
        transition: 400ms;
        display: block !important;
        background-color: #FFF;
    }
    .navbar-toggler {
        box-shadow: none !important;
    }
    .navbar-nav {
        padding: 30px 0px !important;
        text-align: center;
    }
    .d-flex-login {
        margin-left: 0px;
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .navbar-brand img {
        width: 190px;
    }
}


/* end Header */


/* Start Slider Wrapper */

.slider-wrapper {
    position: relative;
    padding: 250px 0px;
}

.slider-content {
    color: #FFF;
}

.slider-content h1 {
    font-weight: 700;
    font-size: 75px;
}

.search-container {
    display: flex;
}

.search-container .form-control {
    color: #FFF !important;
    font-size: 14px;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.2);
    border-right: none !important;
    padding: 10px;
}

.radius-1 {
    border-radius: 0px !important;
    -webkit-border-top-left-radius: 5px !important;
    -webkit-border-bottom-left-radius: 5px !important;
    -moz-border-radius-topleft: 5px !important;
    -moz-border-radius-bottomleft: 5px !important;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.search-container ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFF !important;
    opacity: 1;
    /* Firefox */
}

.search-container :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #FFF !important;
}

.search-container ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #FFF !important;
}

.search-container .input-group-text {
    color: #FFF;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group-text {
    cursor: pointer !important;
}

.input-group-text span {
    display: flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #000000;
    color: #FFF;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.btn-search {
    position: relative;
    height: 100%;
    color: #FFF;
    font-size: 14px;
    padding: 10px 30px;
    background-color: #1A8944;
    border: 1px solid #1A8944 !important;
    -webkit-border-top-right-radius: 5px !important;
    -webkit-border-bottom-right-radius: 5px !important;
    -moz-border-radius-topright: 5px !important;
    -moz-border-radius-bottomright: 5px !important;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.btn-search:hover {
    background-color: #067230;
    border: 1px solid #067230 !important;
}

.dropdown-width {
    width: 900px;
    padding: 20px;
    margin: -1px 0px 0px 0px !important;
}

.droplist {
    display: block;
}

.droplist ul {
    display: flex;
    flex-direction: column;
}

.droplist ul li {
    display: block;
    margin: 0px 0px 10px 0px;
}

.droplist ul li a {
    text-decoration: none;
    color: #15151F;
    font-size: 15px;
}

.droplist ul li a:hover {
    text-decoration: none;
    color: #1A8944;
}

.droplist ul li:last-child {
    margin: 0px 10px 0px 0px;
}

@media screen and (max-width: 992px) {
    .slider-wrapper {
        position: relative;
        padding: 150px 30px 50px;
    }
    .slider-content h1 {
        font-weight: 700;
        font-size: 28px;
    }
    .slider-content br {
        display: none;
    }
    .search-container {
        display: flex;
        flex-direction: column;
    }
    .radius-1 {
        border-radius: 0px !important;
    }
    .input-group {
        margin-bottom: 10px !important;
    }
    .btn-search {
        border-radius: 0px !important;
    }
}


/* End Slider Wrapper */


/* Start Content CSS */

.web-title {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-header {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-header {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.web-title p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.web-title .form-select {
    min-width: 280px !important;
    border-color: #15151F;
    box-shadow: none;
    font-size: 16px;
    padding: 10px;
}

@media screen and (max-width: 992px) {
    .main-header {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    .web-title p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .web-title .form-select {
        min-width: 240px !important;
    }
}

.category-thumbnail {
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.category-thumbnail h5 {
    width: 100%;
    color: #FFF;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    background-color: rgba(17, 17, 17, 0.795);
}

@media screen and (max-width: 992px) {
    .category-thumbnail {
        margin-bottom: 25px;
        min-height: 180px;
    }
}

.services-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
}

.icons-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    background-color: #FFF;
    box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.1);
    border-radius: 50%;
}

.services-circle:hover .icons-1 {
    box-shadow: 0px 4px 8px rgba(17, 17, 17, 0.1);
}

.icons-1 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.services-circle p {
    font-size: 14px;
    font-weight: 600;
}

.icons-container {
    display: flex;
}

.icons-2 {
    display: block;
    text-align: center;
    margin-right: 30px;
}

.icons-2 img {
    width: 34px;
    margin-bottom: 10px;
}

.icons-2 p {
    font-size: 14px;
    font-weight: 600;
}

.image-flex {
    display: flex;
    align-items: flex-end;
}

.image-set-1 {
    display: block;
}

.image-set-1 img {
    object-fit: cover;
    object-position: top;
}

.image-set-2 {
    display: block;
    height: 440px;
}

.image-set-2 img {
    object-fit: cover;
    height: 440px;
    object-position: top;
}

.image-set-4 {
    display: block;
    height: 440px;
}

.image-set-4 img {
    object-fit: cover;
    height: 440px;
    object-position: top;
}

.default-content-1 h3 {
    font-size: 30px;
    line-height: 42px;
}

@media screen and (max-width: 992px) {
    .default-content-1 h3 {
        font-size: 20px;
        line-height: 32px;
    }
}

.testimonials {
    padding: 40px 70px;
    background-color: #FFF;
    box-shadow: 0px 2px 4px rgba(17, 17, 17, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.testimonials p {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonials h6 {
    font-size: 14px;
    font-weight: 500;
}

.testimonials ul {
    display: flex;
    margin-bottom: 10px;
}

.testimonials ul li {
    color: #E7D326;
    margin: 0px 5px;
}

@media screen and (max-width: 992px) {
    .testimonials {
        padding: 30px;
    }
    .testimonials p {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }
}

.wrapper-up {
    position: relative;
    z-index: 9;
    margin: -150px 0px 130px 0px;
}

.dark-content {
    padding: 80px 100px;
    color: #FFF;
    background-color: #181B1D;
}

.dark-content h4 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 58px;
}

.dark-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
    .wrapper-up {
        position: relative;
        z-index: 9;
        margin: -60px 0px 0px 0px;
    }
    .dark-content {
        padding: 30px 40px;
        color: #FFF;
        background-color: #181B1D;
    }
    .dark-content h4 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 38px;
    }
}


/* End Content CSS */


/* Start Footer */

.footer-wrapper {
    position: relative;
    background-color: #181B1D;
    padding: 80px 0px 40px;
}

.footer {
    display: block;
    color: #FFF;
}

.footer img {
    width: 200px;
    margin: 0px 0px 30px;
}

.footer h6 {
    display: block;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    display: block;
    color: #FFF;
    font-size: 14px;
    line-height: 24px;
}

.footer ul {
    display: block;
}

.footer ul li {
    display: block;
    color: #FFF;
    line-height: 40px;
}

.footer ul li a {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
}

.social-icons {
    margin: 30px 0px 0px 0px;
}

.social-icons ul {
    display: flex;
}

.social-icons ul li {
    display: block;
    color: #FFF;
    margin-right: 20px;
}

.social-icons ul li a {
    color: #FFF;
}

.copyright-wrapper {
    position: relative;
    padding: 20px 0px 30px;
    background-color: #181B1D;
}

.copyrights p {
    font-size: 16px;
    color: #FFF;
}

@media screen and (max-width: 992px) {
    .footer h6 {
        font-size: 18px;
    }
    .copyrights p {
        font-size: 14px;
        color: #FFF;
    }
    .footer ul li a {
        font-size: 14px;
    }
}


/* End Footer */

.form-cards {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #FFF;
    border-radius: 28px;
    box-shadow: 0px 0px 15px rgba(17, 17, 17, 0.1);
}

.form-cards h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
}

.form-check-input:checked {
    background-color: #1A8944 !important;
    border-color: #1A8944 !important;
}

.form-check-input[type=checkbox] {
    border-radius: 50%;
    box-shadow: none !important;
}

.form-cards .form-check {
    margin-bottom: 20px;
    font-size: 24px;
}

.text-lighten {
    color: #7B7B7B;
}

.form-cards .form-control {
    border: 1px solid #B0B0B0;
    font-size: 15px;
    padding: 10px;
}

.default-cards .form-control {
    border: 1px solid #B0B0B0;
    font-size: 15px;
    padding: 10px;
}

.form-floating label {
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .form-cards h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .form-cards .form-check {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

.breadcrumb-cards li a {
    font-size: 20px;
    font-weight: 600;
    color: #1A8944 !important;
}

.breadcrumb-cards li {
    font-size: 20px;
    color: #1A8944 !important;
}

.results-count {
    color: #7B7B7B;
    font-size: 18px;
}

.result-container {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 3px 5px #0000001F;
}

.d-flex-search-container {
    display: flex;
}

.border-right-0 {
    border-right: none !important;
}

.border-left-0 {
    border-left: none !important;
}

.form-control {
    box-shadow: none !important;
}

.icon-light {
    color: #B0B0B0;
}

@media screen and (max-width: 992px) {
    .d-flex-search-container {
        flex-direction: column;
    }
    .breadcrumb-cards li {
        font-size: 14px;
    }
    .breadcrumb-cards li a {
        font-size: 14px;
    }
    .default-content-1 .fs-5 {
        font-size: 16px !important;
    }
}

.filter-items button {
    border: none !important;
    box-shadow: none !important;
    background-color: #FFF !important;
    padding: 10px 0px !important;
    font-weight: 700;
    font-size: 16px;
}

.location-title-txt {
    font-weight: 700 !important;
    font-size: 16px !important;
}

.fs-7 {
    font-size: 14px;
}

.accordion-item-style {
    border-top: 1px solid rgb(203, 203, 203) !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-bottom: 0px !important;
    border-radius: 0px !important;
    box-shadow: 0px !important;
}


/* listing css main */

.listing-cards {
    display: flex;
    padding: 20px 0px;
    border-bottom: 1px solid #DCDCDC;
}

.listing-cards:last-child {
    border: none !important;
}

.listing-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 180px;
    border: 4px solid #F1F1F1;
}

.listing-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.listing-details {
    width: 480px;
    margin-left: 30px;
}

.listing-title {
    font-weight: 700;
    font-size: 20px;
    color: #181B1D;
    margin-bottom: 15px;
}

.listing-details ul {
    display: flex;
    margin-bottom: 15px;
}

.listing-details ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 15px;
}

.ratings-card {
    display: flex;
    align-items: center;
}

.ratings-card svg {
    margin-right: 5px;
    color: #E7D326;
}

.listing-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.verified-account-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.listing-anchor {
    font-weight: 600;
    font-size: 15px;
    color: #1A8944;
}

.listing-anchor:hover {
    color: #0e7435;
}

.listing-btns-card {
    margin-left: 40px;
}

.listing-btns-card {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.listing-location-card {
    display: flex;
}

.listing-btn {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1A8944;
    transition: 400ms;
    font-size: 15px;
}

.listing-btn:hover {
    background-color: #0C7534;
}

.listing-btn-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 5px 10px;
    background-color: #0C7534;
}

.listing-btn-img img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.btn-text {
    padding: 7px 12px;
    font-size: 15px;
    color: #FFF;
}

.listing-location-card p {
    margin-left: 5px;
    font-size: 14px;
    color: #181B1D;
    margin-bottom: 0px;
}

.listing-location-card svg {
    color: #B0B0B0;
    margin: 0px;
}

@media screen and (max-width: 1400px) {
    .listing-cards {
        display: flex;
        padding: 20px 0px;
        flex-direction: column;
        border-bottom: 1px solid #DCDCDC;
    }
    .listing-image {
        margin-bottom: 20px;
    }
    .listing-details {
        width: auto;
        margin-left: 0px;
        margin-bottom: 20px;
    }
    .listing-btns-card {
        margin-left: 0px;
    }
}

@media screen and (max-width: 992px) {
    .listing-cards {
        display: flex;
        padding: 20px 0px;
        flex-direction: column;
        border-bottom: 1px solid #DCDCDC;
    }
    .listing-image {
        margin-bottom: 20px;
    }
    .listing-details {
        width: auto;
        margin-left: 0px;
        margin-bottom: 20px;
    }
    .listing-btns-card {
        margin-left: 0px;
    }
    .listing-btn {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #1A8944;
        transition: 400ms;
        font-size: 13px !important;
    }
    .btn-text {
        font-size: 13px;
    }
    .listing-btn-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        padding: 5px 10px;
        background-color: #0C7534;
    }
    .listing-btn-img img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }
}

.pagination {
    display: block;
}

.pagination ul {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.pagination ul li {
    margin-left: 10px;
}

.pagination ul li a {
    font-size: 15px;
    font-weight: 500;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181B1D;
}

.pagination ul li a.active {
    background-color: #1A8944;
    border-radius: 5px;
    color: #FFF;
}

.pagination ul li a:hover {
    background-color: #1A8944;
    border-radius: 5px;
    color: #FFF;
}

.next-text {
    position: relative;
    width: 50px !important;
    padding: 0px 10px !important;
}

.next-text::after {
    position: absolute;
    width: 75%;
    height: 1px;
    background-color: #181B1D;
    bottom: 4px;
    content: "";
    margin: 0 auto;
    left: 0;
    right: 0;
}

.next-text:hover::after {
    background-color: #FFF !important;
}

@media screen and (max-width: 992px) {
    .breadcrumb-cards {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}


/*end listing css main */

.default-content-2 {
    display: block;
    margin-bottom: 30px;
}

.content-title-2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-title-2 span {
    color: #1A8944;
}

.default-content-2 p {
    line-height: 32px;
    font-size: 18px;
    margin-bottom: 20px;
}

.tag-clouds {
    display: flex;
    flex-wrap: wrap;
}

.tag-clouds li {
    display: flex;
    font-size: 15px;
    margin: 0px 10px 10px 0px;
}

.tag-clouds li a {
    border: 1px solid #181B1D;
    color: #181B1D;
    padding: 7px 15px;
    border-radius: 5px;
}

@media screen and (max-width: 992px) {
    .content-title-2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .default-content-2 p {
        line-height: 26px;
        font-size: 16px;
        margin-bottom: 15px;
    }
    .tag-clouds li {
        display: flex;
        font-size: 16px;
        margin: 0px 10px 10px 0px;
    }
}

.single-listing-container {
    display: flex;
    flex-direction: column;
    padding: 50px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 3px 5px #0000001F;
}

.listing-cards-single {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    justify-content: space-between;
}

.listing-image-single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.listing-image-single img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.listing-details-single-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mobile-margin {
    margin-left: 30px;
}

.listing-title-single {
    font-weight: 700;
    font-size: 24px;
    color: #181B1D;
}

.verfied-account {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.listing-location {
    color: #7B7B7B;
    font-size: 15px;
}

.single-title-subtitles {
    display: flex;
    align-items: center;
}

.single-title-subtitles ul {
    display: flex;
    align-items: center;
}

.single-title-subtitles ul li {
    margin-right: 15px;
    font-size: 15px;
}

.sharing-cards {
    display: flex;
    margin: 0px 0px 0px 30px;
}

.sharing-cards ul {
    display: flex;
}

.sharing-cards ul li {
    margin-right: 15px;
}

.gallery-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

#gallery-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-prev {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    color: #15151F;
    border-radius: 50% !important;
    background-color: #FFF !important;
    box-shadow: 0px 3px 6px #00000029;
}

.owl-prev:hover {
    color: #15151F !important;
}

.owl-next {
    position: absolute;
    right: -40px;
    width: 30px;
    height: 30px;
    color: #15151F;
    border-radius: 50% !important;
    background-color: #FFF !important;
    box-shadow: 0px 3px 6px #00000029;
}

.owl-next:hover {
    color: #15151F !important;
}

.listing-content-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #DCDCDC;
}

.listings-content p {
    display: block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

.listings-content-anchor {
    color: #1A8944;
    font-weight: 600;
}

#projects-slider .owl-nav {
    position: absolute;
    top: 25%;
    width: 100%;
}

.projects-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projects-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 10px;
}

.projects-card p {
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .single-listing-container {
        padding: 15px;
    }
    .listing-image-single {
        margin-bottom: 10px;
    }
    .listing-cards-single {
        margin-bottom: 20px;
        flex-direction: column;
    }
    .listing-cards-single .d-flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .listing-details-single-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }
    .single-title-subtitles {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .verfied-account {
        margin: 0px;
    }
    .single-title-subtitles ul {
        margin: 0px !important;
    }
    .mobile-margin {
        margin-left: 0px;
    }
    .sharing-cards {
        margin: 15px 0px 0px 0px;
    }
}

.project-details-table {
    border: none !important;
}

.project-details-table tr {
    border: none !important;
}

.project-details-table tr th {
    border: none !important;
}

.project-details-table tr td {
    border: none !important;
}

@media screen and (max-width: 992px) {
    .project-details-table {
        display: block;
        width: 100%;
        overflow: hidden;
        overflow-x: scroll;
        font-size: 13px;
    }
    .listings-content p {
        display: block;
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}


/* Start Reviews container */

.reviews-header {
    display: flex;
    justify-content: space-between;
}

.stars-rates {
    display: flex;
    align-items: center;
}

.stars-counting {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.starscount {
    display: flex;
}

.starscount h6 {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-weight: 700;
    color: #FFF;
    border-radius: 9px;
    background-color: #1A8944;
}

.stars-rates p {
    margin: 0px;
    font-size: 16px;
}

.stars-rates ul {
    display: flex;
    margin-left: 15px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #B0B0B0;
}

.stars-rates ul li {
    color: #E7D326;
}

.stars-rates li {
    color: #E7D326;
    margin-right: 5px;
}

.d-flex-buttons {
    display: flex;
    align-items: center;
}

.d-flex-buttons a {
    width: max-content;
    font-size: 15px;
}

.d-flex-buttons select {
    font-size: 15px;
    margin-left: 20px;
}

@media screen and (max-width: 992px) {
    .stars-rates {
        margin-bottom: 10px;
    }
    .reviews-header {
        flex-direction: column;
    }
}

.reviews-content {
    display: block;
    padding: 0px 0px 20px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DCDCDC;
}

.reviews-user-details {
    display: flex;
}

.reviews-user-details img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.reviewer-title {
    font-size: 18px;
    font-weight: bold;
}

.helpful {
    display: flex;
}

.reviews-content p {
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
    .reviews-content p {
        font-size: 15px;
    }
    .single-listing-container .px-4 {
        padding: 0px !important;
    }
    .gallery-card img {
        display: block;
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
    }
}


/* end Reviews Container */

.login-padding {
    padding: 70px;
}

@media screen and (max-width: 992px) {
    .login-padding {
        padding: 20px;
    }
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #067230;
    border-radius: 5px;
    background-color: #ecfff3;
}

.price-card h2 {
    font-weight: 700;
    color: #0C7534;
    font-size: 40px;
}

.price-card h2 span {
    font-size: 24px;
}

.selected-locations {
    display: block;
}

.selected-locations h3 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0px 5px;
}

.selected-locations ul {
    display: flex;
    flex-wrap: wrap;
}

.selected-locations ul li {
    display: flex;
    margin: 0px 5px 5px 0px;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0px 2px 3px #f3f3f3;
}

.selected-locations ul li svg {
    margin: 0px 0px 0px 5px;
    cursor: pointer;
    color: #ff5050;
}

.account-flex {
    display: block;
}

.account-flex h3 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0px 5px;
}

.account-flex ul {
    display: flex;
    flex-wrap: wrap;
}

.account-flex ul li {
    display: flex;
    margin: 0px 10px 10px 0px;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.account-flex ul li svg {
    margin: 0px 5px 0px 0px;
}

.nav-pills .nav-link {
    color: #333;
    margin-bottom: 10px;
}

.nav-pills .nav-link.active {
    background-color: #1A8944;
}

@media screen and (max-width: 992px) {
    .mb-flex {
        flex-direction: column !important;
    }
    .mobile-navi {
        display: flex !important;
        flex-direction: row !important;
    }
    .mobile-navi .nav-link {
        padding: 5px !important;
        font-size: 13px !important;
    }
}

.listing-image-my-account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 4px solid #F1F1F1;
}

.listing-image-my-account img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-title {
    font-size: 18px !important;
    font-weight: 700;
}

.accordion-button {
    box-shadow: none !important;
}

.vendor-logo {
    position: relative;
    margin-left: 20px;
    border: 1px solid #afafaf;
    padding: 0px 10px;
    border-radius: 5px;
}

.vendor-logo img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.delete-logo {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff3f3c;
    cursor: pointer;
}

.added-gallery {
    display: block;
}

.added-gallery ul {
    display: flex;
    flex-wrap: wrap;
}

.added-gallery ul li {
    display: flex;
    padding: 10px;
    border: 1px dashed #7B7B7B;
    margin: 0px 10px 10px 0px;
    position: relative;
    border-radius: 5px;
}

.added-gallery ul li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.delete-gallery {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff3f3c;
    cursor: pointer;
}