@charset "utf-8";
/* CSS Document */
/* Author : SOAL Technology */

:root{
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #000000;
    --theme-brown-color: #a11b22;
    --theme-yellow-color: #d9842f;
    --theme-grey-color: #878787;
    --theme-grey-dark-color: #222222;
    --theme-grey-light-color: #cccccc;
    --theme-light-color: #f1f1f1;
    --theme-font-forum: "Forum", serif;
    --theme-font-dmsans: "DM Sans", sans-serif;
    --transition: all ease-in-out 0.3s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================================== Reset specific tags further */
html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, li,
figure, blockquote,
span, a {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

a{
    text-decoration: none;
    line-height: inherit;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--theme-font-dmsans);
}

/* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-dmsans);
    background: var(--theme-primary-color);
}


/* ================================================== Go To Top Section */
#back-top { 
    display: block; 
    position: fixed; 
    bottom: 10px; 
    right: 15px; 
    text-align: center; 
    z-index: 9; 
}

#back-top a { 
    display: block; 
    text-decoration: none;  
}

#back-top a .fa{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; 
    height: 50px; 
    font-size: 14px; 
    border-radius: 5px; 
    opacity: 1; 
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    transition: var(--transition);
}

#back-top a .fa:hover {
    background: var(--theme-yellow-color);
}

.wrapper{
    position: relative;
    overflow: hidden;
}

/* ================================================== Header Section */
.site-header-top{
    padding: 15px 0;
    background: var(--theme-secondary-color);
}

.site-header-top .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-top-contact{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.site-header-top-contact li{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.site-header-top-contact li span{
    font-size: 14px;
    font-weight: 400;
    font-family: var(--theme-font-dmsans);
    color: var(--theme-primary-color);
}

.site-header-top-contact li span a{
    color: var(--theme-primary-color);
}

.site-header-top-contact li span .fa-solid{
    color: var(--theme-yellow-color);
}

.site-header-top-contact li:last-child{
    margin-left: auto;
}

/* ========== Site Header Logo ========== */
.site-header-bottom{
    padding: 15px 0;
    background: var(--theme-primary-color);
}

.site-header-bottom .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header-logo{
    margin-right: auto;
}

.site-header-logo img{
    width: 180px;
    height: auto;
}

.site-header-reservation{
    margin-left: auto;
}

.site-header-reservation a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--theme-brown-color);
    border-radius: 5px;
    padding: 15px 20px;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.site-header-reservation a span{
    font-size: 18px;
    font-family: var(--theme-font-forum);
}

.site-header-reservation a .fa-solid{
    font-size: 12px;
}

.site-header-reservation a:hover{
    background: var(--theme-yellow-color);
}

/* ========== Site Header Nav ========== */
.site-header-navigation{
    margin: 0 auto;
}

#mega-menu-wrap-header-menu{
    background: transparent;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
    padding: 10px 15px;
    height: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-dmsans);
    background: transparent;
    transition: var(--transition);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item a.mega-menu-link:before{
    font-family: "fontawesome";
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
    color: var(--theme-brown-color);
    background: transparent;
    font-weight: 400;
}

 /* ================================================== Banner Section */
.banner{
    position: relative;
}

.banner-item-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
    padding-bottom: 100px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-item-container .container{
    position: relative;
    z-index: 9;
}

.banner-item-content-title{
    font-size: 80px;
    font-weight: 600;
    font-family: var(--theme-font-forum);
    color: var(--theme-primary-color);
    text-align: center;
}

.banner-item-content-description{
    margin: 30px 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: var(--theme-primary-color);
}

.banner-item-content-link{
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-item-content-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 5px;
    border: var(--theme-yellow-color) solid 1px;
    color: var(--theme-yellow-color);
    transition: var(--transition);
}

.banner-item-content-link a:hover{
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
}

.banner-item-content-link .fa-solid{
    font-size: 14px;
}

.banner-item-content-link span{
    font-size: 22px;
    font-weight: 400;
    font-family: var(--theme-font-forum);
}

#bannerSlider img{
    width: 100%;
    height: auto;
}

#bannerSlider .owl-dots{
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

