:root {
    --theme-color: #006437;
    --secondary-color: #c30c26;
    --theme-color2: #582f1a;
    --title-color: #010f1c;
    --body-color: #4d5765;
    --smoke-color: rgba(1, 15, 28, 0.06);
    --smoke-color2: #faf7f2;
    --black-color: #000000;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #f2ec7;
    --error-color: #dc3545;
    --border-color: #e0e0e0;
}

html,
body {
    scroll-behavior: smooth !important;
}

body {
    color: rgb(119, 119, 119);
    font-family: "Lato", sans-serif;
    /* font-family: "Work Sans", sans-serif; */
    font-size: 18px;
    font-weight: 400;
}

p {
    margin: 0px 0px 18px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0px 0px 15px;
    /* font-family: "Alfa Slab One", serif; */
}

.text-theme {
    color: var(--theme-color) !important;
}

a {
    color: var(--theme-color);
    text-decoration: none;
}

a:hover {
    color: var(--theme-color2);
    text-decoration: none;
}

@media(min-width:992px) {
    .border-theme {
        border-bottom: 1px solid var(--theme-color) !important;
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: rgb(255, 255, 255);
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(230, 93, 95);
    color: rgb(255, 255, 255);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#header {
    background: transparent;
    transition: 0.5s;
    z-index: 997;
    padding: 4px 0px;
}

#header .logo {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
}

.header-scrolled {
    transition: background-color 0.3s;
    background-color: white !important;
}

.header-scrolled .navbar a {
    color: #000;
}

#header .logo a {
    color: rgb(17, 17, 17);
}

#header .logo a span {
    color: rgb(235, 72, 93);
}

#header .logo img {
    max-width: 65px;
    /* background: #fff; */
    /* padding: 6px; */
}

.navbar {
    padding: 0px;
}

.navbar ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 70px 10px 0px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover {
    color: var(--theme-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: rgb(235, 72, 93);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0px;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0px;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: rgb(0, 0, 0);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    inset: 0px;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    text-align: center;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    inset: 55px 15px 15px;
    padding: 10px 0px;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
    transition: 0.3s;
    text-align: center;
    height: fit-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 15px 20px;
    font-size: 20px;
    color: rgb(17, 17, 17);
    text-align: center;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: rgb(235, 72, 93);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.homebanner .card {
    background: rgb(255 255 255 / 75%);
}

.btn {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    /* margin: 0px 0px 0px 20px; */
    padding: 4px 40px;
    font-size: 24px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    transition: 0.3s;
    white-space: nowrap;
    text-transform: capitalize;
}

.btn:hover,
.btn:focus {
    /* transform: translateY(-2px); */
    background: var(--theme-color);
    /* color: rgb(255, 255, 255); */
    /* border: 1px solid rgb(255, 255, 255); */
    color: #fff;
    opacity: 0.9;
}

.bg-theme {
    background: var(--theme-color);
}

.bg-theme1 {
    background: var(--secondary-color);
}

@media (min-width: 992px) {
    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/* banner */

.vh-100 {
    height: 100vh !important;
    position: relative;
}


/* .mainbanner:before {
    content: close-quote;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 0;
    left: 0;
} */

.w-200 {
    width: 200px;
    margin: auto;
}

.mainbanner h1 {
    font-size: 85px;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    text-shadow: 0 0 20px #000000, 0 0 3px #040303, 0 0 0px #ffffff;
    /* letter-spacing: -0.025em; */
    /* line-height: 93px; */
    font-family: "Alfa Slab One", serif;
    line-height: 1.2;
}

.display-7 {
    font-size: 32px;
    text-shadow: #fff;
    /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
    text-shadow: 0 0 20px #000000, 0 0 3px #040303, 0 0 0px #ffffff;
}

@media (min-width: 1400px) {
    .px-xxl-8 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }
}

@media (min-width: 992px) {
    .py-lg-8 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
}

.py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

p {
    color: #000;
}

.section-title h2 {
    font-size: 56px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Alfa Slab One", serif;
    color: var(--theme-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.section-title span {
    font-size: 31px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--secondary-color);
}

.section-title p {
    color: #000;
    margin-top: 1rem;
}

.section-title {
    margin-bottom: 50px;
}

.italiandelight h3 {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 600;
    /* margin-bottom: 1rem; */
    /* font-family: "Alfa Slab One", serif; */
    color: var(--theme-color);
}

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }
}

.apollomenu {
    overflow: hidden;
}

.apollomenu img {
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.apollomenu:hover::before {
    height: 100%;
}

.apollomenu .apollomenu-body {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    z-index: 2;
}

.openinghours {
    z-index: 2;
    overflow: hidden;
}

.openinghours::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(88 47 26 / 60%);
    z-index: -1;
}

.aboutoverlay::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(88 47 26 / 60%);
    z-index: -1;
}

.foottop::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0 100 55 / 60%);
    z-index: -1;
}

.foottop {
    z-index: 2;
    overflow: hidden;
}

