@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Roboto Condensed", sans-serif;
    background: #fff;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Roboto Condensed", sans-serif;
}
p {
    margin-bottom: 0px;
}
html {
    scroll-behavior: smooth;
}
.owl-theme .owl-dots {
    display: none;
}
.owl-theme .owl-nav {
    display: block !important;
}
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.btn-close:focus {
    box-shadow: none;
}
.btn:hover {
    color: #fff !important;
}
.accordion-button:focus {
    box-shadow: none;
}
a {
    color: #000;
    text-decoration: none;
}
ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}
a:hover {
    color: initial;
}
input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
/*.full-width {
  width: 100% !important;
}*/
.web-view {
    display: block;
}
.mobile-view {
    display: none;
}
.vertical-space-2 {
    height: 10px;
}
.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}
.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}
.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}
.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}
.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}
.common-btn{
    border: 2px solid #187c69 !important;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #187c69;
    border-radius: 0px;
    padding: 12px 25px;
    transition: 0.5s all;
    position: relative;
    margin-left: 8px;
 }
 .common-btn span{
    position: relative;
    z-index: 1;
 }
 .common-btn::after{
    content: "";
    position: absolute;
    top: 0px;
    left: -10px;
    width: 2px;
    height:100%;
    background: #187c69;
    transition: 0.7s all;
}
.common-btn:hover::after{
    width: 100%;
    left: 0px;
}
.common-btn:hover span{
    color: #fff;
}

 .common-btn i{
    margin-left: 5px;
 }
.fixed{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1200;
    transition: 0.5s all;
    padding:  0px;
    background: #fff !important;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}


/* From Uiverse.io by Creatlydev */ 
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  color: #187c69;
  border-radius: 10rem;
  font-weight: 400;
  font-size: 16px;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #fff;
  background-color: #187c69;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #fff;
}

.button:hover .button__icon-wrapper {
  color: #fff;
  background-color: #187c69;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}




.button1 {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #187c69;
  color: #fff;
  border-radius: 10rem;
  font-weight: 400;
  font-size: 16px;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button1__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #187c69;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button1:hover {
  background-color: #187c69;
  color: #fff;
}

.button1:hover .button1__icon-wrapper {
  color: #187c69;
  background-color: #fff;
}

.button1__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button1:hover .button1__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button1:hover .button1__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}



.main-title{
   font-size: 26px;
   font-weight: 700;
   margin-bottom: 25px;
   position: relative;
   display: inline-block;
}
.main-title span{
    position: relative;
    z-index: 1;
    
}
.main-title:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    background: #187c69;
    width: 90%;
    height: 1px;
}
.main-title::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -12px;
    background: #187c69;
    width: 90%;
    height: 1px;
}
.main-text{
    font-size: 15px;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 28px;
    font-family: 'Lato', sans-serif;
}
.top-header {
    background:#187c69;
}
.top-header .top-header-left ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
}
.top-header .top-header-left ul li{
    margin-right: 25px;
    position: relative;
}
.top-header .top-header-left ul li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #ccc;
}
.top-header .top-header-left .top-header-link{
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}
.top-header .top-header-right .desc-link{
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.top-header .top-header-right .desc-link li{
    margin-left: 25px;
    position: relative;
}
.top-header .top-header-right .desc-link li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #b6bbcc;
}
.top-header .top-header-right .top-header-link{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}
.top-header .top-header-left .top-header-link i{
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}
.top-header .social-icon{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}
.top-header .social-icon li{
    margin-left: 15px;
}
.top-header .social-icon li a i{
    color: #fff;
    font-size: 13px;
    margin-right: 3px;
}
.top-header .header-btn{
    background: #00aa8a;
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 0px;
}

.main-header .navbar{
    padding:  0px;
    width: 100%;
    position: relative;
    z-index: 1020;
    background: #fff;
}
.main-header .navbar-brand img{
    width: 200px;
}
.main-header .navbar .nav-link{
    font-size: 16px;
    color: #222;
    padding: 30px 0px;
    position: relative;
    font-weight: 400;
    position: relative;
}
.main-header .navbar .nav-link.active{
    color: #187c69;
}

