* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background-color: #f8efeb !important;
    font-family: serif !important;
}

/* Header Section */
.header {
    font-size: 17px;
    color: #fff !important;
}

.header a:hover {
    color: #cf5b21 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.btn-main {
    background: #e67e43 !important;
    color: #fff !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: #ff955a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 67, 0.5);
}

.btn-hover:hover {
    background: #fff !important;
    color: #000 !important;
}

.reservation-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reservation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.custom-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.custom-input:focus {
    border-color: #e67e43;
    box-shadow: none;
    background: transparent;
    color: #fff;
}


/* About Section */
.section-title {
    padding: 50px 15px;
    position: relative;
}

.bg-title {
    font-size: 50px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.116);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -55%);
    letter-spacing: 1px;
    font-family: sans-serif;
    margin: 0;
}

.main-title {
    font-size: 30px;
    font-weight: 700;
    color: #2b1b12;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-title {
    font-weight: 700;
    color: #2b1b12;
}

.about-text {
    color: #555;
    line-height: 1.7;
}

.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-card .icon {
    font-size: 32px;
    color: #e67e43;
    margin-bottom: 15px;
}

.img-box {
    overflow: hidden;
    border-radius: 14px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

.years-badge {
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: #e67e43;
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.years-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(230, 126, 67, 0.6);
}

.years-badge h2 {
    font-size: 40px;
    margin: 0;
    font-weight: 900;
}

.years-badge span {
    font-size: 14px;
    font-family: sans-serif;
}

.signature {
    width: 180px;
}


/* Menu Section */
.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.menu-card.featured {
    border: 2px solid #e67e43;
}

.img-wrap {
    position: relative;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .img-wrap img {
    transform: scale(1.12);
}

.price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #e67e43;
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 600;
}

.badge,
.ribbon,
.price,
.purple {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: none;
}

.badge.veg,
.badge.round,
.badge.purple {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4caf50;
    color: #fff;
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 13px;
}

.badge.round {
    background: #6c757d;
}

.badge.purple {
    background: rgb(178, 5, 178);
}

.ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f1c40f;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.content {
    padding: 25px;
}

.content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.content p {
    color: #666;
    font-size: 15px;
}

.dots {
    margin-top: 15px;
}

.dots span {
    width: 8px;
    height: 8px;
    background: #ddd;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.dots .active {
    background: #e67e43;
}

.menu-note {
    font-family: sans-serif;
}

.note-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.note-icon {
    color: #e67e43;
    font-size: 22px;
}

.note-text {
    color: #555;
    font-size: 16px;
}

.btn-menu {
    background: #e67e43 !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 26px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(230, 126, 67, 0.35);
}

.btn-menu:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 126, 67, 0.45);
}


/* Recommendations Section */
.chef-section {
    font-family: sans-serif;
}

.chef-title {
    font-weight: 700;
    color: #2b1b12;
}

.chef-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.chef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.chef-img {
    position: relative;
    overflow: hidden;
}

.chef-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.chef-card:hover .chef-img img {
    transform: scale(1.1);
}

.chef-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e67e43;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 5;
}

.chef-content {
    padding: 25px;
}

.chef-content h5 {
    font-weight: 700;
}

.chef-content p {
    color: #666;
    font-size: 15px;
}

.price2 {
    color: #e67e43 !important;
    font-weight: 700;
    font-size: 18px;
}

.chef-meta {
    margin-top: 12px;
    color: #777;
    font-size: 14px;
}

.tag {
    background: #e8eef5;
    color: #3b6ea5;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.tag.premium {
    background: #fff3cd;
    color: #c79200;
}

/* Testimonials Section */
.testimonials {
    background-color: #efe3de;
}

.testimonial-card {
    background: #e8dcd7;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    transform: scale(1.1);
    background: #e8dcd7;
    border: 2px solid #41302a;
    box-shadow: 0 0 3px 3px #997c71d7;
}

.testimonial-card p {
    color: #41302a;
    line-height: 1.6;
}

