* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', 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(--primary);
  border-radius: 8px;
}

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

/**********************************************
   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(--primary) !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--secondary), var(--primary));
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  border-radius: 0 15px 0 0;
  -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: 22px;
  -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;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar .logo {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  margin: 0 10px;
}

.navbar .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar .icon {
  width: 20px;
  -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;
  position: relative;
  background-color: #F9F9F9;
}

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

.footer .content .det {
  font-size: 12px;
}

.footer .content .title {
  font-weight: bold;
}

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

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

.footer .footer_b {
  margin-top: 25px;
  padding: 25px 0;
  border-top: 1px solid #ddd;
}

.footer .footer_b .social-links a {
  color: #888;
  margin: 0 4px;
}

.footer .footer_b .social-links a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: var(--primary);
}

.footer .footer_b .copyright_p {
  text-align: end;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

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

.butn {
  background-color: #fff;
  border-radius: 8px;
  padding: .7rem 2rem;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.butn i {
  margin: 0 5px;
}

.butn:hover {
  background-color: var(--primary);
  color: #fff;
}

.butn.orange-butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.orange-butn:hover {
  background-color: var(--secondary);
}

.sec-title {
  font-weight: bold;
  text-align: center;
  color: #1b0a05;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  padding: 30px 0;
}

header .item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
}

header .item .sec-img {
  height: 480px;
  border-radius: 15px;
}

header .item .text-box {
  padding: 0 5vw;
}

header .item .text-box .subtitle {
  color: #666;
}

header .item .text-box .subtitle i {
  color: var(--primary);
}

header .item .text-box .title {
  font-weight: bold;
}

header .item .text-box .det {
  font-size: 13px;
  line-height: 1.7rem;
}

header .swiper-slide-active .item {
  opacity: 1;
}

header .swiper-slide-active .sec-img {
  -webkit-animation: fadeInRight 1s both;
          animation: fadeInRight 1s both;
}

header .swiper-slide-active .text-box {
  -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;
}

.meals-sec,
.categ-sec,
.newsletter-sec,
.handpicked-sec {
  position: relative;
  padding: 70px 0;
}

.meal_card {
  position: relative;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-bottom: 30px;
}

.meal_card .img-box {
  overflow: hidden;
  height: 240px;
  border-radius: 10px 10px 0 0;
}

.meal_card .img-box .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.meal_card .card-body {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.meal_card .card-body .rate i {
  color: #ccc;
}

.meal_card .card-body .rate i.active {
  color: var(--primary);
}

.meal_card .card-body .title {
  font-weight: 500;
  color: #666;
  font-size: 1.1rem;
}

.meal_card .btn-area {
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: 0 10px 25px 0 #eee;
          box-shadow: 0 10px 25px 0 #eee;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transform: translate(0px, -10px);
          transform: translate(0px, -10px);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.meal_card .btn-area .butn {
  border-radius: 8px 8px 0 0;
  padding: 0.7rem 3rem;
  background-color: #FFD7C9;
  color: #1b0a05;
}

.meal_card .btn-area .butn:hover {
  background-color: #c4461c;
  color: #fff;
}

.meal_card:hover {
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
}

.meal_card:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.meal_card:hover .btn-area {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.categ_card {
  text-align: center;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ_card .categ-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.categ_card .title {
  margin-bottom: 0;
  margin-top: 15px;
  font-weight: bold;
}

.categ_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.categ_card:hover .title {
  color: var(--primary);
}

.newsletter-sec {
  background-color: #FFD7C9;
}

.newsletter-sec .text-box {
  text-align: center;
}

.newsletter-sec .text-box .title {
  font-weight: bold;
}

.newsletter-sec .text-box .form-group {
  position: relative;
}

.newsletter-sec .text-box .form-group .form-control {
  border: 1px solid #fff;
  height: 55px;
}

.newsletter-sec .text-box .form-group .submit-butn {
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  height: 50px;
  width: 100px;
  border-radius: .25rem;
  border: none;
  background-color: var(--primary);
  color: #fff;
}

.newsletter-sec .text-box .det {
  font-size: 14px;
}

.newsletter-sec .text-box .det a {
  color: var(--primary);
}

.newsletter-sec .text-box .det a:hover {
  color: #c4461c;
}

.collection_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.collection_card .img-box {
  border-radius: 10px 10px 0 0;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.collection_card .badge-recipes {
  padding: .5rem 2rem;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: .5rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #888;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.collection_card:hover .title {
  color: var(--primary);
}

.collection_card:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.latest-recipes .meal_card {
  margin-bottom: 60px;
}

.latest-recipes .meal_card .img-box {
  height: 180px;
}
/*# sourceMappingURL=style.css.map */