 
@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');


body{
    font-family: "Zain", sans-serif;
    background-color:#fff;

}
body::before {
  content: "";
  position: fixed; /* or absolute if you want it to scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/backgroundb.png');
  background-size: cover;
  background-position: center;
  opacity: 0.01; /* Adjust opacity here */
  z-index: -999;
  pointer-events: none; /* Prevent it from blocking clicks */
}
/*** Spinner Start ***/
.spinner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #426c89;
    z-index: 9999999999;
    display: none;


}
.show{
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    --cell-size: 52px;
    --cell-spacing: 1px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size);
  
  }
  
  .cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 4px;
    animation: 1.5s ripple ease infinite;
  }
  
  .cell.d-1 {
    animation-delay: 100ms;
  }
  
  .cell.d-2 {
    animation-delay: 200ms;
  }
  
  .cell.d-3 {
    animation-delay: 300ms;
  }
  
  .cell.d-4 {
    animation-delay: 400ms;
  }
  
  .cell:nth-child(1) {
    --cell-color: #00FF87;
  }
  
  .cell:nth-child(2) {
    --cell-color: #0CFD95;
  }
  
  .cell:nth-child(3) {
    --cell-color: #17FBA2;
  }
  
  .cell:nth-child(4) {
    --cell-color: #23F9B2;
  }
  
  .cell:nth-child(5) {
    --cell-color: #30F7C3;
  }
  
  .cell:nth-child(6) {
    --cell-color: #3DF5D4;
  }
  
  .cell:nth-child(7) {
    --cell-color: #45F4DE;
  }
  
  .cell:nth-child(8) {
    --cell-color: #53F1F0;
  }
  
  .cell:nth-child(9) {
    --cell-color: #60EFFF;
  }
  
  /*Animation*/
  @keyframes ripple {
    0% {
      background-color: transparent;
    }
  
    30% {
      background-color: var(--cell-color);
    }
  
    60% {
      background-color: transparent;
    }
  
    100% {
      background-color: transparent;
    }
  }

 .back-to-top {
    position: fixed;
    right: 40px;
    bottom: 90px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    background-color: #0b6fb7;
    color: #fff;
    border: solid 2px #fff;
}
/*** Spinner End ***/

/* header */
header{
    background-color: #2F52A0;
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    width: 100%;
    margin: 0;
    padding: 0px;
    border-radius: 0px 0 10px 10px;
    background-color: #fff;
}
 
.navcontainer{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .top-link a {
    letter-spacing: 1px;
    margin-right: 5px;
    color:#fff;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 5px 5px;
    margin-left: 10px;
    font-size: 1rem;
    transition: .5s;
    font-weight: 500;
}

 .nav-item{
    color: #2F52A0;
 }

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #000;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Zain", sans-serif;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);

}
#searchModal{
    z-index: 9999999999;
}
.xcatgo{
    background-color: #b08c47;
}
.navbar{
   
    align-items: center;
    display: flex;
    justify-content: center;
 
}

.navbar-nav{
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 110px;
}

.nav-item {
    align-self: center;
}
.headtxt{
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-direction: row;
}
.headtxt p{ 
  align-self: center;
  margin-top: 8px;


}
/*** Navbar End ***/
/*======================================
    Hero Area CSS
========================================*/
.hero-area { 
    position: relative;
    margin-top: 0px;
    height: 70vh;
 
  }
 
  .carousel-item{
    margin-top: 110px;
    width: 100%;
    height: 77vh;
   
  }
  .slideimg{
    height: 100%;
  }
  .slideimg {
 
    opacity: .5;
}
 
  .carousel-inner .carousel-item {
 
  background-color: #003049;
 
}
/*** Hero Header ***/
.carousel{
    z-index: 100;
}

.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
     
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #0b6fb7;
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
 
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 0px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 0px !important;
    }
}

#hero{
    margin-bottom: 40px;

}

/*** Hero Header end ***/