.card-footer {
    margin-top: 25px;
    border-top: 1px solid #41302a !important;
    padding-top: 20px;
}

.stars i {
    color: #ffc107;
    margin-right: 3px;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.user img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid #41302a;
}

.user span {
    font-size: 14px;
    color: #bbb;
}

/* Chefs Section */
.chefs i {
    color: #c45b2a;
    margin-right: 10px;
}

.img-chef {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.img-chef img {
    width: 100%;
    transition: transform 0.5s ease;
}

.img-chef:hover img {
    transform: scale(1.08);
}

h2 {
    font-family: 'Playfair Display', serif;
}

.badge-custom4 {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #f7e6de;
    color: #c45b2a;
    border: 1px solid #c45b2a;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
}

.badge-custom3 {
    background-color: #f7e6de;
    color: #c45b2a;
    border: 1px solid #c45b2a;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
}

.chef-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.4s ease;
    height: 100%;
}

.chef-card:hover {
    transform: translateY(-12px);
}

.chef-img {
    position: relative;
    overflow: hidden;
}

.chef-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.chef-card:hover img {
    transform: scale(1.08);
}

.chef-overlay {
    position: absolute;
    inset: 0;
    background: #37110232;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 22px;
}

.chef-card:hover .chef-overlay {
    opacity: 1;
}

.chef-overlay a .icon3 {
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 6px;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.chef-overlay a .icon3:hover {
    background: #ff7a45;
    color: #fff;
    transform: translateY(-5px);
}

.chef-content {
    padding: 22px;
}

h5 {
    font-family: 'Playfair Display', serif;
    font-size: 25px !important;
    font-weight: 100 !important;
}

.badge-custom5 {
    background: #fde6d8;
    color: #c45b2a;
    border: 1px solid #f1c9b6;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
}


/* Book Secttion */
.book {
    background-color: #eee2dd !important;
}

.reservation-box {
    background: #fff;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    padding: 40px;
}

.form-control,
.form-select {
    background: #f2e7e0;
    border: 1.5px solid transparent;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.form-control::placeholder {
    color: #a88f7f;
}

.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
    border: 2px solid #c96b3c !important;
    box-shadow: 0 0 0 2px rgba(201, 107, 60, 0.15) !important;
    background: #f2e7e0;
}

.form-control:focus,
.form-select:focus {
    outline: none;
}

.btn-coffee {
    background: #de7a46 !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-family: sans-serif !important;
}

.btn-coffee:hover {
    background: #dea68a !important;
    color: #6f3417 !important;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.info-card2 {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.info-card2:hover {
    transform: translateY(-5px);
    border: 1px solid #de7a46;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: #de7a46;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.note-box {
    background: #f1ddd2;
    border-radius: 10px;
    border: 1px solid #de7a46;
    padding: 15px;
    font-weight: 500;
}


/* Find Section */
.find-card {
    border-radius: 16px;
    transition: 0.4s ease;
}

.find-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-orange {
    background: #e67e4b !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-family: sans-serif !important;
    transition: all 0.4s ease;
}

.btn-orange:hover {
    background: #662f15 !important;
    color: #fff !important;
}

.map-box {
    overflow: hidden;
    border-radius: 16px;
}

.map-box iframe {
    transition: 0.4s;
}

/* Events Section */
.events {
    background-color: #ece0db !important;
}

.badge-limited {
    background: #e97b42;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.festival-title {
    font-size: 56px;
    font-weight: 700;
    color: #5d2507;
    margin: 25px 0;
}

.festival-text {
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 20px;
    color: #5f524b;
    font-family: sans-serif;
    line-height: 1.5;
}

.date-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #edd8ce;
    color: #e0805d;
    font-family: sans-serif;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.img-wrap {
    position: relative;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #e97b42;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.card-title {
    font-weight: 700;
    color: #5a2d14;
    margin-bottom: 12px;
}

.card-text {
    color: #6c5c54;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list i {
    color: #e97b42;
    margin-right: 8px;
}

.learn-more {
    font-weight: 600;
    color: #e97b42;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: sans-serif;
    transition: 0.3s;
}

.learn-more .arrow {
    transition: 0.3s;
}

.feature-card:hover .learn-more .arrow {
    transform: translateX(6px);
}


.awards-wrap {
    background: #eddad1;
    border-radius: 40px;
}

.awards-title {
    font-size: 42px;
    font-weight: 800;
    color: #2f1b12;
}

.awards-text {
    color: #6c5c54;
    margin-top: 20px;
    font-family: sans-serif !important;
}

.award-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    font-family: sans-serif !important;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: #d7763e;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.award-card:hover .award-icon {
    transform: rotateY(180deg);
}

