/*  
    Theme: Kamanakitchen Theme
    Designer/Developer: Saugat Shrestha
    Author: Dinup Parajuli
*/


:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: "Londrina Solid", serif;
    --primary-color: #b70e15;
    --secondary-color: #C0392B;
    --tertiary-color: #00bfff;
    --light-color: #f2f2f2;
    --white-color: #ffffff;
    --black-color: #000;
    --text-color: #c0c0c0;
    --text-dark-color: #333333;
}

/*================================================================
GLOBAL STYLES
================================================================*/

body {
    font-family: var(--font-primary);
    color: var(--text-dark-color);
    font-size: 17px;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    padding: 18px 30px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    border: none;
    font-size: 20px;
    font-weight: 400;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.site-btn-secondary {
    background: var(--white-color);
    color: #000;
}

.site-btn:hover {
    background: #9c2b20;
    color: #ffffff;
}

.site-btn--large {
    padding: 20px 25px;
}

.object-fit {
    object-fit: cover;
}

figure {
    margin: 0;
}

.font-secondary {
    font-family: var(--font-secondary);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-control {
    border-radius: 0px;
    background: none;
    height: 50px;
    border: 1px solid rgba(5,83,70,.2);
    padding: 8px 15px;
}

label {
    display: block;
    margin-bottom: 10px;
}

.form-control:focus {
    box-shadow: none;
    background: none;
}

textarea.form-control {
    resize: none;
    height: 200px;
}

button {
    border: none;
}

iframe {
    display: block;
}

/*================================================================
HEADER STYLES
================================================================*/

.top-header {
    background: var(--primary-color);
    padding: 10px 0;
}

.top-header .container-fluid {
    padding: 0 70px;
}

.pasta-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #252525;
    width: 100%;
    z-index: 9;
    transition: all 0.4s ease;
}

.pasta-header__logo img {
    width: 85px;
    margin-right: 8px;
}

.pasta-header__inner {
    padding: 0 40px;
}

.pasta-header__logo {
    font-size: 22px;
    color: #322e2e;
    font-weight: 700;
}

.pasta-header__logo a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.4px;
}

.pasta-header__logo a svg {
    width: 50px;
    margin-right: 10px;
}

.pasta-header__meta {
    gap: 40px;
}

.pasta-header__meta li {
    position: relative;
}

.pasta-header__meta li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -20px;
    height: 15px;
    width: 1px;
    background: #aa9a9a;
}

.pasta-header__meta li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.pasta-header__meta li a i {
    color: var(--white-color);
}

.pasta-primary-nav ul {
    display: flex;
    align-items: center;
    column-gap: 35px;
}

.pasta-primary-nav ul li.current-menu-item a {
    color: var(--secondary-color);
}

.pasta-primary-nav ul li:hover a {
    color: var(--secondary-color);
}

.pasta-primary-nav ul li a {
    font-family: var(--font-secondary);
    display: block;
    color: var(--white-color);
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 50px 0;
}

.pasta-primary-nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: var(--secondary-color);
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
}

.pasta-primary-nav ul li.current-menu-item a::after,
.pasta-primary-nav ul li:hover a::after {
    width: 100%;
    left: 0;
}

.top-header .social-icons li a {
    width: 33px;
    height: 33px;
    font-size: 15px;
    border-radius: 100%;
    background: #fff;
    color: #000;
}

.top-header .social-icons li a:hover {
    color: #000;
    background: #ddd;
}

.section-delivery p {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.delivery-block {
    border: 2px dashed #bdaaaa;
    padding: 40px 40px;
}

.delivery-block a {
    color: #000;
}

li.breadcrumb-item {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

/*================================================================
SECTION LEADSPACE STYLES
================================================================*/

.text-r-text {
	font-size: 24px;
    font-weight: 500;
}

.section-leadspace {
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    height: calc(100dvh - 180px);
}

.section-leadspace .container {
    z-index: 3;
}

.section-leadspace::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0a0a2354;
    z-index: 2;
}

.section-leadspace .content {
    padding-top: 30px;
}

.section-leadspace .eyebrow {
    color: #c9aaaa;
}

.eyebrow {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #c9bbbb;
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.eyebrow svg {
    width: 50px;
    display: block;
    margin: 0 auto 15px;
}

.section-leadspace h1 {
    font-size: 58px;
    line-height: 54px;
    margin-bottom: 20px;
}

.section-leadspace .content p {
    font-size: 18px;
}

.leadspace-slider {
    position: absolute;
    top: 0;
    left:  0;
    width: 100%;
    height: 100%;
}

/*================================================================
SECTION WHAT WE PROVIDE STYLES
================================================================*/

.section-what-we-provide {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section-what-we-provide .eyebrow {
    color: #dbd5d5;
}

.section-what-we-provide .section-header {
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-grid .grid-block {
    padding: 40px 30px;
    position: relative;
    text-align: center;
    min-height: 270px;
    color: var)var(--white-color);
}

.why-choose-grid .grid-block .icon {
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    margin: 0 auto 20px;
    transition: all 0.3s ease-in-out;
}

.why-choose-grid .grid-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--white-color);
}

.why-choose-grid .grid-block p {
    font-size: 15px;
    color: var(--white-color);
}

.why-choose-grid .grid-block .number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    z-index: 1;
}