/*** featurs Start ***/
.feat{
 
    padding: 0;
}
 .featurs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
 
 }
 .featurs .container{
    padding: 0;
    margin: 0;
    background-color: #00FF87;
 }
 .imgcont{
  height: 450px;
  width: 32%;
  margin: 5px;
  overflow: hidden;
 
 }
.imgs_container{
  max-height: 300px;
  width: 100%;
  margin: 5px;
  overflow: hidden;
 
}

 .imgs_container:hover  img {
        transform: scale(1.2);
        border: solid #fff 2px;
       }
.bcat_img{
       max-width:400px ;
       height: 100%;
       transform-origin: center center;
       transition: transform 0.2s ease;
    
}
 .h3_container{
    direction: rtl;
    width: 100%;
     
  }
  .h3_container h3{
    font-family: "Zain", sans-serif;
     color:#0b6fb7;
     font-weight: 900;
   }
     
.h3_container a{
    cursor: pointer;
}
.imgcont p{
    text-align: right;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
}      
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
 
/*** vesitable Start ***/
.vesitable h2{
    font-family: "Zain", sans-serif;
    text-align: right;
    color: #000;
}
.iteminfo{
    height: 25%;
}
.iteminfo h4 {
    font-family: "Zain", sans-serif;
    text-align: center;
    font-size: 16px;
    height: 50px;
    color: #0b6fb7;
      width: 100%;
    text-align: right;
}
.price{
    color: #b08c47;
}
.iteminfo h4 a{
    color: #0b6fb7;
    width: 100%;
    text-align: right;
    font-weight: 900;
}
.itemdes{
    text-align: right;
    width: 100%;
    height: 100px;
    margin-top: -30px;
    margin-bottom: 30px;
}
.vesitem_size{
    height: 35vh;
}
 .vesitable-item {
    height: 100%;
    transition: 0.5s;
  
}
.bottombtn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    direction: rtl;
    align-items: center;
}
 .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

 .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    height: 75%;
}

  .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

  .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    left: 10px;
    color: #fff;
    padding: 5px 25px;
    align-self: center;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: 0.5s;
    background-color: #2F52A0;
}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    left: 88px;
    color: #fff;
    padding: 5px 25px;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: 0.5s;
        background-color: #2F52A0;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
