              :root {
                 --theme-color: #f78202;
                 --secondary-color: #582f1a;
                 --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;
             }
             body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}
             html,
             body {
                 scroll-behavior: smooth !important;
                 overflow-x: hidden;
             }
             
             body {
                 color: rgb(119, 119, 119);
                 font-family: "Nunito", sans-serif;
                 /* font-family: "Work Sans", sans-serif; */
                 font-size: 18px;
                 font-weight: 400;
                 background-color: #ffceb0;
             }
             
             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.2;
                 margin: 0px 0px 15px;
                 font-family: "Montserrat", sans-serif;
             }
             
             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: #fff;
                 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: var(--white-color) !important;
             }
             
             .header-scrolled .navbar a {
                 /* color: #fff; */
             }
             
             #header .logo a {
                 color: rgb(17, 17, 17);
             }
             
             #header .logo a span {
                 color: rgb(235, 72, 93);
             }
             
             #header .logo img {
                 max-width: 100px;
                 /* 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 50px 10px 0px;
                 font-size: 18px;
                 color: #000;
                 white-space: nowrap;
                 transition: 0.3s;
                 font-weight: 600;
                 font-family: "Montserrat", sans-serif;
             }
             
             .navbar a i,
             .navbar a:focus i {
                 font-size: 12px;
                 line-height: 0;
                 margin-left: 5px;
             }
             
             .navbar a:hover,
             .navbar .active,
             .navbar .active:focus,
             .navbar li:hover>a {
                 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: #fff;
                 font-size: 25px;
                 cursor: pointer;
                 display: none;
                 line-height: 0;
                 transition: 0.5s;
                 background-color: var(--theme-color);
                 border-radius: 3px;
                 margin-right: 10px;
                 padding: 2px;
             }
             
             .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 .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%);
             }
             
             .newfont {
                 font-family: "Lilita One", sans-serif !important;
                 font-size: 56px !important;
             }
             
             .btn {
                 transition: 150ms linear;
                 font-weight: 400;
                 padding: 10px 32px;
                 background: var(--theme-color);
                 color: var(--secondary-color);
                 display: inline-block;
                 font-weight: 800;
                 text-align: center;
                 vertical-align: middle;
                 -webkit-user-select: none;
                 -ms-user-select: none;
                 user-select: none;
                 border: .0625rem solid transparent;
                 text-transform: uppercase;
                 font-size: 20px;
                 line-height: 1.5;
                 border-radius: .5rem;
                 transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                 font-family: "Montserrat", sans-serif;
                 /* min-width: 200px; */
             }
             
             .btn:hover,
             .btn:focus {
                 transform: translateY(-2px);
                 background: var(--theme-color);
                 /* color: rgb(255, 255, 255); */
                 /* border: 1px solid rgb(255, 255, 255); */
                 color: var(--secondary-color);
                 opacity: 0.9;
             }
             
             @media(min-width:768px){
                .btn {
               
                 min-width: 200px;
             }
             }
             .bg-theme {
                 background: var(--theme-color);
             }
             
             .bg-theme1 {
                 background: var(--theme-color2);
             }
             
             .fs-30 {
                 font-size: 30px;
             }
             .fs-48 {
                 font-size: 48px !important;
             }
             
             .gutter-5 {
                 --bs-gutter-x: 6rem;
             }
             /* 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;
             }
             
             .homebanner {
                 height: 90vh;
             }
             
             .mainbanner h2 {
                 font-size: 158px;
                 /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
                 text-shadow: rgba(0, 0, 0, 0.325) 0px 5.93632px 25.2294px;
                 /* letter-spacing: -0.025em; */
                 line-height: 1;
                 font-family: "Montserrat", sans-serif;
                 font-weight: 900;
                 letter-spacing: -0.02em;
             }
             
             .display-7 {
                 font-size: 40px;
                 text-shadow: #fff;
                 /* text-shadow: rgb(0 0 0 / 19%) 4.12497px 4.12497px 0px; */
               text-shadow: rgba(0, 0, 0, 0.6) 0px 1.50001px 11.2501px;
                 font-family: "Montserrat", sans-serif;
                 font-weight: 900;
             }
             
             @media (min-width: 1400px) {
                 .px-xxl-8 {
                     padding-right: 8rem !important;
                     padding-left: 8rem !important;
                 }
                  
             }
             
             @media (min-width:1200px) and (max-width: 1400px) {
                 /* .homebanner {
                     height: 75vh;
                 } */
                 .mainbanner h2 {
                     font-size: 144px;
                 }
                 .display-7 {
                     font-size: 36px;
                 }
             }
             
             @media (min-width: 992px) {
                 .fs-48 {
    font-size: 40px !important;
}
                 .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: var(--secondary-color);
             }
             .bg-theme-color{
                 background: var(--theme-color);
             }
             .section-title h2 {
                 font-size: 50px;
                     letter-spacing: -0.02em;
                 text-transform: capitalize;
                 font-weight: 900;
                 margin-bottom: 2rem;
                 font-family: "Montserrat", sans-serif;
                 color: var(--secondary-color);
             }
             
             .ourgoodies h3 {
                 font-size: 24px;
                 text-transform: uppercase;
                 font-weight: 900;
                 margin-bottom: 0;
                 font-family: "Montserrat", sans-serif;
                 color: var(--secondary-color);
                 padding: 10px 0;
             }
             
             .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(113 73 54 / 69%);
                 z-index: -1;
             }
             
             .foottop {
                 z-index: 2;
                 overflow: hidden;
             }
             
             .aboutoverlay {
                 z-index: 2;
                 overflow: hidden;
                 position: relative;
             }
             
             .me-20 {
                 margin-right: 20px !important;
             }
             
             .pt-50 {
                 padding-top: 80px;
             }
             
             .pb-50 {
                 padding-bottom: 80px;
             }
             
             .d-table-cell {
                 vertical-align: middle;
             }
             
             .section-title {
                 padding-bottom: 2rem;
             }
             
             .book-a-table-btn {
                 background: var(--theme-color);
                 color: var(--white-color);
                 display: inline-block;
                 text-align: center;
                 vertical-align: middle;
                 -webkit-user-select: none;
                 -ms-user-select: none;
                 user-select: none;
                 /* font-weight: 400; */
                 padding: .5rem 1.25rem;
                 font-size: 17px;
                 line-height: 1.5;
                 border-radius: .5rem;
                 transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                 font-family: "Montserrat", sans-serif;
                 font-weight: 700;
             }
             
             .book-a-table-btn:hover {
                 background: var(--theme-color2);
                 color: rgb(255, 255, 255);
             }
             /* inner page */
             
             .breadcrumb h1 {
                 font-weight: 900;
                 font-size: 74px;
                 text-transform: capitalize;
                 text-align: center;
                 color: #fff;
                 padding: 11rem 0 3rem 0;
                 font-family: "Montserrat", sans-serif;
                 z-index: 1;
                 text-shadow: rgba(0, 0, 0, 0.325) 0px 2.8px 11.9px;
             }
             
             .breadcrumb {
                 position: relative;
                 z-index: 1;
             }
             
             .breadcrumb:before {
                 content: close-quote;
                 background: rgba(0, 0, 0, 0.3);
                 position: absolute;
                 top: 0;
                 bottom: 0;
                 z-index: 0;
                 right: 0;
                 left: 0;
                 z-index: -1;
             }
             
             /* .aboutcard p {
                 font-size: 24px;
             } */
             
             p:last-child {
                 margin-bottom: 0px;
             }
             
             footer {
                 background: rgb(27, 23, 27);
             }
             
             footer p {
                 padding: 0px;
                 text-align: start;
                 font-size: 18px;
                 color: rgb(255, 255, 255);
             }
             
             .foottop ul a {
                 padding-left: 0;
             }
             
             footer .social-links {
                 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;
             }
             /* my menu */
             
             .menu-container {
                 max-width: 1200px;
                 margin: 0 auto;
                 padding: 20px;
             }
             
             .section-title1 {
                 background-color: #5b301d;
                 color: white;
                 padding: 10px 15px;
                 margin-bottom: 15px;
                 text-transform: uppercase;
                 font-weight: bold;
                 border-radius: 5px;
                     letter-spacing: -0.02em;
             }
             
             .hub-title {
                 color: #00a8e8;
                 font-size: 1.8rem;
                 font-weight: bold;
                 margin-bottom: 15px;
                 text-transform: uppercase;
             }
             
             .burger-hub-title {
                 color: #f8f8f8;
                 font-size: 2.2rem;
                 font-weight: bold;
                 text-align: center;
                 margin: 15px 0;
                 text-transform: uppercase;
             }
             
             .saucy-hub-title {
                 color: #ffa500;
                 font-size: 2.2rem;
                 font-weight: bold;
                 text-align: center;
                 margin: 15px 0;
                 text-transform: uppercase;
             }
             
             .menu-item {
                 display: flex;
                 justify-content: space-between;
                 margin-bottom: 8px;
             }
             
             .item-name {
                 font-weight: bold;
             }
             
             .item-description {
                 font-size: 0.8rem;
                 color: #ccc;
                 margin-top: 2px;
             }
             
             .item-price {
                 color: #ffa500;
                 font-weight: bold;
             }
             
             .category-label {
                 background-color: var(--theme-color2);
                 color: white;
                 padding: 5px 10px;
                 border-radius: 15px;
                 display: inline-block;
                 margin-bottom: 10px;
                 font-weight: bold;
             }
             
             .special-deal {
                 background-color: #ffa500;
                 color: #000;
                 border-radius: 10px;
                 padding: 10px;
                 margin-bottom: 10px;
                 text-align: center;
                 font-weight: bold;
             }
             
             .special-deal-price {
                 font-size: 1.2rem;
             }
             
             .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
             }
               footer .section-title h4  {
                   font-weight: 900;

                }
             @media (min-width: 1300px) {
                 .absolute {
                     position: absolute !important;
                     top: 0;
                     right: 0;
                     height: 100%;
                 }
             }
             @media (min-width: 1500px) {
                  .fs-48 {
    font-size: 48px !important;
}
             }
             /* end */
             
             @media (max-width: 767px) {
                footer .section-title  {
                   padding-bottom: 0;
                }
                footer .section-title h2  {
                   font-weight: 800;

                }
                footer br{
                    display: block;
                }
                .pt-6 {
    padding-top: 3rem;
}
                 .gutter-5 {
                     --bs-gutter-y: 2rem;
                 }
                 .newfont {
                     font-family: "Lilita One", sans-serif !important;
                     font-size: 34px !important;
                 }
                 .homebanner {
                     height: 28vh;
                 }
                 .vh-100 {
                     height: auto !important;
                     position: relative;
                 }
                 .bannerheight {
                     background-position: center center !important;
                 }
                 .mainbanner h2 {
                     font-size: 37px;
                 }
                 .display-7 {
                     font-size: 19px;
                 }
                 body {
                     font-size: 16px;
                 }
                 .breadcrumb h1 {
                     font-size: 40px;
                     padding: 3rem 0 1rem 0;
                 }
                 #header .logo img {
                     max-height: 31px;
                     /* background: #fff; */
                     padding: 0;
                 }
                 .btn {
                     font-size: 18px;width: 50%;
                 }
                 p {
                     font-size: 17px;
                 }
                 .min-vh-100 {
                     min-height: 75vh !important;
                 }
                 .section-title h2 {
                     font-size: 34px;
                     text-transform: uppercase;
                     /* font-weight: 500; */
                     margin-bottom: 1rem;
                 }
                 .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;
                 }
                    .book-a-table-btn {
        padding: 6px;
        font-size: 13px;
        text-transform: capitalize !important;
        /* margin-right: 1rem; */
    }
                 .btn {
                     padding: .5rem 1rem;
                     font-size: 14px;
                     /* margin-right: 1rem; */
                 }
                 .section-title h2 {
                     font-size: 38px !important;
                     text-transform: capitalize;
                     /* font-weight: 500; */
                     margin-bottom: 0rem;
                 }
             }
             
             @media(min-width: 768px) and (max-width: 1024px) {
                 .mainbanner h2 {
                     font-size: 90px;
                 }
                 .homebanner {
                     height: 35vh;
                 }
                 .display-7 {
                     font-size: 26px;
                 }
                 .gutter-5 {
                     --bs-gutter-y: 3rem;
                 }
                 .mobile-nav-toggle {
                     margin-left: 1rem;
                 }
             }
             /* iPad Pro Portrait (1024px wide) */
@media only screen 
  and (width: 1024px) 
  and (orientation: portrait) {
  .homebanner {
    height: 32vh !important;
  }
}

/* Tablets and small laptops (1200px–1350px) */
/* @media (min-width: 1200px) and (max-width: 1350px) {
  .homebanner {
    height: 56vh;
  }

} */

/* iPad Pro Landscape (1366px wide) */
/* @media only screen 
  and (width: 1366px) 
  and (orientation: landscape) {
  .homebanner {
    height: 56vh !important;
  }
} */

/* Desktop and above (≥1351px) */
@media (min-width: 1351px) {
  .homebanner {
    height: 85vh;
  }
}

             @media(min-width: 1024px) and (max-width: 1200px) {
                 .mainbanner h2 {
                     font-size: 100px;
                 }
                 .mainbanner p {
                     font-size: 30px;
                 }
                 .gutter-5 {
                     --bs-gutter-x: 3rem;
                 }
                 .nav-gap-sm span {
                     width: 100% !important;
                 }
                     .homebanner {
        height: 55vh;
    }
             }
             /* review */