* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--secondary) !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--primary), var(--third));
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.meal_card {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 25px 0 rgba(204, 204, 204, 0.5);
          box-shadow: 0 10px 25px 0 rgba(204, 204, 204, 0.5);
}

.meal_card .img-box {
  height: 270px;
  position: relative;
  overflow: hidden;
}

.meal_card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.meal_card .card-body .name {
  color: var(--primary);
  margin-bottom: 1rem;
}

.meal_card .card-body .price {
  color: var(--secondary);
  margin-bottom: 0;
}

.meal_card:hover .name {
  color: var(--secondary);
}

.meal_card:hover .price {
  color: var(--primary);
}

.meal_card:hover .img-box img {
  -webkit-transform: rotate(5deg) scale(1.1);
          transform: rotate(5deg) scale(1.1);
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  position: relative;
  z-index: 9;
}

.navbar .nav-link {
  color: #eee;
  font-weight: bold;
  margin: 0 10px;
}

.navbar .nav-link.active {
  color: #fff;
}

.navbar .navbar-brand img {
  width: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding: 70px 0 0 0;
  background: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

footer .content {
  margin-bottom: 35px;
}

footer .content .logo {
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}

footer .content .p {
  color: #ccc;
  font-size: 12px;
  line-height: 1.7rem;
}

footer .content .title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}

footer .content .links a {
  display: block;
  color: #ccc;
  font-size: 12px;
  margin: 10px 0;
}

footer .content .links a:hover {
  color: var(--secondary);
}

footer .copuright {
  padding: 20px 0;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #101010;
}

/**********************************************
    Start Public Classes
**********************************************/
.loraFont {
  font-family: 'Lora', serif;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
  overflow: hidden;
}

header .header-content {
  position: relative;
  z-index: 1;
  padding: 200px 0 300px 0;
}

header .header-content .text-box {
  padding: 0 2vw;
}

header .header-content .text-box .title {
  color: #fff;
  line-height: 3.5rem;
}

header .header-content .text-box .owner {
  color: #fff;
}

header .header-content .text-box .owner b {
  color: var(--secondary);
}

header .header-content .text-box .p {
  line-height: 1.7rem;
  color: #ddd;
}

header .header-content .text-box .btns-wrapper .butn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  margin: 5px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

header .header-content .text-box .btns-wrapper .butn.active {
  background-color: var(--third);
  border: 1px solid var(--third);
}

header .header-content .text-box .btns-wrapper .butn:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

header .img1 {
  position: absolute;
  top: 0;
  right: -400px;
  z-index: 1;
  width: 77%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}

header::after {
  content: '';
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  display: block;
}

.fav-sec {
  position: relative;
}

.fav-sec .inner-sec {
  padding: 200px 0 70px 0;
  position: relative;
  z-index: 2;
}

.fav-sec .inner-sec .sec-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  left: 60%;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

.fav-sec .inner-sec .sec-heading .titile {
  color: var(--primary);
  font-weight: bold;
}

.fav-sec .inner-sec .sec-heading .more-btn {
  color: var(--third);
  display: block;
  text-align: end;
}

.fav-sec .inner-sec .sec-heading .more-btn:hover {
  color: var(--secondary);
}

.fav-sec .img2 {
  position: absolute;
  top: -160px;
  left: 0;
  z-index: 1;
  width: 20%;
}

.fav-sec::after {
  content: '';
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  display: block;
}

.booking-sec {
  padding: 70px 0;
  position: relative;
  margin-top: 100px;
  height: 800px;
}

.booking-sec .booking-form {
  width: 60%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  padding: 4vw;
}

.booking-sec .booking-form .title {
  color: #fff;
  font-weight: bold;
}

.booking-sec .booking-form label {
  color: #eee;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 13px;
}

.booking-sec .booking-form .form-control {
  height: 55px;
  border: 1px solid #1f2721;
  background-color: #1f2721;
  color: #fff;
}

.booking-sec .booking-form .submit-btn {
  width: 150px;
  height: 50px;
  background-color: var(--third);
  border: 1px solid var(--third);
  color: #fff;
  margin-left: auto;
  display: block;
}

.booking-sec .booking-form .submit-btn:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

.booking-sec .booking-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 70%;
  height: 100%;
}

.about-sec {
  position: relative;
  padding: 70px 0;
}

.about-sec .main-img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .text-box {
  padding: 0 10vw;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-sec .text-box .title {
  font-size: calc(35px + 1.5vw);
  line-height: 5rem;
  font-weight: bold;
}

.about-sec .text-box .p {
  line-height: 2rem;
  padding-left: 25px;
  border-left: 1px solid #ddd;
  color: #666;
}

.about-sec .text-box .more-btn {
  width: 150px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  background-color: var(--third);
  color: #fff;
  margin: 0 25px;
}

.about-sec .text-box .more-btn:hover {
  background-color: var(--secondary);
}
/*# sourceMappingURL=style.css.map */