#bannerSlider .owl-dots .owl-dot span{
    margin: 0 2px;
    width: 15px;
    height: 15px;
    background: var(--theme-primary-color);
    transition: var(--transition);
}

#bannerSlider .owl-dots .owl-dot.active span{
    width: 40px;
    background: var(--theme-brown-color);
}

#bannerSlider .owl-nav button span{
    display: inline-block;
    padding-bottom: 3px;
}

#bannerSlider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    border-radius: 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: var(--theme-primary-color) solid 1px;
    font-size: 24px;
    opacity: 0.3;
    transition: var(--transition);
}

#bannerSlider .owl-nav button.owl-prev {
    left: 50px;
}

#bannerSlider .owl-nav button.owl-next {
    right: 50px;
}

#bannerSlider .owl-nav button.owl-prev:hover,
#bannerSlider .owl-nav button.owl-next:hover{
    opacity: 1;
}

.banner-item-background {
  position: relative;
  overflow: hidden;
}

.banner-item-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease-in-out;
}

.owl-item.active .banner-item-background img {
  transform: scale(1.3);
}

/* ================================================== Reservation Section */
/*.reservation{
    padding: 50px 0;
}*/

.reservation-from{
    position: relative;
    transform: translateY(-50%);
    padding: 30px;
    padding-bottom: 15px;
    border-radius: 10px;
    background: var(--theme-brown-color);
    z-index: 9;
}

.reservation-from br{
    display: none;
}

.reservation-from p{
    margin: 0;
}

.reservation-from label{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--theme-primary-color);
}

.reservation-from .form-control{
    height: 45px;
    border-radius: 3px;
    background: var(--theme-primary-color);
    margin-bottom: 15px;
}

.reservation-from .btn{
    display: block;
    margin-top: 25px;
    width: 100%;
    height: 45px;
    font-size: 16px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

.wpcf7-form-control-wrap{
    position: relative;
}

.wpcf7-not-valid-tip{
    position: absolute;
    bottom: 0;
    left: 10px;
    transform: translateY(50%);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 30px;
    border-top-left-radius: 0;
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    border: var(--theme-primary-color) solid 1px;
}

.wpcf7 form .wpcf7-response-output{
    margin: 0;
    padding: 10px 15px;
    border: var(--theme-yellow-color) solid 1px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
}

/* ================================================== Welcome Section */
.welcome-row{
    display: flex;
    gap: 30px;
    justify-content: space-between;
    background: var(--theme-primary-color);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    z-index: 9;
}

.welcome-column{
    position: relative;
    width: 50%;
}

.welcome-content{
    padding: 50px;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.welcome-content h4{
    font-size: 24px;
    font-weight: 700;
    font-family: var(--theme-font-forum);
    color: var(--theme-brown-color);
}

.welcome-content h1{
    font-size: 60px;
    font-weight: 700;
    font-family: var(--theme-font-forum);
    color: var(--theme-secondary-color);
}

.welcome-underline{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
}

.welcome-underline span{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: var(--theme-brown-color);
}

.welcome-content p{
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-dmsans);
}

.welcome-link{
    display: flex;
    margin-top: 30px;
}

.welcome-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    transition: var(--transition);
}

.welcome-link a .fa-solid{
    font-size: 14px;
}

.welcome-link a span{
    font-size: 18px;
}

.welcome-link a:hover{
    background: var(--theme-yellow-color);
}

.welcome-grid{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.welcome-grid-item{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-grid-item:first-child{
    background: var(--theme-brown-color);
}

.welcome-grid-item:nth-child(2){
    background: var(--theme-primary-color);
}

.welcome-grid-item:nth-child(3){
    background: var(--theme-primary-color);
}

.welcome-grid-item:last-child{
    background: var(--theme-secondary-color);
}

.welcome-opening-hour h4{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-forum);
}

.welcome-opening-hour ul li{
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
    list-style: none;
    font-size: 16px;
    color: var(--theme-primary-color);
}

.welcome-opening-hour ul li::before{
    content: '\f00c';
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    font-family: 'fontawesome';
    font-size: 14px;
    color: var(--theme-primary-color);
}

.welcome-experience{
    text-align: center;
}

.welcome-experience .fa-solid{
    font-size: 60px;
    color: var(--theme-yellow-color);
}

.welcome-experience h4{
    font-size: 90px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-forum);
}