.banner{
    padding: 20px 160px 80px 160px;
}
.banner .container{
  padding: 0;
  margin: 0;
   width: 100%;
    background-color: #fff;
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial{
    margin: 80px  0 40px 0;
}
 
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid #0b6fb7;
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid #0b6fb7;
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.testimonial h1{
    font-family: "Zain", sans-serif;
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footrzindex{
    position: relative;
    background-color: #fff;
    z-index: 100;
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
 
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/
.btncolor{
    align-items: center;
    justify-content: center;
}
.btncolor i{
    color:#2F52A0;
    margin: 5px;
    margin-left: 15px;
    margin-right: 15px;
}
.btncolor .xdiv{
  border-left: solid 2px #c2bebe;
}
 .lanen{
    margin: 5px;
    margin-right: 15px;
    color: #0b6fb7;
    font-size: 1.5rem;
 }
.whatsconn{
    direction: rtl;
    position: fixed;
    right: 10px;
    bottom: 15px;
    z-index: 999999;
    width:250px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: space-around;
  }
  .whatsconn h6{
  align-self: center;
  background: #31393c;
  padding: 5px;
  border-radius: 10px;
  border: solid 3px #fff;
  color: #b08c47;
  font-family: "Zain", sans-serif;
  }
  .desh6{
    width:60px;
    background-color: #ac0417;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 5px;
    color: #fff;
    text-align: center;
    border-radius: 0 10px 10px 0;
  }
  .stars{
    color: rgba(255, 181, 36, 0.7);

  }
.imgg{
     align-self: center;
  
  }

  .imgg p{ 
    align-self: center;
    font-size: 1.2rem;
    color: #000;
    margin: 20px 0 15px 0;
  }
.imgg p span{
    color: #0b6fb7;
}
  .addtlist{
    margin-top: 20px;
    background-color: #2F52A0;
    color: #fff;
    width: 50%;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
  }
  
  .addtlist2{
    border: #fff solid 1px;
    margin-top: 10px;
    background-color: #2F52A0;
    color: #fff;
  }
  .footbanner{
    background-color: #fff;
    display:flex;
    justify-content:space-between;
    width: 100%;
    height: 60vh;
    border-radius: 30px;
    margin-bottom: 50px;
    direction: rtl;
    }
    .footbanner h2{
        font-size: 2rem;
        text-align: right;
        font-weight: 900;
    }
    .footbanner p{
      height: 150px;
      overflow: hidden;
      text-align: right; 
      margin-top: 10px;
      margin-bottom: 10px;
      color: #230707;
      width: 100%;
    
    }
    .swipping{
      width: 30px;
    
    }
    @media screen and (max-width: 768px) {
      [data-aos-delay] {
        transition-delay: 0 !important;
      }
    }
    .aos-init[data-aos].aos-animate {
      transform: unset;
    }
    .footbanner h6{
    text-align: justify;
    color: #080808;
    font-family:"Beiruti", sans-serif ;
    }
    .footbanner .button{
      margin-top: 20px;
      align-self:flex-end;
      background-color: #fff;
      border-radius: 20px;
      color: #0b6fb7;
      width: 100px;
      text-align: center;
    }
    .btn{
        color: #0b6fb7;
    }
    .footbanner .button:hover{
        color: #fff;
       border-radius: 0;
       border-bottom: 2px #0b6fb7 solid;
    }
    .footbanner  img{
        align-self:center ;
        width:100%;
        height: 60vh;
       border-radius: 30px 0 0 30px;    
      transform-origin: center center;
      transition: transform 0.5s ease;
      }
       .divc2:hover  img {
        transform: scale(1.2);
       }
 .divc1{
    display: flex;
    flex-direction: column;
    margin: 40px;
    width: 40%;
    align-self: center;
    background-color: #fff;

 }
  .divc2{
    width: 50%;
    align-self: center;
    overflow: hidden;
 }
 .xcontact{
    padding: -20px 0px 30px 0px;
 }
 .xcontact label{
    color: #0b6fb7;
    font-size: 1.2rem;
    font-weight: 700;
 }
 .xcontact form input{
    border: solid 2px #0b6fb7;
 }
 .dcontact h1 ,.dcontact h4{
    font-family: "Zain", sans-serif;
    color: #0b6fb7;
 }
 .dcontact i{
    color: goldenrod;
 }
 .dcontact button{
    background-color: #0b6fb7;
    color: #0b6fb7;
 }
 .shophead{
    margin-top: 180px;
    background-image: url('../img/hero-img.jpg');
    height: 120px;
    padding-top: 10px;
 }
 .shophead h1{
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
 }
   .shophead h1{
            font-family: "Zain", sans-serif;

     }
 .shophead a{
    color: #0b6fb7;
 }
 .xcont{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
 }
 .vescont{
    width: 22%;
    margin-bottom: 80px;
 }
 .vxitem{
    height: 500px;
    margin: 10px;
 }
 .vxitem .vesitable-img{
    height: 400px;
 }
 #current{
    border-radius: 5px;
 }
 .singlh4 h4{
    font-family: "Zain", sans-serif;
 }
 .checkform h1{

    font-family: "Zain", sans-serif;
 }
 .xtotal{
     display: flex;
    justify-content:space-between;
 }
 .tot{
    font-weight: 900;
    color: #371919;
    font-size: 30px;
 }
 .prc{
    color: #ac0417;
    font-size: 24px;
    font-weight: 900;
 
 }

 .cashondelivery{
    display: flex;
    justify-content: flex-start;
 }
 .totbg{

    border-radius: 0px;
    padding: 10px;
  color: #000;
    border-radius: 5px;
 }
 .nama{
    color: #0b6fb7;
 }
 #chxbtn{
    background-color: #0b6fb7;
    color: #fff;
 }
 #notefi ,#notefidel{
    height: 60px;
    z-index: 99999999999999;
    width: 290px;
    position: fixed;
    top: 20px;
    right: 10px;
    background-color: #0b6fb7;
    border-radius: 5px;
    border-bottom: solid 2px #ac0417;
    color: #fff;
    display: none; 
    flex-direction: row;
    padding: 5px;
}
 #notefi h6 ,#notefidel h6{
    color: #fff;
    width: 100%;
    text-align: right;
    align-self: center;
    font-family: "Zain", sans-serif;

 }
 #notefi a ,#notefidel a{
    text-align: center;
    color: #e0dede;
    size: 10px;
    align-self: center;
    font-family: "Zain", sans-serif;

 }

 /* From Uiverse.io by SchawnnahJ */ 