.main-header .navbar .nav-link:hover , .main-header .navbar .nav-link.active{
    color: #E2A31A;
}
.main-header .navbar .nav-item{
    padding-left:45px;
    position: relative;
}
.main-header .navbar .nav-item.dropdown .dropdown-toggle::after{
    border: none;
     content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
      font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: .9;
}
.main-header .navbar .nav-item  .dropdown-menu{
     border: none;
     border-top: 3px solid #187c69;
    border-radius: 0px;
    background: #fff;
    padding: 0px;
    box-shadow: 0 3px 25px 0 rgba(0,0,0,.07),0 0 0 rgba(0,0,0,.1) inset;
}
.main-header .navbar .dropdown .dropdown-menu .dropdown-item{
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    padding: 15px 20px;
    text-align: left;
    color: #000;
    border-top: 1px solid rgba(0,43,92,.04);
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    background: transparent;
}

.main-header .navbar .dropdown .dropdown-menu .dropdown-item:hover{
    color: #fff;
    background: #187c69;
}
.main-header .navbar .dropdown:hover > ul.dropdown-menu{
    display: block !important;
    animation: swip_left .5s linear 1;
}

.main-header .navbar .dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}
@keyframes swip_left {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0,0);
        opacity: 1
    }
}

.banner-carousel .banner-img{
    position: relative !important;
}