.welcome-experience span{
    font-size: 18px;
    font-family: var(--theme-font-forum);
    color: var(--theme-primary-color);
    text-transform: uppercase;
}

/* ================================================== Common Section */
.section-title{
    margin-bottom: 50px;
    text-align: center;
}

.section-title h4{
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    color: var(--theme-brown-color);
    font-family: var(--theme-font-dmsans);
}

.section-title h4::before{
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 5px);
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--theme-brown-color);
}

.section-title h4::after{
    content: '';
    position: absolute;
    top: 50%;
    right: calc(100% + 5px);
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--theme-brown-color);
}

.section-title h2{
    margin: 5px 0;
    font-size: 48px;
    font-weight: 700;
    font-family: var(--theme-font-forum);
    color: var(--theme-secondary-color);
}

.section-title p{
    width: 600px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 24px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-dmsans);
}

/* ================================================== Food Menus Section */
.food-menus{
    padding: 150px 0 100px;
    background: var(--theme-primary-color);
}

.food-menus nav .nav-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    gap: 15px;
    margin-bottom: 30px;
}

.food-menus nav .nav-tabs .nav-link{
    display: inline-block;
    padding: 15px 30px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--theme-secondary-color);
    border: var(--theme-brown-color) solid 1px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.food-menus nav .nav-tabs .nav-link:hover{
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    border-color: var(--theme-yellow-color);
}

.food-menus nav .nav-tabs .nav-link.active{
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    border-color: var(--theme-brown-color);
}

.food-slider-card-thumbnail{
    position: relative;
    overflow: hidden;
}

.food-slider-card-thumbnail img{
    width: 100%;
    height: auto;
}

.food-slider-card-title h4 a{
    display: block;
    margin: 15px 0 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--theme-font-forum);
    color: var(--theme-brown-color);
}

.food-slider-card-price{
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-yellow-color);
    font-family: var(--theme-font-dmsans);
}

/* ================================================== Dishes Section */
.dishes{
    padding: 100px 0;
    background: var(--theme-light-color);
}

.dishes-card{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
    background: var(--theme-primary-color);
    border: var(--theme-grey-light-color) dashed 1px;
    transition: var(--transition);
}


.dishes-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 30px -15px rgba(0, 0, 0, 0.3);
}

.dishes-card-thumbnail{
    width: 100px;
}

.dishes-card-thumbnail img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.dishes-card-content h4 a{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-forum);
    transition: var(--transition);
}

.dishes-card-content h4 a:hover{
    color: var(--theme-brown-color);
}

.dishes-card-content p{
    font-size: 18px;
    line-height: 24px;
    color: var(--theme-grey-color);
    font-family: var(--theme-font-dmsans);
}

.dishes-card-price span{
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 30px;
    color: var(--theme-primary-color);
    background: var(--theme-secondary-color);
    transition: var(--transition);
}

.dishes-card-price span:hover{
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
}

.dishes-section-link{
    display: flex;
    justify-content: center;
}

.dishes-section-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    color: var(--theme-primary-color);
    background: var(--theme-brown-color);
    transition: var(--transition);
}

.dishes-section-link a .fa-solid{
    font-size: 14px;
}

.dishes-section-link a span{
    font-size: 18px;
}

.dishes-section-link a:hover{
    background: var(--theme-yellow-color);
}

/* ================================================== Gallery Section */
.gallery{
    padding: 100px 0;
    background: var(--theme-primary-color);
}

/* ================================================== Footer Section */
.site-footer{
    background: var(--theme-secondary-color);
}

.footer-content{
    padding: 100px 0 50px;
}

.footer-content-block p{
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-primary-color);
}

.footer-content-phone{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-content-phone .fa-solid{
    font-size: 80px;
    font-weight: 700;
    color: var(--theme-yellow-color);
}

.footer-content-phone-infos span{
    display: block;
}

.footer-content-phone-infos span:first-child{
    font-size: 18px;
    font-weight: 400;
    color: var(--theme-primary-color);
}

.footer-content-phone-infos span:last-child{
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-yellow-color);
}

.footer-content-block h4{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-dmsans);
}