/*================================================================
FOOTER STYLES
================================================================*/

.pasta-footer {
    background: #1d1d1d url('assets/images/footer-bg.jpg')no-repeat;
    background-size: cover;
    padding: 70px 0 40px;
}

.pasta-footer__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.pasta-footer__thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;  
}

.footer-title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 34px;
}

.opening-hours li {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #c2bcbc;
}

.opening-hours li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #343131;
    transition: width 1s ease;
}

.opening-hours li.visible::before {
    width: 100%;
}

.footer-top {
    border-bottom: 1px solid #343131;
    margin: 0 0 50px;
    padding: 0 0 35px;
}

.footer-top h4 {
    font-size: 20px;
    color: #b2a5a5;
    font-weight: 300;
}

.footer-top h4 a {
    color: var(--white-color);
    font-weight: 400;
}

.copyright {
    border-top: 1px solid #343131;
    margin: 25px 0 0;
    padding: 25px 0 0;
}

.copyright p {
    font-size: 16px;
    color: #c2bcbc;
}

.copyright p a {
    color: var(--secondary-color);
    font-weight: 600;
}

.row-footer-top {
    border-bottom: 1px solid #242222;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.social-icons {
    gap: 10px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: #95560a;
}

.contact-info li {
    color: #c2bcbc;
    position: relative;
    padding-left: 32px;
}

.contact-info li i {
    margin-right: 3px;
    color: var(--secondary-color);
}

.contact-info li svg {
    width: 22px;
    fill: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info li:not(:last-child) {
    margin-bottom: 8px;
}

.pages-link li:not(:last-child) {
    margin-bottom: 8px;
}

.pages-link li a {
    font-size: 17px;
    color: #c2bcbc;
    transition: all 0.3s ease;
}

.pages-link li a:hover {
    color: var(--white-color);
}

.footer-pages {
    padding-left: 60px;
}

.footer-top-grid {
    display: grid;
    grid-template: repeat(12, 1fr);
}

/*================================================================
SECTION OUR STORY STYLES
================================================================*/

.section-our-story {
    background: url('/kapahulu/wp-content/uploads/2024/09/st1-scaled-1.webp')no-repeat;
	background-size: cover !important;
    padding: 80px 0 100px;
}

.section-header {
    font-size: 58px;
    line-height: 70px;
    margin-bottom: 20px;
    color: var(--black-color);
    font-weight: 400;
    text-align: center;
}

.section-header span {
    color: var(--secondary-color);
}

.our-story__content {
    text-align: center;
}

.our-story__content .eyebrow {
    color: #807373;
}

.our-story__content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
}

.our-story-thumbnail {
    padding-left: 60px;
}

.our-story-thumbnail .figure {
    height: 550px;
    padding-left: 30px;
}

.our-story-thumbnail .map-image {
    position: absolute;
    bottom: -70px;
    z-index: 1;
    left: -30px;
}

.our-story-thumbnail__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 50px);
    height: 100%;
    background: #d5d5dd;
}

.ingredients {
    top: -50px;
    right: -90px;
    position: absolute;
    z-index: 1;
}

.bottom-image {
    width: 100%;
    margin-top: -120px;
}

.menu-thumb-box {
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 50px;
}

/*================================================================
SECTION VISA STYLES
================================================================*/

.section-visa {
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.section-visa  .eyebrow {
    color: #807373;
}

.section-visa .section-header {
    margin-bottom: 20px;
}

.section-visa .our-story__content {
    margin-bottom: 40px;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.visa-grid .visa-column {
    position: relative;
    overflow: hidden;
}

.visa-grid .visa-column .visa-column__thumbnail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.visa-grid .visa-column__details p {
    font-weight: 600;
    font-size: 20px;
}

.visa-grid .visa-column__details span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 100%;
    color: var(--white-color);
    font-weight: 700;
    padding: 11px 15px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
}

.appointment-form {
    background: #fff;
    padding: 40px 40px 20px;
    border-radius: 5px;
}

.page-content-services .heading {
    margin-bottom: 70px;
}

.page-content-services .heading h3 {
    font-size: 20px;
    color: var(--primary-color);
    border-left: 3px solid var(--tertiary-color);
    padding-left: 20px;
}

.contact-services-btn {
    margin: 80px 0 0;
    background: #f2f2f2;
    padding: 40px 40px;
    border-radius: 5px;
}

.contact-services-btn p {
    font-size: 20px;
    font-weight: 700;
}

.services-grid:not(:last-child) {
    margin-bottom: 40px;
}

.services-grid:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.service-column .content h5 {
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.service-column .content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-column .content h4 span {
    color: var(--secondary-color);
}

.service-column .content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.service-column .service-column__thumbnail {
    padding-right: 50px;
    height: 450px;
}

/*================================================================
SECTION WHY CHOOSE US STYLES
================================================================*/

.section-why-choose-us {
    padding: 80px 0;
    background: #222222;
    background-size: cover;
}

.section-why-choose-us h2 {
    font-size: 35px;
}

.section-why-choose-us .section-header {
    margin-bottom: 80px;
}

.section-why-choose-us .section-header span {
    color: #bd9ea1;
}

.section-why-choose-us .block {
    position: relative;
    padding: 0 40px;
}

.section-why-choose-us .block figure {
    width: 100px;
    height: 100px;
    background: #3671a6;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin: 0 auto 20px;
}

.section-why-choose-us .row [class*="col-"]:not(:last-child) .block::after {
    position: absolute;
    content: "";
    top: 0;
    right: -10px;
    height: 100%;
    width: 1px;
    background: #75678f;
}

.section-why-choose-us .block h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/*================================================================
SECTION ALTER GRIDS STYLES
================================================================*/

section.section-alter-grids {
    background: #fff;
	margin: 0 0 100px;
}

.alter-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-lunch {
    overflow: hidden;
}

.card-lunch a {
    display: block;
    height: 100%;
    position: relative;
}

.grid-column__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 60px;
}

.card-lunch h3 {
    font-size: 40px;
}

.card-lunch h3 em {
    font-style: normal;
}


.card-lunch .eyebrow {
    color: #d8cbcb;
}

.card-lunch figure {
    height: 100%;
    width: 100%;
}

.card-lunch a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card-lunch a:hover img {
    transform: scale(1.2,1.2);
}

.card-lunch.fullheight {
    height: 100%;
}

.card-lunch.fullheight .grid-column__overlay {
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.3) 40%,rgba(0,0,0,.3) 60%,rgba(0,0,0,0) 100%);
}