.banner-carousel .banner-img::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #187c69e3;
    opacity: 0;
}
.banner-carousel .banner-img-1{
    background: url(../images/rk-kichen.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 600px;
}
.banner-carousel .banner-img-2{
    background: url(../images/banner-8.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 600px;
}
.banner-carousel .banner-img-3{
    background: url(../images/banner-7.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 600px;
}
.banner-carousel .banner-img-4{
    background: url(../images/banner-5.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 600px;
}
.banner .banner-content{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
@keyframes swip_up {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }
 
    to {
        transform: translate(0,0);
        opacity: 1
    }
 }


.banner .banner-content .banner-subtitle{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    background: #fff;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    line-height: 1.25em;
    border-radius: 30px;
}
.banner .banner-content .banner-title{
    position: relative;
    margin-bottom: 25px;
    font-size: 60px;
    font-weight: 600;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.banner .banner-content .banner-text{
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
}
.banner .banner-content .banner-btn{
    background: transparent;
    border: 2px solid  #fff !important;
    padding: 13px 40px;
    font-size: 16px;
    color: #fff !important;
    outline: none;
    border-radius: 0px;
    position: relative;
    margin-left: 4px;
}
.banner .banner-content .banner-btn span{
    position: relative;
    z-index: 1;
}
.banner .banner-content .banner-btn::after{
    content: "";
    position: absolute;
    top: 0px;
    left: -10px;
    width: 2px;
    height:100%;
    background: #fff;
    transition: 0.7s all;
}
.banner .banner-content .banner-btn:hover::after{
    width: 100%;
    left: 0px;
}
.banner .banner-content .banner-btn:hover span{
    color: #000;
}

  .banner .banner-carousel .owl-item.active .button1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
  }
  .banner .banner-carousel .owl-item.active .banner-text {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
  }
  .banner .banner-carousel .owl-item.active .banner-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.4s;
  }
  .banner .banner-carousel .owl-item.active .banner-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.4s;
  }
  .banner .banner-carousel .owl-item.active .banner-small-img{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: zoomIn;
    animation-delay: 0.5s;
  }
  .banner .banner-carousel .owl-nav{
    display: none !important;
  }
  .banner .banner-carousel .owl-dots {
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    transform:rotate(90deg) translateY(-50%);
    margin-top: 20px;
}
.banner .banner-carousel .owl-dots .owl-dot span {
    width: 10px;
    height:10px;
    margin: 5px 7px;
    background:transparent;
    border: 1px solid #fff;
    display: block;
    transition: opacity 0.2s ease;
    border-radius: 50%;
    position: relative;
}
.banner .banner-carousel .owl-dots .owl-dot.active span{
   border-color: #fff;
   background: #fff;
}

.certifi-course{
    padding: 50px 0px;
}
.certifi-course .certifi-title{
    position: relative;
    margin-bottom: 35px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}
.certifi-course .certifi-box{
    border-radius: 0px;
    position: relative;
    z-index: 1;
}

.certifi-course .certifi-box .certifi-card{
    padding: 20px;
    width: 100%;
    height: 100%;
      background: #187c69;
      box-shadow: 0 0 10px 0 rgba(0,43,92,.08);
      border-radius: 10px;
      position: relative;
}
.certifi-course .certifi-box .certifi-card::after{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/chef.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    padding: 20px;
}
.certifi-course .certifi-box .certifi-card .icon{
    text-align: center;
    margin-bottom: 25px;
}
.certifi-course .certifi-box .certifi-card .icon img{
    width: 60px;
    filter: brightness(0) invert(1);
}
.certifi-course .certifi-box .certifi-card .title{
    position: relative;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    text-align: center;
}
.certifi-course .certifi-box .certifi-card .text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  text-align: center;
}
.about-detail{
    overflow: hidden;
    padding: 50px 0px;
    position: relative;
}
.about-detail .side-img{
    position: absolute;
    width: 250px;
    bottom: 5%;
    right: -120px;
 }
.about-detail .about-left{
    width: 100%;
    position: relative;
}
.about-detail .about-left img{
    width: 100%;
}
.img-container{
    padding-right: 50px;
}
.about-detail .md-img{
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    background: #fff;
    padding: 10px;
}
.about-detail .md-img::after{
    content: "";
    position: absolute;
     left: 15px;
    top: 40px;
    width: 95%;
    height: 98%;
    background: #187c69;
    border-radius: 20px;
    transform: rotate(8deg);
    z-index: -1;
}
.about-detail .md-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    position: relative;
}
.about-detail .about-content .about-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-detail .about-content .about-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.about-detail .about-content .about-title span{
    color: #187c69;
}
.about-detail .about-content .about-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* .about-detail .about-content .about-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 35px;
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.about-detail .about-content .about-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
}
.about-detail .about-list li{
    font-size: 16px;
    line-height: 28px;
    color: #666d81;
    font-weight: 400;
    margin-bottom: 20px;
    width: 49%;
    float:left;
}
.about-detail .about-list li I{
    color: #187c69;
    margin-right: 10px;
}
.about-detail .experince .icon{
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #187c69;
    text-align: center
}
.about-detail .experince .icon img{
    width: 32px;
}
.about-detail .experince .title{
    position: relative;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}
.about-detail .experince .text{
    font-size: 16px;
    line-height: 28px;
    color: #666d81;
    font-weight: 400;
}