.footer-content-block-links ul li{
    list-style: none;
    line-height: 36px;
}

.footer-content-block-links ul li a{
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #d9d9d9;
    transition: var(--transition);
    font-family: var(--theme-font-dmsans);
}

.footer-content-block-links ul li a::before{
    content: '\f105';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    font-size: 12px;
    font-family: 'fontawesome';
}

.footer-content-block-links ul li a:hover{
    color: var(--theme-yellow-color);
}

.footer-social-link{
    margin-top: 30px;
}

.footer-social-link ul{
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.footer-social-link ul li a{
    padding-left: 0;
}

.footer-social-link ul li a::before{
    display: none;
}

.footer-social-link ul li .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 50%;
    background: var(--theme-yellow-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
    border: rgba(255, 255, 255, 0.3) solid 1px;
}

.footer-social-link ul li .fa-brands:hover{
    background: var(--theme-yellow-color);
    border-color: var(--theme-yellow-color);
}

.footer-contact-block ul{
    margin-top: 30px;
}

.footer-contact-block ul li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-contact-block ul li span a{
    color: var(--theme-primary-color);
}

.footer-contact-block ul li span .fa-solid{
    color: var(--theme-primary-color);
}

.footer-contact-block ul li span{
    font-size: 16px;
    line-height: 24px;
    color: #d9d9d9;
    font-family: var(--theme-font-dmsans);
}

.footer-newsletter-form .tnp-subscription form{
    position: relative;
    display: flex;
    align-items: center;
}

.footer-newsletter-form .tnp-subscription form .tnp-field-email{
    width: calc(100% - 130px);
    height: 50px;
    border-radius: 0;
    background: var(--theme-primary-color);
    margin-bottom: 0;
}

.footer-newsletter-form .tnp-subscription form .tnp-field-email input[type=email]{
    height: 100%;
    width: 100%;
    border: none;
    padding-left: 15px;
}

.footer-newsletter-form .tnp-subscription form .tnp-field-button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 130px;
    height: 50px;
    border-radius: 0;
    font-size: 12px;
    color: var(--theme-primary-color);
    background: var(--theme-yellow-color);
    margin-bottom: 0;
}

.footer-newsletter-form .tnp-subscription form .tnp-field-button input[type="submit"]{
    padding: 0;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    background: transparent;
}

/* Copyright */
.copyright{
    padding: 20px 0;
    border-top: rgba(255, 255, 255, 0.15) solid 1px;
}

.copyright p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #d9d9d9;
    font-family: var(--theme-font-dmsans);
}

.copyright p a{
    color: var(--theme-yellow-color);
    transition: var(--transition);
}

.copyright p a:hover{
    color: var(--theme-yellow-color);
}

/* ======================================================================================== */
/* ======================================================================================== */
/* ================================================== Breadcrumb Section */
.page-banner{
    position: relative;
    padding: 100px 0;
    background: url('../images/page-banner-bg.jpg') no-repeat center center;
    background-size: cover;
}

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

.page-breadcrumb{
    position: relative;
    text-align: center;
    z-index: 9;
}

.page-breadcrumb h4{
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-forum);
}

.page-breadcrumb a{
    font-size: 14px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-dmsans);
}

.page-breadcrumb span{
    font-size: 14px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-dmsans);
}

/* ================================================== Page Content Section */
.page-content{
    padding: 80px 0;
    background: var(--theme-primary-color);
}

.page-content .main-content .page-header .page-title{
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--theme-font-forum);
    color: var(--theme-secondary-color);
    text-transform: uppercase;
}

.page-content .main-content .page-header .page-title::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-yellow-color);
}
.page-content .main-content .page-description h2{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-title-color);
    font-family: var(--theme-font-forum);
}

.page-content .main-content .page-description h3{
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-title-color);
    font-family: var(--theme-font-forum);
}

.page-content .main-content .page-description h4{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-title-color);
    font-family: var(--theme-font-forum);
}

.page-content .main-content .page-description h5{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-title-color);
    font-family: var(--theme-font-forum);
}

.page-content .main-content .page-description h6{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-title-color);
    font-family: var(--theme-font-forum);
}

.page-description p{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-dmsans);
}