.card-lunch--color .grid-column__overlay  {
    background: #252525;
}

.card-lunch.fullheight .eyebrow {
    color: #fff;
}

.card-lunch--color .eyebrow {
    color: #c9bbbb;
}

.card-lunch.is-centered .grid-column__overlay {
    justify-content: center;
    text-align: center;
}

.card-lunch--color h3 {
    color: #fff;
}

.section-family {
    background: #fff;
    margin: 20px 0 0;
}

/*================================================================
OUR MENUS STYLES
================================================================*/

.row-menu-tabpanel {
    margin: 40px 0 0;
}

.tab-wrap {
    background: #f9efe6;
}

.menu-tabs {
    background: #f9efe6;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    gap: 30px;
    padding: 15px 0;
    margin: 0 0 70px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.menu-tabs li a {
    display: block;
    color: var(--black-color);
}

.menu-tabs::-webkit-scrollbar{
    width: 2px;
    height: 5px;
}

.menu-tabs::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #0a8043;
}

.menu-heading {
    margin-bottom: 40px;
}

.menu-heading p {
    margin: 15px 0 0;
}

.row-panel-menu {
    margin: 0 -20px;
}

.row-panel-menu:not(:last-child) {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(5,83,70,.2);;
}

.row-panel-menu [class*="col-"] {
    padding: 0 20px;
}

.row-panel-menu .menu-block h4 {
    width: 60%;
}

.row-panel-menu .menu-block span {
    max-width: 30%;
    font-weight: bold;
    color: var(--secondary-color);
}

.listings h3 {
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 1px solid rgba(5,83,70,.2);
    padding: 0 0 12px;
}

.listings ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sub-heading {
    margin-bottom: 15px;
}

.menu-block .intr-block h4 {
    margin: 0;
}

.intr-block:not(:last-child) {
    margin-bottom: 10px;
}

.sub-heading h3 {
    font-size: 22px;
}

.sub-heading p {
    margin: 5px 0 0;
}

.section-explore-menus {
    background: #f8f6f6;
    padding: 80px 0;
}

.nav-tabs {
    margin: 40px 0 50px;
    border-bottom: none;
    display: flex;
    gap: 20px;
}

.nav-tabs .nav-link {
    border-radius: 8px;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-family: var(--font-secondary);
    transition: all 0.4s ease;
}

.nav-tabs .nav-link:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}

.menu-block {
    position: relative;
}

