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

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

*::selection {
  background-color: var(--secondary);
  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(--primary) !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--primary), var(--secondary));
  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);
  }
}

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

.navbar.home-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

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

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

.navbar .contact-butn {
  padding: .6rem 2rem;
  background-color: #fff;
  color: var(--secondary);
  border-radius: 25px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.navbar .contact-butn:hover {
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  color: #fff;
  background-color: var(--secondary);
}

.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: 50px 0 0 0;
  background-color: var(--darkColor);
}

footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .content .links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .content .links a {
  color: #eee;
  margin: 0 5px;
}

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

footer .content .social-links {
  text-align: end;
}

footer .content .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  margin: 0 1px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-block;
}

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

footer .copyright_p {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #888;
  margin-top: 15px;
  color: #eee;
}

/**********************************************
    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;
}

.almarai_font {
  font-family: 'Almarai', sans-serif;
}

.sec-title {
  font-weight: bold;
}

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

header .text-box .title {
  color: #fff;
  font-size: calc(1.5vw + 35px);
}

header .text-box .p {
  color: #f3f3f3;
  line-height: 1.8rem;
}

header .text-box .butn {
  background-color: var(--darkColor);
  padding: .6rem 2.5rem;
  border-radius: 25px;
  display: block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

header .text-box .butn:hover {
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  background-color: var(--primary);
}

header .header-img {
  width: 63%;
  position: absolute;
  z-index: 2;
  top: 46px;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

header .header-bg {
  width: 95%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

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

.about-sec .about-title {
  font-weight: bold;
}

.about-sec .nav-link {
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 1.5rem 1rem;
  position: relative;
  font-weight: bold;
  color: #444;
}

.about-sec .nav-link::before {
  content: '\f060';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 25px;
  color: var(--secondary);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-sec .nav-link.active {
  background-color: transparent;
  color: var(--secondary);
}

.about-sec .nav-link.active::before {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

.about-sec .tab-wrapper {
  padding: 50px 4vw 0 4vw;
}

.about-sec .tab-wrapper .title {
  font-weight: 500;
  line-height: 2rem;
  color: #444;
}

.about-sec .tab-wrapper .p {
  font-size: 14px;
  line-height: 1.7rem;
}

.team-sec {
  position: relative;
  padding: 70px 0;
  background-color: rgba(231, 244, 244, 0.2);
}

.team-sec .team_card {
  overflow: hidden;
  position: relative;
}

.team-sec .team_card .img-box {
  height: 350px;
  position: relative;
  -webkit-box-shadow: 0 20px 25px 0 #f5f5f5;
          box-shadow: 0 20px 25px 0 #f5f5f5;
}

.team-sec .team_card .img-box::before {
  content: '';
  width: 100%;
  height: 80%;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #E7F4F4;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team-sec .team_card .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}

.team-sec .team_card:hover .img-box::before {
  height: 100%;
}

.team-sec .team_card:hover .name {
  color: var(--primary);
}

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

.recipes-sec .pd-r {
  padding: 0 15vw 0 0;
}

.recipes-sec .sec-t .more-butn {
  font-weight: bold;
  color: #666;
}

.recipes-sec .sec-t .more-butn i {
  -webkit-transition: all  .2s linear;
  transition: all  .2s linear;
  -webkit-margin-start: 3px;
          margin-inline-start: 3px;
}

.recipes-sec .sec-t .more-butn:hover {
  color: var(--primary);
}

.recipes-sec .sec-t .more-butn:hover i {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.recipes-sec .text-box .subtitle {
  font-weight: bold;
  font-size: 14px;
  color: var(--secondary);
}

.recipes-sec .text-box .title {
  line-height: 2.3rem;
}

.recipes-sec .text-box .recipes_det {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recipes-sec .text-box .recipes_det .item {
  min-width: 140px;
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 5px;
}

.recipes-sec .text-box .recipes_det .item .label {
  font-size: 12px;
}

.recipes-sec .img-box {
  height: 470px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: url(../images/mask-1.png);
          mask-image: url(../images/mask-1.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.recipes-sec .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recipes-sec .swiper-pagination {
  bottom: 0;
}

.recipes-sec .swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  height: 4px;
  border-radius: 5px;
}

.recipes-sec .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.recipes-sec .sec-bg {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

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

.prices-sec .data_card {
  background-color: #fff;
  padding: 45px 35px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
}

.prices-sec .data_card .card_t {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.prices-sec .data_card .card_t .num {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  background-color: #E7F4F4;
  color: var(--secondary);
  font-size: 22px;
}

.prices-sec .data_card .card_t .label {
  font-weight: bold;
  font-size: 22px;
}

.prices-sec .data_card .content .price .period {
  font-weight: 400;
  font-size: 40%;
}

.prices-sec .data_card .content .ul .li {
  font-size: 12px;
  margin-bottom: 10px;
}

.prices-sec .data_card .content .ul .li i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.prices-sec .data_card .content .butn {
  width: 100%;
  display: block;
  text-align: center;
  height: 45px;
  line-height: 45px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 25px;
}

.prices-sec .data_card .content .butn:hover {
  background-color: var(--primary);
}

.prices-sec .data_card .custmiz_crd .sm-img {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.prices-sec .data_card .custmiz_crd .data-wrapper {
  padding: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.prices-sec .data_card .custmiz_crd .butn {
  text-align: center;
  display: block;
  font-weight: bold;
  color: var(--secondary);
}

.prices-sec .data_card .custmiz_crd .butn:hover {
  color: var(--primary);
}

.newsletter-sec {
  position: relative;
  background-color: var(--secondary);
  padding: 50px 0;
}

.newsletter-sec .title {
  color: #fff;
}

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

.newsletter-sec .form-group .form-control {
  height: 55px;
  border-radius: 25px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #eee;
}

.newsletter-sec .form-group .form-control::-webkit-input-placeholder {
  color: #eee;
}

.newsletter-sec .form-group .form-control:-ms-input-placeholder {
  color: #eee;
}

.newsletter-sec .form-group .form-control::-ms-input-placeholder {
  color: #eee;
}

.newsletter-sec .form-group .form-control::placeholder {
  color: #eee;
}

.newsletter-sec .form-group .submit-butn {
  border: none;
  width: 150px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  color: var(--secondary);
  font-weight: bold;
}

.newsletter-sec .form-group .submit-butn:hover {
  background-color: var(--primary);
  color: #fff;
}
/*# sourceMappingURL=style.css.map */