.page-description ul,
.page-description ol{
    margin-bottom: 30px;
}

.page-description li{
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-dmsans);
}

.page-description p a{
    color: var(--theme-yellow-color);
}

/* ================================================== Responsive */
/* Large */
@media (max-width: 1199px){
    

}

/* Medium */
@media (max-width: 991px){


}

/* Small */
@media (max-width: 767px){
    #mega-menu-wrap-header-menu .mega-menu-toggle{
        background: var(--theme-yellow-color);
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-blocks-right{
        background: var(--theme-yellow-color);
        border-radius: 3px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box{
        width: 30px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
    #mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after{
        width: 30px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open + #mega-menu-header-menu{
        background: var(--theme-yellow-color);
        padding: 30px 15px;
    }

    #mega-menu-wrap-header-menu .mega-menu-toggle.mega-menu-open ~ button.mega-close{
        background: var(--theme-yellow-color);
        left: calc(min(100vw - 40px, 260px));
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
        padding: 5px 15px;
        color: var(--theme-primary-color);
        border: var(--theme-yellow-color) solid 1px;
        border-radius: 5px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link,{
        color: var(--theme-primary-color);
        border: var(--theme-primary-color) solid 1px;
    }

    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:focus,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:active,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
    #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
        color: var(--theme-primary-color);
    }

    /* Header Section */
    .site-header{
        position: inherit;
        top: inherit;
        left: inherit;
        background: var(--theme-secondary-color);
    }

    .site-header-top-contact{
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-header-bottom .container{
        justify-content: space-between;
    }

    .site-header-navigation{
        margin: 0;
    }

    .site-header-reservation{
        display: none;
    }

    /* Banne Section */
    .banner-item-container .container{
        padding: 15px 0;
        min-height: auto;
    }

    .banner-item-content-title{
        font-size: 24px;
    }

    .banner-item-content-description{
        margin: 5px 0;
        font-size: 14px;
        line-height: 24px;
    }

    .banner-item-content-link a{
        padding: 10px 15px;
    }

    .banner-item-content-link span{
        font-size: 18px;
    }

    #bannerSlider .owl-dots{
        bottom: 15px;
    }

    /* Title Section */
    .section-title{
        margin-bottom: 30px;
    }

    .section-title h2{
        font-size: 36px;
    }

    .section-title span{
        font-size: 16px;
    }

    /* Welcome Section */
    .welcome{
        padding: 70px 0;
    }

    .welcome-thumbnail{
        margin-bottom: 30px;
    }

    .welcome-content h1{
        font-size: 42px;
    }

    .welcome-content p{
        margin: 15px 0;
        font-size: 16px;
    }

    .welcome-content ul li span{
        font-size: 20px;
    }

    /* Contact Address */
    .contact-address-wrapper{
        padding: 30px;
        padding-bottom: 15px;
    }

    .contact-address-card{
        margin-bottom: 15px;
    }

    /* Service Section */
    .services{
        padding: 70px 0;
    }

    .services-card{
        margin-bottom: 15px;
    }

    /* Working Hour Section */
    .working-hours{
        padding-top: 15px;
        padding-bottom: 50px;
    }

    .working-hours-thumbnail{
        position: initial;
        width: 100%;
        min-height: 100vh;
    }

    .working-hours-content{
        padding-left: 0;
        margin-top: 50px;
    }

    /* Barber Section */
    .barber{
        padding: 70px 0;
    }

    /* Testimonials Section */
    .testimonial-card{
        max-width: calc(100% - 100px);
        min-width: calc(100% - 100px);
    }

    #testimonialsSlider .owl-nav button.owl-prev,
    #testimonialsSlider .owl-nav button.owl-next{
        width: 50px;
        height: 50px;
    }

    /* Gallery Section */
    .gallery{
        padding: 70px 0 50px;
    }

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

    /* Booking Link */
    .book-now-link{
        margin-top: 15px;
        justify-content: flex-start;
    }

    /* Footer Section */
    .footer-content-block h4{
        margin-top: 30px;
        margin-bottom: 15px;
    }
}

/* Extra Small*/
@media (max-width: 574px){

    
}

/* Extra Small*/
@media (max-width: 460px){
    
}