.notiloder {
    transform: rotate(165deg);
   }
   
   .notiloder:before, .notiloder:after {
    content: "";
    position: absolute;
    top:2px;
    left: 5px;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
   }
   
   .notiloder:before {
    animation: before8 2s infinite;
   }
   
   .notiloder:after {
    animation: after6 2s infinite;
   }
   
   @keyframes before8 {
    0% {
     width: 0.5em;
     box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
   
    35% {
     width: 2.5em;
     box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }
   
    70% {
     width: 0.5em;
     box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }
   
    100% {
     box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
   }
   
   @keyframes after6 {
    0% {
     height: 0.5em;
     box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
   
    35% {
     height: 2.5em;
     box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }
   
    70% {
     height: 0.5em;
     box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }
   
    100% {
     box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
   }
   .dcontact{
    margin-bottom:  80px;
   }
   .notiloder {
    position: absolute;
    top: 30px;
    right: 30px;

   }
   .logmodal{
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
   }
   #logul{
    list-style:none;
    direction: rtl;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
     margin: 0;
   }
   #logul li{
    font-size: 25px;
    font-weight: 500;
    height:50px ;
    padding: 10px 0 70px 0;
    width: 100%;

    }
    .alogin{
        color: #000;
        margin-right: 10px;
        font-size: 1.3rem;
    }
   .xcheck{
    display: flex;
    justify-content: space-around;
    background:#0b6fb7;
    padding: 30px 0 10px 0;
    border-radius: 10px;
    margin-bottom: 25px;
   }
   #exampleModalLabel{
        font-family: "Zain", sans-serif;
   }
   .xcheck h3{
        font-family: "Zain", sans-serif;

   }
   .pillinput{
    background-color: none;
    border: none;
    outline: none;
    background: #0b6fb7;
    color: #fff;
    font-weight: 900;
    font-style: oblique;
   }
 .xxprc{
    background-color: inherit;
    color: #0b6fb7;
 }
   .chexsec{
    padding: 200px 0 20px 0;
    height: 100vh;
   }
   .chexsec h1 {
    padding-top: 100px ;
    text-align: center;
    font-family: "Zain", sans-serif;
   }
  
   .chxcontainer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   }
   .chexsec a{
    align-self: center;
    margin-top: 80px;
    background-color: #0b6fb7;
    color: #fff;
   }
   .phonemenu{
    padding-top: 20px;
    text-align: center;
    overflow: auto;
    height: 100vh;
    z-index: 9999999997;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-bottom: 190px;
    display: none;
    position: fixed;
    top: 90px;
    right: 0;
    background-color: #fff;
    transform: all .3s;
}
.phonemenu .navbar-nav{
    width: 100%;
    margin: 0;
    padding: 0;
}
#phonemenu a{
    align-items: center;
    margin: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: #0b6fb7 solid .3px;      
}
.conta{
    margin: 0px 40px ;
}
.xstr{
    color: #b08c47;
}
.bottommenu{
    display: none;
  z-index: 9999999996;
}
.xlert{
    display: none;
}
.contfeat{
    margin-top: 40px;
    margin-bottom: 80px;
}
.contacthero{
    margin-top: 110px;
     background-image: url('../img/backgroundhero.jpg');
     background-repeat: no-repeat;
     background-size: 100%;
     width: 100%;
     height: 50vh;
     opacity: 1;
     display: flex;
     justify-content: center;
     align-items: center;
    }
    .contacthero h1{
     position: relative;
        top: 5vh;
        text-align: center;
        font-family: "Zain", sans-serif;
        font-size: 3rem;
        color: #fff;
        padding: 10px;
        background-color: #2F52A0;

    }
    .contactheromenu{
     margin-top: 110px;
    background-image: url('../img/backgroundhero.jpg');
     background-repeat: no-repeat;
     background-size: 100%;
     width: 100%;
     height: 50vh;
     opacity: 1;
     display: flex;
     justify-content: center;
     align-items: center;
    }
    .contactheromenu h1{
        position: relative;
        top: 5vh;
        text-align: center;
        font-family: "Zain", sans-serif;
        font-size: 4rem;
        color: #fff;
        width: 300px;
        background-color: #2F52A0;

    }
    .abouthero1{
     margin-top: 110px;
     background-image: url('../img/backgroundhero.jpg');
     background-repeat: no-repeat;
     background-size:100% 100% ;
     width: 100%;
     height: 50vh;
     opacity: 1;
     display: flex;
     justify-content: center;
     align-items: center;
    }
    .abouthero1 h1{
        position: relative;
        top: 5vh;
        text-align: center;
        font-family: "Zain", sans-serif;
        font-size: 3rem;
        color: #fff;
        background-color: #2F52A0;
        padding: 10px;
    }
     .contdetails{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .contdetails h2{
         font-family: "Zain", sans-serif;
         color: #0b6fb7;
         font-size: 3rem;
    }
    .contaitem{
         align-items: center;
         margin: 10px;
         display: flex;
         justify-content: center;
         flex-direction: column;
    }
    .contaitem i{
        font-size: 2rem;
        color: #2F52A0;
    }
    .contaitem p{
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
    }

/* menulist */
.menucontainer{
  display: flex;
  justify-content: space-between;
  flex-direction: column;

}
.menucategory{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    direction: ltr;
}
.itemcat{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow: auto;
    direction: rtl;
    padding:0 120px ;
}
.categoryLink{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    align-self: center;
    background-color: #2F52A0;
    padding: 10px;
    margin: 3px;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    width: 200px;
    
}
.categoryLink1 ,.categoryLink2  {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    align-self: center;
    padding: 10px;
    margin: 3px;
    width: 100%;
    border-radius: 10px;
    color: #0b6fb7;
    cursor: pointer;
    width: 120px;
}
.categoryLink2{
 margin-left: -40px;
}
.categoryLink1 :active ,.categoryLink2:active  {
    color: #000;
}
.maincatg{
     margin-bottom: 20px;
     display: flex;
     justify-content: center;
     flex-wrap: nowrap;
}
.itemlist{
    display: flex;
    justify-content: center;
    flex-direction: row;
     width: 100%;
     flex-wrap: wrap;

}
.itemlist .vxitem{
    height: 600px;
}
.itemlist .vesitable-img{
    height: 300px;
}
.itemlist .itemdes{
    height: 130px;
    overflow: auto;
}
.itemlist a{
    cursor: pointer;
}
.abouthero{
    padding: 80px ;
    text-align: center;
}
.abouthero h2{
    font-size: 4rem;
    font-family: "Zain", sans-serif;
    color: #2F52A0;
}
.abouthero p{
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Zain", sans-serif;
    color: #000;
}
      .vesitable h2{
        color: #000;
    }  
   .conta input ,.conta textarea{
     border: solid #2F52A0 2px;
   }

/* langu section */
.selectlangu{
    background-color: #003049;
    width: 100%;
    height: 100vh;
    padding: -10px;
}
.bgcontainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/intro.jpg'); 
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
}
 