.menu-block:not(:last-child) {
    border-bottom: 1px solid rgba(5,83,70,.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.menu-block h4 {
    font-size: 20px;
    margin-bottom: 5px;
    padding-right: 80px;
    color: rgb(5, 83, 70);
}

.menu-block p {
    font-size: 15px;
    color: rgb(5, 83, 70);
}

.menu-block span {
    position: absolute;
    top: 0;
    right: 0;
}

.tab-content .row {
    padding: 0 50px;
}

.tab-content .row [class*="col-"] {
    padding: 0 10px;
}

.menu-button {
    margin: 40px 0 0;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1020px;
    margin: 30px auto 0;
}

.countries-grid .country {
    background: #ffffff;
    text-align: center;
    padding: 30px 30px;
    border-radius: 5px;
}

.countries-grid .country .country__thumbnail {
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.countries-grid .country .country__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.countries-grid .country p {
    font-weight: 500;
}

.section-food-menu .container {
    max-width: 100%;
    padding: 0 80px;
}

.section-food-menu {
    background: #000;
    padding: 80px 0;
}

.food-grid-column {
    margin-bottom: 40px;
}

.food-menu-grids {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-right: 80px;
}

.food-heading {
    color: #fff;
    margin: 0 0 40px;
    border-bottom: 1px solid #292a29;
    padding-bottom: 20px;
}

.food-heading h3 {
    margin: 0 0 10px;
}

.food-heading p {
    color: #aaaaac;
}

.food-block {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.food-block:not(:last-child) {
    margin-bottom: 30px;
}

.food-block h4 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 8px;
    display: inline-block;
    background: #000;
    position: relative;
    padding-right: 15px;
    transition: all 0.3s ease;
}

.food-block:hover h4 {
    color: #e48413;
}

.food-block p {
    color: #aaaaac;
    max-width: 85%;
}

.food-block__left {
    padding-right: 40px;
    position: relative;
    width: 100%;
}

.food-block__left::before {
    position: absolute;
    content: "";
    left: 0;
    top: 21px;
    height: 1px;
    width: 100%;
    border: 1px dashed #665e5e;
}

.food-block__price {
    font-size: 32px;
    line-height: 38px;
    font-family: var(--font-secondary);
    padding-left: 30px;
}

/*================================================================
SECTION TESTIMONIALS STYLES
================================================================*/

.section-testimonials {
    padding: 80px 0;
}

.section-testimonials .eyebrow {
    color: #7a6d6d;
}

.section-testimonials .row-testimonials {
    margin-bottom: 50px;
}

.reviews-thumbnail figure {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 -12px;
}

.reviews-thumbnail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-reviews-block {
    margin: 10px 0 0;
}

.testimonials-block {
    margin: 30px 0 0;
    background: #f9efe6;
    padding: 30px;
    min-height: 280px;
    border: 1px solid #e5dede;
}

.testimonials-block span.review {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--secondary-color);
}

.testimonials-block p {
    font-size: 15px;
    line-height: 22px;
}

.details {
    margin: 20px 0 0;
}

.details h3 {
    font-size: 18px;
}

.details p {
    font-size: 14px;
    font-weight: 500;
}

.row-information .inner {
    margin: 70px 0 0;
    background: var(--secondary-color);
    padding: 30px 60px;
    color: #fff;
}

.row-information p {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}


/*================================================================
PAGE BANNER STYLES
================================================================*/

.section-page-banner {
    background-size: cover !important;
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-position: center bottom !important
}

.section-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.section-page-banner p {
    color: #e5d3d3;
}

.page-banner {
    font-size: 40px;
    margin-bottom: 8px;
}

.time {
    font-size: 14px;
    color: #e2c6c6;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(158 172 185 / 75%);
}

.breadcrumb-item.active {
    color: #d7cccc;
}

/*================================================================
SECTION PAGE CONTENT STYLES
================================================================*/

.section-page-content {
    padding: 80px 0;
}

.section-page-content .form-group {
    margin-bottom: 25px;
}

.form-group br {
    display: none;
}

.contact-information h3 {
    margin-bottom: 30px;
}

.contact-information ul li p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-information ul li:not(:last-child) {
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.contact-grid .contact-box {
    background: #f4f5f6;
    padding: 60px 40px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #f6f2f2;
}

.contact-grid .contact-box span {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--secondary-color);;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 22px;
    color: var(--white-color);
}

.contact-grid .contact-grid-col:nth-of-type(1) .contact-box {
    background: var(--secondary-color);
    color: var(--white-color);
}

.contact-grid .contact-grid-col:nth-of-type(1) .contact-box span {
    background: var(--white-color);
    color: var(--secondary-color);
}

.contact-grid .contact-box h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form-wrap {
    background: #ffffff;
    height: 100%;
}

/*================================================================
SECTION OUR MENUS STYLES
================================================================*/

.section-food-inside:nth-of-type(odd) {
    background: #131313;
}

.section-food-inside:nth-of-type(odd) .row-menus {
    flex-direction: row-reverse;
}

.section-food-inside:nth-of-type(odd)  .our-story__content {
    padding-left: 80px;
}

.section-food-inside:nth-of-type(odd) .row-menus .food-menu-grids {
    padding-right: 0;
    padding-left: 80px;
}

.section-food-inside:nth-of-type(odd) .row-menus .food-block h4 {
    background: #131313;
}

.row-menu-info {
    margin-bottom: 60px;
}

.row-menu-info p {
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-secondary);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 6px;
}

.row-menu-categories {
    margin: 60px 0 0;
}

.catering-menu {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #d3cccc;
    border-bottom: 1px solid #d3cccc;
    padding: 20px 0;
}

.catering-menu li a {
    display: block;
    color: rgb(5, 83, 70);
    font-weight: 500;
}

.category-title {
    font-size: 20px;
    margin-bottom: 30px;
    background: #a18484;
    padding: 16px 18px;
    color: #fff;
}

.menu-block__block {
    margin-bottom: 60px;
}

.row-catering {
    margin: 0 -20px;
}

.row-catering [class*="col-"] {
    padding: 0 20px;
}

.menu-block__block .menu-block span {
    font-weight: bold;
    color: var(--secondary-color);
}

.menu-block__block .menu-block:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.menu-block__block .menu-block h4 {
    font-size: 18px;
    max-width: 65%;
}

.food-main-title {
    font-size: 40px;
    color: var(--secondary-color);
    margin: 0 0 30px;
}

table {
    background: #252525;
}

table:not(:last-child) {
    margin-bottom: 30px;
}

table tr th {
    font-family: 'Londrina Solid';
    font-size: 30px;
    font-weight: normal;
    background: transparent !important;
    padding: 20px 30px !important;
    color: #fff !important;
    border: 1px solid #393535;
}

table tr td {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #393535;
}

table tr td {
    font-size: 18px;
    padding: 15px 30px !important; 
}

/*================================================================
RESERVATIONS PAGE STYLES
================================================================*/

.reserve-title {
    margin-bottom: 40px;
    font-size: 18px;
}

/*================================================================
GALLERY PAGE STYLES
================================================================*/

.filter-title {
    margin: 0 0 30px;
    text-align: center;
}

.filter-gallery-tabs {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.filter-gallery-tabs ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.filter-gallery-tabs ul li a {
    display: block;
    color: rgb(33, 37, 41);
}

.row-gallery-filter {
    margin-bottom: 40px;
}

.row-gallery {
    margin: 0 -7.5px;;
}

.row-gallery [class*="col-"] {
    padding: 0 7.5px;;
}

.gallery-block {
    margin-bottom: 15px;
}

.gallery-block a {
    display: block;
}

.row-gallery [class*="col-"].gallery-block img {
    height: 200px;
}

.menu-block-home {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.menu-block-home .thumbnail-img img {
    height: 210px;
    object-fit: cover;
}

.menu-block-home .menu-details {
    padding: 20px 20px;
}

.menu-block-home .menu-details h4 {
    font-size: 20px;
}

.menu-block-home .menu-details p {
    font-size: 14px;
}

.price {
    display: block;
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    border-top: 1px solid #f1eaea;
    padding: 15px 0 0;
}

.main-table-cap {
    text-align: center;
    color: #d3bebe;
    font-size: 22px;
    margin: 50px 0 0;
}

.main-table-cap p {
    text-underline-offset: 6px;
    text-decoration: underline;
}

.section-marquee {
    background: var(--secondary-color);
    padding: 20px 0;
}

.section-marquee .container-fluid {
    padding: 0 40px;
}

.marquee-scroll {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.marquee-scroll p {
    font-size: 28px;
    line-height: 30px;
    font-family: var(--font-secondary);
    color: #fff;
    margin-right: 80px;
}

.marquee-scroll p img {
    max-width: 70px;
}

/*================================================================
BOOKING FORM STYLES
================================================================*/

#rtb-name,
#rtb-date,
#rtb-time,
#rtb-party,
#rtb-phone, 
#rtb-email,
#rtb-message {
    border-radius: 0px;
    background: none;
    height: 50px;
    border: 1px solid rgba(5, 83, 70, .2);
    padding: 8px 15px;
    width: 100%;
    display: block;
    max-width: 100%;
    resize: none;
}

#rtb-name:focus,
#rtb-date:focus,
#rtb-time:focus,
#rtb-party:focus,
#rtb-phone:focus, 
#rtb-email:focus,
#rtb-message:focus {
    outline: 0;
}

#rtb-date,
#rtb-time {
    cursor: pointer;
}

body .picker__table {
    font-size: 18px;
}

body .rtb-booking-form legend {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    background: #a18484;
    padding: 10px 18px;
    color: #fff;
}

.rtb-form-submit button {
    background: #f03f4c;
    color: #fff;
    border: navajowhite;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rtb-form-submit button:hover {
    background: #be343e;
}

fieldset.reservation {
    margin: 0 0 50px;
}

.add-message a {
    font-weight: 500;
    text-decoration: underline;
    color: #000;
    text-underline-offset: 2px;
}

body .rtb-booking-form fieldset > div {
    margin-top: 0;
}

.rtb-text {
    margin-bottom: 15px;
}


/*================================================================
SECTION OUR BLOG STYLES
================================================================*/

.grid-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-blocks .grid-block {
    background: #f4f5f6;
    overflow: hidden;
}

.grid-block__details {
    padding: 25px 25px;
}

.grid-block__details span {
    color: var(--text-dark-color);
    font-size: 14px;
    border-bottom: 1px solid #f1ebeb;
    padding: 0 0 6px;
}

.grid-block__details h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.grid-block__details p {
    font-size: 14px;
}

.grid-block__details h4 a {
    color: #000000;
    transition: all 0.3s ease;
}

.grid-block__details h4:hover a {
    color: var(--secondary-color);
}

.grid-block__details  .site-btn {
    padding: 9px 20px;
    font-size: 15px;
}

.site-pagination {
    margin: 50px 0 0;
}

.site-pagination .pagination {
    gap: 12px;
}

.site-pagination .pagination .page-link {
    background: #f9f3f3;
    border: none;
    color: #000;
    box-shadow: none;
    padding: 7px 15px;
}

.site-pagination .pagination .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.site-pagination .pagination .page-link:focus {
    outline: 0;
}

.site-pagination .pagination .page-item.active .page-link {
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: 700;
}

.page-item:first-child .page-link {
    border-radius: 0px;
}

.page-item:last-child .page-link {
    border-radius: 0px;
}

.section-homepage-blog {
    padding: 80px 0;
    background: #f7f7f7;
}

.section-homepage-blog .container {
    max-width: 1200px;
}

.section-homepage-blog .grid-block {
    background: #fff;
}

.ratio-4x3 {
    --bs-aspect-ratio: 65%;
}

.blog-header {
    margin-bottom: 40px;
}


/*================================================================
SECTION OUR SERVICES STYLES
================================================================*/


/*================================================================
ABOUT US PAGE CONTENT STYLES
================================================================*/

.about-content {
    padding-right: 120px;
}

.about-content .section-header {
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.about-grid-block {
    margin: 50px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-grid-block .icon {
    max-width: 35px;
    margin: 0 0 10px;
}

.about-grid-block h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-grid-block p {
    font-size: 15px;
    color: rgb(113 105 105);
}

.about-grid-block .about-block {
    border: 1px solid #f0ebeb;
    padding: 20px 20px;
    border-radius: 5px;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-list .team-column {
    background: #ffffff;
}

.team-column h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

figure.team-column__thumbnail img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.team-column__details {
    padding: 20px 20px;
}

.team-column__details p {
    font-size: 15px;
    color: var(--secondary-color);
}

.team-header .section-header {
    margin-bottom: 50px;
}

.page-content-team {
    background: #f7f7f7;
}

.faqs-accordion {
    margin: 40px 0 0;
}

.faqs-accordion > .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-button {
    background: #f1f1f1;
    font-weight: 600;
    color: var(--primary-color);
    padding-right: 60px;
}

.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0px;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--white-color);
}

.accordion-button::after {
    display: none;
}

.accordion-button::before {
    position: absolute;
    content: "\f068";
    top: 17px;
    right: 26px;
    font-family: 'Fontawesome';
    font-size: 17px;
}

.accordion-button.collapsed::before {
    content: "\2b";
}

/*================================================================
SINGLE BLOG POST PAGE STYLES
================================================================*/

.page-sidebar h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
}

.content-single {
    padding-right: 80px;
}

.content-single ul {
    list-style: disc;
    margin-left: 20px   ;
}

.content-single p:not(:last-child) {
    margin-bottom: 20px;
}

.content-single h1,
.content-single h2,
.content-single h3,
.content-single h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.list-block h4 {
    font-size: 16px;
    line-height: 22px;
}

.list-block > a {
    display: flex;
    align-items: center;
    color: #333333;
}

.list-block > a img {
    height: 90px;
    width: 100%;
    object-fit: cover;
}

.list-block > a .list-block__thumbnail {
    width: 34%;
    border-radius: 6px;
    overflow: hidden;
}

.list-block > a .list-block__details {
    padding-left: 15px;
    width: 66%;
}

.blog-list-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-single-banner {
    padding: 80px 0 20px;
}

.section-single-banner .time {
    color: #423d3d;
}

.section-single-banner .single-thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.catering-heading {
    margin: 0 0 50px;
}

.catering-heading p {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}

.section-delivery label {
    font-size: 18px;
}

.wpcf7-list-item {
    margin: 0 20px 0 0;
}

.wpcf7-not-valid-tip {
    margin: 5px 0 0;
    font-size: 16px;
}

/*================================================================
SECTION TESTIMONIALS STYLES
================================================================*/

.section-testimonials .testimonials-student .test-top .thumbnail-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 100%;
    overflow: hidden;
}

.section-testimonials .testimonials-student .test-top .thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-testimonials .testimonials-student h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.test-bottom {
    font-size: 14px;
    color: #5bbb3a;
}

.test-top {
    line-height: 1;
    color: #000;
}

.test-top span {
    margin-right: 10px;
    font-size: 24px;
    margin-left: 10px;
    color: var(--primary-color);
}

.thumbnail-img-plane {
    position: absolute;
    top: 70px;
    right: 70px;
}

.thumbnail-img-bag {
    position: absolute;
    left: 70px;
    top: 170px;
}


/*================================================================
SECTION LEADSPACE STYLES
================================================================*/ 

.section-our-menus {
    background: #000;
    padding: 80px 0;
}

.gallery-block img {
    height: 250px;
    width: 100%;
}

p.logo-heading {
    font-family: var(--font-secondary);
    font-size: 38px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
}

p.tagline {
    font-size: 15px;
    margin: 3px 0 0;
    color: #c7bdbd;
    letter-spacing: 2px;
}


@media screen and (min-width: 1200px) and (max-width: 1439px) {
	
	.pasta-primary-nav ul {
		gap: 25px;
	}
	
	.pasta-primary-nav ul li a {
		font-size: 20px;
	}
	
}

/*================================================================
MOBILE SCREEN DEVICES
================================================================*/

@media screen and (max-width: 767px) {

    .container {
        padding: 0 20px;
    }

    .site-btn {
        padding: 12px 25px;
        font-size: 20px;
    }

    .pasta-primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pasta-primary-nav ul li a {
        padding: 8px 0;
    }

    .pasta-header {
        padding: 20px 0;
    }

    .primary-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 220px;
        height: 100%;
        background: var(--secondary-color);
        z-index: 22;
        padding: 70px 30px;
        transition: all 0.3s ease;
        transform: translateX(100%);
    }

    .primary-navigation.active {
        transform: translateX(0);
    }

    .pasta-primary-nav ul li a {
        font-size: 20px;
        color: var(--white-color);
    }

    .pasta-primary-nav ul li.current-menu-item a {
        color: var(--white-color);
    }

    .section-leadspace .content {
        padding-right: 0;
    }

    .section-leadspace h1 {
        font-size: 38px;
        line-height: 40px;
    }

    .content p {
        font-size: 17px;
        line-height: 26px;
    }

    .content-btn {
        margin-top: 20px;
    }

    .section-our-story {
        padding: 40px 0;
    }

    .section-header {
        font-size: 28px;
        line-height: 34px;
    }

    .our-story__content {
        padding-right: 0;
    }

    .section-why-choose-us {
        padding: 40px 0 20px;
    }

    .section-why-choose-us .section-header {
        margin-bottom: 30px;
    }

    .section-why-choose-us .block {
        padding: 0 20px;
    }

    .section-why-choose-us .block h3 {
        font-size: 18px;
    }

    .section-why-choose-us .block {
        margin-bottom: 30px;
    }

    .section-why-choose-us .block figure svg {
        width: 60px;
    }

    .section-why-choose-us .block p {
        font-size: 14px;
    }

    .section-explore-menus {
        padding: 40px 0;
    }

    .nav-tabs {
        gap: 10px;
        margin: 20px 0 30px;
    }

    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 18px;
    }

    .menu-block h4 {
        font-size: 18px;
    }

    .section-testimonials {
        padding: 40px 0;
    }

    .section-testimonials .row-testimonials {
        margin-bottom: 30px;
    }

    .testimonials-block {
        margin: 12px 0 0;
    }

    .row-information .inner {
        margin-top: 30px;
        padding: 30px 30px;
    }

    .row-information p {
        font-size: 16px;
    }

    .reviews-thumbnail figure {
        width: 55px;
        height: 55px;
        margin: 0 -10px;
    }

    .section-header {
        font-size: 36px;
    }

    .testimonials-block p {
        font-size: 14px;
        line-height: 21px;
    }

    .pasta-footer {
        padding: 40px 0;
    }

    .footer-pages {
        padding-left: 0;
        margin: 30px 0;
    }

    .footer-title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    ul.contact-info li {
        font-size: 16px;
    }

    .opening-hours li {
		display: block;
        font-size: 15px;
        padding: 14px 0;
    }
	
	.opening-hours li span {
		display: block;
	}

    .copyright {
        margin: 15px 0 0;
        padding: 20px 0 0;
    }

    .copyright p {
        font-size: 14px;
    }

    .pages-link {
        font-size: 15px;
    }
    
    .navbar-toggle svg {
        width: 48px;
    }

    .navbar-close {
        display: block;
        width: 25px;
        position: absolute;
        top: 20px;
        right: 25px;
    }

    .navbar-close svg {
        width: 30px;
    }

    .pasta-primary-nav ul li a:after {
        background: var(--white-color);
    }

    .section-page-banner {
        padding: 40px 0;
    }

    .page-banner {
        font-size: 26px;
        padding: 0 30px;
        margin-bottom: 10px !important;
    }

    .section-page-banner p {
        font-size: 15px;
    }

    .row-menu-info {
        margin-bottom: 40px;
    }

    .row-menu-info p {
        font-size: 16px;
    }

    .section-page-content {
        padding: 40px 0;
    }

    .category-title {
        padding: 14px 14px;
        font-size: 16px;
    }

    .menu-tabs {
        margin-bottom: 40px;
        padding: 10px 0;
    }

    .menu-tabs li a {
        font-size: 14px;
    }

    .sub-heading h3 {
        font-size: 18px;
    }

    .row-panel-menu:not(:last-child) {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .menu-block h4 {
        padding-right: 0;
        width: 100%;
    }

    .row-panel-menu .menu-block span {
        max-width: 100%;
    }

    .menu-block span {
        position: static;
    }

    .listings {
        margin: 30px 0 0;
    }

    .listings ul {
        font-size: 15px;
        gap: 5px;
    }
    
    .thumbnail-image {
        margin: 0 0 20px;
    }
    
    .contact-information {
        margin-bottom: 30px;
    }

    .form-control {
        height: 42px;
    }

    label {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .contact-information {
        padding: 25px 25px;
    }

    .contact-information ul li {
        font-size: 15px;
    }

    .contact-information ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .social-icons {
        gap: 7px;
    }

    .section-leadspace {
        height: auto;
        padding: 120px 0;
    }

    .section-leadspace .content p {
        font-size: 15px;
        line-height: 22px;
    }

    .section-leadspace h1 {
        padding-left: 15px;
    }

    .section-leadspace .content .eyebrow {
        font-size: 16px;
    }

    .our-story-thumbnail .figure {
        padding-left: 0;
    }

    .our-story-thumbnail {
        padding: 0;
        margin: 30px 0 0;
    }

    .our-story-thumbnail .figure {
        height: 300px;
    }

    .our-story-thumbnail .map-image {
        bottom: -60px;
        left: -10px;
        max-width: 180px;
    }

    .our-story__content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 24px;
    }

    .section-our-story .section-header {
        padding-left: 15px;
    }

    .section-what-we-provide {
        padding: 60px 0 0;
    }

    .eyebrow {
        font-size: 16px;
    }

    .bottom-image {
        margin: 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-choose-grid .grid-block {
        padding: 40px 20px;
    }

    .why-choose-grid .grid-block::after {
        display: none;
    }

    .why-choose-grid .grid-block .number {
        bottom: auto;
        top: -20px;
    }

    .why-choose-grid .grid-block {
        min-height: auto;
    }

    .section-why-choose-us h2 {
        font-size: 24px;
    }

    .section-why-choose-us .block figure {
        width: 80px;
        height: 80px;
        padding: 20px;
    }

    .section-why-choose-us .block h3 {
        font-size: 16px;
        margin: 0 0 5px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .countries-grid .country .country__thumbnail {
        width: 70px;
        height: 70px;
    }

    .visa-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-visa {
        padding: 40px 0;
    }

    .section-visa .section-header {
        margin-bottom: 40px;
    }

    .section-homepage-blog {
        padding: 40px 0;
    }

    .blog-header {
        margin-bottom: 20px;
    }

    .grid-blocks {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .pasta-footer__thumbnail {
        height: 300px;
    }

    .footer-top {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .pages-link li:not(:last-child) {
        margin-bottom: 4px;
    }

    ul.contact-info li {
        font-size: 15px;
    }

    .pages-link li a {
        font-size: 15px;
    }

    .social-icons li a {
        width: 35px;
        height: 35px;
        font-size: 16px;
        border-radius: 100%;
    }

    .copyright {
        padding-top: 15px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content .section-header {
        padding-left: 15px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-grid-block h4 {
        font-size: 16px;
    }

    .about-grid-block .about-block {
        padding: 15px 20px;
    }

    .about-grid-block {
        margin: 30px 0;
        gap: 10px;
    }

    .page-banner {
        font-size: 24px;
    }

    .breadcrumb {
        font-size: 14px;;
    }

    .team-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    figure.team-column__thumbnail img {
        height: 220px;
    }

    .team-column h4 {
        font-size: 18px;
    }

    .team-column__details p {
        font-size: 14px;
    }

    .accordion-body {
        font-size: 14px;
    }

    .faqs-accordion {
        margin: 10px 0 0;
    }

    .faqs-accordion > .accordion {
        gap: 10px;
    }

    .page-content-services .heading h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .page-content-services .heading {
        margin-bottom: 40px;
    }

    .service-column .service-column__thumbnail {
        height: 300px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-services-btn {
        margin: 40px 0 0;
    }

    .contact-services-btn {
        padding: 20px 25px;
    }

    .contact-services-btn p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }

    .contact-grid .contact-box {
        padding: 20px 20px;
    }

    .contact-grid .contact-box h4 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .contact-grid .contact-box p {
        font-size: 14px;
        line-height: 1.3;
    }

    .contact-grid .contact-box span {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-information {
        padding: 0;
        margin: 0;
    }

    .contact-form-wrap {
        padding: 0;
    }
    
    .ratio-21x9 {
        --bs-aspect-ratio: 66.857143%;
    }

    .section-single-banner {
        padding: 40px 0 0;
    } 

    .content-single {
        padding-right: 0;
        font-size: 15px;
    }

    .page-sidebar {
        margin: 40px 0 0;
    }

    .thumbnail-img-plane {
        top: 50px;
        right: 30px;
        max-width: 100px;
    }

    .t-content {
        font-size: 15px;
        line-height: 1.2;
    }

    .thumbnail-img-bag {
        max-width: 50px;
    }

    .delivery-block {
        padding: 25px 25px;
    }

    .section-delivery p {
        font-size: 17px;
        padding-right: 0;
        margin-top: 25px;
    }

    .pasta-header__inner {
        padding: 0;
    }

    .pasta-header__logo a {
        font-size: 18px;
    }

    .section-leadspace .content {
        padding-top: 0;
    }

    .section-leadspace .content .site-btn {
        padding: 12px 16px;
    }

    .alter-grid-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-food-menu {
        padding: 40px 0;
    }

    .section-food-menu .container {
        padding: 0 25px;
    }

    .food-block h4 {
        font-size: 28px;
        line-height: 34px;
    }

    .food-menu-grids {
        padding-right: 0;
    }

    .food-block p {
        max-width: 100%;
        font-size: 15px;
        line-height: 18px;
    }

    .food-block__left {
        padding-left: 0;
        padding-right: 0;
    }

    .grid-column__overlay {
        padding-bottom: 0;
        justify-content: center;
    }

    .section-food-inside:nth-of-type(odd) .our-story__content {
        padding-left: 0;
    }

    .section-food-inside:nth-of-type(odd) .row-menus .food-menu-grids {
        padding-left: 0;
    }

    .gallery-block img {
        height: 180px;
    }

    .card-lunch h3 {
        font-size: 30px;
        line-height: 34px;
    }

    .pasta-header__logo img {
        max-width: 74px;
    }

    p.logo-heading {
        font-size: 20px;
    }

    p.tagline {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .visa-grid {
        gap: 15px;
    }

    .visa-grid .visa-column .visa-column__thumbnail img {
        height: 250px;
    }

    .pasta-primary-nav ul li:hover a {
        color: #fff;
    }
    
    section {
        overflow-x: hidden;
    }

    li.breadcrumb-item {
        font-size: 12px;
    }
	
	.section-food-inside .row-menus {
		flex-direction: column-reverse;
	}
	
	.section-food-inside:nth-of-type(odd) .row-menus {
		flex-direction: column-reverse;
	}
	
	.food-grid-column {
		margin: 0;
	}
	
	.food-block__price {
		text-align: right;
	}

}