.award-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #2f1b12;
}

.award-card p {
    margin: 0;
    color: #7a6a62;
}


.impact-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    font-family: sans-serif;
    transition: 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.icon-main {
    width: 64px;
    height: 64px;
    background: #d97b42;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.card-title {
    font-weight: 800;
    font-family: serif;
    margin-bottom: 10px;
    color: #2f1b12;
}

.card-sub {
    color: #7a6a62;
    margin: 0;
}

.stat-box {
    background: #fdf4ef;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    background: #f6e1d4;
    transform: translateY(-4px);
}

.stat-box h2 {
    color: #e67e4b;
    font-weight: 800;
}

.stat-box p {
    margin: 0;
    color: #7a6a62;
}

.eco-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    transition: 0.3s;
}

.eco-list li:last-child {
    border-bottom: none;
}

.eco-list li i {
    color: #e67e4b;
    font-size: 20px;
    margin-right: 15px;
}

.eco-list li:hover {
    padding-left: 10px;
    color: #e67e4b;
}

/* Gallery Section */
.gallery-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 24px;
    transition: 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.img-box {
    overflow: hidden;
    border-radius: 14px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card.small img {
    height: 220px;
}

.gallery-card.large img {
    height: 420px;
}

.gallery-card h6 {
    font-weight: 700;
    font-size: 18px;
    margin: 14px 0 6px;
    color: #2f1b12;
}

.gallery-card p {
    margin: 0;
    font-family: sans-serif;
    font-size: 17px;
    color: #7a6a62;
}


/* Contact Section */
.contact {
    background-color: #efe3de;
}

.info-card3 {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    font-family: sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: 0.4s ease;
}

.info-card3:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-circle3 {
    width: 56px;
    height: 56px;
    background: #f7eee9;
    color: #e67e4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-text3 h6 {
    font-weight: 700;
    color: #2f1b12;
    margin-bottom: 6px;
}

.info-text3 p {
    margin: 0;
    color: #7a6a62;
    line-height: 1.6;
}

.contact-section {
    padding-bottom: 450px;
    font-family: sans-serif;
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-form-card {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.form-control {
    background: #fdf4ef;
    border: none;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #e67e4b;
}

.btn-send {
    background: #e67e4b !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 10px;
    font-weight: 600 !important;
}

.btn-send:hover {
    background-color: #000 !important;
    color: #fff !important;
}

/* Media Query */
@media (max-width: 776px) {
    .contact-section {
        padding-bottom: 600px !important;
    }

    .contact-form-card {
        width: 92%;
        padding: 28px;
    }
}




/* Footer Section */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    width: 35px;
    height: 2px;
    background: #e07844;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer p {
    color: #bfbfbf;
    font-size: 15px;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer a:hover {
    color: #e07844;
}

.i-arrow {
    color: #e07844;
}

.newsletter {
    background: #1b1b1b;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
}

.newsletter input {
    border: none;
    background: transparent;
    padding: 15px 20px;
    color: #fff;
    width: 100%;
}

.newsletter button {
    background: #e07844;
    border: none;
    padding: 0 25px;
    color: #fff;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #1b1b1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e07844;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #172326;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    color: #fff;
    background-color: #e07844;
    transform: translateY(-5px);
}

/* Footer2 Section */
.footer-bottom {
    background: #000;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #dcdcdc;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #e07844;
}

.designed-by span {
    color: #e07844;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: #e07844;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}