.langucontainer{
    position: absolute;
    top: 20vh;
    width:100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
}
.langucontainer img{
    width: 12%;
    margin: 120px 40px -40px 40px;
}
.langucontainer2{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
}
.langucontainer2 img{
    width: 20%;
    margin: 10px;
}
.introsocial{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.introsocial a{
  color: #fff;
  margin: 10px;
 height: 30px;
 width: 30px;
 text-align: center;
 align-items: center;
 border-radius: 50%;
 
}
.introsocial a i{
    font-size: 1rem;
}
.introsocial .face{
    background-color: #2F52A0;
    padding: 6px;
}
.introsocial .snap{
    background-color: #2F52A0;
    padding: 6px;
}
.introsocial .tik{
    background-color: #2F52A0;
    padding: 6px;
}
.introsocial .insta{
    background-color: #2F52A0;
    padding: 6px;
}
.intrbtn{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 30px;
    margin-top: 0;
}
.intrbtn a{
    align-self: center;
    text-align: center;
    width: 80px; 
    font-size: 2rem;
    font-weight: 900;
    padding: 3px;
    text-decoration: none;
    margin: 70px;
    color: #2F52A0;
    transition: all 0.03s;
}
.intrbtn a:hover{
    border-bottom: solid 2px #2F52A0;
    
}

.footcont{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
.locati{
    max-height: 20vh;
    max-width: 70%;
    padding: 10px;
    margin: 0;
    border-radius: 20px;
}
.locati iframe{
    height: 20vh;
    border-radius: 10px;
}


/* icon animation */
.fade-animation {
    animation: fade 1.5s infinite;
  }

  @keyframes fade {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
  }
  .bounce-animation {
    animation: bounce 1s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  .swing-animation {
    display: inline-block;
    transform-origin: top center;
    animation: swing 1s infinite ease-in-out;
  }

  @keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
  }
  .BATTERNRIGHT{
    background-image: url('../img/pattern.png');
    height: 100vh;
    width: 120px;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .BATTERNleft{
    background-image: url('../img/pattern.png');
    height: 100vh;
    width: 120px;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
  }
   .locati{
        width: 800px;
    }
    .headtxt img{
        width:200px;max-height:100px;margin-left:20px;
    }
    .chkoutphone{
        display: none;
    }
    .abouthero p{
        direction: rtl;
    }
/* phone */
   @media (max-width: 800px) {
   
    .headtxt img{
        width:140px;
        max-height:100px;
        margin-right: 10px;
    }
    .navcontainer{
        justify-content:flex-end;

    }
    .btncolor{
        width: 130px;
    }
    .xdivv{
        margin-right: 0;
    }
   .lanen{
    font-size: 1rem;
   }
  
    .xbtn{
        display: none;
    }
    .hero{
 
        width: 100%;
        margin-bottom: 10px;
    }
    .banner{
        padding:0 20px;
 
    }
    .footbanner{
        flex-direction: column;
        width: 100%;
        justify-content: center;
        padding: 0;
 
    }
       .divc2{
         width: 100%;
         border-radius: 5px;
 
       }
       .divc2 img{
         width: 100%;
         border-radius: 5px;
       }
    .divc1{
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    .divc1 h2{
        text-align: center;
        font-size: 1.5rem;
    }
        .divc1 .button{
             align-self: center;
        }

    .vesitable{
        padding: 0;
        margin-top:-110px;
    }    
   .feat{
 
    margin-top:10px;
   }
   .feat .container{
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
   }
   .featurs{
     padding: 0px;
     align-items: center;
     flex-direction: column;
     width: 100%;
   }
   .imgs_container{
    padding: 0;
    margin: 0;
   }
   .imgcont{
    width: 90%;
    padding: 0px;
    border-radius: 5px;
   }
   .feat .bcat_img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
   }
   .h3_container{
    margin: 10px;
    text-align: center;
    width: 100%;
   }
   .featurs p{
    text-align: center;
   }
   
/*     .bottommenu{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #31393c;    
        border-radius: 10px 10px 0 0;
        display: flex;
        justify-content: space-around;
        align-items: center;

    } */
    .langucontainer img{
      width: 50%;

 
}
    .xlert{
        position: fixed;
        top: 40vh;
        width: 100%;
        left: 0;
        text-align: center;
    }
    .checkform{
 
        padding: 0px;
    }
     .vxitem{
    height: 650px;
    
 }
    .carousel-item{
        margin-top: 90px;
        height: 40vh;

    }
    .phonfoot{
        display: none;
    }
    .vesitable .owl-nav .owl-prev {
        position: absolute;
        top: -28px;
        left: 0;
        padding: 5px 15px;   
    }       
    .vesitable .owl-nav .owl-next {
        position: absolute;
        top: -28px;
        left: 55px;
        padding: 5px 15px;
    }
    .footbanner{
        width: 100%;
        height: 100vh;
        margin:0px;
        margin-bottom: 20px;
        flex-direction: column-reverse;
    }
    .divc{
        width: 100%;
        text-align: center;
    }
    .footbanner h6{
        font-size: 25px;
        width: 100%;
        font-weight: 700;
        text-align: center;
    }
    .footbanner p{
      text-align: center;
      font-size: 16px;
      font-weight: 700;
    }
    .footbanner  img{
        height: 40vh;
        margin: 0px;
        padding: 0px;
        
    }
    .xcontact{
        padding: 0px;
 
    }

    .dcontact {
        padding: 0;
        margin: 0;
    }
    .conta{

        margin: 0;
    }
    .whatsconn{
        z-index: 99;
    }
    .vescont{
       width: 100%;
       max-height: 500px;
    }
    .vescont .vesitable-img{
        max-height: 400px;
    }
    #navbarCollapse{
        padding-top: 70px;
        text-align: center;
        margin: 10px 0;
        overflow: auto;
        height: 100vh;
        z-index: 9999999999;
        flex-direction: column;
        width: 100%;
        padding-bottom: 190px;


    }
    #navbarCollapse a{
        font-size: 20px;
        font-weight: 700;
        padding: 15px 0;
        border-bottom: #a09d9d solid .3px;      
    }


    .shophead{
        margin-top: 110px;
        padding-top: 10px;
            font-family: "Zain", sans-serif;

     }
     .shophead h1{
            font-family: "Zain", sans-serif;

     }
     .singlh4{
        text-align: center;
     }
     .singlh4 .xstr{
        display: flex;
        justify-content: center;
     }
     .table-responsive table{
        overflow: auto;
        width: 800px;
     }
     .table-responsive table th{
        width: 200px;
     }
    .tbimg img{
        border-radius: 5px;
    }
    #count{
        width:50px;
    }
   .xch{
    display: flex;
    margin-left: 30px;
   }
   .xcheck{
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
        font-family: "Zain", sans-serif;

   }
   .xcheck h1{
        font-family: "Zain", sans-serif;

   }
   .xcheck  h1 ,.xcheck  input{
    align-self: center;
    text-align: center;
   }
   .pillinput{
     width: 100px;
   }
   .ph5{
    font-size: 16px;
   }
   .vesitable h1{
    font-size: 18px;
    font-weight: 900;
   }
   .conta input ,.conta label ,.conta textarea{
    width: 100%;
    text-align: center;
    
   }

   header{
    width: 100%;
   }
   .navcontainer{
    width: 100%;
   }
   .navbar-toggler{
    padding: 0;
    display: block;
   }
   .BATTERNRIGHT , .BATTERNleft{
    display: none;
   }
   .footrzindex .container{
    margin: 0;
    padding: 0;
   }
   .footcont{
    flex-direction: column-reverse;
    justify-content: center;
    padding: 0;
    margin: 0;
   }
   
   .footer{
    padding: 0;
        background-color: #0b6fb7;

   }
   .locati{
    align-self: center;
        padding:0;
        margin: 10px 0;
            background-color: #00FF87;

   }
   .conta{
    margin-bottom: 60px;
   }
   .visi{
    padding-top: 80px;
   }
 .visi .container{
    margin: 0;
    padding: 0 0px 0 0;
   }
   .visi .container .owl-carousel{
    margin: 0;
    padding: 0;
    width: 100%;
   }
   .abouthero1 h1{
    font-size: 1.2rem;
   }
    .abouthero{
         margin: 0;
         padding: 0;
         padding-top: 40px;
    }
   .abouthero .container{
    margin: 0;
    padding: 0;
   }
    .abouthero .container .row{
    margin: 0;
    padding: 0;
    width: 100%;
   }
   .abouthero h2{
    font-size: 2rem;
    width: 100%;
    margin: 0;
 
   }
    .abouthero p{
        font-size: 1rem;
        text-align: center;
        margin-bottom: 40px;
    }
     .contacthero{
        background-size: 100% 100%;
     }
     .contacthero h1{
    font-size: 1.2rem;
   }
       .contactheromenu{
        background-size: 100% 100%;
     }
     .contactheromenu h1{
      font-size: 1.5rem;
      padding: 10px;
   }

   .itemcat{
    width: 100%;
    padding-right:0px;
    margin: 0;
    justify-content: flex-start;


   }
   .categoryLink {
     font-size: .9rem;
     align-self: center;
     text-align: center;
     padding: auto;
     text-wrap:nowrap ;
   }
   .menulist .vescont{
    margin: 70px 0;
   }
   .menulist{
       margin-bottom: 120px;
   }
   .maincatg{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
   }
   .categoryLink2{
    margin-right: -15px;
   }
   .table-responsive{
    display: none;
   }
   .xchk{
    margin: 0;
    padding: 0;
   }
   .xchk  textarea{
    margin-bottom: 20px;
   }
   .chkoutphone{
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0;
    display: inline;
   }
   .topcontainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    padding: 10px;
    margin-bottom: 15px;
   }
   .topcontainer .tbimg{
    width: 40%;
    height: 80px;
    padding-left: 10px;
   }
    .topcontainer .tbimg img{
      width: 100%;
      height: 100%;
      border-radius: 2px;
    }
    .topcontainer .itemdeta{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
     .topcontainer .itemname{
        width: 100%;
        font-size: 1.2rem;
        text-align: right;
        display: flex;
        justify-content: space-between;
    }
    .nama{
        color: #000;
    }
    .itemname .remove{
        color: #0b6fb7;
        align-self: flex-end;
    }
    .topcontainer .itinfo{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items:center;
        justify-content: space-between;
    }
    .itemdeta .itemprice{
        font-weight: 700;
        color: #918c8c;
        margin-bottom: 10px;
    }
    .input-group-btn{
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .input-group-btn a{
        align-self: center;
        display: flex;
        justify-content: center;
    }
   .input-group-btn a i{
        align-self: center;
        color: #0b6fb7;
        font-size: 1.5rem;
        font-weight: 900;
    }
    .itinfo .count {
       color: #000;
       font-size: 1rem;
       font-weight: 900;
       align-items: center;
    }
    .itinfo .totalll{
        width: 50%;
        color: #000;
    }
    .xtotal{
        margin-top: 70px;
    }
    .xtotal .tot{
        font-size: 1.2rem;
        font-weight: 900;
        color: #0b6fb7;
    }
    .xxprc{
        color: #000;
        text-decoration: none;
        font-style: normal;
          font-size: 1.2rem;
        font-weight: 900;
        align-self: center;
    }
    .xtotal span{
        font-size: 1.2rem;
        font-weight: 900;
          color: #0b6fb7;
    }
     .input-group-btn a :hover{
         cursor: pointer;
         color: #b08c47;
    }
}
