:root {
    --theme-primary: linear-gradient(to right, #402a2d, #6c0409);
    --text-grey : #3F4751;
    --text-primary: rgb(219 39 119 / var(--tw-text-opacity, 1));
}

html, body {
    overflow-x: unset !important;
}

.theme-primary {
    background: var(--theme-primary);
}

.text-grey {
    color: var(--text-grey);
}

.text-primary {
    color: var(--text-primary);
}

.spacer-xl {
    padding-block: 90px;
}

.w-semibold {
    font-weight: 600;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Banner Intro */

.banner-intro {
    background-image: url(../img-aventino/banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.banner-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000073;
    width: 100%;
    height: 100%;
}

/* Listing Block */

.content--wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: disc;
}

.listing--wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.list--img {
    width: 100%;
    height: 100% !important;
}

.list--img img {
    border-radius: 10px;
    border: 1px solid #eee;
}

.listing--block {
    padding: 30px 30px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.listing--detial {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detials--box {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 15px;
    border: 1px dashed #eee;
    border-radius: 10px;
    background-color: #dddddd24;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom--btn {
    padding: 14px 20px;
    border: none;

    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.button--wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 0;
}

.whatsapp--btn {
    background-color: #128c7e;
    color: #fff !important;
}

.phone--btn {
    background-color: rgb(108 4 9 / var(--tw-bg-opacity, 1));
    color: #fff !important;
}

/* Sidebar */

.sidebar--wrapper {
    position: sticky;
    top: 40px;
}

.sidebar--wrapper h4 {
    border-bottom: 2px solid rgb(108 4 9 / var(--tw-bg-opacity, 1));
    padding-bottom: 20px;
}

.sidebar--wrapper ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.sidebar--wrapper ul li a {
    border-bottom: 2px solid rgb(34, 42, 65, 0.20);
    color: #737373;
    padding-bottom: 17px;
    margin-bottom: 17px;
    display: flex;
    transition: all 0.3s;
}

.sidebar--wrapper ul li a:hover {
    color: #6c0409 !important;
    border-bottom: 2px solid #6c0409;
}

/* faq design */

.faq-blocks {
    border-top: 1px solid #ddd;
}

.faq-blocks .accordion-item {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #ddd !important;
}

.faq-blocks .accordion-body {
    padding: 0 300px 50px 0;
    color: inherit;
}

.faq-blocks .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faq-blocks .accordion-button:focus {
    box-shadow: none !important;
}

.faq-blocks .accordion-flush .accordion-item:last-child .accordion-header,
.faq-blocks .accordion-flush .accordion-collapse,
.faq-blocks .accordion-flush .accordion-item .accordion-header {
    border: unset !important;
}

.accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 38px 0;
    transition: all 0.3s;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    padding: 38px 0;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s;
}

/* Responsive */

@media (max-width: 1599px) {

}

@media only screen and (max-width: 1399px) {

}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .listing--block {
        padding: 20px 20px;
    }

    .listing--detial {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}