.aboutoverlay {
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.me-20 {
    margin-right: 20px !important;
}

.aboutus p {
    /* color: rgb(255, 255, 255); */
    font-size: 18px;
}

.pt-50 {
    padding-top: 80px;
}

.pb-50 {
    padding-bottom: 80px;
}

.d-table-cell {
    vertical-align: middle;
}

.book-a-table-btn {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    /* margin: 0px 0px 0px 20px; */
    padding: 4px 13px;
    font-size: 14px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    transition: 0.3s;
    white-space: nowrap;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-a-table-btn:hover {
    background: var(--secondary-color);
    color: rgb(255, 255, 255);
}


/* inner page */

.breadcrumb h1 {
    font-weight: 400;
    font-size: 65px;
    text-transform: capitalize;
    text-align: start;
    color: #fff;
    padding-top: 11rem;
    font-family: "Alfa Slab One", serif;
    text-shadow: 0 0 20px #000000, 0 0 3px #040303, 0 0 0px #ffffff;
    padding-bottom: 5rem;
}

.aboutcard {
    background-color: rgb(88 47 26 / 90%);
    border-radius: 50px;
}

.aboutcard p {
    color: #fff;
}

p:last-child {
    margin-bottom: 0px;
}

footer {
    background: var(--theme-color);
}

footer p {
    padding: 0px;
    text-align: start;
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.foottop ul a {
    padding-left: 0;
}

footer .social-links {
    /* margin: 0px 0px 40px; */
    text-align: start;
}

footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgb(70, 66, 59);
    color: rgb(255, 255, 255);
    line-height: 1;
    padding: 8px 0px;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

footer .social-links a:hover {
    background: var(--third-color);
}

.footmenu a {
    color: rgb(255, 255, 255);
}

footer .copyright {
    margin: 0px 0px 5px;
    font-size: 15px;
    padding-top: 15px !important;
}

footer .credits {
    font-size: 15px;
    padding-bottom: 15px;
}

.fs-18 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.pt-6 {
    padding-top: 6rem;
}

:focus {
    box-shadow: unset !important;
}

.aboutinner p {
    font-size: 24px;
}

.logo-container {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
    margin: 15px 0;
}

.phone-number {
    color: #ffa500;
    font-size: 1.2rem;
    font-weight: bold;
}

.hours {
    margin: 10px 0;
}

.address {
    margin: 10px 0;
}

.fish-pack {
    background-color: #000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #fff;
}

.fish-pack-title {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.fish-pack-item {
    background-color: var(--theme-color2);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.management-notice {
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.divider {
    height: 2px;
    background-color: #333;
    margin: 20px 0;
}

.old-shop {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.old-shop-title {
    color: #ffa500;
    font-weight: bold;
}

::placeholder {
    font-size: 15px;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #212529
}

.fs-30 {
    font-size: 30px;
}

footer h5 {
    font-family: "Alfa Slab One", serif;
}

.gutter-5 {
    --bs-gutter-x: 6rem;
}

.w-80 {
    width: 80%;
    /* margin: auto; */
}


/* end */

@media (max-width: 767px) {
    .vh-100 {
        height: auto !important;
        position: relative;
    }
    .bannerheight {
        background-position: center center !important;
    }
    .mainbanner h1 {
        font-size: 35px;
    }
    .display-7 {
        font-size: 25px;
    }
    body {
        font-size: 16px;
    }
    .breadcrumb h1 {
        font-size: 32px;
        padding-top: 6rem;
        padding-bottom: 0;
    }
    #header .logo img {
        max-height: 45px;
        /* background: #fff; */
        padding: 0;
    }
    .btn {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
    .min-vh-100 {
        min-height: 75vh !important;
    }
    .section-title h2 {
        font-size: 34px;
        text-transform: capitalize;
        font-weight: 500;
        margin-bottom: 0rem;
    }
    .aboutinner p {
        font-size: 16px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .aboutus p {
        /* color: rgb(255, 255, 255); */
        font-size: 16px;
    }
    br {
        display: none;
    }
    .pt-6 {
        padding-top: 2rem;
    }
    .pt-50 {
        padding-top: 50px;
    }
    .pb-50 {
        padding-bottom: 50px;
    }
    .section-title span {
        font-size: 25px;
        text-transform: capitalize;
        font-weight: 600;
        color: var(--secondary-color);
    }
    .italiandelight h3 {
        font-size: 17px;
    }
    .bannerimg {
        width: 200px;
        margin: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .vh-100 {
        height: auto !important;
        position: relative;
    }
    .bannerimg {
        width: 400px;
        margin: auto;
    }
    .italiandelight h3 {
        font-size: 20px
    }
}

@media(min-width: 992px) and (max-width: 1200px) {
    .mainbanner h1 {
        font-size: 65px;
    }
    .mainbanner p {
        font-size: 30px;
    }
    .vh-100 {
        height: 46vh !important;
        position: relative;
    }
}

@media(min-width:1500px) {
    .vh-100 {
        height: 85vh !important;
    }
}


/* review */