.vegetarian-title {
    overflow: hidden;
}

.vegetarian-avatar img,
.faq-main img {
    border-radius: 20px;
    width: 100%;
}

.vegetarian-box p,
.faq-main p {
    font-size: 16px;
    text-align: justify;
}

.vegetarian-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.faq-main h3 {
    font-weight: 500;
    padding-right: 60px;
}

.gallery-item {
    position: relative;
    height: 350px;
    margin-bottom: 10px;
}

.gallery-item a {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-item img {
    border-radius: 10px;

}

.why-main {
    background-image: url('../../img/why1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
    z-index: 2;
    color: #fff;
}

.why-main::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0, 0.4);
    z-index: -1;
}

.why-us {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

span.why-icon {
    font-size: 30px;
    margin-right: 20px;
    width: 30px;
}

.why-info p {
    font-size: 16px;
    margin-bottom: 0;
}

.form-main {
    background-color: #109C3D;
    z-index: 1;
    position: relative;
    padding: 55px 48px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent;
    border-image: linear-gradient(rgba(4, 42, 47, 0.525) 0%, rgba(255, 255, 255, 0) 50%) 1 / 1 / 0 stretch;
    color: #fff;
}

.form-main .btn {
    border: 2px solid var(--white-color);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px 0;
}

.faq-question {
    background: #fff;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: flex;
    height: 100%;
    background: #109C3D;
    width: 60px;
    border-radius: 10px;
    top: 40px;
    transform: translateY(-40px);
    right: 0;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.faq-item.active .faq-question,
.faq-item.active .faq-answer {
    background: #ecf0f1;
}

.faq-item.active .faq-question::after {
    content: '-';
    background: unset;
    color: initial;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #fff;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rice-item {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    overflow: hidden;
}

.rice-info {
    background: #fff;
}

.rice-list ul {
    margin-left: 20px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.rice-list ul li {
    list-style: decimal;
    width: calc(50% - 5px);
    margin-right: 5px;
}

.rice-item .price {
    text-align: center;
    font-weight: 500;
}

.rice-item .price span:last-child {
    color: red;
}

.price-content tbody,
.price-content td,
.price-content tfoot,
.price-content th,
.price-content thead,
.price-content tr {
    color: #fff !important;
    font-size: 16px;
    padding: 20px 10px;
}

.price-content .table-striped tbody tr:nth-of-type(odd) {
    background-color: #2f9a40;
}

.contact-tell a:last-child {
    background: #ff5722;
}

.feadback {
    margin-top: 150px;
    background-image: url('../img/blog-bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feadback-bg {
    position: absolute;
    top: 0;
}

.feadback-main {
    border-radius: 10px;
    overflow: hidden;
    background-color: #063A41;
    color: var(--white-color);
    padding-bottom: 0;
    transform: translateY(-150px);
    z-index: 2;
}

.feadback-icon {
    border: 2px dashed var(--theme-color);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    padding: 2px;
}

.feadback-icon span {
    display: inline-flex;
    text-align: center;
    background-color: #109C3D;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.feadback-shape {
    position: absolute;
}

.shape-one {
    top: 0;
    right: 0;
}

.shape-tow {
    left: 0;
    bottom: 0;
}

.feadback-avatar img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}