.our-service{
    padding: 60px 0px;
}
.our-service .service-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}
.our-service .service-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.our-service .service-title::after{
   content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* .our-service .service-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 53%;
    transform: translateX(-50%);
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.our-service .service-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
.our-service .service-card .card-img{
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.our-service .service-card .card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s all;
    border-radius: 10px;
}
.our-service .service-card:hover img{
    transform: scale(1.08);
}
.our-service .service-card:hover .card-overlay{
   opacity: 1;
    height: 100%;
}
.our-service .service-card .card-overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #187c69e7;
    border-radius: 10px;
    opacity: 0;
    transition: 0.6s all;
    display: flex;
    align-items: end;
    padding: 20px;
}
.our-service .service-card .card-title{
    position: relative;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.our-service .service-card .card-text{
    font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0px;
  display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.our-service .service-card .card-body{
    background: #fff;
    padding: 20px;
}
.our-service .service-card .card-link{
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #e49505;
    text-transform: capitalize;
    position: relative;
}
.our-service .service-card .card-link::after{
    content: "\f061";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     font-size: 14px;
    right: -25px;
}
.our-service .service-all{
    width: 100%;
    height: 300px;
    position: relative;
}
.our-service .service-all img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.our-service .service-link{
    background: #187c69de;
    width: 90%;
    height: 90%;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    display: flex;
    justify-content: center;
    align-items: center;

}
.why-choose{
    padding: 50px 0px;
    overflow-x: hidden;
}
.why-choose .why-choose-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.why-choose .why-choose-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.why-choose .why-choose-title span{
    color: #187c69;
}
.why-choose .why-choose-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* .why-choose .why-choose-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 35px;
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.why-choose .img-box{
    width: 100%;
    height: 550px;
    position: relative;
    padding-right: 50px;
}
.why-choose .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.why-choose .img-box::after{
    content: "";
    position: absolute;
     left: 15px;
    top: 40px;
    width: 90%;
    height: 98%;
    background: #187c69;
    border-radius: 20px;
    transform: rotate(8deg);
}

.why-choose .why-choose-list .icon{
    width: 60px;
    height: 60px;
    background: #187c69;
    border-radius: 50%;
    line-height: 40px;
    overflow: hidden;
    padding:0px 15px;
}
.why-choose .why-choose-list .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose .why-choose-list .card-title{
    font-size: 20px;
    margin-bottom: 10px;
}
.why-choose .why-choose-list .card-text{
    font-size: 16px;
    color: #666d81;
    margin-bottom: 0px;
}


.product-section{
    padding: 60px 0px;
    background: #f9f9f9;
}
.product-section .product-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}
.product-section .product-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.product-section .product-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* .product-section .product-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 53%;
    transform: translateX(-50%);
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.product-section .product-main-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
.product-section .product-img{
     width: 100%;
     height: 400px;
}
.product-section .product-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-section .padd{
    padding: 0px 30px;
}
.product-section .product-name{
    font-weight: 600;
    color: #000;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 15px;
}
.product-section .product-text{
    font-weight: 400;
    color: #666;
    font-size: 16px;
}


.work-detail{
    padding: 60px 0px;
    position: relative;
    overflow-x: hidden;
}
.work-detail .side-img{
    position: absolute;
    width: 250px;
    top: 5%;
    right: 0px;
 }
.work-detail .work-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.work-detail .work-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.work-detail .work-title span{
    color: #187c69;
}
.work-detail .work-title::after{
     content: "";
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* .work-detail .work-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 35px;
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */

.work-detail .work-text{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}

.work-detail .img-box {
    width: 100%;
    border-radius: 10px;
}
.work-detail .img-box img{
    width: 100%;
    height: 100%;
    object-fit:cover ;
    border-radius: 10px;
}
.work-detail .img-box-1{
    height: 550px;
}
.work-detail .img-box-2{
    height: 275px;
}
.work-detail .img-box-3{
    height: 275px;
}
.work-detail .image--container {
    margin-top: 20px;
    display: grid;
    grid-auto-rows: 200px;
    grid-gap: 5px;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-auto-flow: dense;
}
.work-detail .box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 1.2s all;
    position: relative;
}
.work-detail .box a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: url(../images/search.png);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}
.work-detail .box:hover img {
    transform: scale(1.2);
}
.work-detail .box:hover a::after {
    opacity: 1;
    visibility: visible;
}
.work-detail .box img {
    transition: 1.2s all;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-detail .box.tall {
    grid-row: span 2;
}
.work-detail .box.tall .img-box{
   height: 400px;
   width: 100%;
}
.work-detail .box.wide .img-box{
    height: 200px;
    width: 100%;
 }
 .work-detail .box .img-box{
    height: 200px;
    width: 100%;
 }
.work-detail .box.wide {
    grid-column: span 2;
}


.testimonials{
    padding: 60px 0px;
    overflow: hidden;
    position: relative;
}
.testimonials .side-img{
    position: absolute;
    width: 200px;
    top: 5%;
    left: -80px;
 }
.testimonials .testimonial-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}
.testimonials .testimonial-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.testimonials .testimonial-title::after{
   content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* .testimonials .testimonial-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 53%;
    transform: translateX(-50%);
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.testimonials .testimonial-card{
    border: 1px solid #ddd;
    padding: 25px;;
    width: 100%;
    height: 100%;
    min-height: 250px;
}
.testimonials .testimonial-card .icon img{
    width: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.6;
}
.testimonials .testimonial-card .star-rating {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
}
.testimonials .testimonial-card .star-rating i {
    font-size: 14px;
    color:#ddd;
    margin: 0px 2px 10px 2px;
}
.testimonials .testimonial-card .star-rating i.active{
    color: #FF8A00;
}
.card-review{
    font-size: 16px;
    color: #100C08;
    font-weight: 600;
    margin-top: 20px;
}
.testimonials .testimonial-card .card-text{
    font-size: 16px;
    color: #000;
    line-height: 30px;
}
.testimonials .testimonial-card .card-title{
    color: #187c69;
    font-size: 14px;
    margin-top: 25px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.testimonials .testimonial-card .card-subtitle{
    color:#676767 ;
    font-size: 13px;
    margin-left: 0px;
    font-weight: 400;
}
.testimonials .testimonial-carousel .owl-nav{
    display: none !important;
}
.testimonials .testimonial-carousel .owl-dots {
  display: block;
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
}
.testimonials .testimonial-carousel .owl-dots .owl-dot span {
  width: 10px;
  height:10px;
  margin: 5px 3px;
  background:#e2e1e0;
  display: block;
  transition: opacity 0.2s ease;
  border-radius: 5px;
  position: relative;
}
.testimonials .testimonial-carousel .owl-dots .owl-dot.active span{
 background: #187c69;
 width: 30px;
}
.testimonial-carousel .owl-item.active.center .testimonial-card{
    box-shadow: 0px 2px 10px 0px #79797940 !important;
}
.testimonial-carousel .owl-item.active.center .testimonial-card .star-rating i{
    color: #FEC84B;
}
.star-rating {
    display: flex;
    justify-content: flex-start;
}
.star-rating i {
    font-size: 14px;
    color: #DBDEE6;
    margin: 0px 5px 10px 5px;
}













.footer{
    padding: 60px 0px 15px;
    position: relative;
    background: url(../images/banner-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
    z-index: 0;
}
.footer .container{
    position: relative;
    z-index: 2;
}
.footer::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #187c6a93;
}
.footer .footer-content{
    padding:0px 10px;
    position: relative;
    z-index: 1;
}
.footer .footer-content .footer-logo{
    margin-bottom: 15px;
}
.footer .footer-content .footer-logo img{
    width: 250px;
    filter: brightness(0) invert(1);
}
.footer .footer-title{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    padding-bottom: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.footer .footer-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 0px;
    background: #E2A31A;
}
.footer .footer-text{
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
}
.footer .footer-list{
    padding-left: 0px;
}
.footer .footer-list li{
    padding-bottom: 20px;
    position: relative;
}
.footer .footer-list li::before{
    content: "\f105";
    color: #E2A31A;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.footer .footer-list li a{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}
.footer .footer-list li a:hover{
    color: #E2A31A;
}

.footer .footer-program-list{
    padding-left: 0px;
}
.footer .footer-program-list li{
    padding-bottom: 20px;
    position: relative;
}
.footer .footer-program-list li::before{
    content: "\f073";
    color: #E2A31A;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}
.footer .footer-program-list li a{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.footer .footer-contact-list{
    margin-bottom: 0px;
    padding-top: 0px;
    position: relative;
}
.footer .footer-contact-list li{
    padding-bottom: 15px;
}
.footer .footer-contact-list .footer-contact{
    color: #ffff;
    font-size: 15px;
}
.footer .footer-contact-list .footer-contact i{
    margin-right: 10px;
}

 .footer-bottom{
    padding: 15px 0px 0px;
    border-top: 1px solid #ffffff33;
    position: relative;
    z-index: 1;
}
.footer-bottom .copyright-text{
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
}
.footer-bottom .copyright-text a{
    color: #E2A31A;
}
.social ul li {
    list-style-type: none;
    padding-left: 0px;
}
.social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}
.social i {
    color: #fff;
    text-align: center;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 40px;
    margin:0px 15px 0px 0px;
}
.social a {
    cursor: pointer;
}
.social i:hover{
    color: #fff;
}


.page-banner{
    background: url(../images/page-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 300px;
    position: relative;
}
.page-banner::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #187c69e3;
    opacity: 0;
}
.page-banner .banner-content{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
.page-banner .banner-content .banner-title{
    position: relative;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.navigation-list{
  display: flex;
  margin-bottom: 0px;
}
.navigation-list li{
    margin-right: 20px;
    font-size: 16px;
    color: #E2A31A;
    position: relative;
}
.navigation-list li:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
     width: 4px;
     height: 4px;
     background: #E2A31A;
    transform: translateY(-50%) rotate(-45deg);
}
.navigation-list li a{
    color: #fff;
}


.about-vision{
    padding: 50px 0px;
}
.about-vision .content-box{
    padding: 30px;
    background: #f9f9f9;
    width: 100%;
    height: 100%;
}
.about-vision .content-box .content-box-title{
    font-size: 30px;
    color: #187c69;
    font-weight: 700;
    text-align: center;
}
.about-vision .content-box .content-box-text{
    font-size: 14px;
    color: #666d81;
    font-weight: 400;
    text-align: center;
    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-vision .content-img-box{
   width: 100%;
   height: 255px;
   position: relative;
}
.about-vision .content-img-box::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 15px solid #f9f9f9;
    border-bottom: 10px solid transparent;
}
.about-vision .content-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }


 .our-team{
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
 }
 .our-team .side-img{
    position: absolute;
    width: 250px;
    bottom: 5%;
    right: -120px;
 }
 .our-team .our-team-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.our-team .our-team-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.our-team .our-team-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* .our-team .our-team-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 53%;
    transform: translateX(-50%);
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.our-team .our-team-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
}
.our-team .img-box{
     width: 100%;
     height: 400px;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
 padding: 10px;
 background: #fff;
 border-radius: 10px;
}
.our-team .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



 .service-detail{
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
 }
 .service-detail .side-img{
    position: absolute;
    width: 250px;
    top: 50%;
    transform: translateY(-50%);
    left: -150px;
 }
 .service-detail .service-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.service-detail .service-title{
    position: relative;
    margin-bottom: 45px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.service-detail .service-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.service-detail .service-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
}
.service-detail .image--container{
    display: grid;
    grid-auto-rows: 250px;
    grid-gap: 20px;
    grid-template-columns: repeat(2 , minmax(200px , 1fr));
    grid-auto-flow: dense;
    position: relative;
    z-index: 1;
}
.service-detail .box{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.service-detail .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:10px;
}
.service-detail .box.tall{
    grid-row: span 2;
}
.service-detail .box.wide{
    grid-column: span 2; 
}



.quality-detail{
    padding: 50px 0px;
}
.quality-detail .quality-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.quality-detail .quality-title{
    position: relative;
    margin-bottom: 45px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.quality-detail .quality-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.quality-detail .quality-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
}
.quality-detail .quality-box-1{
    margin-left: -100px;
    z-index: 1;
    position: relative;
}
.quality-detail .quality-box-2{
    margin-right: -100px;
    z-index: 1;
    position: relative;
}
.quality-detail .quality-box{
    padding: 35px;
    background: #f9f9f9;
}
.quality-detail .img-box{
    width: 100%;
    height: 350px;
}
.quality-detail .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.quality-detail .quality-box-title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #187c69;
}
.quality-detail .quality-box-text{
    font-size: 16px;
    font-weight: 400;
    color: #666d81;
    line-height: 26px;
}








.our-gallery{
    padding: 50px 0px;
}
.our-gallery .gallery-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.our-gallery .gallery-title{
    position: relative;
    margin-bottom: 45px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.our-gallery .gallery-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.our-gallery  .image-container{
    padding: 20px 0px;
}
.our-gallery  .img-box{
    width: 100%;
    position: relative;
    height: 210px;
}
.our-gallery  .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.our-gallery .img-box .overlay-box{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0,0,0,0.75);
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.our-gallery .img-box:hover .overlay-box{
    opacity: 1;
    visibility: visible;
}
.our-gallery .img-box .overlay-box  .options-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.our-gallery .img-box .overlay-box  .options-box li {
    position: relative;
    float: left;
    margin-right: 2px;
}
.our-gallery .img-box .overlay-box  .options-box li  a .icon {
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background-color: #187c69;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}




.contact-section{
    padding: 60px 0px;
}
.contact-section .contact-left , .contact-section .contact-right{
    padding: 35px;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-radius: 15px;
}
.contact-section .contact-title{
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #222;
    font-size: 30px;
    font-weight: 700;
}
.contact-section .contact-text{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
    margin-bottom: 20px;
}
.contact-section .contact-detail{
    display: flex;
}
.contact-section .contact-detail:not(:last-child){
     border-bottom: 1px solid #eee; 
    border-radius: 0px;
    margin-bottom: 20px;
     padding-bottom:  20px;
}

.contact-section .contact-detail:last-child{
    border-bottom: none;
}
.contact-section .contact-detail .icon{
    font-size: 22px;
    color: var(--green-color);
    text-align: center;
    position: relative;
    margin-top: 5px;
}
.contact-section .contact-detail .text{
    margin-left: 15px;
}
.contact-section .contact-detail .text .reservation-text{
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 2em;;
    margin-bottom: 5px;
}
.contact-section .contact-detail .text .reservation-title{
    margin: 0;
    line-height: inherit;
}
.contact-section .contact-detail .text .reservation-title a{
    font-size: 15px;
    color: #666;
    margin-right: 10px;
}
.contact-section .get-title{
    font-weight: 600;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #222;
    font-size: 24px;
}
.contact-section form .form-label{
    color:#100C08;
    font-weight: 500;
    font-size: 16px;
}
.contact-section form .form-control{
    max-width: 100%;
    padding:12px 15px ;
    height: auto;
    background-color: #f8f8f8;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #f5f5f5;
    display: block;
    width: 100%;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    background-image: none;
}



.menu-items{
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
 }
 .menu-items .menu-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #E2A31A;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.menu-items .menu-title{
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.menu-items .menu-title::after{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 150px;
    height: 50px;
    background: url(../images/kitchen-knife.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* .menu-items .menu-title::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 53%;
    transform: translateX(-50%);
    width: 25px;
    height: 5px;
    background: #e0e1e3;
} */
.menu-items .menu-text{
  font-size: 16px;
  line-height: 28px;
  color: #666d81;
  font-weight: 400;
  margin-bottom: 20px;
}
.menu-items .menu-card .img-box{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.menu-items .menu-card .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.menu-items .menu-card .card-body{
    padding:0px 20px ;
}
.menu-items .menu-card .card-title{
  font-family: var(--oswald-family);
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}



#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #187c69;
    color: #fff;
    cursor: pointer;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}
#myBtn::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
#myBtn:hover {
    background-color: #187c69;
}




@media (min-width:2000px) {
  
}



@media (min-width: 992px) and (max-width: 1199.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
      
        width: 100%;
        z-index: 1200;
        background: transparent;
        border-bottom: 1px solid #ffffff14;
          padding: 15px 0px;
        background: #ffff;

    }
    .mobile-header .mobile-logo img {
        width: 160px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 150px;
    }
    .toggler {
    color: #187c69 !important;
        font-size: 26px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #187c69;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
     .banner .banner-content .banner-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .banner-carousel .banner-img{
        height: 350px !important;
    }
    .certifi-course .certifi-title , .our-gallery .gallery-title, .why-choose .why-choose-title, .about-detail .about-content .about-title , .work-detail .work-title, .testimonials .testimonial-title, .product-section .product-title , .our-service .service-title{
        font-size: 30px;
    }
    .why-choose .img-box::after{
        transform: rotate(0deg);
        left: 0px;
    }
    .product-section .product-name{
        font-size: 20px;
    }
    .about-detail .about-content .about-title::after{
        width: 100px;
    }
    .page-banner::after , .banner-carousel .banner-img::after{
        opacity: 0;
    }
    .page-banner{
        height: 200px;
    }
    .why-choose .img-box{
        height: 300px;
    }
    .our-service .service-card .card-img{
        height: 250px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
   .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
      
        width: 100%;
        z-index: 1200;
        background: transparent;
        border-bottom: 1px solid #ffffff14;
         padding: 15px 0px;
        background: #ffff;

    }
    .mobile-header .mobile-logo img {
        width: 160px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 150px;
    }
    .toggler {
    color: #187c69 !important;
        font-size: 26px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #187c69;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
     .banner .banner-content .banner-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .banner-carousel .banner-img{
        height: 350px !important;
    }
    .certifi-course .certifi-title , .our-gallery .gallery-title, .quality-detail .quality-title ,.why-choose .why-choose-title, .about-detail .about-content .about-title , .work-detail .work-title, .testimonials .testimonial-title, .product-section .product-title , .our-service .service-title{
        font-size: 30px; 
    }
    .why-choose .img-box::after{
        transform: rotate(0deg);
        left: 0px;
    }
    .product-section .product-name{
        font-size: 20px;
    }
    .about-detail .about-content .about-title::after{
        width: 100px;
    }
    .page-banner::after , .banner-carousel .banner-img::after{
        opacity: 0;
    }
    .page-banner{
        height: 200px;
    }
    .why-choose .img-box{
        height: 300px;
    }
     .our-service .service-card .card-img{
        height: 250px;
    }
    .work-detail .side-img , .testimonials .side-img{
        width: 170px;
    }
    }   

@media only screen and (max-width: 575.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
      
        width: 100%;
        z-index: 1200;
        background: transparent;
        border-bottom: 1px solid #ffffff14;
        padding: 15px 0px;
        background: #ffff;

    }
    .mobile-header .mobile-logo img {
        width: 160px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 150px;
    }
    .toggler {
    color: #187c69 !important;
        font-size: 26px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #187c69;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
     .banner .banner-content .banner-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .banner-carousel .banner-img{
        height: 250px !important;
    }
    .certifi-course .certifi-title , .our-gallery .gallery-title, .quality-detail .quality-title, .service-detail .service-title, .why-choose .why-choose-title, .about-detail .about-content .about-title , .work-detail .work-title, .testimonials .testimonial-title, .product-section .product-title , .our-service .service-title{
        font-size: 30px;
    }
    .why-choose .img-box::after{
        transform: rotate(0deg);
        left: 0px;
    }
    .product-section .product-name{
        font-size: 20px;
    }
    .about-detail .about-content .about-title::after{
        width: 100px;
    }
    .page-banner::after , .banner-carousel .banner-img::after{
        opacity: 0;
    }
    .page-banner{
        height: 200px;
    }
    .why-choose .img-box{
        height: 300px;
    }
    .quality-detail .quality-box-1 , .quality-detail .quality-box-2{
        margin-right: 0px;
        margin-left: 0px;
    }
    .work-detail .side-img , .testimonials .side-img{
        width: 150px;
    }
}
